diff --git a/CHANGELOG.md b/CHANGELOG.md index 08ee52774..2054d0fb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ### Parsing -Updated to the latest tree-sitter parser for Pascal. +Updated to the latest tree-sitter parser for Pascal and Swift. ## 0.63 (released 11th February 2025) diff --git a/Cargo.lock b/Cargo.lock index a5b3c2a06..109d16ba7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -299,6 +299,7 @@ dependencies = [ "tree-sitter-ruby", "tree-sitter-rust", "tree-sitter-scala", + "tree-sitter-swift", "tree-sitter-toml-ng", "tree-sitter-typescript", "tree-sitter-xml", @@ -1248,6 +1249,16 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-swift" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdc72ea9c62a6d188c9f7d64109a9b14b09231852b87229c68c44e8738b9e6b9" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-toml-ng" version = "0.7.0" diff --git a/Cargo.toml b/Cargo.toml index 536db1fde..87c63be37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -102,6 +102,7 @@ tree-sitter-rust = "0.23.2" tree-sitter-elixir = "0.3.4" tree-sitter-nix = "0.0.2" tree-sitter-pascal = "0.10.0" +tree-sitter-swift = "0.7.0" [dev-dependencies] # assert_cmd 2.0.10 requires predicates 3. diff --git a/build.rs b/build.rs index 92318530c..16fa45ed3 100644 --- a/build.rs +++ b/build.rs @@ -212,11 +212,6 @@ fn main() { src_dir: "vendored_parsers/tree-sitter-sql-src", extra_files: vec!["scanner.cc"], }, - TreeSitterParser { - name: "tree-sitter-swift", - src_dir: "vendored_parsers/tree-sitter-swift-src", - extra_files: vec!["scanner.c"], - }, TreeSitterParser { name: "tree-sitter-vhdl", src_dir: "vendored_parsers/tree-sitter-vhdl-src", diff --git a/src/parse/tree_sitter_parser.rs b/src/parse/tree_sitter_parser.rs index 845bc8f54..3709cbfde 100644 --- a/src/parse/tree_sitter_parser.rs +++ b/src/parse/tree_sitter_parser.rs @@ -88,7 +88,6 @@ extern "C" { fn tree_sitter_scss() -> ts::Language; fn tree_sitter_solidity() -> ts::Language; fn tree_sitter_sql() -> ts::Language; - fn tree_sitter_swift() -> ts::Language; fn tree_sitter_vhdl() -> ts::Language; fn tree_sitter_zig() -> ts::Language; } @@ -1002,16 +1001,15 @@ pub(crate) fn from_language(language: guess::Language) -> TreeSitterConfig { } } Swift => { - let language = unsafe { tree_sitter_swift() }; + let language_fn = tree_sitter_swift::LANGUAGE; + let language = tree_sitter::Language::new(language_fn); + TreeSitterConfig { language: language.clone(), atom_nodes: ["line_string_literal"].into_iter().collect(), delimiter_tokens: vec![("{", "}"), ("(", ")"), ("[", "]"), ("<", ">")], - highlight_query: ts::Query::new( - &language, - include_str!("../../vendored_parsers/highlights/swift.scm"), - ) - .unwrap(), + highlight_query: ts::Query::new(&language, tree_sitter_swift::HIGHLIGHTS_QUERY) + .unwrap(), sub_languages: vec![], } } diff --git a/vendored_parsers/tree-sitter-swift-src b/vendored_parsers/tree-sitter-swift-src deleted file mode 120000 index 2c0711e17..000000000 --- a/vendored_parsers/tree-sitter-swift-src +++ /dev/null @@ -1 +0,0 @@ -tree-sitter-swift/src \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-swift/.gitattributes b/vendored_parsers/tree-sitter-swift/.gitattributes deleted file mode 100644 index b6cff2185..000000000 --- a/vendored_parsers/tree-sitter-swift/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -test/highlight/* linguist-vendored diff --git a/vendored_parsers/tree-sitter-swift/.github/workflows/check.yml b/vendored_parsers/tree-sitter-swift/.github/workflows/check.yml deleted file mode 100644 index 7bd28ce0c..000000000 --- a/vendored_parsers/tree-sitter-swift/.github/workflows/check.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Check compilation/bindings/style - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js 16.x - uses: actions/setup-node@v2 - with: - node-version: 16.x - cache: 'npm' - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - run: npm install - - run: npm run ci - - run: npm run test-ci - - run: make install - env: - PREFIX: /tmp - - run: cargo test - - run: cd ./test-npm-package && npm test; cd - - - run: npm pack && cd .. && npm install -g ./tree-sitter-swift/tree-sitter-swift-*.tgz; cd - diff --git a/vendored_parsers/tree-sitter-swift/.github/workflows/generate-static-grammar.yml b/vendored_parsers/tree-sitter-swift/.github/workflows/generate-static-grammar.yml deleted file mode 100644 index 3dddb57f7..000000000 --- a/vendored_parsers/tree-sitter-swift/.github/workflows/generate-static-grammar.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Check in static grammar files - -on: - push: - tags: - - '*' - -jobs: - generate_grammar: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: ./scripts/write-generated-grammar.sh ${{github.ref}} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/vendored_parsers/tree-sitter-swift/.github/workflows/parser-src.yml b/vendored_parsers/tree-sitter-swift/.github/workflows/parser-src.yml deleted file mode 100644 index dc1a00d6b..000000000 --- a/vendored_parsers/tree-sitter-swift/.github/workflows/parser-src.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Publish `grammar.json` and `parser.c` - -on: - push: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v2 - with: - node-version: 16.x - cache: 'npm' - - run: npm install - - run: npm run test-ci - - name: Publish parser source - uses: actions/upload-artifact@v2 - with: - name: generated-parser-src - path: src diff --git a/vendored_parsers/tree-sitter-swift/.github/workflows/publish.yml b/vendored_parsers/tree-sitter-swift/.github/workflows/publish.yml deleted file mode 100644 index f9ef9dd36..000000000 --- a/vendored_parsers/tree-sitter-swift/.github/workflows/publish.yml +++ /dev/null @@ -1,66 +0,0 @@ -name: Publish to `npm` and `crates.io` - -on: - workflow_run: - workflows: ["Parse top repositories"] - types: - - completed - -jobs: - npm_publish: - if: ${{ github.ref == 'refs/heads/main' }} - runs-on: ubuntu-latest - outputs: - type: ${{ steps.npm_publish.outputs.type }} - package_version: ${{ steps.npm_publish.outputs.version }} - steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - with: - node-version: 16 - - run: npm install - - run: npm run test-ci - - run: cd ./test-npm-package && npm test; cd .. - - uses: JS-DevTools/npm-publish@v1 - id: npm_publish - with: - token: ${{ secrets.NPM_TOKEN }} - crates_io_publish: - runs-on: ubuntu-latest - needs: npm_publish - if: ${{ needs.npm_publish.outputs.type != 'none' }} - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - run: npm install - - run: npm run test-ci - - run: cargo test - - uses: katyo/publish-crates@v1 - with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} - args: --allow-dirty - badge_update: - runs-on: ubuntu-latest - needs: - - npm_publish - - crates_io_publish - steps: - - name: Update crates.io badge - uses: RubbaBoy/BYOB@v1.3.0 - with: - NAME: crates_io_version - LABEL: 'crates.io' - STATUS: ${{ needs.npm_publish.outputs.package_version }} - COLOR: green - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Update npm badge - uses: RubbaBoy/BYOB@v1.3.0 - with: - NAME: npm_version - LABEL: 'npm' - STATUS: ${{ needs.npm_publish.outputs.package_version }} - COLOR: green - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/vendored_parsers/tree-sitter-swift/.github/workflows/test-older-tree-sitter.yml b/vendored_parsers/tree-sitter-swift/.github/workflows/test-older-tree-sitter.yml deleted file mode 100644 index 0d8cec21e..000000000 --- a/vendored_parsers/tree-sitter-swift/.github/workflows/test-older-tree-sitter.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Check compilation on tree-sitter 0.19 - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js 16.x - uses: actions/setup-node@v2 - with: - node-version: 16.x - cache: 'npm' - - run: cp package-json-old-tree-sitter.json package.json - - run: npm install - # corpus tests fail and highlight tests are extremely slow; just remove them! - - run: rm -r test - - run: npx tree-sitter test diff --git a/vendored_parsers/tree-sitter-swift/.github/workflows/top-repos.yml b/vendored_parsers/tree-sitter-swift/.github/workflows/top-repos.yml deleted file mode 100644 index af0270cbf..000000000 --- a/vendored_parsers/tree-sitter-swift/.github/workflows/top-repos.yml +++ /dev/null @@ -1,92 +0,0 @@ -name: Parse top repositories - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - repo: - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - - 26 - - 27 - - 28 - - 29 - - 30 - - 31 - - 32 - - 33 - - 34 - - 35 - - 36 - - 37 - - 38 - - 39 - - 40 - - 41 - - 42 - - 43 - - 44 - - 45 - - 46 - - 47 - - 48 - - 49 - - 50 - - 51 - - 52 - - 53 - steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: '16.x' - cache: 'npm' - - run: npm install - - run: ./scripts/top-repos.sh ${{matrix.repo}} - badge_gen: - runs-on: ubuntu-latest - needs: build - steps: - - uses: actions/checkout@v2 - - id: parse_rate - run: echo "##[set-output name=parse_rate;]$(./scripts/calculate-parse-rate.sh)" - - name: BYOB - if: ${{ github.event_name == 'push' }} - uses: RubbaBoy/BYOB@v1.3.0 - with: - NAME: parse_rate - LABEL: 'Parse rate' - STATUS: ${{ steps.parse_rate.outputs.parse_rate }} - COLOR: blue - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/vendored_parsers/tree-sitter-swift/.github/workflows/update-repos.yml b/vendored_parsers/tree-sitter-swift/.github/workflows/update-repos.yml deleted file mode 100644 index 6c4fe195b..000000000 --- a/vendored_parsers/tree-sitter-swift/.github/workflows/update-repos.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Update corpus repository versions - -on: - schedule: - - cron: '12 4 * * 0' - -jobs: - update_repository_versions: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - run: ./scripts/update-top-repos.sh - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/vendored_parsers/tree-sitter-swift/.gitignore b/vendored_parsers/tree-sitter-swift/.gitignore deleted file mode 100644 index 149ec9035..000000000 --- a/vendored_parsers/tree-sitter-swift/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -node_modules -/src/* -!/src/scanner.c -*.swp -/build -Cargo.lock -/target/* -*.a -*.dylib -*.so -*.o -bindings/c/*.h -bindings/c/tree-sitter-*.pc -.vscode/ -/.build diff --git a/vendored_parsers/tree-sitter-swift/.prettierignore b/vendored_parsers/tree-sitter-swift/.prettierignore deleted file mode 100644 index 6b6fdabfc..000000000 --- a/vendored_parsers/tree-sitter-swift/.prettierignore +++ /dev/null @@ -1,3 +0,0 @@ -build -coverage -src diff --git a/vendored_parsers/tree-sitter-swift/.prettierrc.json b/vendored_parsers/tree-sitter-swift/.prettierrc.json deleted file mode 100644 index 0967ef424..000000000 --- a/vendored_parsers/tree-sitter-swift/.prettierrc.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/vendored_parsers/tree-sitter-swift/Cargo.toml b/vendored_parsers/tree-sitter-swift/Cargo.toml deleted file mode 100644 index 75d87727f..000000000 --- a/vendored_parsers/tree-sitter-swift/Cargo.toml +++ /dev/null @@ -1,29 +0,0 @@ -[package] -name = "tree-sitter-swift" -description = "swift grammar for the tree-sitter parsing library" -version = "0.3.4" -keywords = ["incremental", "parsing", "swift"] -categories = ["parsing", "text-editors"] -repository = "https://github.com/alex-pinkus/tree-sitter-swift" -edition = "2018" -license = "MIT" - -build = "bindings/rust/build.rs" -include = [ - "bindings/rust/*", - "grammar.ts", - "queries/*", - "src/*", -] - -[lib] -path = "bindings/rust/lib.rs" - -[dependencies] -tree-sitter = "~0.20.0" - -[build-dependencies] -cc = "1.0" - -[dev-dependencies] -anyhow = "1.0" diff --git a/vendored_parsers/tree-sitter-swift/LICENSE b/vendored_parsers/tree-sitter-swift/LICENSE deleted file mode 100644 index f158d7005..000000000 --- a/vendored_parsers/tree-sitter-swift/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2021 alex-pinkus - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/vendored_parsers/tree-sitter-swift/Makefile b/vendored_parsers/tree-sitter-swift/Makefile deleted file mode 100644 index 720dbf17e..000000000 --- a/vendored_parsers/tree-sitter-swift/Makefile +++ /dev/null @@ -1,118 +0,0 @@ -VERSION := 0.3.4 - -# Repository -SRC_DIR := src - -PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin ) - -ifeq (, $(PARSER_NAME)) - PARSER_NAME := $(shell basename $(PARSER_REPO_URL)) - PARSER_NAME := $(subst tree-sitter-,,$(PARSER_NAME)) - PARSER_NAME := $(subst .git,,$(PARSER_NAME)) -endif - -ifeq (, $(PARSER_URL)) - PARSER_URL := $(subst :,/,$(PARSER_REPO_URL)) - PARSER_URL := $(subst git@,https://,$(PARSER_URL)) - PARSER_URL := $(subst .git,,$(PARSER_URL)) -endif - -UPPER_PARSER_NAME := $(shell echo $(PARSER_NAME) | tr a-z A-Z ) - -# install directory layout -PREFIX ?= /usr/local -INCLUDEDIR ?= $(PREFIX)/include -LIBDIR ?= $(PREFIX)/lib -PCLIBDIR ?= $(LIBDIR)/pkgconfig - -# collect C++ sources, and link if necessary -CPPSRC := $(wildcard $(SRC_DIR)/*.cc) - -ifeq (, $(CPPSRC)) - ADDITIONALLIBS := -else - ADDITIONALLIBS := -lc++ -endif - -# collect sources -SRC := $(wildcard $(SRC_DIR)/*.c) -SRC += $(CPPSRC) -OBJ := $(addsuffix .o,$(basename $(SRC))) - -# ABI versioning -SONAME_MAJOR := 0 -SONAME_MINOR := 0 - -CFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) -CXXFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) -override CFLAGS += -std=gnu99 -fPIC -override CXXFLAGS += -fPIC - -# OS-specific bits -ifeq ($(shell uname),Darwin) - SOEXT = dylib - SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib - SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib - LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, - ifneq ($(ADDITIONALLIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS), - endif - LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/libtree-sitter-$(PARSER_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks -else - SOEXT = so - SOEXTVER_MAJOR = so.$(SONAME_MAJOR) - SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) - LINKSHARED := $(LINKSHARED)-shared -Wl, - ifneq ($(ADDITIONALLIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS) - endif - LINKSHARED := $(LINKSHARED)-soname,libtree-sitter-$(PARSER_NAME).so.$(SONAME_MAJOR) -endif -ifneq (,$(filter $(shell uname),FreeBSD NetBSD DragonFly)) - PCLIBDIR := $(PREFIX)/libdata/pkgconfig -endif - -all: libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXTVER) bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc - -libtree-sitter-$(PARSER_NAME).a: $(OBJ) - $(AR) rcs $@ $^ - -libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) - $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ - ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXT) - ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) - -bindings/c/$(PARSER_NAME).h: - sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ - -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - bindings/c/tree-sitter.h.in > $@ - -bindings/c/tree-sitter-$(PARSER_NAME).pc: - sed -e 's|@LIBDIR@|$(LIBDIR)|;s|@INCLUDEDIR@|$(INCLUDEDIR)|;s|@VERSION@|$(VERSION)|' \ - -e 's|=$(PREFIX)|=$${prefix}|' \ - -e 's|@PREFIX@|$(PREFIX)|' \ - -e 's|@ADDITIONALLIBS@|$(ADDITIONALLIBS)|' \ - -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - -e 's|@PARSERURL@|$(PARSER_URL)|' \ - bindings/c/tree-sitter.pc.in > $@ - -install: all - install -d '$(DESTDIR)$(LIBDIR)' - install -m755 libtree-sitter-$(PARSER_NAME).a '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).a - install -m755 libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER) - ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) - ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXT) - install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter - install -m644 bindings/c/$(PARSER_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ - install -d '$(DESTDIR)$(PCLIBDIR)' - install -m644 bindings/c/tree-sitter-$(PARSER_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/ - -# Regenerate the parser if the grammar file is newer. -src/parser.c: grammar.js - npx tree-sitter generate - -clean: - rm -f $(OBJ) libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXT) libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) libtree-sitter-$(PARSER_NAME).$(SOEXTVER) - rm -f bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc - -.PHONY: all install clean diff --git a/vendored_parsers/tree-sitter-swift/README.md b/vendored_parsers/tree-sitter-swift/README.md deleted file mode 100644 index 5afc44dc6..000000000 --- a/vendored_parsers/tree-sitter-swift/README.md +++ /dev/null @@ -1,125 +0,0 @@ -![Parse rate badge](https://byob.yarr.is/alex-pinkus/tree-sitter-swift/parse_rate) -[![Crates.io badge](https://byob.yarr.is/alex-pinkus/tree-sitter-swift/crates_io_version)](https://crates.io/crates/tree-sitter-swift) -[![NPM badge](https://byob.yarr.is/alex-pinkus/tree-sitter-swift/npm_version)](https://www.npmjs.com/package/tree-sitter-swift) -[![Build](https://github.com/alex-pinkus/tree-sitter-swift/actions/workflows/top-repos.yml/badge.svg)](https://github.com/alex-pinkus/tree-sitter-swift/actions/workflows/top-repos.yml) - -# tree-sitter-swift - -This contains a [`tree-sitter`](https://tree-sitter.github.io/tree-sitter) grammar for the Swift programming language. - -## Getting started - -To use this parser to parse Swift code, you'll want to depend on either the Rust crate or the NPM package. - -### Rust -To use the Rust crate, you'll add this to your `Cargo.toml`: -``` -tree-sitter = "0.20.0" -tree-sitter-swift = "=0.3.4" -``` - -Then you can use a `tree-sitter` parser with the language declared here: - -``` -let mut parser = tree_sitter::Parser::new(); -parser.set_language(tree_sitter_swift::language())?; - -// ... - -let tree = parser.parse(&my_source_code, None) - .ok_or_else(|| /* error handling code */)?; -``` - -### Javascript - -To use this from NPM, you'll add similar dependencies to `package.json`: -``` -"dependencies: { - "tree-sitter-swift": "0.3.4", - "tree-sitter": "^0.20.0" -} -``` - -Your usage of the parser will look like: -``` -const Parser = require("tree-sitter"); -const Swift = require("tree-sitter-swift"); - -const parser = new Parser(); -parser.setLanguage(Swift); - -// ... - -const tree = parser.parse(mySourceCode); -``` - -### Editing the grammar - -With this package checked out, a common workflow for editing the grammar will look something like: - -1. Make a change to `grammar.ts`. -2. Run `npm install && npm test` to see whether the change has had impact on existing parsing behavior. The default -`npm test` target requires `valgrind` to be installed; if you do not have it installed, and do not wish to, you can -substitute `tree-sitter test` directly. -3. Run `tree-sitter parse` on some real Swift codebase and see whether (or where) it fails. -4. Use any failures to create new corpus test cases. - -## Contributions - -If you have a change to make to this parser, and the change is a net positive, please submit a pull request. I mostly -started this parser to teach myself how `tree-sitter` works, and how to write a grammar, so I welcome improvements. If -you have an issue with the parser, please file a bug and include a test case to put in the `corpus`. I can't promise any -level of support, but having the test case makes it more likely that I want to tinker with it. - -## Using tree-sitter-swift in Web Assembly -To use tree-sitter-swift as a language for the web bindings version tree-sitter, which will likely be a more modern version than the published node -module. [see](https://github.com/tree-sitter/tree-sitter/blob/master/lib/binding_web/README.md). Follow the instructions below - -1. Install the node modules `npm install web-tree-sitter tree-sitter-swift` -2. Run the tree-sitter cli to create the wasm bundle - ```sh - $ npx tree-sitter build-asm ./node_modules/tree-sitter - ``` -3. Boot tree-sitter wasm like this. - -```js - -const Parser = require("web-tree-sitter"); -async function run(){ - //needs to happen first - await Parser.init(); - //wait for the load of swift - const Swift = await Parser.Language.load('./tree-sitter-swift.wasm'); - - const parser = new Parser(); - parser.setLanguage(Swift); - - //Parse your swift code here. - const tree = parser.parse('print("Hello, World!")') -} -//if you want to run this -run().then(console.log, console.error); - - -``` - -## Frequently asked questions - -### Where is your `parser.c`? - -This repository currently omits most of the code that is autogenerated during a build. This means, for instance, that -`grammar.json` and `parser.c` are both only available following a build. It also significantly reduces noise during -diffs. - -The side benefit of not checking in `parser.c` is that you can guarantee backwards compatibility. Parsers generated by -the tree-sitter CLI aren't always backwards compatible. If you need a parser, generate it yourself using the CLI; all -the information to do so is available in this package. By doing that, you'll also know for sure that your parser version -and your library version are compatible. - -If you need a `parser.c`, and you don't care about the tree-sitter version, but you don't have a local setup that would -allow you to obtain the parser, you can just download one from a recent workflow run in this package. To do so: -* Go to the [GitHub actions page](https://github.com/alex-pinkus/tree-sitter-swift/actions) for this - repository. -* Click on the "Publish `grammar.json` and `parser.c`" action for the appropriate commit. -* Go down to `Artifacts` and click on `generated-parser-src`. All the relevant parser files will be available in your - download. diff --git a/vendored_parsers/tree-sitter-swift/binding.gyp b/vendored_parsers/tree-sitter-swift/binding.gyp deleted file mode 100644 index 1971e8daa..000000000 --- a/vendored_parsers/tree-sitter-swift/binding.gyp +++ /dev/null @@ -1,19 +0,0 @@ -{ - "targets": [ - { - "target_name": "tree_sitter_swift_binding", - "include_dirs": [ - " - -#ifdef __cplusplus -extern "C" { -#endif - -extern TSLanguage *tree_sitter_@PARSERNAME@(); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_@UPPER_PARSERNAME@_H_ diff --git a/vendored_parsers/tree-sitter-swift/bindings/c/tree-sitter.pc.in b/vendored_parsers/tree-sitter-swift/bindings/c/tree-sitter.pc.in deleted file mode 100644 index 80d60b6db..000000000 --- a/vendored_parsers/tree-sitter-swift/bindings/c/tree-sitter.pc.in +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@PREFIX@ -libdir=@LIBDIR@ -includedir=@INCLUDEDIR@ -additionallibs=@ADDITIONALLIBS@ - -Name: tree-sitter-@PARSERNAME@ -Description: A tree-sitter grammar for the @PARSERNAME@ programming language. -URL: @PARSERURL@ -Version: @VERSION@ -Libs: -L${libdir} ${additionallibs} -ltree-sitter-@PARSERNAME@ -Cflags: -I${includedir} diff --git a/vendored_parsers/tree-sitter-swift/bindings/node/binding.cc b/vendored_parsers/tree-sitter-swift/bindings/node/binding.cc deleted file mode 100644 index 3f4d5f5ba..000000000 --- a/vendored_parsers/tree-sitter-swift/bindings/node/binding.cc +++ /dev/null @@ -1,28 +0,0 @@ -#include "tree_sitter/parser.h" -#include -#include "nan.h" - -using namespace v8; - -extern "C" TSLanguage * tree_sitter_swift(); - -namespace { - -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local tpl = Nan::New(New); - tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - tpl->InstanceTemplate()->SetInternalFieldCount(1); - - Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); - Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(instance, 0, tree_sitter_swift()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("swift").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); -} - -NODE_MODULE(tree_sitter_swift_binding, Init) - -} // namespace diff --git a/vendored_parsers/tree-sitter-swift/bindings/node/index.js b/vendored_parsers/tree-sitter-swift/bindings/node/index.js deleted file mode 100644 index d80aaf76a..000000000 --- a/vendored_parsers/tree-sitter-swift/bindings/node/index.js +++ /dev/null @@ -1,19 +0,0 @@ -try { - module.exports = require("../../build/Release/tree_sitter_swift_binding"); -} catch (error1) { - if (error1.code !== "MODULE_NOT_FOUND") { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_swift_binding"); - } catch (error2) { - if (error2.code !== "MODULE_NOT_FOUND") { - throw error2; - } - throw error1; - } -} - -try { - module.exports.nodeTypeInfo = require("../../src/node-types.json"); -} catch (_) {} diff --git a/vendored_parsers/tree-sitter-swift/bindings/rust/build.rs b/vendored_parsers/tree-sitter-swift/bindings/rust/build.rs deleted file mode 100644 index 8f87ee668..000000000 --- a/vendored_parsers/tree-sitter-swift/bindings/rust/build.rs +++ /dev/null @@ -1,19 +0,0 @@ -fn main() { - let src_dir = std::path::Path::new("src"); - - let mut c_config = cc::Build::new(); - c_config.include(&src_dir); - c_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable") - .flag_if_supported("-Wno-trigraphs"); - let parser_path = src_dir.join("parser.c"); - c_config.file(&parser_path); - - let scanner_path = src_dir.join("scanner.c"); - c_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - - c_config.compile("parser"); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); -} diff --git a/vendored_parsers/tree-sitter-swift/bindings/rust/lib.rs b/vendored_parsers/tree-sitter-swift/bindings/rust/lib.rs deleted file mode 100644 index 5587e0354..000000000 --- a/vendored_parsers/tree-sitter-swift/bindings/rust/lib.rs +++ /dev/null @@ -1,70 +0,0 @@ -//! This crate provides swift language support for the [tree-sitter][] parsing library. -//! -//! Typically, you will use the [language][language func] function to add this language to a -//! tree-sitter [Parser][], and then use the parser to parse some code: -//! -//! ``` -//! let code = ""; -//! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(tree_sitter_swift::language()).expect("Error loading swift grammar"); -//! let tree = parser.parse(code, None).unwrap(); -//! ``` -//! -//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language.html -//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -//! [tree-sitter]: https://tree-sitter.github.io/ - -use tree_sitter::Language; - -extern "C" { - fn tree_sitter_swift() -> Language; -} - -/// Get the tree-sitter [Language][] for this grammar. -/// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_swift() } -} - -/// The content of the [`node-types.json`][] file for this grammar. -/// -/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); - -// Uncomment these to include any queries that this grammar contains - -pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); -// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); -pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); -pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); - -#[cfg(test)] -mod tests { - use anyhow::{anyhow, Result}; - - #[test] - fn test_can_load_grammar() -> Result<()> { - let mut parser = tree_sitter::Parser::new(); - parser.set_language(super::language())?; - - Ok(()) - } - - #[test] - fn test_can_parse_basic_file() -> Result<()> { - let mut parser = tree_sitter::Parser::new(); - parser.set_language(super::language())?; - - let tree = parser.parse("_ = \"Hello!\"\n", None) - .ok_or_else(|| anyhow!("Unable to parse!"))?; - - assert_eq!( - "(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal text: (line_str_text))))", - tree.root_node().to_sexp(), - ); - - Ok(()) - } -} diff --git a/vendored_parsers/tree-sitter-swift/grammar.js b/vendored_parsers/tree-sitter-swift/grammar.js deleted file mode 100644 index 1cfee3986..000000000 --- a/vendored_parsers/tree-sitter-swift/grammar.js +++ /dev/null @@ -1,1834 +0,0 @@ -"use strict"; -/* - * MIT License - * - * Copyright (c) 2021 alex-pinkus - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ -const PRECS = { - multiplication: 11, - addition: 10, - infix_operations: 9, - nil_coalescing: 8, - check: 7, - prefix_operations: 7, - comparison: 6, - postfix_operations: 6, - equality: 5, - conjunction: 4, - disjunction: 3, - block: 2, - loop: 1, - keypath: 1, - control_transfer: 0, - as: -1, - tuple: -1, - if: -1, - switch: -1, - do: -1, - fully_open_range: -1, - range: -1, - navigation: -1, - expr: -1, - ty: -1, - call: -2, - ternary: -2, - try: -2, - call_suffix: -2, - range_suffix: -2, - ternary_binary_suffix: -2, - await: -2, - assignment: -3, - comment: -3, - lambda: -3, - regex: -4, -}; - -const DYNAMIC_PRECS = { - call: 1, -}; - -const DEC_DIGITS = token(sep1(/[0-9]+/, /_+/)); -const HEX_DIGITS = token(sep1(/[0-9a-fA-F]+/, /_+/)); -const OCT_DIGITS = token(sep1(/[0-7]+/, /_+/)); -const BIN_DIGITS = token(sep1(/[01]+/, /_+/)); -const REAL_EXPONENT = token(seq(/[eE]/, optional(/[+-]/), DEC_DIGITS)); - -var LEXICAL_IDENTIFIER; - -if (tree_sitter_version_supports_emoji()) { - LEXICAL_IDENTIFIER = - /[_\p{XID_Start}\p{Emoji}&&[^0-9#*]](\p{EMod}|\x{FE0F}\x{20E3}?)?([_\p{XID_Continue}\p{Emoji}\x{200D}](\p{EMod}|\x{FE0F}\x{20E3}?)?)*/; -} else { - LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; -} - -module.exports = grammar({ - name: "swift", - conflicts: ($) => [ - // @Type(... could either be an annotation constructor invocation or an annotated expression - [$.attribute], - [$._attribute_argument], - // Is `foo { ... }` a constructor invocation or function invocation? - [$._simple_user_type, $._expression], - // To support nested types A.B not being interpreted as `(navigation_expression ... (type_identifier)) (navigation_suffix)` - [$.user_type], - // How to tell the difference between Foo.bar(with:and:), and Foo.bar(with: smth, and: other)? You need GLR - [$.value_argument], - // { (foo, bar) ... - [$._expression, $.lambda_parameter], - [$._primary_expression, $.lambda_parameter], - // (start: start, end: end) - [$._tuple_type_item_identifier, $.tuple_expression], - // After a `{` in a function or switch context, it's ambigous whether we're starting a set of local statements or - // applying some modifiers to a capture or pattern. - [$.modifiers], - // `+(...)` is ambigously either "call the function produced by a reference to the operator `+`" or "use the unary - // operator `+` on the result of the parenthetical expression." - [$._additive_operator, $._prefix_unary_operator], - [$._referenceable_operator, $._prefix_unary_operator], - // `{ [self, b, c] ...` could be a capture list or an array literal depending on what else happens. - [$.capture_list_item, $.self_expression], - [$.capture_list_item, $._expression], - [$.capture_list_item, $._expression, $._simple_user_type], - [$._primary_expression, $.capture_list_item], - // a ? b : c () could be calling c(), or it could be calling a function that's produced by the result of - // `(a ? b : c)`. We have a small hack to force it to be the former of these by intentionally introducing a - // conflict. - [$.call_suffix, $.expr_hack_at_ternary_binary_call_suffix], - // try {expression} is a bit magic and applies quite broadly: `try foo()` and `try foo { }` show that this is right - // associative, and `try foo ? bar() : baz` even more so. But it doesn't always win: something like - // `if try foo { } ...` should award its braces to the `if`. In order to make this actually happen, we need to parse - // all the options and pick the best one that doesn't error out. - [$.try_expression, $._unary_expression], - [$.try_expression, $._expression], - // await {expression} has the same special cases as `try`. - [$.await_expression, $._unary_expression], - [$.await_expression, $._expression], - // In a computed property, when you see an @attribute, it's not yet clear if that's going to be for a - // locally-declared class or a getter / setter specifier. - [ - $._local_property_declaration, - $._local_typealias_declaration, - $._local_function_declaration, - $._local_class_declaration, - $.computed_getter, - $.computed_modify, - $.computed_setter, - ], - // In a lambda literal's capture list, same problem with class attributes vs capture specifier attributes. - [ - $.capture_list, - $._local_property_declaration, - $._local_typealias_declaration, - $._local_function_declaration, - $._local_class_declaration, - ], - // The `class` modifier is legal in many of the same positions that a class declaration itself would be. - [$._bodyless_function_declaration, $.property_modifier], - [$._local_class_declaration, $.modifiers], - // Patterns, man - [$._navigable_type_expression, $._case_pattern], - [$._no_expr_pattern_already_bound, $._binding_pattern_with_expr], - [$._no_expr_pattern_already_bound, $._expression], - [$._no_expr_pattern_already_bound, $._binding_pattern_no_expr], - - // On encountering a closure starting with `{ @Foo ...`, we don't yet know if that attribute applies to the closure - // type or to a declaration within the closure. What a mess! We just have to hope that if we keep going, only one of - // those will parse (because there will be an `in` or a `let`). - [ - $._lambda_type_declaration, - $._local_property_declaration, - $._local_typealias_declaration, - $._local_function_declaration, - $._local_class_declaration, - ], - - // We want `foo() { }` to be treated as one function call, but we _also_ want `if foo() { ... }` to be treated as a - // full if-statement. This means we have to treat it as a conflict rather than purely a left or right associative - // construct, and let the parser realize that the second expression won't parse properly with the `{ ... }` as a - // lambda. - [$.constructor_suffix], - [$.call_suffix], - - // `actor` is allowed to be an identifier, even though it is also a locally permitted declaration. If we encounter - // it, the only way to know what it's meant to be is to keep going. - [$._modifierless_class_declaration, $.property_modifier], - [$._modifierless_class_declaration, $.simple_identifier], - [$._fn_call_lambda_arguments], - ], - extras: ($) => [ - $.comment, - $.multiline_comment, - $.directive, - $.diagnostic, - /\s+/, // Whitespace - ], - externals: ($) => [ - // Comments and raw strings are parsed in a custom scanner because they require us to carry forward state to - // maintain symmetry. For instance, parsing a multiline comment requires us to increment a counter whenever we see - // `/*`, and decrement it whenever we see `*/`. A standard grammar would only be able to exit the comment at the - // first `*/` (like C does). Similarly, when you start a string with `##"`, you're required to include the same - // number of `#` symbols to end it. - $.multiline_comment, - $.raw_str_part, - $.raw_str_continuing_indicator, - $.raw_str_end_part, - // Because Swift doesn't have explicit semicolons, we also do some whitespace handling in a custom scanner. Line - // breaks are _sometimes_ meaningful as the end of a statement: try to write `let foo: Foo let bar: Bar`, for - // instance and the compiler will complain, but add either a newline or a semicolon and it's fine. We borrow the - // idea from the Kotlin grammar that a newline is sometimes a "semicolon". By including `\n` in both `_semi` and - // an anonymous `whitespace` extras, we _should_ be able to let the parser decide if a newline is meaningful. If the - // parser sees something like `foo.bar(1\n)`, it knows that a "semicolon" would not be valid there, so it parses - // that as whitespace. On the other hand, `let foo: Foo\n let bar: Bar` has a meaningful newline. - // Unfortunately, we can't simply stop at that. There are some expressions and statements that remain valid if you - // end them early, but are expected to be parsed across multiple lines. One particular nefarious example is a - // function declaration, where you might have something like `func foo(args: A) -> Foo throws where A: Hashable`. - // This would still be a valid declaration even if it ended after the `)`, the `Foo`, or the `throws`, so a grammar - // that simply interprets a newline as "sometimes a semi" would parse those incorrectly. - // To solve that case, our custom scanner must do a bit of extra lookahead itself. If we're about to generate a - // `_semi`, we advance a bit further to see if the next non-whitespace token would be one of these other operators. - // If so, we ignore the `_semi` and just produce the operator; if not, we produce the `_semi` and let the rest of - // the grammar sort it out. This isn't perfect, but it works well enough most of the time. - $._implicit_semi, - $._explicit_semi, - // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. - $._arrow_operator_custom, - $._dot_custom, - $._conjunction_operator_custom, - $._disjunction_operator_custom, - $._nil_coalescing_operator_custom, - $._eq_custom, - $._eq_eq_custom, - $._plus_then_ws, - $._minus_then_ws, - $.bang, - $._throws_keyword, - $._rethrows_keyword, - $.default_keyword, - $.where_keyword, - $["else"], - $.catch_keyword, - $._as_custom, - $._as_quest_custom, - $._as_bang_custom, - $._async_keyword_custom, - $._custom_operator, - ], - inline: ($) => [$._locally_permitted_modifiers], - rules: { - //////////////////////////////// - // File Structure - //////////////////////////////// - source_file: ($) => - seq( - optional($.shebang_line), - optional( - seq( - $._top_level_statement, - repeat(seq($._semi, $._top_level_statement)), - optional($._semi) - ) - ) - ), - _semi: ($) => choice($._implicit_semi, $._explicit_semi), - shebang_line: ($) => seq("#!", /[^\r\n]*/), - //////////////////////////////// - // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html - //////////////////////////////// - comment: ($) => token(prec(PRECS.comment, seq("//", /.*/))), - // Identifiers - simple_identifier: ($) => - choice( - LEXICAL_IDENTIFIER, - /`[^\r\n` ]*`/, - /\$[0-9]+/, - token(seq("$", LEXICAL_IDENTIFIER)), - "actor" - ), - identifier: ($) => sep1($.simple_identifier, $._dot), - // Literals - _basic_literal: ($) => - choice( - $.integer_literal, - $.hex_literal, - $.oct_literal, - $.bin_literal, - $.real_literal, - $.boolean_literal, - $._string_literal, - $.regex_literal, - "nil" - ), - // TODO: Hex exponents - real_literal: ($) => - token( - choice( - seq(DEC_DIGITS, REAL_EXPONENT), - seq(optional(DEC_DIGITS), ".", DEC_DIGITS, optional(REAL_EXPONENT)) - ) - ), - integer_literal: ($) => token(seq(optional(/[1-9]/), DEC_DIGITS)), - hex_literal: ($) => token(seq("0", /[xX]/, HEX_DIGITS)), - oct_literal: ($) => token(seq("0", /[oO]/, OCT_DIGITS)), - bin_literal: ($) => token(seq("0", /[bB]/, BIN_DIGITS)), - boolean_literal: ($) => choice("true", "false"), - // String literals - _string_literal: ($) => - choice( - $.line_string_literal, - $.multi_line_string_literal, - $.raw_string_literal - ), - line_string_literal: ($) => - seq( - '"', - repeat(choice(field("text", $._line_string_content), $._interpolation)), - '"' - ), - _line_string_content: ($) => choice($.line_str_text, $.str_escaped_char), - line_str_text: ($) => /[^\\"]+/, - str_escaped_char: ($) => - choice($._escaped_identifier, $._uni_character_literal), - _uni_character_literal: ($) => seq("\\", "u", /\{[0-9a-fA-F]+\}/), - multi_line_string_literal: ($) => - seq( - '"""', - repeat( - choice(field("text", $._multi_line_string_content), $._interpolation) - ), - '"""' - ), - raw_string_literal: ($) => - seq( - repeat( - seq( - field("text", $.raw_str_part), - field("interpolation", $.raw_str_interpolation), - optional($.raw_str_continuing_indicator) - ) - ), - field("text", $.raw_str_end_part) - ), - raw_str_interpolation: ($) => - seq($.raw_str_interpolation_start, $._interpolation_contents, ")"), - raw_str_interpolation_start: ($) => /\\#*\(/, - _multi_line_string_content: ($) => - choice($.multi_line_str_text, $.str_escaped_char, '"'), - _interpolation: ($) => seq("\\(", $._interpolation_contents, ")"), - _interpolation_contents: ($) => - sep1( - field( - "interpolation", - alias($.value_argument, $.interpolated_expression) - ), - "," - ), - _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, - multi_line_str_text: ($) => /[^\\"]+/, - // Based on https://gitlab.com/woolsweater/tree-sitter-swifter/-/blob/3d47c85bd47ce54cdf2023a9c0e01eb90adfcc1d/grammar.js#L1019 - // But required modifications to hit all of the cases in SE-354 - regex_literal: ($) => - choice( - $._extended_regex_literal, - $._multiline_regex_literal, - $._oneline_regex_literal - ), - - _extended_regex_literal: ($) => /#\/((\/[^#])|[^\n])+\/#/, - - _multiline_regex_literal: ($) => seq(/#\/\n/, /(\/[^#]|[^/])*?\n\/#/), - - _oneline_regex_literal: ($) => - token( - prec( - PRECS.regex, - seq( - "/", - token.immediate(/[^ \t\n]?[^/\n]*[^ \t\n/]/), - token.immediate("/") - ) - ) - ), - //////////////////////////////// - // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html - //////////////////////////////// - type_annotation: ($) => - seq(":", field("type", $._possibly_implicitly_unwrapped_type)), - _possibly_implicitly_unwrapped_type: ($) => - seq($._type, optional(token.immediate("!"))), - _type: ($) => - prec.right( - PRECS.ty, - seq(optional($.type_modifiers), field("name", $._unannotated_type)) - ), - _unannotated_type: ($) => - prec.right( - PRECS.ty, - choice( - $.user_type, - $.tuple_type, - $.function_type, - $.array_type, - $.dictionary_type, - $.optional_type, - $.metatype, - $.opaque_type, - $.existential_type, - $.protocol_composition_type - ) - ), - // The grammar just calls this whole thing a `type-identifier` but that's a bit confusing. - user_type: ($) => sep1($._simple_user_type, $._dot), - _simple_user_type: ($) => - prec.right( - PRECS.ty, - seq( - alias($.simple_identifier, $.type_identifier), - optional($.type_arguments) - ) - ), - tuple_type: ($) => - seq("(", optional(sep1(field("element", $.tuple_type_item), ",")), ")"), - tuple_type_item: ($) => - prec( - PRECS.expr, - seq( - optional($._tuple_type_item_identifier), - optional($.parameter_modifiers), - field("type", $._type) - ) - ), - _tuple_type_item_identifier: ($) => - prec( - PRECS.expr, - seq( - optional($.wildcard_pattern), - field("name", $.simple_identifier), - ":" - ) - ), - function_type: ($) => - seq( - field("params", choice($.tuple_type, $._unannotated_type)), - optional($._async_keyword), - optional($.throws), - $._arrow_operator, - field("return_type", $._type) - ), - array_type: ($) => seq("[", field("element", $._type), "]"), - dictionary_type: ($) => - seq("[", field("key", $._type), ":", field("value", $._type), "]"), - optional_type: ($) => - prec.left( - seq( - field( - "wrapped", - choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type) - ), - repeat1(alias($._immediate_quest, "?")) - ) - ), - metatype: ($) => seq($._unannotated_type, ".", choice("Type", "Protocol")), - _quest: ($) => "?", - _immediate_quest: ($) => token.immediate("?"), - opaque_type: ($) => prec.right(seq("some", $._unannotated_type)), - existential_type: ($) => prec.right(seq("any", $._unannotated_type)), - protocol_composition_type: ($) => - prec.left( - seq( - $._unannotated_type, - repeat1(seq("&", prec.right($._unannotated_type))) - ) - ), - //////////////////////////////// - // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html - //////////////////////////////// - _expression: ($) => - prec( - PRECS.expr, - choice( - $.simple_identifier, - $._unary_expression, - $._binary_expression, - $.ternary_expression, - $._primary_expression, - $.assignment, - seq($._expression, alias($._immediate_quest, "?")), - alias("async", $.simple_identifier) - ) - ), - // Unary expressions - _unary_expression: ($) => - choice( - $.postfix_expression, - $.call_expression, - $.constructor_expression, - $.navigation_expression, - $.prefix_expression, - $.as_expression, - $.selector_expression, - $.open_start_range_expression, - $.open_end_range_expression - ), - postfix_expression: ($) => - prec.left( - PRECS.postfix_operations, - seq( - field("target", $._expression), - field("operation", $._postfix_unary_operator) - ) - ), - constructor_expression: ($) => - prec( - PRECS.call, - seq( - field( - "constructed_type", - choice($.array_type, $.dictionary_type, $.user_type) - ), - $.constructor_suffix - ) - ), - navigation_expression: ($) => - prec.left( - PRECS.navigation, - seq( - field("target", choice($._navigable_type_expression, $._expression)), - field("suffix", $.navigation_suffix) - ) - ), - _navigable_type_expression: ($) => - choice($.user_type, $.array_type, $.dictionary_type), - open_start_range_expression: ($) => - prec.right( - PRECS.range, - seq( - $._range_operator, - prec.right(PRECS.range_suffix, field("end", $._expression)) - ) - ), - _range_operator: ($) => - choice($._open_ended_range_operator, $._three_dot_operator), - open_end_range_expression: ($) => - prec.right( - PRECS.range, - seq(field("start", $._expression), $._three_dot_operator) - ), - prefix_expression: ($) => - prec.left( - PRECS.prefix_operations, - seq( - field("operation", $._prefix_unary_operator), - field("target", $._expression) - ) - ), - as_expression: ($) => - prec.left( - PRECS.as, - seq(field("expr", $._expression), $.as_operator, field("type", $._type)) - ), - selector_expression: ($) => - seq( - "#selector", - "(", - optional(choice("getter:", "setter:")), - $._expression, - ")" - ), - // Binary expressions - _binary_expression: ($) => - choice( - $.multiplicative_expression, - $.additive_expression, - $.range_expression, - $.infix_expression, - $.nil_coalescing_expression, - $.check_expression, - $.equality_expression, - $.comparison_expression, - $.conjunction_expression, - $.disjunction_expression, - $.bitwise_operation - ), - multiplicative_expression: ($) => - prec.left( - PRECS.multiplication, - seq( - field("lhs", $._expression), - field("op", $._multiplicative_operator), - field("rhs", $._expression) - ) - ), - additive_expression: ($) => - prec.left( - PRECS.addition, - seq( - field("lhs", $._expression), - field("op", $._additive_operator), - field("rhs", $._expression) - ) - ), - range_expression: ($) => - prec.right( - PRECS.range, - seq( - field("start", $._expression), - field("op", $._range_operator), - field("end", $._expr_hack_at_ternary_binary_suffix) - ) - ), - infix_expression: ($) => - prec.left( - PRECS.infix_operations, - seq( - field("lhs", $._expression), - field("op", $.custom_operator), - field("rhs", $._expr_hack_at_ternary_binary_suffix) - ) - ), - nil_coalescing_expression: ($) => - prec.right( - PRECS.nil_coalescing, - seq( - field("value", $._expression), - $._nil_coalescing_operator, - field("if_nil", $._expr_hack_at_ternary_binary_suffix) - ) - ), - check_expression: ($) => - prec.left( - PRECS.check, - seq( - field("target", $._expression), - field("op", $._is_operator), - field("type", $._type) - ) - ), - comparison_expression: ($) => - prec.left( - seq( - field("lhs", $._expression), - field("op", $._comparison_operator), - field("rhs", $._expr_hack_at_ternary_binary_suffix) - ) - ), - equality_expression: ($) => - prec.left( - PRECS.equality, - seq( - field("lhs", $._expression), - field("op", $._equality_operator), - field("rhs", $._expr_hack_at_ternary_binary_suffix) - ) - ), - conjunction_expression: ($) => - prec.left( - PRECS.conjunction, - seq( - field("lhs", $._expression), - field("op", $._conjunction_operator), - field("rhs", $._expr_hack_at_ternary_binary_suffix) - ) - ), - disjunction_expression: ($) => - prec.left( - PRECS.disjunction, - seq( - field("lhs", $._expression), - field("op", $._disjunction_operator), - field("rhs", $._expr_hack_at_ternary_binary_suffix) - ) - ), - bitwise_operation: ($) => - prec.left( - seq( - field("lhs", $._expression), - field("op", $._bitwise_binary_operator), - field("rhs", $._expr_hack_at_ternary_binary_suffix) - ) - ), - custom_operator: ($) => choice(token(/[\/]+[*]+/), $._custom_operator), - // Suffixes - navigation_suffix: ($) => - seq( - $._dot, - field("suffix", choice($.simple_identifier, $.integer_literal)) - ), - call_suffix: ($) => - prec( - PRECS.call_suffix, - choice( - $.value_arguments, - prec.dynamic(-1, $._fn_call_lambda_arguments), // Prefer to treat `foo() { }` as one call not two - seq($.value_arguments, $._fn_call_lambda_arguments) - ) - ), - constructor_suffix: ($) => - prec( - PRECS.call_suffix, - choice( - alias($._constructor_value_arguments, $.value_arguments), - prec.dynamic(-1, $._fn_call_lambda_arguments), // As above - seq( - alias($._constructor_value_arguments, $.value_arguments), - $._fn_call_lambda_arguments - ) - ) - ), - _constructor_value_arguments: ($) => - seq("(", optional(sep1($.value_argument, ",")), ")"), - _fn_call_lambda_arguments: ($) => - sep1($.lambda_literal, seq(field("name", $.simple_identifier), ":")), - type_arguments: ($) => prec.left(seq("<", sep1($._type, ","), ">")), - value_arguments: ($) => - seq( - choice( - seq("(", optional(sep1($.value_argument, ",")), ")"), - seq("[", optional(sep1($.value_argument, ",")), "]") - ) - ), - value_argument: ($) => - prec.left( - seq( - optional($.type_modifiers), - choice( - repeat1( - seq(field("reference_specifier", $.simple_identifier), ":") - ), - seq( - optional( - seq( - field( - "name", - choice( - $.simple_identifier, - alias("async", $.simple_identifier) - ) - ), - ":" - ) - ), - field("value", $._expression) - ) - ) - ) - ), - try_expression: ($) => - prec.right( - PRECS["try"], - seq( - $._try_operator, - field( - "expr", - choice( - // Prefer direct calls, e.g. `try foo()`, over indirect like `try a ? b() : c`. This allows us to have - // left associativity for the direct calls, which is technically wrong but is the only way to resolve the - // ambiguity of `if foo { ... }` in the correct direction. - prec.right(-2, $._expression), - prec.left(0, $._binary_expression), - prec.left(0, $.call_expression), - // Similarly special case the ternary expression, where `try` may come earlier than it is actually needed. - // When the parser just encounters some identifier after a `try`, it should prefer the `call_expression` (so - // this should be lower in priority than that), but when we encounter an ambiguous expression that might be - // either `try (foo() ? ...)` or `(try foo()) ? ...`, we should prefer the former. We accomplish that by - // giving it a _static precedence_ of -1 but a _dynamic precedence_ of 1. - prec.dynamic(1, prec.left(-1, $.ternary_expression)) - ) - ) - ) - ), - await_expression: ($) => - prec.right( - PRECS.await, - seq( - $._await_operator, - field( - "expr", - choice( - // Prefer direct calls over indirect (same as with `try`). - prec.right(-2, $._expression), - prec.left(0, $.call_expression), - // Special case ternary to `await` the whole thing (same as with `try`). - prec.dynamic(1, prec.left(-1, $.ternary_expression)) - ) - ) - ) - ), - _await_operator: ($) => alias("await", "await"), - ternary_expression: ($) => - prec.right( - PRECS.ternary, - seq( - field("condition", $._expression), - $._quest, - field("if_true", $._expression), - ":", - field("if_false", $._expr_hack_at_ternary_binary_suffix) - ) - ), - _expr_hack_at_ternary_binary_suffix: ($) => - prec.left( - PRECS.ternary_binary_suffix, - choice( - $._expression, - alias($.expr_hack_at_ternary_binary_call, $.call_expression) - ) - ), - expr_hack_at_ternary_binary_call: ($) => - seq( - $._expression, - alias($.expr_hack_at_ternary_binary_call_suffix, $.call_suffix) - ), - expr_hack_at_ternary_binary_call_suffix: ($) => - prec(PRECS.call_suffix, $.value_arguments), - call_expression: ($) => - prec( - PRECS.call, - prec.dynamic(DYNAMIC_PRECS.call, seq($._expression, $.call_suffix)) - ), - _primary_expression: ($) => - choice( - $.tuple_expression, - $._basic_literal, - $.lambda_literal, - $._special_literal, - $._playground_literal, - $.array_literal, - $.dictionary_literal, - $.self_expression, - $.super_expression, - $.try_expression, - $.await_expression, - $._referenceable_operator, - $.key_path_expression, - $.key_path_string_expression, - prec.right( - PRECS.fully_open_range, - alias($._three_dot_operator, $.fully_open_range) - ) - ), - tuple_expression: ($) => - prec.right( - PRECS.tuple, - seq( - "(", - sep1( - seq( - optional(seq(field("name", $.simple_identifier), ":")), - field("value", $._expression) - ), - "," - ), - ")" - ) - ), - array_literal: ($) => - seq( - "[", - optional(sep1(field("element", $._expression), ",")), - optional(","), - "]" - ), - dictionary_literal: ($) => - seq( - "[", - choice(":", sep1($._dictionary_literal_item, ",")), - optional(","), - "]" - ), - _dictionary_literal_item: ($) => - seq(field("key", $._expression), ":", field("value", $._expression)), - _special_literal: ($) => - choice( - "#file", - "#fileID", - "#filePath", - "#line", - "#column", - "#function", - "#dsohandle" - ), - _playground_literal: ($) => - seq( - choice("#colorLiteral", "#fileLiteral", "#imageLiteral"), - "(", - sep1(seq($.simple_identifier, ":", $._expression), ","), - ")" - ), - lambda_literal: ($) => - prec.left( - PRECS.lambda, - seq( - choice("{", "^{"), - optional($._lambda_type_declaration), - optional($.statements), - "}" - ) - ), - _lambda_type_declaration: ($) => - seq( - repeat($.attribute), - prec(PRECS.expr, optional(field("captures", $.capture_list))), - optional(field("type", $.lambda_function_type)), - "in" - ), - capture_list: ($) => seq("[", sep1($.capture_list_item, ","), "]"), - capture_list_item: ($) => - choice( - field("name", $.self_expression), - prec( - PRECS.expr, - seq( - optional($.ownership_modifier), - field("name", $.simple_identifier), - optional(seq($._equal_sign, field("value", $._expression))) - ) - ) - ), - lambda_function_type: ($) => - prec( - PRECS.expr, - seq( - choice( - $.lambda_function_type_parameters, - seq("(", optional($.lambda_function_type_parameters), ")") - ), - optional($._async_keyword), - optional($.throws), - optional( - seq( - $._arrow_operator, - field("return_type", $._possibly_implicitly_unwrapped_type) - ) - ) - ) - ), - lambda_function_type_parameters: ($) => sep1($.lambda_parameter, ","), - lambda_parameter: ($) => - seq( - choice( - $.self_expression, - prec(PRECS.expr, field("name", $.simple_identifier)), - prec( - PRECS.expr, - seq( - optional(field("external_name", $.simple_identifier)), - field("name", $.simple_identifier), - ":", - optional($.parameter_modifiers), - field("type", $._possibly_implicitly_unwrapped_type) - ) - ) - ) - ), - self_expression: ($) => "self", - super_expression: ($) => seq("super"), - _else_options: ($) => choice($._block, $.if_statement), - if_statement: ($) => - prec.right( - PRECS["if"], - seq( - "if", - sep1(field("condition", $._if_condition_sequence_item), ","), - $._block, - optional(seq($["else"], $._else_options)) - ) - ), - _if_condition_sequence_item: ($) => - choice($._if_let_binding, $._expression, $.availability_condition), - _if_let_binding: ($) => - seq( - $._direct_or_indirect_binding, - optional(seq($._equal_sign, $._expression)), - optional($.where_clause) - ), - guard_statement: ($) => - prec.right( - PRECS["if"], - seq( - "guard", - sep1(field("condition", $._if_condition_sequence_item), ","), - $["else"], - $._block - ) - ), - switch_statement: ($) => - prec.right( - PRECS["switch"], - seq( - "switch", - field("expr", $._expression), - "{", - repeat($.switch_entry), - "}" - ) - ), - switch_entry: ($) => - seq( - optional($.modifiers), - choice( - seq( - "case", - seq( - $.switch_pattern, - optional(seq($.where_keyword, $._expression)) - ), - repeat(seq(",", $.switch_pattern)) - ), - $.default_keyword - ), - ":", - $.statements, - optional("fallthrough") - ), - switch_pattern: ($) => alias($._binding_pattern_with_expr, $.pattern), - do_statement: ($) => - prec.right(PRECS["do"], seq("do", $._block, repeat($.catch_block))), - catch_block: ($) => - seq( - $.catch_keyword, - field("error", optional(alias($._binding_pattern_no_expr, $.pattern))), - optional($.where_clause), - $._block - ), - where_clause: ($) => prec.left(seq($.where_keyword, $._expression)), - key_path_expression: ($) => - prec.right( - PRECS.keypath, - seq( - "\\", - optional( - choice($._simple_user_type, $.array_type, $.dictionary_type) - ), - repeat(seq(".", $._key_path_component)) - ) - ), - key_path_string_expression: ($) => - prec.left(seq("#keyPath", "(", $._expression, ")")), - _key_path_component: ($) => - prec.left( - choice( - seq($.simple_identifier, repeat($._key_path_postfixes)), - repeat1($._key_path_postfixes) - ) - ), - _key_path_postfixes: ($) => - choice( - "?", - $.bang, - "self", - seq("[", optional(sep1($.value_argument, ",")), "]") - ), - _try_operator: ($) => choice("try", "try!", "try?"), - _assignment_and_operator: ($) => choice("+=", "-=", "*=", "/=", "%=", "="), - _equality_operator: ($) => choice("!=", "!==", $._eq_eq, "==="), - _comparison_operator: ($) => choice("<", ">", "<=", ">="), - _three_dot_operator: ($) => alias("...", "..."), // Weird alias to satisfy highlight queries - _open_ended_range_operator: ($) => alias("..<", "..<"), - _is_operator: ($) => "is", - _additive_operator: ($) => - choice( - alias($._plus_then_ws, "+"), - alias($._minus_then_ws, "-"), - "+", - "-" - ), - // The `/` operator conflicts with a regex literal (which itself appears to conflict with a - // comment, for some reason), so we must give it equivalent token precedence. - _multiplicative_operator: ($) => - choice("*", alias(token(prec(PRECS.regex, "/")), "/"), "%"), - as_operator: ($) => choice($._as, $._as_quest, $._as_bang), - _prefix_unary_operator: ($) => - prec.right( - choice( - "++", - "--", - "-", - "+", - $.bang, - "&", - "~", - $._dot, - $.custom_operator - ) - ), - _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), - _postfix_unary_operator: ($) => choice("++", "--", $.bang), - directly_assignable_expression: ($) => - choice( - $.simple_identifier, - $.navigation_expression, - $.call_expression, - $.tuple_expression, - $.self_expression, - $.postfix_expression // Since `x[...]! = y` is legal - ), - //////////////////////////////// - // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html - //////////////////////////////// - statements: ($) => - prec.left( - // Left precedence is required in switch statements - seq( - $._local_statement, - repeat(seq($._semi, $._local_statement)), - optional($._semi) - ) - ), - _local_statement: ($) => - choice( - $._expression, - $._local_declaration, - $._labeled_statement, - $.control_transfer_statement - ), - _top_level_statement: ($) => - choice( - $._expression, - $._global_declaration, - $._labeled_statement, - $._throw_statement - ), - _block: ($) => prec(PRECS.block, seq("{", optional($.statements), "}")), - _labeled_statement: ($) => - seq( - optional($.statement_label), - choice( - $.for_statement, - $.while_statement, - $.repeat_while_statement, - $.do_statement, - $.if_statement, - $.guard_statement, - $.switch_statement - ) - ), - statement_label: ($) => token(/[a-zA-Z_][a-zA-Z_0-9]*:/), - for_statement: ($) => - prec( - PRECS.loop, - seq( - "for", - optional($._try_operator), - optional($._await_operator), - field("item", alias($._binding_pattern_no_expr, $.pattern)), - optional($.type_annotation), - "in", - field("collection", $._expression), - optional($.where_clause), - $._block - ) - ), - while_statement: ($) => - prec( - PRECS.loop, - seq( - "while", - sep1(field("condition", $._if_condition_sequence_item), ","), - "{", - optional($.statements), - "}" - ) - ), - repeat_while_statement: ($) => - prec( - PRECS.loop, - seq( - "repeat", - "{", - optional($.statements), - "}", - "while", - sep1(field("condition", $._if_condition_sequence_item), ",") - ) - ), - control_transfer_statement: ($) => - choice( - prec.right(PRECS.control_transfer, $._throw_statement), - prec.right( - PRECS.control_transfer, - seq( - $._optionally_valueful_control_keyword, - field("result", optional($._expression)) - ) - ) - ), - _throw_statement: ($) => seq($.throw_keyword, $._expression), - throw_keyword: ($) => "throw", - _optionally_valueful_control_keyword: ($) => - choice("return", "continue", "break", "yield"), - assignment: ($) => - prec.left( - PRECS.assignment, - seq( - field("target", $.directly_assignable_expression), - field("operator", $._assignment_and_operator), - field("result", $._expression) - ) - ), - availability_condition: ($) => - seq("#available", "(", sep1($._availability_argument, ","), ")"), - _availability_argument: ($) => - choice(seq($.identifier, sep1($.integer_literal, ".")), "*"), - //////////////////////////////// - // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html - //////////////////////////////// - _global_declaration: ($) => - choice( - $.import_declaration, - $.property_declaration, - $.typealias_declaration, - $.function_declaration, - $.class_declaration, - $.protocol_declaration, - $.operator_declaration, - $.precedence_group_declaration, - $.associatedtype_declaration - ), - _type_level_declaration: ($) => - choice( - $.import_declaration, - $.property_declaration, - $.typealias_declaration, - $.function_declaration, - $.class_declaration, - $.protocol_declaration, - $.deinit_declaration, - $.subscript_declaration, - $.operator_declaration, - $.precedence_group_declaration, - $.associatedtype_declaration - ), - _local_declaration: ($) => - choice( - alias($._local_property_declaration, $.property_declaration), - alias($._local_typealias_declaration, $.typealias_declaration), - alias($._local_function_declaration, $.function_declaration), - alias($._local_class_declaration, $.class_declaration) - ), - _local_property_declaration: ($) => - seq( - optional($._locally_permitted_modifiers), - $._modifierless_property_declaration - ), - _local_typealias_declaration: ($) => - seq( - optional($._locally_permitted_modifiers), - $._modifierless_typealias_declaration - ), - _local_function_declaration: ($) => - seq( - optional($._locally_permitted_modifiers), - $._modifierless_function_declaration - ), - _local_class_declaration: ($) => - seq( - optional($._locally_permitted_modifiers), - $._modifierless_class_declaration - ), - import_declaration: ($) => - seq( - optional($.modifiers), - "import", - optional($._import_kind), - $.identifier - ), - _import_kind: ($) => - choice( - "typealias", - "struct", - "class", - "enum", - "protocol", - "let", - "var", - "func" - ), - protocol_property_declaration: ($) => - prec.right( - seq( - optional($.modifiers), - field("name", alias($._binding_kind_and_pattern, $.pattern)), - optional($.type_annotation), - optional($.type_constraints), - $.protocol_property_requirements - ) - ), - protocol_property_requirements: ($) => - seq("{", repeat(choice($.getter_specifier, $.setter_specifier)), "}"), - property_declaration: ($) => - seq(optional($.modifiers), $._modifierless_property_declaration), - _modifierless_property_declaration: ($) => - prec.right( - seq( - $._possibly_async_binding_pattern_kind, - sep1($._single_modifierless_property_declaration, ",") - ) - ), - _single_modifierless_property_declaration: ($) => - seq( - field("name", alias($._no_expr_pattern_already_bound, $.pattern)), - optional($.type_annotation), - optional($.type_constraints), - optional( - choice( - seq($._equal_sign, field("value", $._expression)), - field("computed_value", $.computed_property) - ) - ) - ), - typealias_declaration: ($) => - seq(optional($.modifiers), $._modifierless_typealias_declaration), - _modifierless_typealias_declaration: ($) => - seq( - "typealias", - field("name", alias($.simple_identifier, $.type_identifier)), - optional($.type_parameters), - $._equal_sign, - field("value", $._type) - ), - function_declaration: ($) => - prec.right( - seq($._bodyless_function_declaration, field("body", $.function_body)) - ), - _modifierless_function_declaration: ($) => - prec.right( - seq( - $._modifierless_function_declaration_no_body, - field("body", $.function_body) - ) - ), - _bodyless_function_declaration: ($) => - seq( - optional($.modifiers), - optional("class"), // XXX: This should be possible in non-last position, but that creates parsing ambiguity - $._modifierless_function_declaration_no_body - ), - _modifierless_function_declaration_no_body: ($) => - prec.right( - seq( - choice( - $._constructor_function_decl, - $._non_constructor_function_decl - ), - optional($.type_parameters), - $._function_value_parameters, - optional($._async_keyword), - optional($.throws), - optional( - seq( - $._arrow_operator, - field("return_type", $._possibly_implicitly_unwrapped_type) - ) - ), - optional($.type_constraints) - ) - ), - function_body: ($) => $._block, - class_declaration: ($) => - seq(optional($.modifiers), $._modifierless_class_declaration), - _modifierless_class_declaration: ($) => - prec.right( - choice( - seq( - field("declaration_kind", choice("class", "struct", "actor")), - field("name", alias($.simple_identifier, $.type_identifier)), - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - field("body", $.class_body) - ), - seq( - field("declaration_kind", "extension"), - field("name", $._unannotated_type), - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - field("body", $.class_body) - ), - seq( - optional("indirect"), - field("declaration_kind", "enum"), - field("name", alias($.simple_identifier, $.type_identifier)), - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - field("body", $.enum_class_body) - ) - ) - ), - class_body: ($) => seq("{", optional($._class_member_declarations), "}"), - _inheritance_specifiers: ($) => - prec.left(sep1($._annotated_inheritance_specifier, choice(",", "&"))), - inheritance_specifier: ($) => - prec.left(field("inherits_from", choice($.user_type, $.function_type))), - _annotated_inheritance_specifier: ($) => - seq(repeat($.attribute), $.inheritance_specifier), - type_parameters: ($) => - seq("<", sep1($.type_parameter, ","), optional($.type_constraints), ">"), - type_parameter: ($) => - seq( - optional($.type_parameter_modifiers), - alias($.simple_identifier, $.type_identifier), - optional(seq(":", $._type)) - ), - type_constraints: ($) => - prec.right(seq($.where_keyword, sep1($.type_constraint, ","))), - type_constraint: ($) => - choice($.inheritance_constraint, $.equality_constraint), - inheritance_constraint: ($) => - seq( - repeat($.attribute), - field("constrained_type", $.identifier), - ":", - field("inherits_from", $._possibly_implicitly_unwrapped_type) - ), - equality_constraint: ($) => - seq( - repeat($.attribute), - field("constrained_type", $.identifier), - choice($._equal_sign, $._eq_eq), - field("must_equal", $._type) - ), - _class_member_separator: ($) => choice($._semi, $.multiline_comment), - _class_member_declarations: ($) => - seq( - sep1($._type_level_declaration, $._class_member_separator), - optional($._class_member_separator) - ), - _function_value_parameters: ($) => - repeat1(seq("(", optional(sep1($._function_value_parameter, ",")), ")")), - _function_value_parameter: ($) => - seq( - optional($.attribute), - $.parameter, - optional(seq($._equal_sign, field("default_value", $._expression))) - ), - parameter: ($) => - seq( - optional(field("external_name", $.simple_identifier)), - field("name", $.simple_identifier), - ":", - optional($.parameter_modifiers), - field("type", $._possibly_implicitly_unwrapped_type), - optional($._three_dot_operator) - ), - _constructor_function_decl: ($) => - seq(field("name", "init"), optional(choice($._quest, $.bang))), - _non_constructor_function_decl: ($) => - seq( - "func", - field("name", choice($.simple_identifier, $._referenceable_operator)) - ), - _referenceable_operator: ($) => - choice( - $.custom_operator, - $._comparison_operator, - $._additive_operator, - $._multiplicative_operator, - $._equality_operator, - $._comparison_operator, - $._assignment_and_operator, - "++", - "--", - $.bang, - "~", - "|", - "^", - "<<", - ">>" - ), - // Hide the fact that certain symbols come from the custom scanner by aliasing them to their - // string variants. This keeps us from having to see them in the syntax tree (which would be - // noisy) but allows callers to refer to them as nodes by their text form like with any - // operator. - _equal_sign: ($) => alias($._eq_custom, "="), - _eq_eq: ($) => alias($._eq_eq_custom, "=="), - _dot: ($) => alias($._dot_custom, "."), - _arrow_operator: ($) => alias($._arrow_operator_custom, "->"), - _conjunction_operator: ($) => alias($._conjunction_operator_custom, "&&"), - _disjunction_operator: ($) => alias($._disjunction_operator_custom, "||"), - _nil_coalescing_operator: ($) => - alias($._nil_coalescing_operator_custom, "??"), - _as: ($) => alias($._as_custom, "as"), - _as_quest: ($) => alias($._as_quest_custom, "as?"), - _as_bang: ($) => alias($._as_bang_custom, "as!"), - _async_keyword: ($) => alias($._async_keyword_custom, "async"), - _async_modifier: ($) => token("async"), - throws: ($) => choice($._throws_keyword, $._rethrows_keyword), - enum_class_body: ($) => - seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), - enum_entry: ($) => - seq( - optional($.modifiers), - optional("indirect"), - "case", - sep1( - seq( - field("name", $.simple_identifier), - optional($._enum_entry_suffix) - ), - "," - ), - optional(";") - ), - _enum_entry_suffix: ($) => - choice( - field("data_contents", $.enum_type_parameters), - seq($._equal_sign, field("raw_value", $._expression)) - ), - enum_type_parameters: ($) => - seq( - "(", - optional( - sep1( - seq( - optional( - seq(optional($.wildcard_pattern), $.simple_identifier, ":") - ), - $._type, - optional(seq($._equal_sign, $._expression)) - ), - "," - ) - ), - ")" - ), - protocol_declaration: ($) => - prec.right( - seq( - optional($.modifiers), - field("declaration_kind", "protocol"), - field("name", alias($.simple_identifier, $.type_identifier)), - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - field("body", $.protocol_body) - ) - ), - protocol_body: ($) => - seq("{", optional($._protocol_member_declarations), "}"), - _protocol_member_declarations: ($) => - seq(sep1($._protocol_member_declaration, $._semi), optional($._semi)), - _protocol_member_declaration: ($) => - choice( - alias( - seq( - $._bodyless_function_declaration, - optional(field("body", $.function_body)) - ), - $.protocol_function_declaration - ), - $.deinit_declaration, - $.protocol_property_declaration, - $.typealias_declaration, - $.associatedtype_declaration, - $.subscript_declaration - ), - deinit_declaration: ($) => - prec.right( - seq(optional($.modifiers), "deinit", field("body", $.function_body)) - ), - subscript_declaration: ($) => - prec.right( - seq( - optional($.modifiers), - "subscript", - optional($.type_parameters), - $._function_value_parameters, - optional( - seq( - $._arrow_operator, - field("return_type", $._possibly_implicitly_unwrapped_type) - ) - ), - optional($.type_constraints), - $.computed_property - ) - ), - computed_property: ($) => - seq( - "{", - choice( - optional($.statements), - repeat( - choice($.computed_getter, $.computed_setter, $.computed_modify) - ) - ), - "}" - ), - computed_getter: ($) => - seq(repeat($.attribute), $.getter_specifier, optional($._block)), - computed_modify: ($) => - seq(repeat($.attribute), $.modify_specifier, optional($._block)), - computed_setter: ($) => - seq( - repeat($.attribute), - $.setter_specifier, - optional(seq("(", $.simple_identifier, ")")), - optional($._block) - ), - getter_specifier: ($) => - seq(optional($.mutation_modifier), "get", optional($._getter_effects)), - setter_specifier: ($) => seq(optional($.mutation_modifier), "set"), - modify_specifier: ($) => seq(optional($.mutation_modifier), "_modify"), - _getter_effects: ($) => repeat1(choice($._async_keyword, $.throws)), - operator_declaration: ($) => - seq( - choice("prefix", "infix", "postfix"), - "operator", - $._referenceable_operator, - optional(seq(":", $.simple_identifier)), - optional($.deprecated_operator_declaration_body) - ), - // The Swift compiler no longer accepts these, but some very old code still uses it. - deprecated_operator_declaration_body: ($) => - seq("{", repeat(choice($.simple_identifier, $._basic_literal)), "}"), - precedence_group_declaration: ($) => - seq( - "precedencegroup", - $.simple_identifier, - "{", - optional($.precedence_group_attributes), - "}" - ), - precedence_group_attributes: ($) => repeat1($.precedence_group_attribute), - precedence_group_attribute: ($) => - seq( - $.simple_identifier, - ":", - choice($.simple_identifier, $.boolean_literal) - ), - associatedtype_declaration: ($) => - seq( - optional($.modifiers), - "associatedtype", - field("name", alias($.simple_identifier, $.type_identifier)), - optional(seq(":", field("must_inherit", $._type))), - optional($.type_constraints), - optional(seq($._equal_sign, field("default_value", $._type))) - ), - //////////////////////////////// - // Attributes - https://docs.swift.org/swift-book/ReferenceManual/Attributes.html - //////////////////////////////// - attribute: ($) => - seq( - "@", - $.user_type, - // attribute arguments are a mess of special cases, maybe this is good enough? - optional(seq("(", sep1($._attribute_argument, ","), ")")) - ), - _attribute_argument: ($) => - choice( - // labeled function parameters, used in custom property wrappers - seq($.simple_identifier, ":", $._expression), - // Unlabeled function parameters, simple identifiers, or `*` - $._expression, - // References to param names (used in `@objc(foo:bar:)`) - repeat1(seq($.simple_identifier, ":")), - // Version restrictions (iOS 3.4.5, Swift 5.0.0) - seq(repeat1($.simple_identifier), sep1($.integer_literal, ".")) - ), - //////////////////////////////// - // Patterns - https://docs.swift.org/swift-book/ReferenceManual/Patterns.html - //////////////////////////////// - _universally_allowed_pattern: ($) => - choice( - $.wildcard_pattern, - $._tuple_pattern, - $._type_casting_pattern, - $._case_pattern - ), - _bound_identifier: ($) => field("bound_identifier", $.simple_identifier), - - _binding_pattern_no_expr: ($) => - seq( - choice( - $._universally_allowed_pattern, - $._binding_pattern, - $._bound_identifier - ), - optional($._quest) - ), - _no_expr_pattern_already_bound: ($) => - seq( - choice($._universally_allowed_pattern, $._bound_identifier), - optional($._quest) - ), - _binding_pattern_with_expr: ($) => - seq( - choice( - $._universally_allowed_pattern, - $._binding_pattern, - $._expression - ), - optional($._quest) - ), - _non_binding_pattern_with_expr: ($) => - seq( - choice($._universally_allowed_pattern, $._expression), - optional($._quest) - ), - _direct_or_indirect_binding: ($) => - seq( - choice( - $._binding_kind_and_pattern, - seq("case", $._binding_pattern_no_expr) - ), - optional($.type_annotation) - ), - _binding_pattern_kind: ($) => field("mutability", choice("var", "let")), - _possibly_async_binding_pattern_kind: ($) => - seq(optional($._async_modifier), $._binding_pattern_kind), - _binding_kind_and_pattern: ($) => - seq( - $._possibly_async_binding_pattern_kind, - $._no_expr_pattern_already_bound - ), - wildcard_pattern: ($) => "_", - _tuple_pattern_item: ($) => - choice( - seq( - $.simple_identifier, - seq(":", alias($._binding_pattern_with_expr, $.pattern)) - ), - alias($._binding_pattern_with_expr, $.pattern) - ), - _tuple_pattern: ($) => seq("(", sep1($._tuple_pattern_item, ","), ")"), - _case_pattern: ($) => - seq( - optional("case"), - optional($.user_type), // XXX this should just be _type but that creates ambiguity - $._dot, - $.simple_identifier, - optional($._tuple_pattern) - ), - _type_casting_pattern: ($) => - choice( - seq("is", $._type), - seq(alias($._binding_pattern_no_expr, $.pattern), $._as, $._type) - ), - _binding_pattern: ($) => - seq( - seq(optional("case"), $._binding_pattern_kind), - $._no_expr_pattern_already_bound - ), - - // ========== - // Modifiers - // ========== - modifiers: ($) => - repeat1( - choice($._non_local_scope_modifier, $._locally_permitted_modifiers) - ), - _locally_permitted_modifiers: ($) => - repeat1(choice($.attribute, $._locally_permitted_modifier)), - parameter_modifiers: ($) => repeat1($.parameter_modifier), - _modifier: ($) => - choice($._non_local_scope_modifier, $._locally_permitted_modifier), - _non_local_scope_modifier: ($) => - choice( - $.member_modifier, - $.visibility_modifier, - $.function_modifier, - $.mutation_modifier, - $.property_modifier, - $.parameter_modifier, - $.property_behavior_modifier - ), - _locally_permitted_modifier: ($) => - choice($.ownership_modifier, $.inheritance_modifier), - property_behavior_modifier: ($) => "lazy", - type_modifiers: ($) => repeat1($.attribute), - member_modifier: ($) => - choice("override", "convenience", "required", "nonisolated"), - visibility_modifier: ($) => - seq( - choice("public", "private", "internal", "fileprivate", "open"), - optional(seq("(", "set", ")")) - ), - type_parameter_modifiers: ($) => repeat1($.attribute), - function_modifier: ($) => choice("infix", "postfix", "prefix"), - mutation_modifier: ($) => choice("mutating", "nonmutating"), - property_modifier: ($) => choice("static", "dynamic", "optional", "class"), - inheritance_modifier: ($) => choice("final"), - parameter_modifier: ($) => choice("inout", "@escaping", "@autoclosure"), - ownership_modifier: ($) => - choice("weak", "unowned", "unowned(safe)", "unowned(unsafe)"), - use_site_target: ($) => - seq( - choice( - "property", - "get", - "set", - "receiver", - "param", - "setparam", - "delegate" - ), - ":" - ), - directive: ($) => - token( - prec( - PRECS.comment, - choice( - seq("#if", /.*/), - seq("#elseif", /.*/), - seq("#else", /.*/), - seq("#endif", /.*/), - seq(/#sourceLocation([^\r\n]*)/) - ) - ) - ), - diagnostic: ($) => - token( - prec( - PRECS.comment, - choice( - // Using regexes here, rather than actually validating the string literal, because complex string literals - // cannot be used inside `token()` and we need that to ensure we get the right precedence. - seq(/#error([^\r\n]*)/), - seq(/#warning([^\r\n]*)/) - ) - ) - ), - }, -}); -function sep1(rule, separator) { - return seq(rule, repeat(seq(separator, rule))); -} - -function tree_sitter_version_supports_emoji() { - try { - return ( - TREE_SITTER_CLI_VERSION_MAJOR > 0 || - TREE_SITTER_CLI_VERSION_MINOR > 20 || - TREE_SITTER_CLI_VERSION_PATCH >= 5 - ); - } catch (err) { - if (err instanceof ReferenceError) { - return false; - } else { - throw err; - } - } -} diff --git a/vendored_parsers/tree-sitter-swift/package-json-old-tree-sitter.json b/vendored_parsers/tree-sitter-swift/package-json-old-tree-sitter.json deleted file mode 100644 index 8f52180d9..000000000 --- a/vendored_parsers/tree-sitter-swift/package-json-old-tree-sitter.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "tree-sitter-swift", - "version": "0.0.0-old-tree-sitter", - "description": "A tree-sitter grammar for the Swift programming language.", - "main": "bindings/node/index.js", - "scripts": { - "install": "node scripts/wait-for-tree-sitter.js && tree-sitter generate" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/alex-pinkus/tree-sitter-swift.git" - }, - "tree-sitter": [ - { - "scope": "source.swift", - "file-types": [ - "swift" - ], - "injection-regex": "swift" - } - ], - "keywords": [ - "parser", - "swift" - ], - "author": "Alex Pinkus ", - "license": "MIT", - "bugs": { - "url": "https://github.com/alex-pinkus/tree-sitter-swift/issues" - }, - "homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme", - "dependencies": { - "nan": "^2.15.0", - "tree-sitter-cli": "=0.19.0", - "which": "2.0.2" - }, - "devDependencies": { - "node-gyp": "^8.4.1", - "prettier": "2.3.2" - } -} diff --git a/vendored_parsers/tree-sitter-swift/package-lock.json b/vendored_parsers/tree-sitter-swift/package-lock.json deleted file mode 100644 index 4c5c23b03..000000000 --- a/vendored_parsers/tree-sitter-swift/package-lock.json +++ /dev/null @@ -1,1817 +0,0 @@ -{ - "name": "tree-sitter-swift", - "version": "0.3.4", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "tree-sitter-swift", - "version": "0.3.4", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "nan": "^2.15.0", - "tree-sitter-cli": "=0.20.6", - "which": "2.0.2" - }, - "devDependencies": { - "node-gyp": "^8.4.1", - "prettier": "2.3.2" - } - }, - "node_modules/@gar/promisify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz", - "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==", - "dev": true - }, - "node_modules/@npmcli/fs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.0.tgz", - "integrity": "sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==", - "deprecated": "this version had an improper engines field added, update to 1.1.1", - "dev": true, - "dependencies": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/agentkeepalive": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.0.tgz", - "integrity": "sha512-0PhAp58jZNw13UJv7NVdTGb0ZcghHUb3DrZ046JiiJY/BOaTTpbwdHq2VObPCBV8M2GPh7sgrJ3AQ8Ey468LJw==", - "dev": true, - "dependencies": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "dependencies": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "node_modules/gauge": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.0.tgz", - "integrity": "sha512-F8sU45yQpjQjxKkm1UOAhf0U/O0aFt//Fl7hsrNVto+patMHjs7dPI9mFOGUKbhrgKm0S3EjW3scMFuQmWSROw==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1", - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.9", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", - "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", - "dev": true - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "dev": true - }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", - "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", - "dev": true, - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "dev": true, - "dependencies": { - "ms": "^2.0.0" - } - }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", - "dev": true, - "dependencies": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minipass": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", - "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", - "dev": true, - "dependencies": { - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "optionalDependencies": { - "encoding": "^0.1.12" - } - }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" - }, - "node_modules/negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", - "dev": true, - "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, - "engines": { - "node": ">= 10.12.0" - } - }, - "node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/npmlog": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz", - "integrity": "sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.0", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prettier": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", - "integrity": "sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "optional": true - }, - "node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "node_modules/signal-exit": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", - "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", - "dev": true - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz", - "integrity": "sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==", - "dev": true, - "dependencies": { - "ip": "^1.1.5", - "smart-buffer": "^4.1.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", - "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", - "dev": true, - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.1", - "socks": "^2.6.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "dependencies": { - "minipass": "^3.1.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "dev": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/tree-sitter-cli": { - "version": "0.20.6", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", - "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==", - "hasInstallScript": true, - "bin": { - "tree-sitter": "cli.js" - } - }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "dependencies": { - "unique-slug": "^2.0.0" - } - }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - }, - "dependencies": { - "@gar/promisify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz", - "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==", - "dev": true - }, - "@npmcli/fs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.0.tgz", - "integrity": "sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==", - "dev": true, - "requires": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "dev": true, - "requires": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - } - }, - "@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "agentkeepalive": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.0.tgz", - "integrity": "sha512-0PhAp58jZNw13UJv7NVdTGb0ZcghHUb3DrZ046JiiJY/BOaTTpbwdHq2VObPCBV8M2GPh7sgrJ3AQ8Ey468LJw==", - "dev": true, - "requires": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true - }, - "are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dev": true, - "requires": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "debug": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", - "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - } - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true - }, - "err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "gauge": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.0.tgz", - "integrity": "sha512-F8sU45yQpjQjxKkm1UOAhf0U/O0aFt//Fl7hsrNVto+patMHjs7dPI9mFOGUKbhrgKm0S3EjW3scMFuQmWSROw==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1", - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - } - }, - "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "graceful-fs": { - "version": "4.2.9", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", - "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "dev": true - }, - "http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - } - }, - "https-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", - "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", - "dev": true, - "requires": { - "ms": "^2.0.0" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", - "dev": true, - "requires": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" - } - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minipass": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", - "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", - "dev": true, - "requires": { - "encoding": "^0.1.12", - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" - } - }, - "minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true - }, - "node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", - "dev": true, - "requires": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - } - }, - "nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "npmlog": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.0.tgz", - "integrity": "sha512-03ppFRGlsyUaQFbGC2C8QWJN/C/K7PsfyD9aQdhVKAQIH4sQBc8WASqFBP7O+Ut4d2oo5LoeoboB3cGdBZSp6Q==", - "dev": true, - "requires": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.0", - "set-blocking": "^2.0.0" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "prettier": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", - "integrity": "sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "dev": true, - "requires": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - } - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "optional": true - }, - "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "signal-exit": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", - "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", - "dev": true - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true - }, - "socks": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.6.1.tgz", - "integrity": "sha512-kLQ9N5ucj8uIcxrDwjm0Jsqk06xdpBjGNQtpXy4Q8/QY2k+fY7nZH8CARy+hkbG+SGAovmzzuauCpBlb8FrnBA==", - "dev": true, - "requires": { - "ip": "^1.1.5", - "smart-buffer": "^4.1.0" - } - }, - "socks-proxy-agent": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.1.1.tgz", - "integrity": "sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==", - "dev": true, - "requires": { - "agent-base": "^6.0.2", - "debug": "^4.3.1", - "socks": "^2.6.1" - } - }, - "ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", - "dev": true, - "requires": { - "minipass": "^3.1.1" - } - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "tar": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", - "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - } - }, - "tree-sitter-cli": { - "version": "0.20.6", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.6.tgz", - "integrity": "sha512-tjbAeuGSMhco/EnsThjWkQbDIYMDmdkWsTPsa/NJAW7bjaki9P7oM9TkLxfdlnm4LXd1wR5wVSM2/RTLtZbm6A==" - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } - } -} diff --git a/vendored_parsers/tree-sitter-swift/package.json b/vendored_parsers/tree-sitter-swift/package.json deleted file mode 100644 index f1c3082cf..000000000 --- a/vendored_parsers/tree-sitter-swift/package.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "tree-sitter-swift", - "version": "0.3.4", - "description": "A tree-sitter grammar for the Swift programming language.", - "main": "bindings/node/index.js", - "scripts": { - "install": "node scripts/wait-for-tree-sitter.js && tree-sitter generate", - "postinstall": "node-gyp configure && node-gyp build", - "ci": "prettier --check grammar.js", - "test-ci": "./scripts/test-with-memcheck.sh --install-valgrind", - "test": "./scripts/test-with-memcheck.sh" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/alex-pinkus/tree-sitter-swift.git" - }, - "tree-sitter": [ - { - "scope": "source.swift", - "file-types": [ - "swift" - ], - "injection-regex": "swift" - } - ], - "keywords": [ - "parser", - "swift" - ], - "author": "Alex Pinkus ", - "license": "MIT", - "bugs": { - "url": "https://github.com/alex-pinkus/tree-sitter-swift/issues" - }, - "homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme", - "dependencies": { - "nan": "^2.15.0", - "tree-sitter-cli": "=0.20.6", - "which": "2.0.2" - }, - "devDependencies": { - "node-gyp": "^8.4.1", - "prettier": "2.3.2" - } -} diff --git a/vendored_parsers/tree-sitter-swift/queries/highlights.scm b/vendored_parsers/tree-sitter-swift/queries/highlights.scm deleted file mode 100644 index 6d1ff388f..000000000 --- a/vendored_parsers/tree-sitter-swift/queries/highlights.scm +++ /dev/null @@ -1,168 +0,0 @@ -[ "." ";" ":" "," ] @punctuation.delimiter -[ "\\(" "(" ")" "[" "]" "{" "}"] @punctuation.bracket ; TODO: "\\(" ")" in interpolations should be @punctuation.special - -; Identifiers -(attribute) @variable -(type_identifier) @type -(self_expression) @variable.builtin - -; Declarations -"func" @keyword.function -[ - (visibility_modifier) - (member_modifier) - (function_modifier) - (property_modifier) - (parameter_modifier) - (inheritance_modifier) -] @keyword - -(function_declaration (simple_identifier) @method) -(function_declaration ["init" @constructor]) -(throws) @keyword -"async" @keyword -"await" @keyword -(where_keyword) @keyword -(parameter external_name: (simple_identifier) @parameter) -(parameter name: (simple_identifier) @parameter) -(type_parameter (type_identifier) @parameter) -(inheritance_constraint (identifier (simple_identifier) @parameter)) -(equality_constraint (identifier (simple_identifier) @parameter)) -(pattern bound_identifier: (simple_identifier)) @variable - -[ - "typealias" - "struct" - "class" - "actor" - "enum" - "protocol" - "extension" - "indirect" - "nonisolated" - "override" - "convenience" - "required" - "some" -] @keyword - -[ - (getter_specifier) - (setter_specifier) - (modify_specifier) -] @keyword - -(class_body (property_declaration (pattern (simple_identifier) @property))) -(protocol_property_declaration (pattern (simple_identifier) @property)) - -(import_declaration ["import" @include]) - -(enum_entry ["case" @keyword]) - -; Function calls -(call_expression (simple_identifier) @function.call) ; foo() -(call_expression ; foo.bar.baz(): highlight the baz() - (navigation_expression - (navigation_suffix (simple_identifier) @function.call))) -((navigation_expression - (simple_identifier) @type) ; SomeType.method(): highlight SomeType as a type - (#match? @type "^[A-Z]")) - -(directive) @function.macro -(diagnostic) @function.macro - -; Statements -(for_statement ["for" @repeat]) -(for_statement ["in" @repeat]) -(for_statement (pattern) @variable) -(else) @keyword -(as_operator) @keyword - -["while" "repeat" "continue" "break"] @repeat - -["let" "var"] @keyword - -(guard_statement ["guard" @conditional]) -(if_statement ["if" @conditional]) -(switch_statement ["switch" @conditional]) -(switch_entry ["case" @keyword]) -(switch_entry ["fallthrough" @keyword]) -(switch_entry (default_keyword) @keyword) -"return" @keyword.return -(ternary_expression - ["?" ":"] @conditional) - -["do" (throw_keyword) (catch_keyword)] @keyword - -(statement_label) @label - -; Comments -[ - (comment) - (multiline_comment) -] @comment @spell - -; String literals -(line_str_text) @string -(str_escaped_char) @string -(multi_line_str_text) @string -(raw_str_part) @string -(raw_str_end_part) @string -(raw_str_interpolation_start) @punctuation.special -["\"" "\"\"\""] @string - -; Lambda literals -(lambda_literal ["in" @keyword.operator]) - -; Basic literals -[ - (integer_literal) - (hex_literal) - (oct_literal) - (bin_literal) -] @number -(real_literal) @float -(boolean_literal) @boolean -"nil" @variable.builtin - -; Regex literals -(regex_literal) @string.regex - -; Operators -(custom_operator) @operator -[ - "try" - "try?" - "try!" - "!" - "+" - "-" - "*" - "/" - "%" - "=" - "+=" - "-=" - "*=" - "/=" - "<" - ">" - "<=" - ">=" - "++" - "--" - "&" - "~" - "%=" - "!=" - "!==" - "==" - "===" - "??" - - "->" - - "..<" - "..." -] @operator - diff --git a/vendored_parsers/tree-sitter-swift/queries/locals.scm b/vendored_parsers/tree-sitter-swift/queries/locals.scm deleted file mode 100644 index 01bf5895c..000000000 --- a/vendored_parsers/tree-sitter-swift/queries/locals.scm +++ /dev/null @@ -1,18 +0,0 @@ -(import_declaration (identifier) @definition.import) -(function_declaration name: (simple_identifier) @definition.function) - -; Scopes -[ - (statements) - (for_statement) - (while_statement) - (repeat_while_statement) - (do_statement) - (if_statement) - (guard_statement) - (switch_statement) - (property_declaration) - (function_declaration) - (class_declaration) - (protocol_declaration) -] @local.scope diff --git a/vendored_parsers/tree-sitter-swift/queries/tags.scm b/vendored_parsers/tree-sitter-swift/queries/tags.scm deleted file mode 100644 index fe7a06fef..000000000 --- a/vendored_parsers/tree-sitter-swift/queries/tags.scm +++ /dev/null @@ -1,51 +0,0 @@ -(class_declaration - name: (type_identifier) @name) @definition.class - -(protocol_declaration - name: (type_identifier) @name) @definition.interface - -(class_declaration - (class_body - [ - (function_declaration - name: (simple_identifier) @name - ) - (subscript_declaration - (parameter (simple_identifier) @name) - ) - (function_declaration "init" @name) - (deinit_declaration "deinit" @name) - ] - ) -) @definition.method - -(protocol_declaration - (protocol_body - [ - (protocol_function_declaration - name: (simple_identifier) @name - ) - (subscript_declaration - (parameter (simple_identifier) @name) - ) - (protocol_function_declaration "init" @name) - ] - ) -) @definition.method - -(class_declaration - (class_body - [ - (property_declaration - (pattern (simple_identifier) @name) - ) - ] - ) -) @definition.property - -(property_declaration - (pattern (simple_identifier) @name) -) @definition.property - -(function_declaration - name: (simple_identifier) @name) @definition.function \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-swift/script-data/known_failures.txt b/vendored_parsers/tree-sitter-swift/script-data/known_failures.txt deleted file mode 100644 index 34d24cc2e..000000000 --- a/vendored_parsers/tree-sitter-swift/script-data/known_failures.txt +++ /dev/null @@ -1 +0,0 @@ -ReactKit/ReactKitTests/OperationTests.swift diff --git a/vendored_parsers/tree-sitter-swift/script-data/top-repositories.txt b/vendored_parsers/tree-sitter-swift/script-data/top-repositories.txt deleted file mode 100644 index e76d12212..000000000 --- a/vendored_parsers/tree-sitter-swift/script-data/top-repositories.txt +++ /dev/null @@ -1,53 +0,0 @@ -Alamofire Alamofire/Alamofire 5.6.2 -iina iina/iina v1.3.0-build131 -Charts danielgindi/Charts v4.1.0 -lottie-ios airbnb/lottie-ios 3.4.4 -vapor vapor/vapor 3.3.3 -SwiftyJSON SwiftyJSON/SwiftyJSON 5.0.1 -RxSwift ReactiveX/RxSwift 6.5.0 0 9 -RxSwift ReactiveX/RxSwift 6.5.0 1 9 -RxSwift ReactiveX/RxSwift 6.5.0 2 9 -RxSwift ReactiveX/RxSwift 6.5.0 3 9 -RxSwift ReactiveX/RxSwift 6.5.0 4 9 -RxSwift ReactiveX/RxSwift 6.5.0 5 9 -RxSwift ReactiveX/RxSwift 6.5.0 6 9 -RxSwift ReactiveX/RxSwift 6.5.0 7 9 -RxSwift ReactiveX/RxSwift 6.5.0 8 9 -HeroTransitions HeroTransitions/Hero 1.6.2 -Kingfisher onevcat/Kingfisher 7.4.0 -shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 -SnapKit SnapKit/SnapKit 5.0.1 -SwiftLint realm/SwiftLint 0.49.1 0 2 -SwiftLint realm/SwiftLint 0.49.1 1 2 -ClashX yichengchen/clashX 1.95.1 -Carthage Carthage/Carthage 0.38.0 -Rectangle rxhanson/Rectangle v0.59 -PromiseKit mxcl/PromiseKit 6.18.1 -Moya Moya/Moya 15.0.3 -MonitorControl MonitorControl/MonitorControl v4.1.0 -ObjectMapper tristanhimmelman/ObjectMapper 4.2.0 -SkeletonView Juanpe/SkeletonView 1.30.3 -firefox-ios mozilla-mobile/firefox-ios v39.0 0 6 -firefox-ios mozilla-mobile/firefox-ios v39.0 1 6 -firefox-ios mozilla-mobile/firefox-ios v39.0 2 6 -firefox-ios mozilla-mobile/firefox-ios v39.0 3 6 -firefox-ios mozilla-mobile/firefox-ios v39.0 4 6 -firefox-ios mozilla-mobile/firefox-ios v39.0 5 6 -AudioKit AudioKit/AudioKit 5.5.6 -Starscream daltoniam/Starscream 4.0.4 -MessageKit MessageKit/MessageKit 4.0.0 -KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 -Nuke kean/Nuke 11.3.0 -Swinject Swinject/Swinject 2.8.2 -GRDB groue/GRDB.swift v6.0.0 0 2 -GRDB groue/GRDB.swift v6.0.0 1 2 -Dance saoudrizwan/Dance v1.0.7 -StyleKit 146BC/StyleKit 0.7.0 -ReactKit ReactKit/ReactKit 0.12.0 -JASON delba/JASON 3.1.1 -Side-Menu Yalantis/Side-Menu.iOS 2.0.2 -C4iOS C4Labs/C4iOS 3.0.1 -Taylor izqui/Taylor 0.4.5 -Runes thoughtbot/Runes v5.1.0 -Overdrive saidsikira/Overdrive 0.3 -Tactile delba/Tactile 3.0.1 diff --git a/vendored_parsers/tree-sitter-swift/scripts/calculate-parse-rate.sh b/vendored_parsers/tree-sitter-swift/scripts/calculate-parse-rate.sh deleted file mode 100755 index 8cbe61835..000000000 --- a/vendored_parsers/tree-sitter-swift/scripts/calculate-parse-rate.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -set -e - -parser_dir="$(pwd)" - -. $parser_dir/scripts/common.sh - -# Check out every repository to figure out how many files they contain. -cd $tmpdir -while read line ; do - checkout $line -done < $top_repositories - -file_count=$(find "$tmpdir" -name *.swift -not -path '*/Pods/*' | wc -l) -error_count=$(wc -l < $known_failures) - -# Now, since we can assume that the "top-repos" workflow ran, our parse rate is the number of -# successful files over the number of total files. Pretty print that to two decimal places. -printf '%.2f%%\n' $(bc -l <<< "($file_count - $error_count) / $file_count * 100") diff --git a/vendored_parsers/tree-sitter-swift/scripts/common.sh b/vendored_parsers/tree-sitter-swift/scripts/common.sh deleted file mode 100755 index 8acb08e6d..000000000 --- a/vendored_parsers/tree-sitter-swift/scripts/common.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -set -e - -known_failures="$parser_dir/script-data/known_failures.txt" -top_repositories="$parser_dir/script-data/top-repositories.txt" - -# Run all this logic in a temporary directory that we delete on exit -tmpdir="$(mktemp -d -t top-10-XXXXXX)" -trap 'rm -rf "$tmpdir"' EXIT - -# Function to check out a git repository at a given tag. -# -# We use tags so that the source code is deterministic - tags are immutable and reasonable people -# don't delete and recreate them. The tree-sitter-python script this is based on uses raw SHA hashes -# for this, but that would require us to checkout the code at HEAD first and switch to the code at -# the given hash. Using tags means we can do this in one command and include `--depth 1` to reduce -# the number of extra objects we have to fetch. -function checkout() { - repo=$1; url=$2; tag=$3 - - if [ ! -d "$repo" ]; then - git clone --quiet --branch $tag --depth 1 "https://github.com/$url" "$repo" >/dev/null 2>/dev/null - fi -} - - -# Locates all the swift source code files that exist in the source tree under the passed-in -# directory. -# -# Does not include code that gets included from dependencies of this repository, to avoid -# overcounting those files. -function swift_files_under() { - find "$1" -name *.swift -not -path '*/Pods/*' -} diff --git a/vendored_parsers/tree-sitter-swift/scripts/test-with-memcheck.sh b/vendored_parsers/tree-sitter-swift/scripts/test-with-memcheck.sh deleted file mode 100755 index cca3622d6..000000000 --- a/vendored_parsers/tree-sitter-swift/scripts/test-with-memcheck.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -set -e - -if [[ "$1" == "--install-valgrind" ]]; then - sudo apt-get update # See https://github.com/facebook/zstd/pull/3082 - sudo apt install -y valgrind - shift -fi - -valgrind tree-sitter test diff --git a/vendored_parsers/tree-sitter-swift/scripts/top-repos.sh b/vendored_parsers/tree-sitter-swift/scripts/top-repos.sh deleted file mode 100755 index 3cb4962b2..000000000 --- a/vendored_parsers/tree-sitter-swift/scripts/top-repos.sh +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/bash - -set -e - -parser_dir="$(pwd)" - -. $parser_dir/scripts/common.sh - -if [ -z "$1" ]; then - repos=$(cat $top_repositories) - echo "Running on all top repositories." -else - repos=$(sed "$1q;d" $top_repositories) - echo "Running on single repository $repos." -fi - -# Function to validate that a passed-in git repository can be parsed using this parser. -# -# If the passed-in repository fails to parse in ways that do not match the `known_failures` script -# data, this prints info about the failure and exits the script with a nonzero status code. -function validate() { - repo=$1; url=$2; tag=$3; part=$4; total=$5 - - if [ -z "$part" ] || [ -z "$total" ]; then - part=0 - total=1 - fi - - data_dir=$tmpdir/.$repo-data-$part - mkdir -p $data_dir || true - - # Find the start and end of this section based on the passed-in `part` and `total`. - all_files=$data_dir/all_files.txt - swift_files_under "$tmpdir/$repo" > $all_files - file_count=$(wc -l < $all_files | tr -d ' ') - - one_past_the_end=$((file_count + 1)) - start=$(($((one_past_the_end * part)) / total)) - next_part=$((part + 1)) - next_start=$(($((one_past_the_end * next_part)) / total)) - end=$((next_start - 1)) - len=$((end - start)) - - failed_files=$( - IFS=$'\n' - for file in $(head -$end < $all_files | tail -$len); do - npx tree-sitter parse -q "$file" 2>/dev/null - done | { grep -v -f "$known_failures" || true; } - unset IFS - ) - - if [[ "$failed_files" = *[![:space:]]* ]]; then - echo -en "Unexpected parse failure found in $repo " - if [ -z $4 ]; then - echo ":" - else - echo "block $start-$end:" - fi - - cat <<<"$failed_files" - - exit 1 - elif [ -z $4 ]; then - echo "Parsed $repo successfully!" - else - echo "Parsed $repo files $start-$end of $file_count successfully!" - fi -} - -# It's really easy to add a blank line to `known_failures.txt`, which will make everything pass. -# This echoes some string from random.org to prove that the grp isn't excluding everything. If we -# added a blank line, this would have zero items, which results in a nonzero exit code from grep. -if ! echo "vkDSrg8n" | grep -v -f "$known_failures" > /dev/null; then - echo "You added a blank line to known_failures!" - exit 1 -fi - -# Run `validate` on every repository in `top-repositories` sequentially. -while read line ; do - cd $tmpdir - checkout $line - - cd $parser_dir - if [ -z "$1" ]; then - validate $line & - pids+=($!) - else - validate $line - fi -done <<<"$repos" - -if [ -z "$1" ]; then - for pid in "${pids[@]}" ; do - wait $pid - done -fi diff --git a/vendored_parsers/tree-sitter-swift/scripts/update-top-repos.sh b/vendored_parsers/tree-sitter-swift/scripts/update-top-repos.sh deleted file mode 100755 index 066b0ddf9..000000000 --- a/vendored_parsers/tree-sitter-swift/scripts/update-top-repos.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/bash - -set -e - -parser_dir="$(pwd)" - -. $parser_dir/scripts/common.sh - -function update() { - repo=$1 - cd $tmpdir/$repo - - git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" - git fetch origin --unshallow 2>/dev/null || git fetch origin - remote_head_commit=$(git ls-remote | grep HEAD | awk '{ print $1 }') - # Find the oldest branch that contains the remote HEAD commit, which will correspond to the remote HEAD branch (i.e. - # what's sometimes called `main` or `master`. Other branches may be newer than this one if they are a fast-forward - # of `main`, but it's not possible for an _older_ branch to have the commit unless it's literally equivalent. If it - # is equivalent, it doesn't matter. - remote_head_branch=$(git branch -r --contains $remote_head_commit --sort=-committerdate | tac | head -1) - - # Figure out which branch the passed-in tag was tracking. We prefer the main branch, if possible, but can fall back - # to another if needed. - if git branch -r --contains HEAD | grep -q $remote_head_branch; then - # Our tag was on `main` (or equivalent), so use that branch directly. - branch=$remote_head_branch - else - # Our tag was not on `main`, so use the newest branch that it _was_ on. - branch=$(git branch -r --contains HEAD --sort=-committerdate | head -1) - fi - - # Find the latest tag on this branch, and print it along with the other fields that we were given. - new_tag=$(git describe --tags $branch | sed 's/\(.*\)-.*-.*/\1/') - echo $1 $2 $new_tag $4 $5 -} - -while read line ; do - cd $tmpdir - checkout $line - update $line -done < $top_repositories > $top_repositories.new - -mv $top_repositories.new $top_repositories - -# If the repository is now dirty, we have new versions available. Commit them and publish a PR. -cd $parser_dir -if ! git diff --quiet; then - git config --local user.email alex.pinkus@gmail.com - git config --local user.name "Alex Pinkus (Bot)" - git add ./script-data - git commit -m "Updating top repository version" - branch_name=repo-update-$(date +%Y-%m-%d) - git checkout -b $branch_name - echo "Creating pull request..." - gh auth setup-git - git remote add dest "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git" - git push dest HEAD:$branch_name - git fetch origin - gh pr create --fill - echo "Pull request created!" -else - echo "No repositories have been updated, so there's nothing more to do!" -fi diff --git a/vendored_parsers/tree-sitter-swift/scripts/wait-for-tree-sitter.js b/vendored_parsers/tree-sitter-swift/scripts/wait-for-tree-sitter.js deleted file mode 100644 index 5c226812a..000000000 --- a/vendored_parsers/tree-sitter-swift/scripts/wait-for-tree-sitter.js +++ /dev/null @@ -1,77 +0,0 @@ -const fs = require("fs"); -const os = require("os"); -const path = require("path"); -const which = require("which"); -const { promisify } = require("util"); -const stat = promisify(fs.stat); - -async function main() { - const treeSitterExecutable = await which("tree-sitter"); - if (!treeSitterExecutable.includes("node_modules")) { - // Not installed through npm, so should be safe. - return; - } - - const realTreeSitterDir = path.join( - treeSitterExecutable, - "..", - "..", - "tree-sitter-cli" - ); - let timeout = undefined; - let timeoutResolve = undefined; - Promise.race([ - waitForOneOf(realTreeSitterDir, ["tree-sitter", "tree-sitter.exe"]).then( - () => { - clearTimeout(timeout); - timeoutResolve(); - } - ), - new Promise((resolve) => { - timeoutResolve = resolve; - timeout = setTimeout(resolve, 10000); - }), - ]); -} - -async function waitForOneOf(dir, files) { - for (const file of files) { - try { - if (await canExecute(path.join(dir, file))) { - return; - } - } catch { - // File doesn't yet exist -- we must wait for it. - } - } - - await new Promise((resolve) => { - try { - fs.watch(dir, { persistent: false }, (eventType, filename) => { - if ( - (eventType !== "rename" || os.platform() !== "win32") && - files.includes(filename) - ) { - let resolved = false; - canExecute(path.join(dir, filename)).then((canExec) => { - if (canExec && !resolved) { - resolve(); - resolved = true; - } - }); - } - }); - } catch (err) { - if (err.name !== "AbortError") { - console.error(err); - } - } - }); -} - -async function canExecute(filePath) { - const fileStat = await stat(filePath); - return fileStat.mode & 0111 || os.platform() === "win32"; -} - -main(); diff --git a/vendored_parsers/tree-sitter-swift/scripts/write-generated-grammar.sh b/vendored_parsers/tree-sitter-swift/scripts/write-generated-grammar.sh deleted file mode 100755 index 056e5625a..000000000 --- a/vendored_parsers/tree-sitter-swift/scripts/write-generated-grammar.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash - -set -e - -ref=$1 -branch_name=with-generated-files - -# Load the branch that contains generated grammar files. -git checkout $branch_name - -# Update our local directory to match the $ref, but then put the HEAD back at the previous commit. -# This will blow away the existing generated grammar. That's OK because this branch is only ever -# updated using this script. -git reset $ref --hard -git reset HEAD@{1} - -# Now generate the grammar and validate that it works. Hopefully no one ever creates a tag to a -# commit with a non-working grammar, but the `npm test` protects us against that ever happening. -npm install -npm run test-ci - -# Now that we know the parser works, build for ABI 14 (but don't use this as the default because -# it's not compatible everywhere). -mv src/parser.c src/parser_abi13.c -npx tree-sitter generate --abi 14 -mv src/parser.c src/parser_abi14.c -mv src/parser_abi13.c src/parser.c - -# Commit specific generated files, attributing the changes to the primary maintainer of this -# grammar. Notably, we do not commit the `.o` files generated during the build, just the source. -git config --local user.email alex.pinkus@gmail.com -git config --local user.name "Alex Pinkus (Bot)" -git add ./src/*.c --force -git add ./src/tree_sitter/* --force -git add ./src/*.json --force -git add grammar.js -git add package.json -git add test -git add queries -git add Makefile -git add bindings/c/*.in -git commit -m "Updating grammar files for version ${ref/refs\/tags\//}" -echo "Committing new generated grammar" - -# Push the change to github using the secrets from our environment. -gh auth setup-git -git remote add dest "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git" -git push dest HEAD:$branch_name -echo "Checkin complete!" diff --git a/vendored_parsers/tree-sitter-swift/src/parser.c b/vendored_parsers/tree-sitter-swift/src/parser.c deleted file mode 100644 index 6528fbbb3..000000000 --- a/vendored_parsers/tree-sitter-swift/src/parser.c +++ /dev/null @@ -1,389215 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 6587 -#define LARGE_STATE_COUNT 1421 -#define SYMBOL_COUNT 497 -#define ALIAS_COUNT 4 -#define TOKEN_COUNT 198 -#define EXTERNAL_TOKEN_COUNT 27 -#define FIELD_COUNT 44 -#define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 216 - -enum { - anon_sym_POUND_BANG = 1, - aux_sym_shebang_line_token1 = 2, - sym_comment = 3, - aux_sym_simple_identifier_token1 = 4, - aux_sym_simple_identifier_token2 = 5, - aux_sym_simple_identifier_token3 = 6, - aux_sym_simple_identifier_token4 = 7, - anon_sym_actor = 8, - anon_sym_nil = 9, - sym_real_literal = 10, - sym_integer_literal = 11, - sym_hex_literal = 12, - sym_oct_literal = 13, - sym_bin_literal = 14, - anon_sym_true = 15, - anon_sym_false = 16, - anon_sym_DQUOTE = 17, - aux_sym_line_str_text_token1 = 18, - anon_sym_BSLASH = 19, - anon_sym_u = 20, - aux_sym__uni_character_literal_token1 = 21, - anon_sym_DQUOTE_DQUOTE_DQUOTE = 22, - anon_sym_RPAREN = 23, - sym_raw_str_interpolation_start = 24, - anon_sym_BSLASH_LPAREN = 25, - anon_sym_COMMA = 26, - sym__escaped_identifier = 27, - sym__extended_regex_literal = 28, - aux_sym__multiline_regex_literal_token1 = 29, - aux_sym__multiline_regex_literal_token2 = 30, - sym__oneline_regex_literal = 31, - anon_sym_COLON = 32, - anon_sym_BANG = 33, - anon_sym_LPAREN = 34, - anon_sym_LBRACK = 35, - anon_sym_RBRACK = 36, - anon_sym_DOT = 37, - anon_sym_Type = 38, - anon_sym_Protocol = 39, - anon_sym_QMARK = 40, - sym__immediate_quest = 41, - anon_sym_some = 42, - anon_sym_any = 43, - anon_sym_AMP = 44, - anon_sym_async = 45, - anon_sym_POUNDselector = 46, - anon_sym_getter_COLON = 47, - anon_sym_setter_COLON = 48, - aux_sym_custom_operator_token1 = 49, - anon_sym_LT = 50, - anon_sym_GT = 51, - anon_sym_await = 52, - anon_sym_POUNDfile = 53, - anon_sym_POUNDfileID = 54, - anon_sym_POUNDfilePath = 55, - anon_sym_POUNDline = 56, - anon_sym_POUNDcolumn = 57, - anon_sym_POUNDfunction = 58, - anon_sym_POUNDdsohandle = 59, - anon_sym_POUNDcolorLiteral = 60, - anon_sym_POUNDfileLiteral = 61, - anon_sym_POUNDimageLiteral = 62, - anon_sym_LBRACE = 63, - anon_sym_CARET_LBRACE = 64, - anon_sym_RBRACE = 65, - anon_sym_in = 66, - anon_sym_self = 67, - anon_sym_super = 68, - anon_sym_if = 69, - anon_sym_guard = 70, - anon_sym_switch = 71, - anon_sym_case = 72, - anon_sym_fallthrough = 73, - anon_sym_do = 74, - anon_sym_POUNDkeyPath = 75, - anon_sym_try = 76, - anon_sym_try_BANG = 77, - anon_sym_try_QMARK = 78, - anon_sym_PLUS_EQ = 79, - anon_sym_DASH_EQ = 80, - anon_sym_STAR_EQ = 81, - anon_sym_SLASH_EQ = 82, - anon_sym_PERCENT_EQ = 83, - anon_sym_EQ = 84, - anon_sym_BANG_EQ = 85, - anon_sym_BANG_EQ_EQ = 86, - anon_sym_EQ_EQ_EQ = 87, - anon_sym_LT_EQ = 88, - anon_sym_GT_EQ = 89, - anon_sym_DOT_DOT_DOT = 90, - anon_sym_DOT_DOT_LT = 91, - anon_sym_is = 92, - anon_sym_PLUS = 93, - anon_sym_DASH = 94, - anon_sym_STAR = 95, - anon_sym_SLASH = 96, - anon_sym_PERCENT = 97, - anon_sym_PLUS_PLUS = 98, - anon_sym_DASH_DASH = 99, - anon_sym_TILDE = 100, - anon_sym_PIPE = 101, - anon_sym_CARET = 102, - anon_sym_LT_LT = 103, - anon_sym_GT_GT = 104, - sym_statement_label = 105, - anon_sym_for = 106, - anon_sym_while = 107, - anon_sym_repeat = 108, - sym_throw_keyword = 109, - anon_sym_return = 110, - anon_sym_continue = 111, - anon_sym_break = 112, - anon_sym_yield = 113, - anon_sym_POUNDavailable = 114, - anon_sym_import = 115, - anon_sym_typealias = 116, - anon_sym_struct = 117, - anon_sym_class = 118, - anon_sym_enum = 119, - anon_sym_protocol = 120, - anon_sym_let = 121, - anon_sym_var = 122, - anon_sym_func = 123, - anon_sym_extension = 124, - anon_sym_indirect = 125, - anon_sym_init = 126, - anon_sym_SEMI = 127, - anon_sym_deinit = 128, - anon_sym_subscript = 129, - anon_sym_get = 130, - anon_sym_set = 131, - anon_sym__modify = 132, - anon_sym_prefix = 133, - anon_sym_infix = 134, - anon_sym_postfix = 135, - anon_sym_operator = 136, - anon_sym_precedencegroup = 137, - anon_sym_associatedtype = 138, - anon_sym_AT = 139, - sym_wildcard_pattern = 140, - sym_property_behavior_modifier = 141, - anon_sym_override = 142, - anon_sym_convenience = 143, - anon_sym_required = 144, - anon_sym_nonisolated = 145, - anon_sym_public = 146, - anon_sym_private = 147, - anon_sym_internal = 148, - anon_sym_fileprivate = 149, - anon_sym_open = 150, - anon_sym_mutating = 151, - anon_sym_nonmutating = 152, - anon_sym_static = 153, - anon_sym_dynamic = 154, - anon_sym_optional = 155, - anon_sym_final = 156, - anon_sym_inout = 157, - anon_sym_ATescaping = 158, - anon_sym_ATautoclosure = 159, - anon_sym_weak = 160, - anon_sym_unowned = 161, - anon_sym_unowned_LPARENsafe_RPAREN = 162, - anon_sym_unowned_LPARENunsafe_RPAREN = 163, - anon_sym_property = 164, - anon_sym_receiver = 165, - anon_sym_param = 166, - anon_sym_setparam = 167, - anon_sym_delegate = 168, - sym_directive = 169, - sym_diagnostic = 170, - sym_multiline_comment = 171, - sym_raw_str_part = 172, - sym_raw_str_continuing_indicator = 173, - sym_raw_str_end_part = 174, - sym__implicit_semi = 175, - sym__explicit_semi = 176, - sym__arrow_operator_custom = 177, - sym__dot_custom = 178, - sym__conjunction_operator_custom = 179, - sym__disjunction_operator_custom = 180, - sym__nil_coalescing_operator_custom = 181, - sym__eq_custom = 182, - sym__eq_eq_custom = 183, - sym__plus_then_ws = 184, - sym__minus_then_ws = 185, - sym_bang = 186, - sym__throws_keyword = 187, - sym__rethrows_keyword = 188, - sym_default_keyword = 189, - sym_where_keyword = 190, - sym_else = 191, - sym_catch_keyword = 192, - sym__as_custom = 193, - sym__as_quest_custom = 194, - sym__as_bang_custom = 195, - sym__async_keyword_custom = 196, - sym__custom_operator = 197, - sym_source_file = 198, - sym__semi = 199, - sym_shebang_line = 200, - sym_simple_identifier = 201, - sym_identifier = 202, - sym__basic_literal = 203, - sym_boolean_literal = 204, - sym__string_literal = 205, - sym_line_string_literal = 206, - sym__line_string_content = 207, - sym_line_str_text = 208, - sym_str_escaped_char = 209, - sym__uni_character_literal = 210, - sym_multi_line_string_literal = 211, - sym_raw_string_literal = 212, - sym_raw_str_interpolation = 213, - sym__multi_line_string_content = 214, - sym__interpolation = 215, - sym__interpolation_contents = 216, - sym_multi_line_str_text = 217, - sym_regex_literal = 218, - sym__multiline_regex_literal = 219, - sym_type_annotation = 220, - sym__possibly_implicitly_unwrapped_type = 221, - sym__type = 222, - sym__unannotated_type = 223, - sym_user_type = 224, - sym__simple_user_type = 225, - sym_tuple_type = 226, - sym_tuple_type_item = 227, - sym__tuple_type_item_identifier = 228, - sym_function_type = 229, - sym_array_type = 230, - sym_dictionary_type = 231, - sym_optional_type = 232, - sym_metatype = 233, - sym__quest = 234, - sym_opaque_type = 235, - sym_existential_type = 236, - sym_protocol_composition_type = 237, - sym__expression = 238, - sym__unary_expression = 239, - sym_postfix_expression = 240, - sym_constructor_expression = 241, - sym_navigation_expression = 242, - sym__navigable_type_expression = 243, - sym_open_start_range_expression = 244, - sym__range_operator = 245, - sym_open_end_range_expression = 246, - sym_prefix_expression = 247, - sym_as_expression = 248, - sym_selector_expression = 249, - sym__binary_expression = 250, - sym_multiplicative_expression = 251, - sym_additive_expression = 252, - sym_range_expression = 253, - sym_infix_expression = 254, - sym_nil_coalescing_expression = 255, - sym_check_expression = 256, - sym_comparison_expression = 257, - sym_equality_expression = 258, - sym_conjunction_expression = 259, - sym_disjunction_expression = 260, - sym_bitwise_operation = 261, - sym_custom_operator = 262, - sym_navigation_suffix = 263, - sym_call_suffix = 264, - sym_constructor_suffix = 265, - sym__constructor_value_arguments = 266, - sym__fn_call_lambda_arguments = 267, - sym_type_arguments = 268, - sym_value_arguments = 269, - sym_value_argument = 270, - sym_try_expression = 271, - sym_await_expression = 272, - sym__await_operator = 273, - sym_ternary_expression = 274, - sym__expr_hack_at_ternary_binary_suffix = 275, - sym_expr_hack_at_ternary_binary_call = 276, - sym_expr_hack_at_ternary_binary_call_suffix = 277, - sym_call_expression = 278, - sym__primary_expression = 279, - sym_tuple_expression = 280, - sym_array_literal = 281, - sym_dictionary_literal = 282, - sym__dictionary_literal_item = 283, - sym__special_literal = 284, - sym__playground_literal = 285, - sym_lambda_literal = 286, - sym__lambda_type_declaration = 287, - sym_capture_list = 288, - sym_capture_list_item = 289, - sym_lambda_function_type = 290, - sym_lambda_function_type_parameters = 291, - sym_lambda_parameter = 292, - sym_self_expression = 293, - sym_super_expression = 294, - sym__else_options = 295, - sym_if_statement = 296, - sym__if_condition_sequence_item = 297, - sym__if_let_binding = 298, - sym_guard_statement = 299, - sym_switch_statement = 300, - sym_switch_entry = 301, - sym_switch_pattern = 302, - sym_do_statement = 303, - sym_catch_block = 304, - sym_where_clause = 305, - sym_key_path_expression = 306, - sym_key_path_string_expression = 307, - sym__key_path_component = 308, - sym__key_path_postfixes = 309, - sym__try_operator = 310, - sym__assignment_and_operator = 311, - sym__equality_operator = 312, - sym__comparison_operator = 313, - sym__three_dot_operator = 314, - sym__open_ended_range_operator = 315, - sym__is_operator = 316, - sym__additive_operator = 317, - sym__multiplicative_operator = 318, - sym_as_operator = 319, - sym__prefix_unary_operator = 320, - sym__bitwise_binary_operator = 321, - sym__postfix_unary_operator = 322, - sym_directly_assignable_expression = 323, - sym_statements = 324, - sym__local_statement = 325, - sym__top_level_statement = 326, - sym__block = 327, - sym__labeled_statement = 328, - sym_for_statement = 329, - sym_while_statement = 330, - sym_repeat_while_statement = 331, - sym_control_transfer_statement = 332, - sym__throw_statement = 333, - sym__optionally_valueful_control_keyword = 334, - sym_assignment = 335, - sym_availability_condition = 336, - sym__availability_argument = 337, - sym__global_declaration = 338, - sym__type_level_declaration = 339, - sym__local_declaration = 340, - sym__local_property_declaration = 341, - sym__local_typealias_declaration = 342, - sym__local_function_declaration = 343, - sym__local_class_declaration = 344, - sym_import_declaration = 345, - sym__import_kind = 346, - sym_protocol_property_declaration = 347, - sym_protocol_property_requirements = 348, - sym_property_declaration = 349, - sym__modifierless_property_declaration = 350, - sym__single_modifierless_property_declaration = 351, - sym_typealias_declaration = 352, - sym__modifierless_typealias_declaration = 353, - sym_function_declaration = 354, - sym__modifierless_function_declaration = 355, - sym__bodyless_function_declaration = 356, - sym__modifierless_function_declaration_no_body = 357, - sym_function_body = 358, - sym_class_declaration = 359, - sym__modifierless_class_declaration = 360, - sym_class_body = 361, - sym__inheritance_specifiers = 362, - sym_inheritance_specifier = 363, - sym__annotated_inheritance_specifier = 364, - sym_type_parameters = 365, - sym_type_parameter = 366, - sym_type_constraints = 367, - sym_type_constraint = 368, - sym_inheritance_constraint = 369, - sym_equality_constraint = 370, - sym__class_member_separator = 371, - sym__class_member_declarations = 372, - aux_sym__function_value_parameters = 373, - sym__function_value_parameter = 374, - sym_parameter = 375, - sym__constructor_function_decl = 376, - sym__non_constructor_function_decl = 377, - sym__referenceable_operator = 378, - sym__equal_sign = 379, - sym__eq_eq = 380, - sym__dot = 381, - sym__arrow_operator = 382, - sym__conjunction_operator = 383, - sym__disjunction_operator = 384, - sym__nil_coalescing_operator = 385, - sym__as = 386, - sym__as_quest = 387, - sym__as_bang = 388, - sym__async_keyword = 389, - sym__async_modifier = 390, - sym_throws = 391, - sym_enum_class_body = 392, - sym_enum_entry = 393, - sym__enum_entry_suffix = 394, - sym_enum_type_parameters = 395, - sym_protocol_declaration = 396, - sym_protocol_body = 397, - sym__protocol_member_declarations = 398, - sym__protocol_member_declaration = 399, - sym_deinit_declaration = 400, - sym_subscript_declaration = 401, - sym_computed_property = 402, - sym_computed_getter = 403, - sym_computed_modify = 404, - sym_computed_setter = 405, - sym_getter_specifier = 406, - sym_setter_specifier = 407, - sym_modify_specifier = 408, - aux_sym__getter_effects = 409, - sym_operator_declaration = 410, - sym_deprecated_operator_declaration_body = 411, - sym_precedence_group_declaration = 412, - sym_precedence_group_attributes = 413, - sym_precedence_group_attribute = 414, - sym_associatedtype_declaration = 415, - sym_attribute = 416, - sym__attribute_argument = 417, - sym__universally_allowed_pattern = 418, - sym__bound_identifier = 419, - sym__binding_pattern_no_expr = 420, - sym__no_expr_pattern_already_bound = 421, - sym__binding_pattern_with_expr = 422, - sym__direct_or_indirect_binding = 423, - sym__binding_pattern_kind = 424, - sym__possibly_async_binding_pattern_kind = 425, - sym__binding_kind_and_pattern = 426, - sym__tuple_pattern_item = 427, - sym__tuple_pattern = 428, - sym__case_pattern = 429, - sym__type_casting_pattern = 430, - sym__binding_pattern = 431, - sym_modifiers = 432, - aux_sym__locally_permitted_modifiers = 433, - sym_parameter_modifiers = 434, - sym__non_local_scope_modifier = 435, - sym__locally_permitted_modifier = 436, - sym_type_modifiers = 437, - sym_member_modifier = 438, - sym_visibility_modifier = 439, - sym_type_parameter_modifiers = 440, - sym_function_modifier = 441, - sym_mutation_modifier = 442, - sym_property_modifier = 443, - sym_inheritance_modifier = 444, - sym_parameter_modifier = 445, - sym_ownership_modifier = 446, - aux_sym_source_file_repeat1 = 447, - aux_sym_identifier_repeat1 = 448, - aux_sym_line_string_literal_repeat1 = 449, - aux_sym_multi_line_string_literal_repeat1 = 450, - aux_sym_raw_string_literal_repeat1 = 451, - aux_sym__interpolation_contents_repeat1 = 452, - aux_sym_user_type_repeat1 = 453, - aux_sym_tuple_type_repeat1 = 454, - aux_sym_optional_type_repeat1 = 455, - aux_sym_protocol_composition_type_repeat1 = 456, - aux_sym__constructor_value_arguments_repeat1 = 457, - aux_sym__fn_call_lambda_arguments_repeat1 = 458, - aux_sym_type_arguments_repeat1 = 459, - aux_sym_value_argument_repeat1 = 460, - aux_sym_tuple_expression_repeat1 = 461, - aux_sym_array_literal_repeat1 = 462, - aux_sym_dictionary_literal_repeat1 = 463, - aux_sym__playground_literal_repeat1 = 464, - aux_sym__lambda_type_declaration_repeat1 = 465, - aux_sym_capture_list_repeat1 = 466, - aux_sym_lambda_function_type_parameters_repeat1 = 467, - aux_sym_if_statement_repeat1 = 468, - aux_sym_switch_statement_repeat1 = 469, - aux_sym_switch_entry_repeat1 = 470, - aux_sym_do_statement_repeat1 = 471, - aux_sym_key_path_expression_repeat1 = 472, - aux_sym__key_path_component_repeat1 = 473, - aux_sym_statements_repeat1 = 474, - aux_sym_availability_condition_repeat1 = 475, - aux_sym__availability_argument_repeat1 = 476, - aux_sym_protocol_property_requirements_repeat1 = 477, - aux_sym__modifierless_property_declaration_repeat1 = 478, - aux_sym__inheritance_specifiers_repeat1 = 479, - aux_sym_type_parameters_repeat1 = 480, - aux_sym_type_constraints_repeat1 = 481, - aux_sym__class_member_declarations_repeat1 = 482, - aux_sym__function_value_parameters_repeat1 = 483, - aux_sym_enum_class_body_repeat1 = 484, - aux_sym_enum_entry_repeat1 = 485, - aux_sym_enum_type_parameters_repeat1 = 486, - aux_sym__protocol_member_declarations_repeat1 = 487, - aux_sym_computed_property_repeat1 = 488, - aux_sym_deprecated_operator_declaration_body_repeat1 = 489, - aux_sym_precedence_group_attributes_repeat1 = 490, - aux_sym_attribute_repeat1 = 491, - aux_sym__attribute_argument_repeat1 = 492, - aux_sym__attribute_argument_repeat2 = 493, - aux_sym__tuple_pattern_repeat1 = 494, - aux_sym_modifiers_repeat1 = 495, - aux_sym_parameter_modifiers_repeat1 = 496, - alias_sym_fully_open_range = 497, - alias_sym_interpolated_expression = 498, - alias_sym_protocol_function_declaration = 499, - alias_sym_type_identifier = 500, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [anon_sym_POUND_BANG] = "#!", - [aux_sym_shebang_line_token1] = "shebang_line_token1", - [sym_comment] = "comment", - [aux_sym_simple_identifier_token1] = "simple_identifier_token1", - [aux_sym_simple_identifier_token2] = "simple_identifier_token2", - [aux_sym_simple_identifier_token3] = "simple_identifier_token3", - [aux_sym_simple_identifier_token4] = "simple_identifier_token4", - [anon_sym_actor] = "actor", - [anon_sym_nil] = "nil", - [sym_real_literal] = "real_literal", - [sym_integer_literal] = "integer_literal", - [sym_hex_literal] = "hex_literal", - [sym_oct_literal] = "oct_literal", - [sym_bin_literal] = "bin_literal", - [anon_sym_true] = "true", - [anon_sym_false] = "false", - [anon_sym_DQUOTE] = "\"", - [aux_sym_line_str_text_token1] = "line_str_text_token1", - [anon_sym_BSLASH] = "\\", - [anon_sym_u] = "u", - [aux_sym__uni_character_literal_token1] = "_uni_character_literal_token1", - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = "\"\"\"", - [anon_sym_RPAREN] = ")", - [sym_raw_str_interpolation_start] = "raw_str_interpolation_start", - [anon_sym_BSLASH_LPAREN] = "\\(", - [anon_sym_COMMA] = ",", - [sym__escaped_identifier] = "_escaped_identifier", - [sym__extended_regex_literal] = "_extended_regex_literal", - [aux_sym__multiline_regex_literal_token1] = "_multiline_regex_literal_token1", - [aux_sym__multiline_regex_literal_token2] = "_multiline_regex_literal_token2", - [sym__oneline_regex_literal] = "_oneline_regex_literal", - [anon_sym_COLON] = ":", - [anon_sym_BANG] = "!", - [anon_sym_LPAREN] = "(", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_DOT] = ".", - [anon_sym_Type] = "Type", - [anon_sym_Protocol] = "Protocol", - [anon_sym_QMARK] = "\?", - [sym__immediate_quest] = "\?", - [anon_sym_some] = "some", - [anon_sym_any] = "any", - [anon_sym_AMP] = "&", - [anon_sym_async] = "async", - [anon_sym_POUNDselector] = "#selector", - [anon_sym_getter_COLON] = "getter:", - [anon_sym_setter_COLON] = "setter:", - [aux_sym_custom_operator_token1] = "custom_operator_token1", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_await] = "await", - [anon_sym_POUNDfile] = "#file", - [anon_sym_POUNDfileID] = "#fileID", - [anon_sym_POUNDfilePath] = "#filePath", - [anon_sym_POUNDline] = "#line", - [anon_sym_POUNDcolumn] = "#column", - [anon_sym_POUNDfunction] = "#function", - [anon_sym_POUNDdsohandle] = "#dsohandle", - [anon_sym_POUNDcolorLiteral] = "#colorLiteral", - [anon_sym_POUNDfileLiteral] = "#fileLiteral", - [anon_sym_POUNDimageLiteral] = "#imageLiteral", - [anon_sym_LBRACE] = "{", - [anon_sym_CARET_LBRACE] = "^{", - [anon_sym_RBRACE] = "}", - [anon_sym_in] = "in", - [anon_sym_self] = "self", - [anon_sym_super] = "super", - [anon_sym_if] = "if", - [anon_sym_guard] = "guard", - [anon_sym_switch] = "switch", - [anon_sym_case] = "case", - [anon_sym_fallthrough] = "fallthrough", - [anon_sym_do] = "do", - [anon_sym_POUNDkeyPath] = "#keyPath", - [anon_sym_try] = "try", - [anon_sym_try_BANG] = "try!", - [anon_sym_try_QMARK] = "try\?", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_STAR_EQ] = "*=", - [anon_sym_SLASH_EQ] = "/=", - [anon_sym_PERCENT_EQ] = "%=", - [anon_sym_EQ] = "=", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_BANG_EQ_EQ] = "!==", - [anon_sym_EQ_EQ_EQ] = "===", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_DOT_DOT_DOT] = "...", - [anon_sym_DOT_DOT_LT] = "..<", - [anon_sym_is] = "is", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [anon_sym_TILDE] = "~", - [anon_sym_PIPE] = "|", - [anon_sym_CARET] = "^", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [sym_statement_label] = "statement_label", - [anon_sym_for] = "for", - [anon_sym_while] = "while", - [anon_sym_repeat] = "repeat", - [sym_throw_keyword] = "throw_keyword", - [anon_sym_return] = "return", - [anon_sym_continue] = "continue", - [anon_sym_break] = "break", - [anon_sym_yield] = "yield", - [anon_sym_POUNDavailable] = "#available", - [anon_sym_import] = "import", - [anon_sym_typealias] = "typealias", - [anon_sym_struct] = "struct", - [anon_sym_class] = "class", - [anon_sym_enum] = "enum", - [anon_sym_protocol] = "protocol", - [anon_sym_let] = "let", - [anon_sym_var] = "var", - [anon_sym_func] = "func", - [anon_sym_extension] = "extension", - [anon_sym_indirect] = "indirect", - [anon_sym_init] = "init", - [anon_sym_SEMI] = ";", - [anon_sym_deinit] = "deinit", - [anon_sym_subscript] = "subscript", - [anon_sym_get] = "get", - [anon_sym_set] = "set", - [anon_sym__modify] = "_modify", - [anon_sym_prefix] = "prefix", - [anon_sym_infix] = "infix", - [anon_sym_postfix] = "postfix", - [anon_sym_operator] = "operator", - [anon_sym_precedencegroup] = "precedencegroup", - [anon_sym_associatedtype] = "associatedtype", - [anon_sym_AT] = "@", - [sym_wildcard_pattern] = "wildcard_pattern", - [sym_property_behavior_modifier] = "property_behavior_modifier", - [anon_sym_override] = "override", - [anon_sym_convenience] = "convenience", - [anon_sym_required] = "required", - [anon_sym_nonisolated] = "nonisolated", - [anon_sym_public] = "public", - [anon_sym_private] = "private", - [anon_sym_internal] = "internal", - [anon_sym_fileprivate] = "fileprivate", - [anon_sym_open] = "open", - [anon_sym_mutating] = "mutating", - [anon_sym_nonmutating] = "nonmutating", - [anon_sym_static] = "static", - [anon_sym_dynamic] = "dynamic", - [anon_sym_optional] = "optional", - [anon_sym_final] = "final", - [anon_sym_inout] = "inout", - [anon_sym_ATescaping] = "@escaping", - [anon_sym_ATautoclosure] = "@autoclosure", - [anon_sym_weak] = "weak", - [anon_sym_unowned] = "unowned", - [anon_sym_unowned_LPARENsafe_RPAREN] = "unowned(safe)", - [anon_sym_unowned_LPARENunsafe_RPAREN] = "unowned(unsafe)", - [anon_sym_property] = "property", - [anon_sym_receiver] = "receiver", - [anon_sym_param] = "param", - [anon_sym_setparam] = "setparam", - [anon_sym_delegate] = "delegate", - [sym_directive] = "directive", - [sym_diagnostic] = "diagnostic", - [sym_multiline_comment] = "multiline_comment", - [sym_raw_str_part] = "raw_str_part", - [sym_raw_str_continuing_indicator] = "raw_str_continuing_indicator", - [sym_raw_str_end_part] = "raw_str_end_part", - [sym__implicit_semi] = "_implicit_semi", - [sym__explicit_semi] = "_explicit_semi", - [sym__arrow_operator_custom] = "->", - [sym__dot_custom] = ".", - [sym__conjunction_operator_custom] = "&&", - [sym__disjunction_operator_custom] = "||", - [sym__nil_coalescing_operator_custom] = "\?\?", - [sym__eq_custom] = "=", - [sym__eq_eq_custom] = "==", - [sym__plus_then_ws] = "+", - [sym__minus_then_ws] = "-", - [sym_bang] = "bang", - [sym__throws_keyword] = "_throws_keyword", - [sym__rethrows_keyword] = "_rethrows_keyword", - [sym_default_keyword] = "default_keyword", - [sym_where_keyword] = "where_keyword", - [sym_else] = "else", - [sym_catch_keyword] = "catch_keyword", - [sym__as_custom] = "as", - [sym__as_quest_custom] = "as\?", - [sym__as_bang_custom] = "as!", - [sym__async_keyword_custom] = "async", - [sym__custom_operator] = "_custom_operator", - [sym_source_file] = "source_file", - [sym__semi] = "_semi", - [sym_shebang_line] = "shebang_line", - [sym_simple_identifier] = "simple_identifier", - [sym_identifier] = "identifier", - [sym__basic_literal] = "_basic_literal", - [sym_boolean_literal] = "boolean_literal", - [sym__string_literal] = "_string_literal", - [sym_line_string_literal] = "line_string_literal", - [sym__line_string_content] = "_line_string_content", - [sym_line_str_text] = "line_str_text", - [sym_str_escaped_char] = "str_escaped_char", - [sym__uni_character_literal] = "_uni_character_literal", - [sym_multi_line_string_literal] = "multi_line_string_literal", - [sym_raw_string_literal] = "raw_string_literal", - [sym_raw_str_interpolation] = "raw_str_interpolation", - [sym__multi_line_string_content] = "_multi_line_string_content", - [sym__interpolation] = "_interpolation", - [sym__interpolation_contents] = "_interpolation_contents", - [sym_multi_line_str_text] = "multi_line_str_text", - [sym_regex_literal] = "regex_literal", - [sym__multiline_regex_literal] = "_multiline_regex_literal", - [sym_type_annotation] = "type_annotation", - [sym__possibly_implicitly_unwrapped_type] = "_possibly_implicitly_unwrapped_type", - [sym__type] = "_type", - [sym__unannotated_type] = "_unannotated_type", - [sym_user_type] = "user_type", - [sym__simple_user_type] = "_simple_user_type", - [sym_tuple_type] = "tuple_type", - [sym_tuple_type_item] = "tuple_type_item", - [sym__tuple_type_item_identifier] = "_tuple_type_item_identifier", - [sym_function_type] = "function_type", - [sym_array_type] = "array_type", - [sym_dictionary_type] = "dictionary_type", - [sym_optional_type] = "optional_type", - [sym_metatype] = "metatype", - [sym__quest] = "_quest", - [sym_opaque_type] = "opaque_type", - [sym_existential_type] = "existential_type", - [sym_protocol_composition_type] = "protocol_composition_type", - [sym__expression] = "_expression", - [sym__unary_expression] = "_unary_expression", - [sym_postfix_expression] = "postfix_expression", - [sym_constructor_expression] = "constructor_expression", - [sym_navigation_expression] = "navigation_expression", - [sym__navigable_type_expression] = "_navigable_type_expression", - [sym_open_start_range_expression] = "open_start_range_expression", - [sym__range_operator] = "_range_operator", - [sym_open_end_range_expression] = "open_end_range_expression", - [sym_prefix_expression] = "prefix_expression", - [sym_as_expression] = "as_expression", - [sym_selector_expression] = "selector_expression", - [sym__binary_expression] = "_binary_expression", - [sym_multiplicative_expression] = "multiplicative_expression", - [sym_additive_expression] = "additive_expression", - [sym_range_expression] = "range_expression", - [sym_infix_expression] = "infix_expression", - [sym_nil_coalescing_expression] = "nil_coalescing_expression", - [sym_check_expression] = "check_expression", - [sym_comparison_expression] = "comparison_expression", - [sym_equality_expression] = "equality_expression", - [sym_conjunction_expression] = "conjunction_expression", - [sym_disjunction_expression] = "disjunction_expression", - [sym_bitwise_operation] = "bitwise_operation", - [sym_custom_operator] = "custom_operator", - [sym_navigation_suffix] = "navigation_suffix", - [sym_call_suffix] = "call_suffix", - [sym_constructor_suffix] = "constructor_suffix", - [sym__constructor_value_arguments] = "value_arguments", - [sym__fn_call_lambda_arguments] = "_fn_call_lambda_arguments", - [sym_type_arguments] = "type_arguments", - [sym_value_arguments] = "value_arguments", - [sym_value_argument] = "value_argument", - [sym_try_expression] = "try_expression", - [sym_await_expression] = "await_expression", - [sym__await_operator] = "_await_operator", - [sym_ternary_expression] = "ternary_expression", - [sym__expr_hack_at_ternary_binary_suffix] = "_expr_hack_at_ternary_binary_suffix", - [sym_expr_hack_at_ternary_binary_call] = "call_expression", - [sym_expr_hack_at_ternary_binary_call_suffix] = "call_suffix", - [sym_call_expression] = "call_expression", - [sym__primary_expression] = "_primary_expression", - [sym_tuple_expression] = "tuple_expression", - [sym_array_literal] = "array_literal", - [sym_dictionary_literal] = "dictionary_literal", - [sym__dictionary_literal_item] = "_dictionary_literal_item", - [sym__special_literal] = "_special_literal", - [sym__playground_literal] = "_playground_literal", - [sym_lambda_literal] = "lambda_literal", - [sym__lambda_type_declaration] = "_lambda_type_declaration", - [sym_capture_list] = "capture_list", - [sym_capture_list_item] = "capture_list_item", - [sym_lambda_function_type] = "lambda_function_type", - [sym_lambda_function_type_parameters] = "lambda_function_type_parameters", - [sym_lambda_parameter] = "lambda_parameter", - [sym_self_expression] = "self_expression", - [sym_super_expression] = "super_expression", - [sym__else_options] = "_else_options", - [sym_if_statement] = "if_statement", - [sym__if_condition_sequence_item] = "_if_condition_sequence_item", - [sym__if_let_binding] = "_if_let_binding", - [sym_guard_statement] = "guard_statement", - [sym_switch_statement] = "switch_statement", - [sym_switch_entry] = "switch_entry", - [sym_switch_pattern] = "switch_pattern", - [sym_do_statement] = "do_statement", - [sym_catch_block] = "catch_block", - [sym_where_clause] = "where_clause", - [sym_key_path_expression] = "key_path_expression", - [sym_key_path_string_expression] = "key_path_string_expression", - [sym__key_path_component] = "_key_path_component", - [sym__key_path_postfixes] = "_key_path_postfixes", - [sym__try_operator] = "_try_operator", - [sym__assignment_and_operator] = "_assignment_and_operator", - [sym__equality_operator] = "_equality_operator", - [sym__comparison_operator] = "_comparison_operator", - [sym__three_dot_operator] = "_three_dot_operator", - [sym__open_ended_range_operator] = "_open_ended_range_operator", - [sym__is_operator] = "_is_operator", - [sym__additive_operator] = "_additive_operator", - [sym__multiplicative_operator] = "_multiplicative_operator", - [sym_as_operator] = "as_operator", - [sym__prefix_unary_operator] = "_prefix_unary_operator", - [sym__bitwise_binary_operator] = "_bitwise_binary_operator", - [sym__postfix_unary_operator] = "_postfix_unary_operator", - [sym_directly_assignable_expression] = "directly_assignable_expression", - [sym_statements] = "statements", - [sym__local_statement] = "_local_statement", - [sym__top_level_statement] = "_top_level_statement", - [sym__block] = "_block", - [sym__labeled_statement] = "_labeled_statement", - [sym_for_statement] = "for_statement", - [sym_while_statement] = "while_statement", - [sym_repeat_while_statement] = "repeat_while_statement", - [sym_control_transfer_statement] = "control_transfer_statement", - [sym__throw_statement] = "_throw_statement", - [sym__optionally_valueful_control_keyword] = "_optionally_valueful_control_keyword", - [sym_assignment] = "assignment", - [sym_availability_condition] = "availability_condition", - [sym__availability_argument] = "_availability_argument", - [sym__global_declaration] = "_global_declaration", - [sym__type_level_declaration] = "_type_level_declaration", - [sym__local_declaration] = "_local_declaration", - [sym__local_property_declaration] = "property_declaration", - [sym__local_typealias_declaration] = "typealias_declaration", - [sym__local_function_declaration] = "function_declaration", - [sym__local_class_declaration] = "class_declaration", - [sym_import_declaration] = "import_declaration", - [sym__import_kind] = "_import_kind", - [sym_protocol_property_declaration] = "protocol_property_declaration", - [sym_protocol_property_requirements] = "protocol_property_requirements", - [sym_property_declaration] = "property_declaration", - [sym__modifierless_property_declaration] = "_modifierless_property_declaration", - [sym__single_modifierless_property_declaration] = "_single_modifierless_property_declaration", - [sym_typealias_declaration] = "typealias_declaration", - [sym__modifierless_typealias_declaration] = "_modifierless_typealias_declaration", - [sym_function_declaration] = "function_declaration", - [sym__modifierless_function_declaration] = "_modifierless_function_declaration", - [sym__bodyless_function_declaration] = "_bodyless_function_declaration", - [sym__modifierless_function_declaration_no_body] = "_modifierless_function_declaration_no_body", - [sym_function_body] = "function_body", - [sym_class_declaration] = "class_declaration", - [sym__modifierless_class_declaration] = "_modifierless_class_declaration", - [sym_class_body] = "class_body", - [sym__inheritance_specifiers] = "_inheritance_specifiers", - [sym_inheritance_specifier] = "inheritance_specifier", - [sym__annotated_inheritance_specifier] = "_annotated_inheritance_specifier", - [sym_type_parameters] = "type_parameters", - [sym_type_parameter] = "type_parameter", - [sym_type_constraints] = "type_constraints", - [sym_type_constraint] = "type_constraint", - [sym_inheritance_constraint] = "inheritance_constraint", - [sym_equality_constraint] = "equality_constraint", - [sym__class_member_separator] = "_class_member_separator", - [sym__class_member_declarations] = "_class_member_declarations", - [aux_sym__function_value_parameters] = "_function_value_parameters", - [sym__function_value_parameter] = "_function_value_parameter", - [sym_parameter] = "parameter", - [sym__constructor_function_decl] = "_constructor_function_decl", - [sym__non_constructor_function_decl] = "_non_constructor_function_decl", - [sym__referenceable_operator] = "_referenceable_operator", - [sym__equal_sign] = "_equal_sign", - [sym__eq_eq] = "_eq_eq", - [sym__dot] = "_dot", - [sym__arrow_operator] = "_arrow_operator", - [sym__conjunction_operator] = "_conjunction_operator", - [sym__disjunction_operator] = "_disjunction_operator", - [sym__nil_coalescing_operator] = "_nil_coalescing_operator", - [sym__as] = "_as", - [sym__as_quest] = "_as_quest", - [sym__as_bang] = "_as_bang", - [sym__async_keyword] = "_async_keyword", - [sym__async_modifier] = "_async_modifier", - [sym_throws] = "throws", - [sym_enum_class_body] = "enum_class_body", - [sym_enum_entry] = "enum_entry", - [sym__enum_entry_suffix] = "_enum_entry_suffix", - [sym_enum_type_parameters] = "enum_type_parameters", - [sym_protocol_declaration] = "protocol_declaration", - [sym_protocol_body] = "protocol_body", - [sym__protocol_member_declarations] = "_protocol_member_declarations", - [sym__protocol_member_declaration] = "_protocol_member_declaration", - [sym_deinit_declaration] = "deinit_declaration", - [sym_subscript_declaration] = "subscript_declaration", - [sym_computed_property] = "computed_property", - [sym_computed_getter] = "computed_getter", - [sym_computed_modify] = "computed_modify", - [sym_computed_setter] = "computed_setter", - [sym_getter_specifier] = "getter_specifier", - [sym_setter_specifier] = "setter_specifier", - [sym_modify_specifier] = "modify_specifier", - [aux_sym__getter_effects] = "_getter_effects", - [sym_operator_declaration] = "operator_declaration", - [sym_deprecated_operator_declaration_body] = "deprecated_operator_declaration_body", - [sym_precedence_group_declaration] = "precedence_group_declaration", - [sym_precedence_group_attributes] = "precedence_group_attributes", - [sym_precedence_group_attribute] = "precedence_group_attribute", - [sym_associatedtype_declaration] = "associatedtype_declaration", - [sym_attribute] = "attribute", - [sym__attribute_argument] = "_attribute_argument", - [sym__universally_allowed_pattern] = "_universally_allowed_pattern", - [sym__bound_identifier] = "_bound_identifier", - [sym__binding_pattern_no_expr] = "_binding_pattern_no_expr", - [sym__no_expr_pattern_already_bound] = "_no_expr_pattern_already_bound", - [sym__binding_pattern_with_expr] = "pattern", - [sym__direct_or_indirect_binding] = "_direct_or_indirect_binding", - [sym__binding_pattern_kind] = "_binding_pattern_kind", - [sym__possibly_async_binding_pattern_kind] = "_possibly_async_binding_pattern_kind", - [sym__binding_kind_and_pattern] = "_binding_kind_and_pattern", - [sym__tuple_pattern_item] = "_tuple_pattern_item", - [sym__tuple_pattern] = "_tuple_pattern", - [sym__case_pattern] = "_case_pattern", - [sym__type_casting_pattern] = "_type_casting_pattern", - [sym__binding_pattern] = "_binding_pattern", - [sym_modifiers] = "modifiers", - [aux_sym__locally_permitted_modifiers] = "_locally_permitted_modifiers", - [sym_parameter_modifiers] = "parameter_modifiers", - [sym__non_local_scope_modifier] = "_non_local_scope_modifier", - [sym__locally_permitted_modifier] = "_locally_permitted_modifier", - [sym_type_modifiers] = "type_modifiers", - [sym_member_modifier] = "member_modifier", - [sym_visibility_modifier] = "visibility_modifier", - [sym_type_parameter_modifiers] = "type_parameter_modifiers", - [sym_function_modifier] = "function_modifier", - [sym_mutation_modifier] = "mutation_modifier", - [sym_property_modifier] = "property_modifier", - [sym_inheritance_modifier] = "inheritance_modifier", - [sym_parameter_modifier] = "parameter_modifier", - [sym_ownership_modifier] = "ownership_modifier", - [aux_sym_source_file_repeat1] = "source_file_repeat1", - [aux_sym_identifier_repeat1] = "identifier_repeat1", - [aux_sym_line_string_literal_repeat1] = "line_string_literal_repeat1", - [aux_sym_multi_line_string_literal_repeat1] = "multi_line_string_literal_repeat1", - [aux_sym_raw_string_literal_repeat1] = "raw_string_literal_repeat1", - [aux_sym__interpolation_contents_repeat1] = "_interpolation_contents_repeat1", - [aux_sym_user_type_repeat1] = "user_type_repeat1", - [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", - [aux_sym_optional_type_repeat1] = "optional_type_repeat1", - [aux_sym_protocol_composition_type_repeat1] = "protocol_composition_type_repeat1", - [aux_sym__constructor_value_arguments_repeat1] = "_constructor_value_arguments_repeat1", - [aux_sym__fn_call_lambda_arguments_repeat1] = "_fn_call_lambda_arguments_repeat1", - [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", - [aux_sym_value_argument_repeat1] = "value_argument_repeat1", - [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", - [aux_sym_array_literal_repeat1] = "array_literal_repeat1", - [aux_sym_dictionary_literal_repeat1] = "dictionary_literal_repeat1", - [aux_sym__playground_literal_repeat1] = "_playground_literal_repeat1", - [aux_sym__lambda_type_declaration_repeat1] = "_lambda_type_declaration_repeat1", - [aux_sym_capture_list_repeat1] = "capture_list_repeat1", - [aux_sym_lambda_function_type_parameters_repeat1] = "lambda_function_type_parameters_repeat1", - [aux_sym_if_statement_repeat1] = "if_statement_repeat1", - [aux_sym_switch_statement_repeat1] = "switch_statement_repeat1", - [aux_sym_switch_entry_repeat1] = "switch_entry_repeat1", - [aux_sym_do_statement_repeat1] = "do_statement_repeat1", - [aux_sym_key_path_expression_repeat1] = "key_path_expression_repeat1", - [aux_sym__key_path_component_repeat1] = "_key_path_component_repeat1", - [aux_sym_statements_repeat1] = "statements_repeat1", - [aux_sym_availability_condition_repeat1] = "availability_condition_repeat1", - [aux_sym__availability_argument_repeat1] = "_availability_argument_repeat1", - [aux_sym_protocol_property_requirements_repeat1] = "protocol_property_requirements_repeat1", - [aux_sym__modifierless_property_declaration_repeat1] = "_modifierless_property_declaration_repeat1", - [aux_sym__inheritance_specifiers_repeat1] = "_inheritance_specifiers_repeat1", - [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", - [aux_sym_type_constraints_repeat1] = "type_constraints_repeat1", - [aux_sym__class_member_declarations_repeat1] = "_class_member_declarations_repeat1", - [aux_sym__function_value_parameters_repeat1] = "_function_value_parameters_repeat1", - [aux_sym_enum_class_body_repeat1] = "enum_class_body_repeat1", - [aux_sym_enum_entry_repeat1] = "enum_entry_repeat1", - [aux_sym_enum_type_parameters_repeat1] = "enum_type_parameters_repeat1", - [aux_sym__protocol_member_declarations_repeat1] = "_protocol_member_declarations_repeat1", - [aux_sym_computed_property_repeat1] = "computed_property_repeat1", - [aux_sym_deprecated_operator_declaration_body_repeat1] = "deprecated_operator_declaration_body_repeat1", - [aux_sym_precedence_group_attributes_repeat1] = "precedence_group_attributes_repeat1", - [aux_sym_attribute_repeat1] = "attribute_repeat1", - [aux_sym__attribute_argument_repeat1] = "_attribute_argument_repeat1", - [aux_sym__attribute_argument_repeat2] = "_attribute_argument_repeat2", - [aux_sym__tuple_pattern_repeat1] = "_tuple_pattern_repeat1", - [aux_sym_modifiers_repeat1] = "modifiers_repeat1", - [aux_sym_parameter_modifiers_repeat1] = "parameter_modifiers_repeat1", - [alias_sym_fully_open_range] = "fully_open_range", - [alias_sym_interpolated_expression] = "interpolated_expression", - [alias_sym_protocol_function_declaration] = "protocol_function_declaration", - [alias_sym_type_identifier] = "type_identifier", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_POUND_BANG] = anon_sym_POUND_BANG, - [aux_sym_shebang_line_token1] = aux_sym_shebang_line_token1, - [sym_comment] = sym_comment, - [aux_sym_simple_identifier_token1] = aux_sym_simple_identifier_token1, - [aux_sym_simple_identifier_token2] = aux_sym_simple_identifier_token2, - [aux_sym_simple_identifier_token3] = aux_sym_simple_identifier_token3, - [aux_sym_simple_identifier_token4] = aux_sym_simple_identifier_token4, - [anon_sym_actor] = anon_sym_actor, - [anon_sym_nil] = anon_sym_nil, - [sym_real_literal] = sym_real_literal, - [sym_integer_literal] = sym_integer_literal, - [sym_hex_literal] = sym_hex_literal, - [sym_oct_literal] = sym_oct_literal, - [sym_bin_literal] = sym_bin_literal, - [anon_sym_true] = anon_sym_true, - [anon_sym_false] = anon_sym_false, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [aux_sym_line_str_text_token1] = aux_sym_line_str_text_token1, - [anon_sym_BSLASH] = anon_sym_BSLASH, - [anon_sym_u] = anon_sym_u, - [aux_sym__uni_character_literal_token1] = aux_sym__uni_character_literal_token1, - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE_DQUOTE, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [sym_raw_str_interpolation_start] = sym_raw_str_interpolation_start, - [anon_sym_BSLASH_LPAREN] = anon_sym_BSLASH_LPAREN, - [anon_sym_COMMA] = anon_sym_COMMA, - [sym__escaped_identifier] = sym__escaped_identifier, - [sym__extended_regex_literal] = sym__extended_regex_literal, - [aux_sym__multiline_regex_literal_token1] = aux_sym__multiline_regex_literal_token1, - [aux_sym__multiline_regex_literal_token2] = aux_sym__multiline_regex_literal_token2, - [sym__oneline_regex_literal] = sym__oneline_regex_literal, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_Type] = anon_sym_Type, - [anon_sym_Protocol] = anon_sym_Protocol, - [anon_sym_QMARK] = anon_sym_QMARK, - [sym__immediate_quest] = anon_sym_QMARK, - [anon_sym_some] = anon_sym_some, - [anon_sym_any] = anon_sym_any, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_async] = anon_sym_async, - [anon_sym_POUNDselector] = anon_sym_POUNDselector, - [anon_sym_getter_COLON] = anon_sym_getter_COLON, - [anon_sym_setter_COLON] = anon_sym_setter_COLON, - [aux_sym_custom_operator_token1] = aux_sym_custom_operator_token1, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_await] = anon_sym_await, - [anon_sym_POUNDfile] = anon_sym_POUNDfile, - [anon_sym_POUNDfileID] = anon_sym_POUNDfileID, - [anon_sym_POUNDfilePath] = anon_sym_POUNDfilePath, - [anon_sym_POUNDline] = anon_sym_POUNDline, - [anon_sym_POUNDcolumn] = anon_sym_POUNDcolumn, - [anon_sym_POUNDfunction] = anon_sym_POUNDfunction, - [anon_sym_POUNDdsohandle] = anon_sym_POUNDdsohandle, - [anon_sym_POUNDcolorLiteral] = anon_sym_POUNDcolorLiteral, - [anon_sym_POUNDfileLiteral] = anon_sym_POUNDfileLiteral, - [anon_sym_POUNDimageLiteral] = anon_sym_POUNDimageLiteral, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_CARET_LBRACE] = anon_sym_CARET_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_in] = anon_sym_in, - [anon_sym_self] = anon_sym_self, - [anon_sym_super] = anon_sym_super, - [anon_sym_if] = anon_sym_if, - [anon_sym_guard] = anon_sym_guard, - [anon_sym_switch] = anon_sym_switch, - [anon_sym_case] = anon_sym_case, - [anon_sym_fallthrough] = anon_sym_fallthrough, - [anon_sym_do] = anon_sym_do, - [anon_sym_POUNDkeyPath] = anon_sym_POUNDkeyPath, - [anon_sym_try] = anon_sym_try, - [anon_sym_try_BANG] = anon_sym_try_BANG, - [anon_sym_try_QMARK] = anon_sym_try_QMARK, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, - [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, - [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, - [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, - [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, - [anon_sym_DOT_DOT_LT] = anon_sym_DOT_DOT_LT, - [anon_sym_is] = anon_sym_is, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [sym_statement_label] = sym_statement_label, - [anon_sym_for] = anon_sym_for, - [anon_sym_while] = anon_sym_while, - [anon_sym_repeat] = anon_sym_repeat, - [sym_throw_keyword] = sym_throw_keyword, - [anon_sym_return] = anon_sym_return, - [anon_sym_continue] = anon_sym_continue, - [anon_sym_break] = anon_sym_break, - [anon_sym_yield] = anon_sym_yield, - [anon_sym_POUNDavailable] = anon_sym_POUNDavailable, - [anon_sym_import] = anon_sym_import, - [anon_sym_typealias] = anon_sym_typealias, - [anon_sym_struct] = anon_sym_struct, - [anon_sym_class] = anon_sym_class, - [anon_sym_enum] = anon_sym_enum, - [anon_sym_protocol] = anon_sym_protocol, - [anon_sym_let] = anon_sym_let, - [anon_sym_var] = anon_sym_var, - [anon_sym_func] = anon_sym_func, - [anon_sym_extension] = anon_sym_extension, - [anon_sym_indirect] = anon_sym_indirect, - [anon_sym_init] = anon_sym_init, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_deinit] = anon_sym_deinit, - [anon_sym_subscript] = anon_sym_subscript, - [anon_sym_get] = anon_sym_get, - [anon_sym_set] = anon_sym_set, - [anon_sym__modify] = anon_sym__modify, - [anon_sym_prefix] = anon_sym_prefix, - [anon_sym_infix] = anon_sym_infix, - [anon_sym_postfix] = anon_sym_postfix, - [anon_sym_operator] = anon_sym_operator, - [anon_sym_precedencegroup] = anon_sym_precedencegroup, - [anon_sym_associatedtype] = anon_sym_associatedtype, - [anon_sym_AT] = anon_sym_AT, - [sym_wildcard_pattern] = sym_wildcard_pattern, - [sym_property_behavior_modifier] = sym_property_behavior_modifier, - [anon_sym_override] = anon_sym_override, - [anon_sym_convenience] = anon_sym_convenience, - [anon_sym_required] = anon_sym_required, - [anon_sym_nonisolated] = anon_sym_nonisolated, - [anon_sym_public] = anon_sym_public, - [anon_sym_private] = anon_sym_private, - [anon_sym_internal] = anon_sym_internal, - [anon_sym_fileprivate] = anon_sym_fileprivate, - [anon_sym_open] = anon_sym_open, - [anon_sym_mutating] = anon_sym_mutating, - [anon_sym_nonmutating] = anon_sym_nonmutating, - [anon_sym_static] = anon_sym_static, - [anon_sym_dynamic] = anon_sym_dynamic, - [anon_sym_optional] = anon_sym_optional, - [anon_sym_final] = anon_sym_final, - [anon_sym_inout] = anon_sym_inout, - [anon_sym_ATescaping] = anon_sym_ATescaping, - [anon_sym_ATautoclosure] = anon_sym_ATautoclosure, - [anon_sym_weak] = anon_sym_weak, - [anon_sym_unowned] = anon_sym_unowned, - [anon_sym_unowned_LPARENsafe_RPAREN] = anon_sym_unowned_LPARENsafe_RPAREN, - [anon_sym_unowned_LPARENunsafe_RPAREN] = anon_sym_unowned_LPARENunsafe_RPAREN, - [anon_sym_property] = anon_sym_property, - [anon_sym_receiver] = anon_sym_receiver, - [anon_sym_param] = anon_sym_param, - [anon_sym_setparam] = anon_sym_setparam, - [anon_sym_delegate] = anon_sym_delegate, - [sym_directive] = sym_directive, - [sym_diagnostic] = sym_diagnostic, - [sym_multiline_comment] = sym_multiline_comment, - [sym_raw_str_part] = sym_raw_str_part, - [sym_raw_str_continuing_indicator] = sym_raw_str_continuing_indicator, - [sym_raw_str_end_part] = sym_raw_str_end_part, - [sym__implicit_semi] = sym__implicit_semi, - [sym__explicit_semi] = sym__explicit_semi, - [sym__arrow_operator_custom] = sym__arrow_operator_custom, - [sym__dot_custom] = anon_sym_DOT, - [sym__conjunction_operator_custom] = sym__conjunction_operator_custom, - [sym__disjunction_operator_custom] = sym__disjunction_operator_custom, - [sym__nil_coalescing_operator_custom] = sym__nil_coalescing_operator_custom, - [sym__eq_custom] = anon_sym_EQ, - [sym__eq_eq_custom] = sym__eq_eq_custom, - [sym__plus_then_ws] = anon_sym_PLUS, - [sym__minus_then_ws] = anon_sym_DASH, - [sym_bang] = sym_bang, - [sym__throws_keyword] = sym__throws_keyword, - [sym__rethrows_keyword] = sym__rethrows_keyword, - [sym_default_keyword] = sym_default_keyword, - [sym_where_keyword] = sym_where_keyword, - [sym_else] = sym_else, - [sym_catch_keyword] = sym_catch_keyword, - [sym__as_custom] = sym__as_custom, - [sym__as_quest_custom] = sym__as_quest_custom, - [sym__as_bang_custom] = sym__as_bang_custom, - [sym__async_keyword_custom] = anon_sym_async, - [sym__custom_operator] = sym__custom_operator, - [sym_source_file] = sym_source_file, - [sym__semi] = sym__semi, - [sym_shebang_line] = sym_shebang_line, - [sym_simple_identifier] = sym_simple_identifier, - [sym_identifier] = sym_identifier, - [sym__basic_literal] = sym__basic_literal, - [sym_boolean_literal] = sym_boolean_literal, - [sym__string_literal] = sym__string_literal, - [sym_line_string_literal] = sym_line_string_literal, - [sym__line_string_content] = sym__line_string_content, - [sym_line_str_text] = sym_line_str_text, - [sym_str_escaped_char] = sym_str_escaped_char, - [sym__uni_character_literal] = sym__uni_character_literal, - [sym_multi_line_string_literal] = sym_multi_line_string_literal, - [sym_raw_string_literal] = sym_raw_string_literal, - [sym_raw_str_interpolation] = sym_raw_str_interpolation, - [sym__multi_line_string_content] = sym__multi_line_string_content, - [sym__interpolation] = sym__interpolation, - [sym__interpolation_contents] = sym__interpolation_contents, - [sym_multi_line_str_text] = sym_multi_line_str_text, - [sym_regex_literal] = sym_regex_literal, - [sym__multiline_regex_literal] = sym__multiline_regex_literal, - [sym_type_annotation] = sym_type_annotation, - [sym__possibly_implicitly_unwrapped_type] = sym__possibly_implicitly_unwrapped_type, - [sym__type] = sym__type, - [sym__unannotated_type] = sym__unannotated_type, - [sym_user_type] = sym_user_type, - [sym__simple_user_type] = sym__simple_user_type, - [sym_tuple_type] = sym_tuple_type, - [sym_tuple_type_item] = sym_tuple_type_item, - [sym__tuple_type_item_identifier] = sym__tuple_type_item_identifier, - [sym_function_type] = sym_function_type, - [sym_array_type] = sym_array_type, - [sym_dictionary_type] = sym_dictionary_type, - [sym_optional_type] = sym_optional_type, - [sym_metatype] = sym_metatype, - [sym__quest] = sym__quest, - [sym_opaque_type] = sym_opaque_type, - [sym_existential_type] = sym_existential_type, - [sym_protocol_composition_type] = sym_protocol_composition_type, - [sym__expression] = sym__expression, - [sym__unary_expression] = sym__unary_expression, - [sym_postfix_expression] = sym_postfix_expression, - [sym_constructor_expression] = sym_constructor_expression, - [sym_navigation_expression] = sym_navigation_expression, - [sym__navigable_type_expression] = sym__navigable_type_expression, - [sym_open_start_range_expression] = sym_open_start_range_expression, - [sym__range_operator] = sym__range_operator, - [sym_open_end_range_expression] = sym_open_end_range_expression, - [sym_prefix_expression] = sym_prefix_expression, - [sym_as_expression] = sym_as_expression, - [sym_selector_expression] = sym_selector_expression, - [sym__binary_expression] = sym__binary_expression, - [sym_multiplicative_expression] = sym_multiplicative_expression, - [sym_additive_expression] = sym_additive_expression, - [sym_range_expression] = sym_range_expression, - [sym_infix_expression] = sym_infix_expression, - [sym_nil_coalescing_expression] = sym_nil_coalescing_expression, - [sym_check_expression] = sym_check_expression, - [sym_comparison_expression] = sym_comparison_expression, - [sym_equality_expression] = sym_equality_expression, - [sym_conjunction_expression] = sym_conjunction_expression, - [sym_disjunction_expression] = sym_disjunction_expression, - [sym_bitwise_operation] = sym_bitwise_operation, - [sym_custom_operator] = sym_custom_operator, - [sym_navigation_suffix] = sym_navigation_suffix, - [sym_call_suffix] = sym_call_suffix, - [sym_constructor_suffix] = sym_constructor_suffix, - [sym__constructor_value_arguments] = sym_value_arguments, - [sym__fn_call_lambda_arguments] = sym__fn_call_lambda_arguments, - [sym_type_arguments] = sym_type_arguments, - [sym_value_arguments] = sym_value_arguments, - [sym_value_argument] = sym_value_argument, - [sym_try_expression] = sym_try_expression, - [sym_await_expression] = sym_await_expression, - [sym__await_operator] = sym__await_operator, - [sym_ternary_expression] = sym_ternary_expression, - [sym__expr_hack_at_ternary_binary_suffix] = sym__expr_hack_at_ternary_binary_suffix, - [sym_expr_hack_at_ternary_binary_call] = sym_call_expression, - [sym_expr_hack_at_ternary_binary_call_suffix] = sym_call_suffix, - [sym_call_expression] = sym_call_expression, - [sym__primary_expression] = sym__primary_expression, - [sym_tuple_expression] = sym_tuple_expression, - [sym_array_literal] = sym_array_literal, - [sym_dictionary_literal] = sym_dictionary_literal, - [sym__dictionary_literal_item] = sym__dictionary_literal_item, - [sym__special_literal] = sym__special_literal, - [sym__playground_literal] = sym__playground_literal, - [sym_lambda_literal] = sym_lambda_literal, - [sym__lambda_type_declaration] = sym__lambda_type_declaration, - [sym_capture_list] = sym_capture_list, - [sym_capture_list_item] = sym_capture_list_item, - [sym_lambda_function_type] = sym_lambda_function_type, - [sym_lambda_function_type_parameters] = sym_lambda_function_type_parameters, - [sym_lambda_parameter] = sym_lambda_parameter, - [sym_self_expression] = sym_self_expression, - [sym_super_expression] = sym_super_expression, - [sym__else_options] = sym__else_options, - [sym_if_statement] = sym_if_statement, - [sym__if_condition_sequence_item] = sym__if_condition_sequence_item, - [sym__if_let_binding] = sym__if_let_binding, - [sym_guard_statement] = sym_guard_statement, - [sym_switch_statement] = sym_switch_statement, - [sym_switch_entry] = sym_switch_entry, - [sym_switch_pattern] = sym_switch_pattern, - [sym_do_statement] = sym_do_statement, - [sym_catch_block] = sym_catch_block, - [sym_where_clause] = sym_where_clause, - [sym_key_path_expression] = sym_key_path_expression, - [sym_key_path_string_expression] = sym_key_path_string_expression, - [sym__key_path_component] = sym__key_path_component, - [sym__key_path_postfixes] = sym__key_path_postfixes, - [sym__try_operator] = sym__try_operator, - [sym__assignment_and_operator] = sym__assignment_and_operator, - [sym__equality_operator] = sym__equality_operator, - [sym__comparison_operator] = sym__comparison_operator, - [sym__three_dot_operator] = sym__three_dot_operator, - [sym__open_ended_range_operator] = sym__open_ended_range_operator, - [sym__is_operator] = sym__is_operator, - [sym__additive_operator] = sym__additive_operator, - [sym__multiplicative_operator] = sym__multiplicative_operator, - [sym_as_operator] = sym_as_operator, - [sym__prefix_unary_operator] = sym__prefix_unary_operator, - [sym__bitwise_binary_operator] = sym__bitwise_binary_operator, - [sym__postfix_unary_operator] = sym__postfix_unary_operator, - [sym_directly_assignable_expression] = sym_directly_assignable_expression, - [sym_statements] = sym_statements, - [sym__local_statement] = sym__local_statement, - [sym__top_level_statement] = sym__top_level_statement, - [sym__block] = sym__block, - [sym__labeled_statement] = sym__labeled_statement, - [sym_for_statement] = sym_for_statement, - [sym_while_statement] = sym_while_statement, - [sym_repeat_while_statement] = sym_repeat_while_statement, - [sym_control_transfer_statement] = sym_control_transfer_statement, - [sym__throw_statement] = sym__throw_statement, - [sym__optionally_valueful_control_keyword] = sym__optionally_valueful_control_keyword, - [sym_assignment] = sym_assignment, - [sym_availability_condition] = sym_availability_condition, - [sym__availability_argument] = sym__availability_argument, - [sym__global_declaration] = sym__global_declaration, - [sym__type_level_declaration] = sym__type_level_declaration, - [sym__local_declaration] = sym__local_declaration, - [sym__local_property_declaration] = sym_property_declaration, - [sym__local_typealias_declaration] = sym_typealias_declaration, - [sym__local_function_declaration] = sym_function_declaration, - [sym__local_class_declaration] = sym_class_declaration, - [sym_import_declaration] = sym_import_declaration, - [sym__import_kind] = sym__import_kind, - [sym_protocol_property_declaration] = sym_protocol_property_declaration, - [sym_protocol_property_requirements] = sym_protocol_property_requirements, - [sym_property_declaration] = sym_property_declaration, - [sym__modifierless_property_declaration] = sym__modifierless_property_declaration, - [sym__single_modifierless_property_declaration] = sym__single_modifierless_property_declaration, - [sym_typealias_declaration] = sym_typealias_declaration, - [sym__modifierless_typealias_declaration] = sym__modifierless_typealias_declaration, - [sym_function_declaration] = sym_function_declaration, - [sym__modifierless_function_declaration] = sym__modifierless_function_declaration, - [sym__bodyless_function_declaration] = sym__bodyless_function_declaration, - [sym__modifierless_function_declaration_no_body] = sym__modifierless_function_declaration_no_body, - [sym_function_body] = sym_function_body, - [sym_class_declaration] = sym_class_declaration, - [sym__modifierless_class_declaration] = sym__modifierless_class_declaration, - [sym_class_body] = sym_class_body, - [sym__inheritance_specifiers] = sym__inheritance_specifiers, - [sym_inheritance_specifier] = sym_inheritance_specifier, - [sym__annotated_inheritance_specifier] = sym__annotated_inheritance_specifier, - [sym_type_parameters] = sym_type_parameters, - [sym_type_parameter] = sym_type_parameter, - [sym_type_constraints] = sym_type_constraints, - [sym_type_constraint] = sym_type_constraint, - [sym_inheritance_constraint] = sym_inheritance_constraint, - [sym_equality_constraint] = sym_equality_constraint, - [sym__class_member_separator] = sym__class_member_separator, - [sym__class_member_declarations] = sym__class_member_declarations, - [aux_sym__function_value_parameters] = aux_sym__function_value_parameters, - [sym__function_value_parameter] = sym__function_value_parameter, - [sym_parameter] = sym_parameter, - [sym__constructor_function_decl] = sym__constructor_function_decl, - [sym__non_constructor_function_decl] = sym__non_constructor_function_decl, - [sym__referenceable_operator] = sym__referenceable_operator, - [sym__equal_sign] = sym__equal_sign, - [sym__eq_eq] = sym__eq_eq, - [sym__dot] = sym__dot, - [sym__arrow_operator] = sym__arrow_operator, - [sym__conjunction_operator] = sym__conjunction_operator, - [sym__disjunction_operator] = sym__disjunction_operator, - [sym__nil_coalescing_operator] = sym__nil_coalescing_operator, - [sym__as] = sym__as, - [sym__as_quest] = sym__as_quest, - [sym__as_bang] = sym__as_bang, - [sym__async_keyword] = sym__async_keyword, - [sym__async_modifier] = sym__async_modifier, - [sym_throws] = sym_throws, - [sym_enum_class_body] = sym_enum_class_body, - [sym_enum_entry] = sym_enum_entry, - [sym__enum_entry_suffix] = sym__enum_entry_suffix, - [sym_enum_type_parameters] = sym_enum_type_parameters, - [sym_protocol_declaration] = sym_protocol_declaration, - [sym_protocol_body] = sym_protocol_body, - [sym__protocol_member_declarations] = sym__protocol_member_declarations, - [sym__protocol_member_declaration] = sym__protocol_member_declaration, - [sym_deinit_declaration] = sym_deinit_declaration, - [sym_subscript_declaration] = sym_subscript_declaration, - [sym_computed_property] = sym_computed_property, - [sym_computed_getter] = sym_computed_getter, - [sym_computed_modify] = sym_computed_modify, - [sym_computed_setter] = sym_computed_setter, - [sym_getter_specifier] = sym_getter_specifier, - [sym_setter_specifier] = sym_setter_specifier, - [sym_modify_specifier] = sym_modify_specifier, - [aux_sym__getter_effects] = aux_sym__getter_effects, - [sym_operator_declaration] = sym_operator_declaration, - [sym_deprecated_operator_declaration_body] = sym_deprecated_operator_declaration_body, - [sym_precedence_group_declaration] = sym_precedence_group_declaration, - [sym_precedence_group_attributes] = sym_precedence_group_attributes, - [sym_precedence_group_attribute] = sym_precedence_group_attribute, - [sym_associatedtype_declaration] = sym_associatedtype_declaration, - [sym_attribute] = sym_attribute, - [sym__attribute_argument] = sym__attribute_argument, - [sym__universally_allowed_pattern] = sym__universally_allowed_pattern, - [sym__bound_identifier] = sym__bound_identifier, - [sym__binding_pattern_no_expr] = sym__binding_pattern_no_expr, - [sym__no_expr_pattern_already_bound] = sym__no_expr_pattern_already_bound, - [sym__binding_pattern_with_expr] = sym__binding_pattern_with_expr, - [sym__direct_or_indirect_binding] = sym__direct_or_indirect_binding, - [sym__binding_pattern_kind] = sym__binding_pattern_kind, - [sym__possibly_async_binding_pattern_kind] = sym__possibly_async_binding_pattern_kind, - [sym__binding_kind_and_pattern] = sym__binding_kind_and_pattern, - [sym__tuple_pattern_item] = sym__tuple_pattern_item, - [sym__tuple_pattern] = sym__tuple_pattern, - [sym__case_pattern] = sym__case_pattern, - [sym__type_casting_pattern] = sym__type_casting_pattern, - [sym__binding_pattern] = sym__binding_pattern, - [sym_modifiers] = sym_modifiers, - [aux_sym__locally_permitted_modifiers] = aux_sym__locally_permitted_modifiers, - [sym_parameter_modifiers] = sym_parameter_modifiers, - [sym__non_local_scope_modifier] = sym__non_local_scope_modifier, - [sym__locally_permitted_modifier] = sym__locally_permitted_modifier, - [sym_type_modifiers] = sym_type_modifiers, - [sym_member_modifier] = sym_member_modifier, - [sym_visibility_modifier] = sym_visibility_modifier, - [sym_type_parameter_modifiers] = sym_type_parameter_modifiers, - [sym_function_modifier] = sym_function_modifier, - [sym_mutation_modifier] = sym_mutation_modifier, - [sym_property_modifier] = sym_property_modifier, - [sym_inheritance_modifier] = sym_inheritance_modifier, - [sym_parameter_modifier] = sym_parameter_modifier, - [sym_ownership_modifier] = sym_ownership_modifier, - [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, - [aux_sym_identifier_repeat1] = aux_sym_identifier_repeat1, - [aux_sym_line_string_literal_repeat1] = aux_sym_line_string_literal_repeat1, - [aux_sym_multi_line_string_literal_repeat1] = aux_sym_multi_line_string_literal_repeat1, - [aux_sym_raw_string_literal_repeat1] = aux_sym_raw_string_literal_repeat1, - [aux_sym__interpolation_contents_repeat1] = aux_sym__interpolation_contents_repeat1, - [aux_sym_user_type_repeat1] = aux_sym_user_type_repeat1, - [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, - [aux_sym_optional_type_repeat1] = aux_sym_optional_type_repeat1, - [aux_sym_protocol_composition_type_repeat1] = aux_sym_protocol_composition_type_repeat1, - [aux_sym__constructor_value_arguments_repeat1] = aux_sym__constructor_value_arguments_repeat1, - [aux_sym__fn_call_lambda_arguments_repeat1] = aux_sym__fn_call_lambda_arguments_repeat1, - [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, - [aux_sym_value_argument_repeat1] = aux_sym_value_argument_repeat1, - [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, - [aux_sym_array_literal_repeat1] = aux_sym_array_literal_repeat1, - [aux_sym_dictionary_literal_repeat1] = aux_sym_dictionary_literal_repeat1, - [aux_sym__playground_literal_repeat1] = aux_sym__playground_literal_repeat1, - [aux_sym__lambda_type_declaration_repeat1] = aux_sym__lambda_type_declaration_repeat1, - [aux_sym_capture_list_repeat1] = aux_sym_capture_list_repeat1, - [aux_sym_lambda_function_type_parameters_repeat1] = aux_sym_lambda_function_type_parameters_repeat1, - [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, - [aux_sym_switch_statement_repeat1] = aux_sym_switch_statement_repeat1, - [aux_sym_switch_entry_repeat1] = aux_sym_switch_entry_repeat1, - [aux_sym_do_statement_repeat1] = aux_sym_do_statement_repeat1, - [aux_sym_key_path_expression_repeat1] = aux_sym_key_path_expression_repeat1, - [aux_sym__key_path_component_repeat1] = aux_sym__key_path_component_repeat1, - [aux_sym_statements_repeat1] = aux_sym_statements_repeat1, - [aux_sym_availability_condition_repeat1] = aux_sym_availability_condition_repeat1, - [aux_sym__availability_argument_repeat1] = aux_sym__availability_argument_repeat1, - [aux_sym_protocol_property_requirements_repeat1] = aux_sym_protocol_property_requirements_repeat1, - [aux_sym__modifierless_property_declaration_repeat1] = aux_sym__modifierless_property_declaration_repeat1, - [aux_sym__inheritance_specifiers_repeat1] = aux_sym__inheritance_specifiers_repeat1, - [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, - [aux_sym_type_constraints_repeat1] = aux_sym_type_constraints_repeat1, - [aux_sym__class_member_declarations_repeat1] = aux_sym__class_member_declarations_repeat1, - [aux_sym__function_value_parameters_repeat1] = aux_sym__function_value_parameters_repeat1, - [aux_sym_enum_class_body_repeat1] = aux_sym_enum_class_body_repeat1, - [aux_sym_enum_entry_repeat1] = aux_sym_enum_entry_repeat1, - [aux_sym_enum_type_parameters_repeat1] = aux_sym_enum_type_parameters_repeat1, - [aux_sym__protocol_member_declarations_repeat1] = aux_sym__protocol_member_declarations_repeat1, - [aux_sym_computed_property_repeat1] = aux_sym_computed_property_repeat1, - [aux_sym_deprecated_operator_declaration_body_repeat1] = aux_sym_deprecated_operator_declaration_body_repeat1, - [aux_sym_precedence_group_attributes_repeat1] = aux_sym_precedence_group_attributes_repeat1, - [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, - [aux_sym__attribute_argument_repeat1] = aux_sym__attribute_argument_repeat1, - [aux_sym__attribute_argument_repeat2] = aux_sym__attribute_argument_repeat2, - [aux_sym__tuple_pattern_repeat1] = aux_sym__tuple_pattern_repeat1, - [aux_sym_modifiers_repeat1] = aux_sym_modifiers_repeat1, - [aux_sym_parameter_modifiers_repeat1] = aux_sym_parameter_modifiers_repeat1, - [alias_sym_fully_open_range] = alias_sym_fully_open_range, - [alias_sym_interpolated_expression] = alias_sym_interpolated_expression, - [alias_sym_protocol_function_declaration] = alias_sym_protocol_function_declaration, - [alias_sym_type_identifier] = alias_sym_type_identifier, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [anon_sym_POUND_BANG] = { - .visible = true, - .named = false, - }, - [aux_sym_shebang_line_token1] = { - .visible = false, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [aux_sym_simple_identifier_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_simple_identifier_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_simple_identifier_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_simple_identifier_token4] = { - .visible = false, - .named = false, - }, - [anon_sym_actor] = { - .visible = true, - .named = false, - }, - [anon_sym_nil] = { - .visible = true, - .named = false, - }, - [sym_real_literal] = { - .visible = true, - .named = true, - }, - [sym_integer_literal] = { - .visible = true, - .named = true, - }, - [sym_hex_literal] = { - .visible = true, - .named = true, - }, - [sym_oct_literal] = { - .visible = true, - .named = true, - }, - [sym_bin_literal] = { - .visible = true, - .named = true, - }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [aux_sym_line_str_text_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_BSLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_u] = { - .visible = true, - .named = false, - }, - [aux_sym__uni_character_literal_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [sym_raw_str_interpolation_start] = { - .visible = true, - .named = true, - }, - [anon_sym_BSLASH_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [sym__escaped_identifier] = { - .visible = false, - .named = true, - }, - [sym__extended_regex_literal] = { - .visible = false, - .named = true, - }, - [aux_sym__multiline_regex_literal_token1] = { - .visible = false, - .named = false, - }, - [aux_sym__multiline_regex_literal_token2] = { - .visible = false, - .named = false, - }, - [sym__oneline_regex_literal] = { - .visible = false, - .named = true, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_Type] = { - .visible = true, - .named = false, - }, - [anon_sym_Protocol] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK] = { - .visible = true, - .named = false, - }, - [sym__immediate_quest] = { - .visible = true, - .named = false, - }, - [anon_sym_some] = { - .visible = true, - .named = false, - }, - [anon_sym_any] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_async] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDselector] = { - .visible = true, - .named = false, - }, - [anon_sym_getter_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_setter_COLON] = { - .visible = true, - .named = false, - }, - [aux_sym_custom_operator_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_await] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDfile] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDfileID] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDfilePath] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDline] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDcolumn] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDfunction] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDdsohandle] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDcolorLiteral] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDfileLiteral] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDimageLiteral] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_self] = { - .visible = true, - .named = false, - }, - [anon_sym_super] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_guard] = { - .visible = true, - .named = false, - }, - [anon_sym_switch] = { - .visible = true, - .named = false, - }, - [anon_sym_case] = { - .visible = true, - .named = false, - }, - [anon_sym_fallthrough] = { - .visible = true, - .named = false, - }, - [anon_sym_do] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDkeyPath] = { - .visible = true, - .named = false, - }, - [anon_sym_try] = { - .visible = true, - .named = false, - }, - [anon_sym_try_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_try_QMARK] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_is] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [sym_statement_label] = { - .visible = true, - .named = true, - }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, - [anon_sym_while] = { - .visible = true, - .named = false, - }, - [anon_sym_repeat] = { - .visible = true, - .named = false, - }, - [sym_throw_keyword] = { - .visible = true, - .named = true, - }, - [anon_sym_return] = { - .visible = true, - .named = false, - }, - [anon_sym_continue] = { - .visible = true, - .named = false, - }, - [anon_sym_break] = { - .visible = true, - .named = false, - }, - [anon_sym_yield] = { - .visible = true, - .named = false, - }, - [anon_sym_POUNDavailable] = { - .visible = true, - .named = false, - }, - [anon_sym_import] = { - .visible = true, - .named = false, - }, - [anon_sym_typealias] = { - .visible = true, - .named = false, - }, - [anon_sym_struct] = { - .visible = true, - .named = false, - }, - [anon_sym_class] = { - .visible = true, - .named = false, - }, - [anon_sym_enum] = { - .visible = true, - .named = false, - }, - [anon_sym_protocol] = { - .visible = true, - .named = false, - }, - [anon_sym_let] = { - .visible = true, - .named = false, - }, - [anon_sym_var] = { - .visible = true, - .named = false, - }, - [anon_sym_func] = { - .visible = true, - .named = false, - }, - [anon_sym_extension] = { - .visible = true, - .named = false, - }, - [anon_sym_indirect] = { - .visible = true, - .named = false, - }, - [anon_sym_init] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_deinit] = { - .visible = true, - .named = false, - }, - [anon_sym_subscript] = { - .visible = true, - .named = false, - }, - [anon_sym_get] = { - .visible = true, - .named = false, - }, - [anon_sym_set] = { - .visible = true, - .named = false, - }, - [anon_sym__modify] = { - .visible = true, - .named = false, - }, - [anon_sym_prefix] = { - .visible = true, - .named = false, - }, - [anon_sym_infix] = { - .visible = true, - .named = false, - }, - [anon_sym_postfix] = { - .visible = true, - .named = false, - }, - [anon_sym_operator] = { - .visible = true, - .named = false, - }, - [anon_sym_precedencegroup] = { - .visible = true, - .named = false, - }, - [anon_sym_associatedtype] = { - .visible = true, - .named = false, - }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, - [sym_wildcard_pattern] = { - .visible = true, - .named = true, - }, - [sym_property_behavior_modifier] = { - .visible = true, - .named = true, - }, - [anon_sym_override] = { - .visible = true, - .named = false, - }, - [anon_sym_convenience] = { - .visible = true, - .named = false, - }, - [anon_sym_required] = { - .visible = true, - .named = false, - }, - [anon_sym_nonisolated] = { - .visible = true, - .named = false, - }, - [anon_sym_public] = { - .visible = true, - .named = false, - }, - [anon_sym_private] = { - .visible = true, - .named = false, - }, - [anon_sym_internal] = { - .visible = true, - .named = false, - }, - [anon_sym_fileprivate] = { - .visible = true, - .named = false, - }, - [anon_sym_open] = { - .visible = true, - .named = false, - }, - [anon_sym_mutating] = { - .visible = true, - .named = false, - }, - [anon_sym_nonmutating] = { - .visible = true, - .named = false, - }, - [anon_sym_static] = { - .visible = true, - .named = false, - }, - [anon_sym_dynamic] = { - .visible = true, - .named = false, - }, - [anon_sym_optional] = { - .visible = true, - .named = false, - }, - [anon_sym_final] = { - .visible = true, - .named = false, - }, - [anon_sym_inout] = { - .visible = true, - .named = false, - }, - [anon_sym_ATescaping] = { - .visible = true, - .named = false, - }, - [anon_sym_ATautoclosure] = { - .visible = true, - .named = false, - }, - [anon_sym_weak] = { - .visible = true, - .named = false, - }, - [anon_sym_unowned] = { - .visible = true, - .named = false, - }, - [anon_sym_unowned_LPARENsafe_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_unowned_LPARENunsafe_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_property] = { - .visible = true, - .named = false, - }, - [anon_sym_receiver] = { - .visible = true, - .named = false, - }, - [anon_sym_param] = { - .visible = true, - .named = false, - }, - [anon_sym_setparam] = { - .visible = true, - .named = false, - }, - [anon_sym_delegate] = { - .visible = true, - .named = false, - }, - [sym_directive] = { - .visible = true, - .named = true, - }, - [sym_diagnostic] = { - .visible = true, - .named = true, - }, - [sym_multiline_comment] = { - .visible = true, - .named = true, - }, - [sym_raw_str_part] = { - .visible = true, - .named = true, - }, - [sym_raw_str_continuing_indicator] = { - .visible = true, - .named = true, - }, - [sym_raw_str_end_part] = { - .visible = true, - .named = true, - }, - [sym__implicit_semi] = { - .visible = false, - .named = true, - }, - [sym__explicit_semi] = { - .visible = false, - .named = true, - }, - [sym__arrow_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__dot_custom] = { - .visible = true, - .named = false, - }, - [sym__conjunction_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__disjunction_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__nil_coalescing_operator_custom] = { - .visible = true, - .named = false, - }, - [sym__eq_custom] = { - .visible = true, - .named = false, - }, - [sym__eq_eq_custom] = { - .visible = true, - .named = false, - }, - [sym__plus_then_ws] = { - .visible = true, - .named = false, - }, - [sym__minus_then_ws] = { - .visible = true, - .named = false, - }, - [sym_bang] = { - .visible = true, - .named = true, - }, - [sym__throws_keyword] = { - .visible = false, - .named = true, - }, - [sym__rethrows_keyword] = { - .visible = false, - .named = true, - }, - [sym_default_keyword] = { - .visible = true, - .named = true, - }, - [sym_where_keyword] = { - .visible = true, - .named = true, - }, - [sym_else] = { - .visible = true, - .named = true, - }, - [sym_catch_keyword] = { - .visible = true, - .named = true, - }, - [sym__as_custom] = { - .visible = true, - .named = false, - }, - [sym__as_quest_custom] = { - .visible = true, - .named = false, - }, - [sym__as_bang_custom] = { - .visible = true, - .named = false, - }, - [sym__async_keyword_custom] = { - .visible = true, - .named = false, - }, - [sym__custom_operator] = { - .visible = false, - .named = true, - }, - [sym_source_file] = { - .visible = true, - .named = true, - }, - [sym__semi] = { - .visible = false, - .named = true, - }, - [sym_shebang_line] = { - .visible = true, - .named = true, - }, - [sym_simple_identifier] = { - .visible = true, - .named = true, - }, - [sym_identifier] = { - .visible = true, - .named = true, - }, - [sym__basic_literal] = { - .visible = false, - .named = true, - }, - [sym_boolean_literal] = { - .visible = true, - .named = true, - }, - [sym__string_literal] = { - .visible = false, - .named = true, - }, - [sym_line_string_literal] = { - .visible = true, - .named = true, - }, - [sym__line_string_content] = { - .visible = false, - .named = true, - }, - [sym_line_str_text] = { - .visible = true, - .named = true, - }, - [sym_str_escaped_char] = { - .visible = true, - .named = true, - }, - [sym__uni_character_literal] = { - .visible = false, - .named = true, - }, - [sym_multi_line_string_literal] = { - .visible = true, - .named = true, - }, - [sym_raw_string_literal] = { - .visible = true, - .named = true, - }, - [sym_raw_str_interpolation] = { - .visible = true, - .named = true, - }, - [sym__multi_line_string_content] = { - .visible = false, - .named = true, - }, - [sym__interpolation] = { - .visible = false, - .named = true, - }, - [sym__interpolation_contents] = { - .visible = false, - .named = true, - }, - [sym_multi_line_str_text] = { - .visible = true, - .named = true, - }, - [sym_regex_literal] = { - .visible = true, - .named = true, - }, - [sym__multiline_regex_literal] = { - .visible = false, - .named = true, - }, - [sym_type_annotation] = { - .visible = true, - .named = true, - }, - [sym__possibly_implicitly_unwrapped_type] = { - .visible = false, - .named = true, - }, - [sym__type] = { - .visible = false, - .named = true, - }, - [sym__unannotated_type] = { - .visible = false, - .named = true, - }, - [sym_user_type] = { - .visible = true, - .named = true, - }, - [sym__simple_user_type] = { - .visible = false, - .named = true, - }, - [sym_tuple_type] = { - .visible = true, - .named = true, - }, - [sym_tuple_type_item] = { - .visible = true, - .named = true, - }, - [sym__tuple_type_item_identifier] = { - .visible = false, - .named = true, - }, - [sym_function_type] = { - .visible = true, - .named = true, - }, - [sym_array_type] = { - .visible = true, - .named = true, - }, - [sym_dictionary_type] = { - .visible = true, - .named = true, - }, - [sym_optional_type] = { - .visible = true, - .named = true, - }, - [sym_metatype] = { - .visible = true, - .named = true, - }, - [sym__quest] = { - .visible = false, - .named = true, - }, - [sym_opaque_type] = { - .visible = true, - .named = true, - }, - [sym_existential_type] = { - .visible = true, - .named = true, - }, - [sym_protocol_composition_type] = { - .visible = true, - .named = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - }, - [sym__unary_expression] = { - .visible = false, - .named = true, - }, - [sym_postfix_expression] = { - .visible = true, - .named = true, - }, - [sym_constructor_expression] = { - .visible = true, - .named = true, - }, - [sym_navigation_expression] = { - .visible = true, - .named = true, - }, - [sym__navigable_type_expression] = { - .visible = false, - .named = true, - }, - [sym_open_start_range_expression] = { - .visible = true, - .named = true, - }, - [sym__range_operator] = { - .visible = false, - .named = true, - }, - [sym_open_end_range_expression] = { - .visible = true, - .named = true, - }, - [sym_prefix_expression] = { - .visible = true, - .named = true, - }, - [sym_as_expression] = { - .visible = true, - .named = true, - }, - [sym_selector_expression] = { - .visible = true, - .named = true, - }, - [sym__binary_expression] = { - .visible = false, - .named = true, - }, - [sym_multiplicative_expression] = { - .visible = true, - .named = true, - }, - [sym_additive_expression] = { - .visible = true, - .named = true, - }, - [sym_range_expression] = { - .visible = true, - .named = true, - }, - [sym_infix_expression] = { - .visible = true, - .named = true, - }, - [sym_nil_coalescing_expression] = { - .visible = true, - .named = true, - }, - [sym_check_expression] = { - .visible = true, - .named = true, - }, - [sym_comparison_expression] = { - .visible = true, - .named = true, - }, - [sym_equality_expression] = { - .visible = true, - .named = true, - }, - [sym_conjunction_expression] = { - .visible = true, - .named = true, - }, - [sym_disjunction_expression] = { - .visible = true, - .named = true, - }, - [sym_bitwise_operation] = { - .visible = true, - .named = true, - }, - [sym_custom_operator] = { - .visible = true, - .named = true, - }, - [sym_navigation_suffix] = { - .visible = true, - .named = true, - }, - [sym_call_suffix] = { - .visible = true, - .named = true, - }, - [sym_constructor_suffix] = { - .visible = true, - .named = true, - }, - [sym__constructor_value_arguments] = { - .visible = true, - .named = true, - }, - [sym__fn_call_lambda_arguments] = { - .visible = false, - .named = true, - }, - [sym_type_arguments] = { - .visible = true, - .named = true, - }, - [sym_value_arguments] = { - .visible = true, - .named = true, - }, - [sym_value_argument] = { - .visible = true, - .named = true, - }, - [sym_try_expression] = { - .visible = true, - .named = true, - }, - [sym_await_expression] = { - .visible = true, - .named = true, - }, - [sym__await_operator] = { - .visible = false, - .named = true, - }, - [sym_ternary_expression] = { - .visible = true, - .named = true, - }, - [sym__expr_hack_at_ternary_binary_suffix] = { - .visible = false, - .named = true, - }, - [sym_expr_hack_at_ternary_binary_call] = { - .visible = true, - .named = true, - }, - [sym_expr_hack_at_ternary_binary_call_suffix] = { - .visible = true, - .named = true, - }, - [sym_call_expression] = { - .visible = true, - .named = true, - }, - [sym__primary_expression] = { - .visible = false, - .named = true, - }, - [sym_tuple_expression] = { - .visible = true, - .named = true, - }, - [sym_array_literal] = { - .visible = true, - .named = true, - }, - [sym_dictionary_literal] = { - .visible = true, - .named = true, - }, - [sym__dictionary_literal_item] = { - .visible = false, - .named = true, - }, - [sym__special_literal] = { - .visible = false, - .named = true, - }, - [sym__playground_literal] = { - .visible = false, - .named = true, - }, - [sym_lambda_literal] = { - .visible = true, - .named = true, - }, - [sym__lambda_type_declaration] = { - .visible = false, - .named = true, - }, - [sym_capture_list] = { - .visible = true, - .named = true, - }, - [sym_capture_list_item] = { - .visible = true, - .named = true, - }, - [sym_lambda_function_type] = { - .visible = true, - .named = true, - }, - [sym_lambda_function_type_parameters] = { - .visible = true, - .named = true, - }, - [sym_lambda_parameter] = { - .visible = true, - .named = true, - }, - [sym_self_expression] = { - .visible = true, - .named = true, - }, - [sym_super_expression] = { - .visible = true, - .named = true, - }, - [sym__else_options] = { - .visible = false, - .named = true, - }, - [sym_if_statement] = { - .visible = true, - .named = true, - }, - [sym__if_condition_sequence_item] = { - .visible = false, - .named = true, - }, - [sym__if_let_binding] = { - .visible = false, - .named = true, - }, - [sym_guard_statement] = { - .visible = true, - .named = true, - }, - [sym_switch_statement] = { - .visible = true, - .named = true, - }, - [sym_switch_entry] = { - .visible = true, - .named = true, - }, - [sym_switch_pattern] = { - .visible = true, - .named = true, - }, - [sym_do_statement] = { - .visible = true, - .named = true, - }, - [sym_catch_block] = { - .visible = true, - .named = true, - }, - [sym_where_clause] = { - .visible = true, - .named = true, - }, - [sym_key_path_expression] = { - .visible = true, - .named = true, - }, - [sym_key_path_string_expression] = { - .visible = true, - .named = true, - }, - [sym__key_path_component] = { - .visible = false, - .named = true, - }, - [sym__key_path_postfixes] = { - .visible = false, - .named = true, - }, - [sym__try_operator] = { - .visible = false, - .named = true, - }, - [sym__assignment_and_operator] = { - .visible = false, - .named = true, - }, - [sym__equality_operator] = { - .visible = false, - .named = true, - }, - [sym__comparison_operator] = { - .visible = false, - .named = true, - }, - [sym__three_dot_operator] = { - .visible = false, - .named = true, - }, - [sym__open_ended_range_operator] = { - .visible = false, - .named = true, - }, - [sym__is_operator] = { - .visible = false, - .named = true, - }, - [sym__additive_operator] = { - .visible = false, - .named = true, - }, - [sym__multiplicative_operator] = { - .visible = false, - .named = true, - }, - [sym_as_operator] = { - .visible = true, - .named = true, - }, - [sym__prefix_unary_operator] = { - .visible = false, - .named = true, - }, - [sym__bitwise_binary_operator] = { - .visible = false, - .named = true, - }, - [sym__postfix_unary_operator] = { - .visible = false, - .named = true, - }, - [sym_directly_assignable_expression] = { - .visible = true, - .named = true, - }, - [sym_statements] = { - .visible = true, - .named = true, - }, - [sym__local_statement] = { - .visible = false, - .named = true, - }, - [sym__top_level_statement] = { - .visible = false, - .named = true, - }, - [sym__block] = { - .visible = false, - .named = true, - }, - [sym__labeled_statement] = { - .visible = false, - .named = true, - }, - [sym_for_statement] = { - .visible = true, - .named = true, - }, - [sym_while_statement] = { - .visible = true, - .named = true, - }, - [sym_repeat_while_statement] = { - .visible = true, - .named = true, - }, - [sym_control_transfer_statement] = { - .visible = true, - .named = true, - }, - [sym__throw_statement] = { - .visible = false, - .named = true, - }, - [sym__optionally_valueful_control_keyword] = { - .visible = false, - .named = true, - }, - [sym_assignment] = { - .visible = true, - .named = true, - }, - [sym_availability_condition] = { - .visible = true, - .named = true, - }, - [sym__availability_argument] = { - .visible = false, - .named = true, - }, - [sym__global_declaration] = { - .visible = false, - .named = true, - }, - [sym__type_level_declaration] = { - .visible = false, - .named = true, - }, - [sym__local_declaration] = { - .visible = false, - .named = true, - }, - [sym__local_property_declaration] = { - .visible = true, - .named = true, - }, - [sym__local_typealias_declaration] = { - .visible = true, - .named = true, - }, - [sym__local_function_declaration] = { - .visible = true, - .named = true, - }, - [sym__local_class_declaration] = { - .visible = true, - .named = true, - }, - [sym_import_declaration] = { - .visible = true, - .named = true, - }, - [sym__import_kind] = { - .visible = false, - .named = true, - }, - [sym_protocol_property_declaration] = { - .visible = true, - .named = true, - }, - [sym_protocol_property_requirements] = { - .visible = true, - .named = true, - }, - [sym_property_declaration] = { - .visible = true, - .named = true, - }, - [sym__modifierless_property_declaration] = { - .visible = false, - .named = true, - }, - [sym__single_modifierless_property_declaration] = { - .visible = false, - .named = true, - }, - [sym_typealias_declaration] = { - .visible = true, - .named = true, - }, - [sym__modifierless_typealias_declaration] = { - .visible = false, - .named = true, - }, - [sym_function_declaration] = { - .visible = true, - .named = true, - }, - [sym__modifierless_function_declaration] = { - .visible = false, - .named = true, - }, - [sym__bodyless_function_declaration] = { - .visible = false, - .named = true, - }, - [sym__modifierless_function_declaration_no_body] = { - .visible = false, - .named = true, - }, - [sym_function_body] = { - .visible = true, - .named = true, - }, - [sym_class_declaration] = { - .visible = true, - .named = true, - }, - [sym__modifierless_class_declaration] = { - .visible = false, - .named = true, - }, - [sym_class_body] = { - .visible = true, - .named = true, - }, - [sym__inheritance_specifiers] = { - .visible = false, - .named = true, - }, - [sym_inheritance_specifier] = { - .visible = true, - .named = true, - }, - [sym__annotated_inheritance_specifier] = { - .visible = false, - .named = true, - }, - [sym_type_parameters] = { - .visible = true, - .named = true, - }, - [sym_type_parameter] = { - .visible = true, - .named = true, - }, - [sym_type_constraints] = { - .visible = true, - .named = true, - }, - [sym_type_constraint] = { - .visible = true, - .named = true, - }, - [sym_inheritance_constraint] = { - .visible = true, - .named = true, - }, - [sym_equality_constraint] = { - .visible = true, - .named = true, - }, - [sym__class_member_separator] = { - .visible = false, - .named = true, - }, - [sym__class_member_declarations] = { - .visible = false, - .named = true, - }, - [aux_sym__function_value_parameters] = { - .visible = false, - .named = false, - }, - [sym__function_value_parameter] = { - .visible = false, - .named = true, - }, - [sym_parameter] = { - .visible = true, - .named = true, - }, - [sym__constructor_function_decl] = { - .visible = false, - .named = true, - }, - [sym__non_constructor_function_decl] = { - .visible = false, - .named = true, - }, - [sym__referenceable_operator] = { - .visible = false, - .named = true, - }, - [sym__equal_sign] = { - .visible = false, - .named = true, - }, - [sym__eq_eq] = { - .visible = false, - .named = true, - }, - [sym__dot] = { - .visible = false, - .named = true, - }, - [sym__arrow_operator] = { - .visible = false, - .named = true, - }, - [sym__conjunction_operator] = { - .visible = false, - .named = true, - }, - [sym__disjunction_operator] = { - .visible = false, - .named = true, - }, - [sym__nil_coalescing_operator] = { - .visible = false, - .named = true, - }, - [sym__as] = { - .visible = false, - .named = true, - }, - [sym__as_quest] = { - .visible = false, - .named = true, - }, - [sym__as_bang] = { - .visible = false, - .named = true, - }, - [sym__async_keyword] = { - .visible = false, - .named = true, - }, - [sym__async_modifier] = { - .visible = false, - .named = true, - }, - [sym_throws] = { - .visible = true, - .named = true, - }, - [sym_enum_class_body] = { - .visible = true, - .named = true, - }, - [sym_enum_entry] = { - .visible = true, - .named = true, - }, - [sym__enum_entry_suffix] = { - .visible = false, - .named = true, - }, - [sym_enum_type_parameters] = { - .visible = true, - .named = true, - }, - [sym_protocol_declaration] = { - .visible = true, - .named = true, - }, - [sym_protocol_body] = { - .visible = true, - .named = true, - }, - [sym__protocol_member_declarations] = { - .visible = false, - .named = true, - }, - [sym__protocol_member_declaration] = { - .visible = false, - .named = true, - }, - [sym_deinit_declaration] = { - .visible = true, - .named = true, - }, - [sym_subscript_declaration] = { - .visible = true, - .named = true, - }, - [sym_computed_property] = { - .visible = true, - .named = true, - }, - [sym_computed_getter] = { - .visible = true, - .named = true, - }, - [sym_computed_modify] = { - .visible = true, - .named = true, - }, - [sym_computed_setter] = { - .visible = true, - .named = true, - }, - [sym_getter_specifier] = { - .visible = true, - .named = true, - }, - [sym_setter_specifier] = { - .visible = true, - .named = true, - }, - [sym_modify_specifier] = { - .visible = true, - .named = true, - }, - [aux_sym__getter_effects] = { - .visible = false, - .named = false, - }, - [sym_operator_declaration] = { - .visible = true, - .named = true, - }, - [sym_deprecated_operator_declaration_body] = { - .visible = true, - .named = true, - }, - [sym_precedence_group_declaration] = { - .visible = true, - .named = true, - }, - [sym_precedence_group_attributes] = { - .visible = true, - .named = true, - }, - [sym_precedence_group_attribute] = { - .visible = true, - .named = true, - }, - [sym_associatedtype_declaration] = { - .visible = true, - .named = true, - }, - [sym_attribute] = { - .visible = true, - .named = true, - }, - [sym__attribute_argument] = { - .visible = false, - .named = true, - }, - [sym__universally_allowed_pattern] = { - .visible = false, - .named = true, - }, - [sym__bound_identifier] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern_no_expr] = { - .visible = false, - .named = true, - }, - [sym__no_expr_pattern_already_bound] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern_with_expr] = { - .visible = true, - .named = true, - }, - [sym__direct_or_indirect_binding] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern_kind] = { - .visible = false, - .named = true, - }, - [sym__possibly_async_binding_pattern_kind] = { - .visible = false, - .named = true, - }, - [sym__binding_kind_and_pattern] = { - .visible = false, - .named = true, - }, - [sym__tuple_pattern_item] = { - .visible = false, - .named = true, - }, - [sym__tuple_pattern] = { - .visible = false, - .named = true, - }, - [sym__case_pattern] = { - .visible = false, - .named = true, - }, - [sym__type_casting_pattern] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern] = { - .visible = false, - .named = true, - }, - [sym_modifiers] = { - .visible = true, - .named = true, - }, - [aux_sym__locally_permitted_modifiers] = { - .visible = false, - .named = false, - }, - [sym_parameter_modifiers] = { - .visible = true, - .named = true, - }, - [sym__non_local_scope_modifier] = { - .visible = false, - .named = true, - }, - [sym__locally_permitted_modifier] = { - .visible = false, - .named = true, - }, - [sym_type_modifiers] = { - .visible = true, - .named = true, - }, - [sym_member_modifier] = { - .visible = true, - .named = true, - }, - [sym_visibility_modifier] = { - .visible = true, - .named = true, - }, - [sym_type_parameter_modifiers] = { - .visible = true, - .named = true, - }, - [sym_function_modifier] = { - .visible = true, - .named = true, - }, - [sym_mutation_modifier] = { - .visible = true, - .named = true, - }, - [sym_property_modifier] = { - .visible = true, - .named = true, - }, - [sym_inheritance_modifier] = { - .visible = true, - .named = true, - }, - [sym_parameter_modifier] = { - .visible = true, - .named = true, - }, - [sym_ownership_modifier] = { - .visible = true, - .named = true, - }, - [aux_sym_source_file_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_identifier_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_line_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_multi_line_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_raw_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__interpolation_contents_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_user_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_tuple_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_optional_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_protocol_composition_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__constructor_value_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__fn_call_lambda_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_arguments_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_value_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_tuple_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_array_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_dictionary_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__playground_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__lambda_type_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_capture_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_lambda_function_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_if_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_switch_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_switch_entry_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_do_statement_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_key_path_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__key_path_component_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_statements_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_availability_condition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__availability_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_protocol_property_requirements_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__modifierless_property_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__inheritance_specifiers_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_constraints_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__class_member_declarations_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__function_value_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_class_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_entry_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_enum_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__protocol_member_declarations_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_computed_property_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_deprecated_operator_declaration_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_precedence_group_attributes_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__attribute_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__attribute_argument_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym__tuple_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_modifiers_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_parameter_modifiers_repeat1] = { - .visible = false, - .named = false, - }, - [alias_sym_fully_open_range] = { - .visible = true, - .named = true, - }, - [alias_sym_interpolated_expression] = { - .visible = true, - .named = true, - }, - [alias_sym_protocol_function_declaration] = { - .visible = true, - .named = true, - }, - [alias_sym_type_identifier] = { - .visible = true, - .named = true, - }, -}; - -enum { - field_body = 1, - field_bound_identifier = 2, - field_captures = 3, - field_collection = 4, - field_computed_value = 5, - field_condition = 6, - field_constrained_type = 7, - field_constructed_type = 8, - field_data_contents = 9, - field_declaration_kind = 10, - field_default_value = 11, - field_element = 12, - field_end = 13, - field_error = 14, - field_expr = 15, - field_external_name = 16, - field_if_false = 17, - field_if_nil = 18, - field_if_true = 19, - field_inherits_from = 20, - field_interpolation = 21, - field_item = 22, - field_key = 23, - field_lhs = 24, - field_must_equal = 25, - field_must_inherit = 26, - field_mutability = 27, - field_name = 28, - field_op = 29, - field_operation = 30, - field_operator = 31, - field_params = 32, - field_raw_value = 33, - field_reference_specifier = 34, - field_result = 35, - field_return_type = 36, - field_rhs = 37, - field_start = 38, - field_suffix = 39, - field_target = 40, - field_text = 41, - field_type = 42, - field_value = 43, - field_wrapped = 44, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_body] = "body", - [field_bound_identifier] = "bound_identifier", - [field_captures] = "captures", - [field_collection] = "collection", - [field_computed_value] = "computed_value", - [field_condition] = "condition", - [field_constrained_type] = "constrained_type", - [field_constructed_type] = "constructed_type", - [field_data_contents] = "data_contents", - [field_declaration_kind] = "declaration_kind", - [field_default_value] = "default_value", - [field_element] = "element", - [field_end] = "end", - [field_error] = "error", - [field_expr] = "expr", - [field_external_name] = "external_name", - [field_if_false] = "if_false", - [field_if_nil] = "if_nil", - [field_if_true] = "if_true", - [field_inherits_from] = "inherits_from", - [field_interpolation] = "interpolation", - [field_item] = "item", - [field_key] = "key", - [field_lhs] = "lhs", - [field_must_equal] = "must_equal", - [field_must_inherit] = "must_inherit", - [field_mutability] = "mutability", - [field_name] = "name", - [field_op] = "op", - [field_operation] = "operation", - [field_operator] = "operator", - [field_params] = "params", - [field_raw_value] = "raw_value", - [field_reference_specifier] = "reference_specifier", - [field_result] = "result", - [field_return_type] = "return_type", - [field_rhs] = "rhs", - [field_start] = "start", - [field_suffix] = "suffix", - [field_target] = "target", - [field_text] = "text", - [field_type] = "type", - [field_value] = "value", - [field_wrapped] = "wrapped", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [3] = {.index = 1, .length = 1}, - [4] = {.index = 2, .length = 1}, - [7] = {.index = 3, .length = 4}, - [8] = {.index = 7, .length = 2}, - [9] = {.index = 9, .length = 3}, - [10] = {.index = 12, .length = 3}, - [11] = {.index = 15, .length = 1}, - [12] = {.index = 16, .length = 2}, - [13] = {.index = 18, .length = 1}, - [14] = {.index = 19, .length = 4}, - [15] = {.index = 23, .length = 3}, - [16] = {.index = 26, .length = 1}, - [17] = {.index = 27, .length = 1}, - [18] = {.index = 28, .length = 1}, - [19] = {.index = 29, .length = 3}, - [20] = {.index = 32, .length = 1}, - [21] = {.index = 32, .length = 1}, - [22] = {.index = 33, .length = 1}, - [23] = {.index = 34, .length = 2}, - [24] = {.index = 36, .length = 1}, - [25] = {.index = 37, .length = 2}, - [26] = {.index = 39, .length = 1}, - [27] = {.index = 40, .length = 1}, - [28] = {.index = 41, .length = 2}, - [29] = {.index = 43, .length = 4}, - [30] = {.index = 47, .length = 2}, - [31] = {.index = 49, .length = 1}, - [32] = {.index = 50, .length = 4}, - [33] = {.index = 54, .length = 3}, - [34] = {.index = 57, .length = 4}, - [35] = {.index = 61, .length = 2}, - [36] = {.index = 63, .length = 3}, - [37] = {.index = 66, .length = 3}, - [38] = {.index = 69, .length = 4}, - [39] = {.index = 73, .length = 1}, - [40] = {.index = 74, .length = 1}, - [41] = {.index = 75, .length = 1}, - [42] = {.index = 76, .length = 3}, - [43] = {.index = 79, .length = 2}, - [44] = {.index = 81, .length = 1}, - [45] = {.index = 82, .length = 2}, - [46] = {.index = 84, .length = 2}, - [47] = {.index = 86, .length = 1}, - [48] = {.index = 87, .length = 1}, - [49] = {.index = 88, .length = 2}, - [50] = {.index = 90, .length = 2}, - [51] = {.index = 92, .length = 1}, - [52] = {.index = 93, .length = 1}, - [53] = {.index = 94, .length = 1}, - [54] = {.index = 95, .length = 4}, - [55] = {.index = 99, .length = 3}, - [56] = {.index = 102, .length = 4}, - [57] = {.index = 106, .length = 3}, - [58] = {.index = 109, .length = 1}, - [59] = {.index = 76, .length = 3}, - [60] = {.index = 110, .length = 3}, - [61] = {.index = 113, .length = 3}, - [62] = {.index = 116, .length = 4}, - [63] = {.index = 120, .length = 3}, - [64] = {.index = 123, .length = 1}, - [65] = {.index = 124, .length = 2}, - [66] = {.index = 126, .length = 3}, - [67] = {.index = 129, .length = 2}, - [68] = {.index = 131, .length = 2}, - [69] = {.index = 133, .length = 7}, - [70] = {.index = 140, .length = 4}, - [71] = {.index = 144, .length = 3}, - [72] = {.index = 147, .length = 1}, - [73] = {.index = 148, .length = 1}, - [74] = {.index = 149, .length = 1}, - [75] = {.index = 150, .length = 2}, - [76] = {.index = 152, .length = 1}, - [77] = {.index = 153, .length = 2}, - [78] = {.index = 155, .length = 1}, - [79] = {.index = 156, .length = 3}, - [80] = {.index = 159, .length = 3}, - [81] = {.index = 162, .length = 4}, - [82] = {.index = 166, .length = 3}, - [83] = {.index = 169, .length = 2}, - [84] = {.index = 171, .length = 3}, - [85] = {.index = 174, .length = 2}, - [86] = {.index = 176, .length = 2}, - [87] = {.index = 178, .length = 2}, - [88] = {.index = 180, .length = 4}, - [89] = {.index = 184, .length = 4}, - [90] = {.index = 188, .length = 3}, - [91] = {.index = 191, .length = 2}, - [92] = {.index = 193, .length = 2}, - [93] = {.index = 195, .length = 1}, - [94] = {.index = 196, .length = 1}, - [95] = {.index = 197, .length = 8}, - [96] = {.index = 205, .length = 8}, - [97] = {.index = 213, .length = 3}, - [98] = {.index = 216, .length = 4}, - [99] = {.index = 220, .length = 3}, - [100] = {.index = 9, .length = 3}, - [101] = {.index = 223, .length = 1}, - [102] = {.index = 156, .length = 3}, - [103] = {.index = 224, .length = 3}, - [104] = {.index = 227, .length = 3}, - [105] = {.index = 230, .length = 3}, - [106] = {.index = 233, .length = 2}, - [107] = {.index = 235, .length = 1}, - [109] = {.index = 236, .length = 4}, - [110] = {.index = 240, .length = 3}, - [111] = {.index = 243, .length = 6}, - [112] = {.index = 249, .length = 4}, - [113] = {.index = 253, .length = 4}, - [114] = {.index = 257, .length = 2}, - [115] = {.index = 257, .length = 2}, - [116] = {.index = 259, .length = 1}, - [117] = {.index = 260, .length = 2}, - [118] = {.index = 262, .length = 3}, - [119] = {.index = 265, .length = 1}, - [120] = {.index = 266, .length = 2}, - [121] = {.index = 268, .length = 3}, - [122] = {.index = 271, .length = 4}, - [123] = {.index = 275, .length = 3}, - [124] = {.index = 278, .length = 2}, - [125] = {.index = 280, .length = 3}, - [126] = {.index = 283, .length = 4}, - [127] = {.index = 287, .length = 2}, - [128] = {.index = 289, .length = 4}, - [129] = {.index = 293, .length = 3}, - [130] = {.index = 296, .length = 5}, - [131] = {.index = 301, .length = 4}, - [132] = {.index = 305, .length = 3}, - [133] = {.index = 43, .length = 4}, - [134] = {.index = 308, .length = 1}, - [135] = {.index = 309, .length = 2}, - [136] = {.index = 311, .length = 4}, - [137] = {.index = 262, .length = 3}, - [138] = {.index = 315, .length = 3}, - [139] = {.index = 318, .length = 3}, - [140] = {.index = 321, .length = 2}, - [141] = {.index = 323, .length = 3}, - [142] = {.index = 326, .length = 2}, - [143] = {.index = 328, .length = 1}, - [144] = {.index = 329, .length = 1}, - [145] = {.index = 330, .length = 4}, - [146] = {.index = 334, .length = 4}, - [147] = {.index = 338, .length = 4}, - [148] = {.index = 342, .length = 4}, - [149] = {.index = 346, .length = 3}, - [150] = {.index = 349, .length = 3}, - [151] = {.index = 266, .length = 2}, - [152] = {.index = 352, .length = 3}, - [153] = {.index = 355, .length = 3}, - [154] = {.index = 358, .length = 3}, - [155] = {.index = 361, .length = 1}, - [156] = {.index = 362, .length = 4}, - [157] = {.index = 366, .length = 3}, - [158] = {.index = 369, .length = 2}, - [159] = {.index = 371, .length = 4}, - [160] = {.index = 375, .length = 5}, - [161] = {.index = 380, .length = 5}, - [162] = {.index = 385, .length = 8}, - [163] = {.index = 393, .length = 4}, - [164] = {.index = 397, .length = 3}, - [165] = {.index = 400, .length = 1}, - [166] = {.index = 401, .length = 4}, - [167] = {.index = 147, .length = 1}, - [168] = {.index = 405, .length = 4}, - [169] = {.index = 358, .length = 3}, - [170] = {.index = 409, .length = 3}, - [171] = {.index = 412, .length = 5}, - [172] = {.index = 417, .length = 1}, - [173] = {.index = 418, .length = 1}, - [174] = {.index = 419, .length = 4}, - [175] = {.index = 423, .length = 4}, - [176] = {.index = 427, .length = 4}, - [177] = {.index = 431, .length = 3}, - [178] = {.index = 434, .length = 3}, - [179] = {.index = 437, .length = 3}, - [180] = {.index = 440, .length = 1}, - [181] = {.index = 441, .length = 3}, - [182] = {.index = 444, .length = 2}, - [183] = {.index = 446, .length = 5}, - [184] = {.index = 451, .length = 5}, - [185] = {.index = 456, .length = 8}, - [186] = {.index = 464, .length = 1}, - [187] = {.index = 465, .length = 6}, - [188] = {.index = 471, .length = 6}, - [189] = {.index = 477, .length = 3}, - [190] = {.index = 480, .length = 4}, - [191] = {.index = 484, .length = 1}, - [192] = {.index = 441, .length = 3}, - [193] = {.index = 485, .length = 3}, - [194] = {.index = 488, .length = 5}, - [195] = {.index = 493, .length = 4}, - [196] = {.index = 497, .length = 5}, - [197] = {.index = 502, .length = 3}, - [198] = {.index = 505, .length = 1}, - [199] = {.index = 506, .length = 2}, - [200] = {.index = 508, .length = 5}, - [201] = {.index = 513, .length = 6}, - [202] = {.index = 519, .length = 3}, - [203] = {.index = 522, .length = 4}, - [204] = {.index = 526, .length = 3}, - [205] = {.index = 529, .length = 5}, - [206] = {.index = 534, .length = 3}, - [207] = {.index = 537, .length = 6}, - [208] = {.index = 543, .length = 3}, - [209] = {.index = 418, .length = 1}, - [210] = {.index = 546, .length = 1}, - [211] = {.index = 547, .length = 2}, - [212] = {.index = 549, .length = 2}, - [213] = {.index = 551, .length = 2}, - [214] = {.index = 553, .length = 2}, - [215] = {.index = 555, .length = 2}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_text, 0}, - [1] = - {field_mutability, 0}, - [2] = - {field_name, 0}, - [3] = - {field_computed_value, 0, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_value, 0, .inherited = true}, - [7] = - {field_name, 0, .inherited = true}, - {field_value, 0, .inherited = true}, - [9] = - {field_default_value, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [12] = - {field_body, 0, .inherited = true}, - {field_declaration_kind, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - [15] = - {field_mutability, 0, .inherited = true}, - [16] = - {field_interpolation, 1}, - {field_text, 0}, - [18] = - {field_interpolation, 0, .inherited = true}, - [19] = - {field_body, 0, .inherited = true}, - {field_default_value, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [23] = - {field_bound_identifier, 0, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - [26] = - {field_bound_identifier, 0}, - [27] = - {field_name, 0, .inherited = true}, - [28] = - {field_bound_identifier, 0, .inherited = true}, - [29] = - {field_default_value, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [32] = - {field_name, 1}, - [33] = - {field_constructed_type, 0}, - [34] = - {field_suffix, 1}, - {field_target, 0}, - [36] = - {field_start, 0}, - [37] = - {field_operation, 1}, - {field_target, 0}, - [39] = - {field_end, 1}, - [40] = - {field_expr, 1}, - [41] = - {field_operation, 0}, - {field_target, 1}, - [43] = - {field_body, 1}, - {field_default_value, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - [47] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - [49] = - {field_mutability, 1, .inherited = true}, - [50] = - {field_computed_value, 1, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [54] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [57] = - {field_computed_value, 1, .inherited = true}, - {field_mutability, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [61] = - {field_name, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [63] = - {field_body, 1, .inherited = true}, - {field_declaration_kind, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [66] = - {field_interpolation, 0, .inherited = true}, - {field_text, 0, .inherited = true}, - {field_text, 1}, - [69] = - {field_interpolation, 0, .inherited = true}, - {field_interpolation, 1, .inherited = true}, - {field_text, 0, .inherited = true}, - {field_text, 1, .inherited = true}, - [73] = - {field_value, 0}, - [74] = - {field_interpolation, 0}, - [75] = - {field_reference_specifier, 0, .inherited = true}, - [76] = - {field_body, 2}, - {field_declaration_kind, 0}, - {field_name, 1}, - [79] = - {field_interpolation, 1, .inherited = true}, - {field_text, 1, .inherited = true}, - [81] = - {field_value, 1}, - [82] = - {field_name, 0, .inherited = true}, - {field_type, 0}, - [84] = - {field_element, 1}, - {field_name, 1, .inherited = true}, - [86] = - {field_wrapped, 0}, - [87] = - {field_element, 1}, - [88] = - {field_key, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [90] = - {field_captures, 1, .inherited = true}, - {field_type, 1, .inherited = true}, - [92] = - {field_captures, 0}, - [93] = - {field_type, 0}, - [94] = - {field_result, 1}, - [95] = - {field_body, 1, .inherited = true}, - {field_default_value, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_return_type, 1, .inherited = true}, - [99] = - {field_bound_identifier, 1, .inherited = true}, - {field_mutability, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [102] = - {field_bound_identifier, 1, .inherited = true}, - {field_condition, 1}, - {field_mutability, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [106] = - {field_bound_identifier, 1, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - [109] = - {field_name, 1, .inherited = true}, - [110] = - {field_end, 2}, - {field_op, 1}, - {field_start, 0}, - [113] = - {field_lhs, 0}, - {field_op, 1}, - {field_rhs, 2}, - [116] = - {field_name, 2, .inherited = true}, - {field_op, 1}, - {field_target, 0}, - {field_type, 2}, - [120] = - {field_expr, 0}, - {field_name, 2, .inherited = true}, - {field_type, 2}, - [123] = - {field_suffix, 1}, - [124] = - {field_if_nil, 2}, - {field_value, 0}, - [126] = - {field_operator, 1}, - {field_result, 2}, - {field_target, 0}, - [129] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - [131] = - {field_default_value, 0, .inherited = true}, - {field_default_value, 1, .inherited = true}, - [133] = - {field_computed_value, 1, .inherited = true}, - {field_computed_value, 2, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_value, 1, .inherited = true}, - {field_value, 2, .inherited = true}, - [140] = - {field_bound_identifier, 0, .inherited = true}, - {field_computed_value, 1}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [144] = - {field_default_value, 2, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_return_type, 2, .inherited = true}, - [147] = - {field_name, 2}, - [148] = - {field_reference_specifier, 0}, - [149] = - {field_interpolation, 1, .inherited = true}, - [150] = - {field_interpolation, 0}, - {field_interpolation, 1, .inherited = true}, - [152] = - {field_reference_specifier, 1, .inherited = true}, - [153] = - {field_reference_specifier, 0, .inherited = true}, - {field_reference_specifier, 1, .inherited = true}, - [155] = - {field_inherits_from, 0}, - [156] = - {field_body, 3}, - {field_declaration_kind, 0}, - {field_name, 1}, - [159] = - {field_name, 2, .inherited = true}, - {field_value, 1}, - {field_value, 2, .inherited = true}, - [162] = - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_value, 0, .inherited = true}, - {field_value, 1, .inherited = true}, - [166] = - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_type, 1}, - [169] = - {field_name, 1, .inherited = true}, - {field_type, 1}, - [171] = - {field_name, 2, .inherited = true}, - {field_params, 0}, - {field_return_type, 2}, - [174] = - {field_key, 0}, - {field_value, 2}, - [176] = - {field_element, 1}, - {field_element, 2, .inherited = true}, - [178] = - {field_element, 0, .inherited = true}, - {field_element, 1, .inherited = true}, - [180] = - {field_key, 1, .inherited = true}, - {field_key, 2, .inherited = true}, - {field_value, 1, .inherited = true}, - {field_value, 2, .inherited = true}, - [184] = - {field_key, 0, .inherited = true}, - {field_key, 1, .inherited = true}, - {field_value, 0, .inherited = true}, - {field_value, 1, .inherited = true}, - [188] = - {field_name, 0}, - {field_name, 2, .inherited = true}, - {field_type, 2}, - [191] = - {field_captures, 0}, - {field_type, 1}, - [193] = - {field_name, 2, .inherited = true}, - {field_return_type, 2}, - [195] = - {field_captures, 1}, - [196] = - {field_type, 1}, - [197] = - {field_bound_identifier, 1, .inherited = true}, - {field_bound_identifier, 2, .inherited = true}, - {field_condition, 1}, - {field_condition, 2, .inherited = true}, - {field_mutability, 1, .inherited = true}, - {field_mutability, 2, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_name, 2, .inherited = true}, - [205] = - {field_bound_identifier, 0, .inherited = true}, - {field_bound_identifier, 1, .inherited = true}, - {field_condition, 0, .inherited = true}, - {field_condition, 1, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_mutability, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - [213] = - {field_bound_identifier, 2, .inherited = true}, - {field_mutability, 1, .inherited = true}, - {field_name, 2, .inherited = true}, - [216] = - {field_bound_identifier, 0, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - [220] = - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_value, 3}, - [223] = - {field_body, 0, .inherited = true}, - [224] = - {field_body, 3}, - {field_declaration_kind, 1}, - {field_name, 2}, - [227] = - {field_must_inherit, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - [230] = - {field_default_value, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - [233] = - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - [235] = - {field_default_value, 1, .inherited = true}, - [236] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 3, .inherited = true}, - {field_return_type, 3}, - [240] = - {field_computed_value, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_value, 1, .inherited = true}, - [243] = - {field_computed_value, 0, .inherited = true}, - {field_computed_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_value, 0, .inherited = true}, - {field_value, 1, .inherited = true}, - [249] = - {field_bound_identifier, 0, .inherited = true}, - {field_computed_value, 2}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [253] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - {field_value, 2}, - [257] = - {field_name, 0}, - {field_value, 2}, - [259] = - {field_interpolation, 1}, - [260] = - {field_interpolation, 0, .inherited = true}, - {field_interpolation, 1, .inherited = true}, - [262] = - {field_body, 4}, - {field_declaration_kind, 0}, - {field_name, 1}, - [265] = - {field_body, 1}, - [266] = - {field_name, 1}, - {field_value, 3}, - [268] = - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_type, 2}, - [271] = - {field_key, 1}, - {field_name, 1, .inherited = true}, - {field_name, 3, .inherited = true}, - {field_value, 3}, - [275] = - {field_name, 3, .inherited = true}, - {field_params, 0}, - {field_return_type, 3}, - [278] = - {field_name, 3, .inherited = true}, - {field_return_type, 3}, - [280] = - {field_name, 0}, - {field_name, 3, .inherited = true}, - {field_type, 3}, - [283] = - {field_external_name, 0}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_type, 3}, - [287] = - {field_captures, 1}, - {field_type, 2}, - [289] = - {field_bound_identifier, 1, .inherited = true}, - {field_error, 1}, - {field_mutability, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [293] = - {field_bound_identifier, 2, .inherited = true}, - {field_mutability, 2, .inherited = true}, - {field_name, 2, .inherited = true}, - [296] = - {field_bound_identifier, 1, .inherited = true}, - {field_collection, 3}, - {field_item, 1}, - {field_mutability, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [301] = - {field_bound_identifier, 4, .inherited = true}, - {field_condition, 4}, - {field_mutability, 4, .inherited = true}, - {field_name, 4, .inherited = true}, - [305] = - {field_name, 1}, - {field_name, 4, .inherited = true}, - {field_value, 4}, - [308] = - {field_body, 1, .inherited = true}, - [309] = - {field_body, 0, .inherited = true}, - {field_body, 1, .inherited = true}, - [311] = - {field_bound_identifier, 0, .inherited = true}, - {field_mutability, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [315] = - {field_body, 4}, - {field_declaration_kind, 1}, - {field_name, 2}, - [318] = - {field_default_value, 4}, - {field_name, 1}, - {field_name, 4, .inherited = true}, - [321] = - {field_name, 1, .inherited = true}, - {field_name, 2, .inherited = true}, - [323] = - {field_condition, 0}, - {field_if_false, 4}, - {field_if_true, 2}, - [326] = - {field_default_value, 1, .inherited = true}, - {field_default_value, 2, .inherited = true}, - [328] = - {field_default_value, 2}, - [329] = - {field_name, 2, .inherited = true}, - [330] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [334] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [338] = - {field_bound_identifier, 0, .inherited = true}, - {field_computed_value, 3}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - [342] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - {field_value, 3}, - [346] = - {field_must_inherit, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - [349] = - {field_default_value, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - [352] = - {field_constrained_type, 0}, - {field_inherits_from, 2}, - {field_name, 2, .inherited = true}, - [355] = - {field_constrained_type, 0}, - {field_must_equal, 2}, - {field_name, 2, .inherited = true}, - [358] = - {field_body, 5}, - {field_declaration_kind, 0}, - {field_name, 1}, - [361] = - {field_body, 2}, - [362] = - {field_name, 1}, - {field_name, 4, .inherited = true}, - {field_value, 3}, - {field_value, 4, .inherited = true}, - [366] = - {field_name, 4, .inherited = true}, - {field_params, 0}, - {field_return_type, 4}, - [369] = - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [371] = - {field_external_name, 0}, - {field_name, 1}, - {field_name, 4, .inherited = true}, - {field_type, 4}, - [375] = - {field_bound_identifier, 2, .inherited = true}, - {field_collection, 4}, - {field_item, 2}, - {field_mutability, 2, .inherited = true}, - {field_name, 2, .inherited = true}, - [380] = - {field_bound_identifier, 1, .inherited = true}, - {field_collection, 4}, - {field_item, 1}, - {field_mutability, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [385] = - {field_bound_identifier, 4, .inherited = true}, - {field_bound_identifier, 5, .inherited = true}, - {field_condition, 4}, - {field_condition, 5, .inherited = true}, - {field_mutability, 4, .inherited = true}, - {field_mutability, 5, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_name, 5, .inherited = true}, - [393] = - {field_bound_identifier, 5, .inherited = true}, - {field_condition, 5}, - {field_mutability, 5, .inherited = true}, - {field_name, 5, .inherited = true}, - [397] = - {field_data_contents, 2, .inherited = true}, - {field_name, 1}, - {field_raw_value, 2, .inherited = true}, - [400] = - {field_data_contents, 0}, - [401] = - {field_data_contents, 2, .inherited = true}, - {field_name, 1}, - {field_name, 2, .inherited = true}, - {field_raw_value, 2, .inherited = true}, - [405] = - {field_bound_identifier, 1, .inherited = true}, - {field_mutability, 1, .inherited = true}, - {field_name, 1}, - {field_name, 1, .inherited = true}, - [409] = - {field_body, 5}, - {field_declaration_kind, 1}, - {field_name, 2}, - [412] = - {field_default_value, 5}, - {field_must_inherit, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_name, 5, .inherited = true}, - [417] = - {field_default_value, 3}, - [418] = - {field_name, 3, .inherited = true}, - [419] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [423] = - {field_default_value, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [427] = - {field_bound_identifier, 0, .inherited = true}, - {field_name, 0}, - {field_name, 0, .inherited = true}, - {field_value, 4}, - [431] = - {field_default_value, 5}, - {field_name, 2}, - {field_name, 5, .inherited = true}, - [434] = - {field_constrained_type, 1}, - {field_inherits_from, 3}, - {field_name, 3, .inherited = true}, - [437] = - {field_constrained_type, 1}, - {field_must_equal, 3}, - {field_name, 3, .inherited = true}, - [440] = - {field_default_value, 2, .inherited = true}, - [441] = - {field_body, 6}, - {field_declaration_kind, 0}, - {field_name, 1}, - [444] = - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [446] = - {field_bound_identifier, 2, .inherited = true}, - {field_collection, 5}, - {field_item, 2}, - {field_mutability, 2, .inherited = true}, - {field_name, 2, .inherited = true}, - [451] = - {field_bound_identifier, 3, .inherited = true}, - {field_collection, 5}, - {field_item, 3}, - {field_mutability, 3, .inherited = true}, - {field_name, 3, .inherited = true}, - [456] = - {field_bound_identifier, 5, .inherited = true}, - {field_bound_identifier, 6, .inherited = true}, - {field_condition, 5}, - {field_condition, 6, .inherited = true}, - {field_mutability, 5, .inherited = true}, - {field_mutability, 6, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_name, 6, .inherited = true}, - [464] = - {field_raw_value, 1}, - [465] = - {field_data_contents, 2, .inherited = true}, - {field_data_contents, 3, .inherited = true}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_raw_value, 2, .inherited = true}, - {field_raw_value, 3, .inherited = true}, - [471] = - {field_data_contents, 0, .inherited = true}, - {field_data_contents, 1, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - {field_raw_value, 0, .inherited = true}, - {field_raw_value, 1, .inherited = true}, - [477] = - {field_data_contents, 3, .inherited = true}, - {field_name, 2}, - {field_raw_value, 3, .inherited = true}, - [480] = - {field_data_contents, 3, .inherited = true}, - {field_name, 2}, - {field_name, 3, .inherited = true}, - {field_raw_value, 3, .inherited = true}, - [484] = - {field_name, 3}, - [485] = - {field_body, 6}, - {field_declaration_kind, 1}, - {field_name, 2}, - [488] = - {field_default_value, 6}, - {field_must_inherit, 3}, - {field_name, 1}, - {field_name, 3, .inherited = true}, - {field_name, 6, .inherited = true}, - [493] = - {field_default_value, 2, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 6, .inherited = true}, - {field_return_type, 6}, - [497] = - {field_default_value, 6}, - {field_must_inherit, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - {field_name, 6, .inherited = true}, - [502] = - {field_default_value, 1, .inherited = true}, - {field_name, 3, .inherited = true}, - {field_return_type, 3}, - [505] = - {field_default_value, 3, .inherited = true}, - [506] = - {field_name, 6, .inherited = true}, - {field_return_type, 6}, - [508] = - {field_bound_identifier, 3, .inherited = true}, - {field_collection, 6}, - {field_item, 3}, - {field_mutability, 3, .inherited = true}, - {field_name, 3, .inherited = true}, - [513] = - {field_data_contents, 3, .inherited = true}, - {field_data_contents, 4, .inherited = true}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - {field_raw_value, 3, .inherited = true}, - {field_raw_value, 4, .inherited = true}, - [519] = - {field_data_contents, 4, .inherited = true}, - {field_name, 3}, - {field_raw_value, 4, .inherited = true}, - [522] = - {field_data_contents, 4, .inherited = true}, - {field_name, 3}, - {field_name, 4, .inherited = true}, - {field_raw_value, 4, .inherited = true}, - [526] = - {field_body, 7}, - {field_declaration_kind, 1}, - {field_name, 2}, - [529] = - {field_default_value, 7}, - {field_must_inherit, 4}, - {field_name, 2}, - {field_name, 4, .inherited = true}, - {field_name, 7, .inherited = true}, - [534] = - {field_default_value, 2, .inherited = true}, - {field_name, 4, .inherited = true}, - {field_return_type, 4}, - [537] = - {field_data_contents, 4, .inherited = true}, - {field_data_contents, 5, .inherited = true}, - {field_name, 3}, - {field_name, 5, .inherited = true}, - {field_raw_value, 4, .inherited = true}, - {field_raw_value, 5, .inherited = true}, - [543] = - {field_default_value, 3, .inherited = true}, - {field_name, 5, .inherited = true}, - {field_return_type, 5}, - [546] = - {field_name, 4, .inherited = true}, - [547] = - {field_name, 3, .inherited = true}, - {field_name, 4, .inherited = true}, - [549] = - {field_name, 1, .inherited = true}, - {field_name, 4, .inherited = true}, - [551] = - {field_name, 4, .inherited = true}, - {field_name, 5, .inherited = true}, - [553] = - {field_name, 3, .inherited = true}, - {field_name, 6, .inherited = true}, - [555] = - {field_name, 4, .inherited = true}, - {field_name, 7, .inherited = true}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [2] = { - [0] = sym_simple_identifier, - }, - [5] = { - [0] = alias_sym_type_identifier, - }, - [6] = { - [0] = alias_sym_fully_open_range, - }, - [21] = { - [1] = alias_sym_type_identifier, - }, - [33] = { - [0] = sym__binding_pattern_with_expr, - }, - [40] = { - [0] = alias_sym_interpolated_expression, - }, - [42] = { - [1] = alias_sym_type_identifier, - }, - [70] = { - [0] = sym__binding_pattern_with_expr, - }, - [72] = { - [2] = alias_sym_type_identifier, - }, - [75] = { - [0] = alias_sym_interpolated_expression, - }, - [79] = { - [1] = alias_sym_type_identifier, - }, - [98] = { - [0] = sym__binding_pattern_with_expr, - }, - [99] = { - [1] = alias_sym_type_identifier, - }, - [100] = { - [0] = alias_sym_protocol_function_declaration, - }, - [103] = { - [2] = alias_sym_type_identifier, - }, - [104] = { - [1] = alias_sym_type_identifier, - }, - [105] = { - [1] = alias_sym_type_identifier, - }, - [108] = { - [1] = alias_sym_type_identifier, - }, - [112] = { - [0] = sym__binding_pattern_with_expr, - }, - [113] = { - [0] = sym__binding_pattern_with_expr, - }, - [114] = { - [0] = sym_simple_identifier, - }, - [116] = { - [1] = alias_sym_interpolated_expression, - }, - [118] = { - [1] = alias_sym_type_identifier, - }, - [128] = { - [1] = sym__binding_pattern_with_expr, - }, - [130] = { - [1] = sym__binding_pattern_with_expr, - }, - [132] = { - [1] = alias_sym_type_identifier, - }, - [133] = { - [0] = alias_sym_protocol_function_declaration, - [1] = alias_sym_protocol_function_declaration, - }, - [136] = { - [0] = sym__binding_pattern_with_expr, - }, - [138] = { - [2] = alias_sym_type_identifier, - }, - [139] = { - [1] = alias_sym_type_identifier, - }, - [144] = { - [0] = alias_sym_type_identifier, - }, - [147] = { - [0] = sym__binding_pattern_with_expr, - }, - [148] = { - [0] = sym__binding_pattern_with_expr, - }, - [149] = { - [2] = alias_sym_type_identifier, - }, - [150] = { - [2] = alias_sym_type_identifier, - }, - [151] = { - [1] = sym_simple_identifier, - }, - [154] = { - [1] = alias_sym_type_identifier, - }, - [160] = { - [2] = sym__binding_pattern_with_expr, - }, - [161] = { - [1] = sym__binding_pattern_with_expr, - }, - [168] = { - [1] = sym__binding_pattern_with_expr, - }, - [170] = { - [2] = alias_sym_type_identifier, - }, - [171] = { - [1] = alias_sym_type_identifier, - }, - [173] = { - [1] = alias_sym_type_identifier, - }, - [176] = { - [0] = sym__binding_pattern_with_expr, - }, - [177] = { - [2] = alias_sym_type_identifier, - }, - [181] = { - [1] = alias_sym_type_identifier, - }, - [183] = { - [2] = sym__binding_pattern_with_expr, - }, - [184] = { - [3] = sym__binding_pattern_with_expr, - }, - [193] = { - [2] = alias_sym_type_identifier, - }, - [194] = { - [1] = alias_sym_type_identifier, - }, - [196] = { - [2] = alias_sym_type_identifier, - }, - [200] = { - [3] = sym__binding_pattern_with_expr, - }, - [204] = { - [2] = alias_sym_type_identifier, - }, - [205] = { - [2] = alias_sym_type_identifier, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - sym_simple_identifier, 2, - sym_simple_identifier, - alias_sym_type_identifier, - sym_value_argument, 2, - sym_value_argument, - alias_sym_interpolated_expression, - sym__three_dot_operator, 2, - sym__three_dot_operator, - alias_sym_fully_open_range, - sym__bodyless_function_declaration, 2, - sym__bodyless_function_declaration, - alias_sym_protocol_function_declaration, - sym_function_body, 2, - sym_function_body, - alias_sym_protocol_function_declaration, - sym__binding_pattern_no_expr, 2, - sym__binding_pattern_no_expr, - sym__binding_pattern_with_expr, - sym__no_expr_pattern_already_bound, 2, - sym__no_expr_pattern_already_bound, - sym__binding_pattern_with_expr, - sym__binding_kind_and_pattern, 2, - sym__binding_kind_and_pattern, - sym__binding_pattern_with_expr, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 2, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 7, - [8] = 8, - [9] = 9, - [10] = 10, - [11] = 11, - [12] = 11, - [13] = 11, - [14] = 11, - [15] = 15, - [16] = 15, - [17] = 15, - [18] = 18, - [19] = 15, - [20] = 15, - [21] = 15, - [22] = 15, - [23] = 15, - [24] = 15, - [25] = 15, - [26] = 15, - [27] = 15, - [28] = 15, - [29] = 15, - [30] = 18, - [31] = 15, - [32] = 15, - [33] = 15, - [34] = 15, - [35] = 15, - [36] = 15, - [37] = 15, - [38] = 15, - [39] = 15, - [40] = 15, - [41] = 15, - [42] = 15, - [43] = 15, - [44] = 15, - [45] = 15, - [46] = 15, - [47] = 15, - [48] = 48, - [49] = 48, - [50] = 48, - [51] = 48, - [52] = 52, - [53] = 48, - [54] = 54, - [55] = 55, - [56] = 48, - [57] = 48, - [58] = 55, - [59] = 48, - [60] = 54, - [61] = 61, - [62] = 48, - [63] = 63, - [64] = 55, - [65] = 48, - [66] = 55, - [67] = 48, - [68] = 48, - [69] = 48, - [70] = 63, - [71] = 48, - [72] = 48, - [73] = 48, - [74] = 48, - [75] = 48, - [76] = 61, - [77] = 55, - [78] = 48, - [79] = 55, - [80] = 48, - [81] = 55, - [82] = 48, - [83] = 48, - [84] = 52, - [85] = 55, - [86] = 48, - [87] = 48, - [88] = 48, - [89] = 48, - [90] = 48, - [91] = 48, - [92] = 48, - [93] = 55, - [94] = 94, - [95] = 10, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 9, - [101] = 101, - [102] = 102, - [103] = 102, - [104] = 104, - [105] = 105, - [106] = 106, - [107] = 107, - [108] = 108, - [109] = 108, - [110] = 108, - [111] = 108, - [112] = 108, - [113] = 108, - [114] = 108, - [115] = 108, - [116] = 108, - [117] = 108, - [118] = 118, - [119] = 118, - [120] = 120, - [121] = 118, - [122] = 118, - [123] = 123, - [124] = 118, - [125] = 125, - [126] = 118, - [127] = 127, - [128] = 118, - [129] = 120, - [130] = 130, - [131] = 131, - [132] = 132, - [133] = 131, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 136, - [140] = 135, - [141] = 138, - [142] = 137, - [143] = 137, - [144] = 144, - [145] = 137, - [146] = 144, - [147] = 134, - [148] = 148, - [149] = 149, - [150] = 149, - [151] = 148, - [152] = 152, - [153] = 153, - [154] = 148, - [155] = 153, - [156] = 152, - [157] = 153, - [158] = 149, - [159] = 148, - [160] = 152, - [161] = 153, - [162] = 152, - [163] = 149, - [164] = 148, - [165] = 149, - [166] = 153, - [167] = 149, - [168] = 168, - [169] = 152, - [170] = 152, - [171] = 171, - [172] = 148, - [173] = 153, - [174] = 149, - [175] = 148, - [176] = 152, - [177] = 168, - [178] = 153, - [179] = 152, - [180] = 148, - [181] = 149, - [182] = 153, - [183] = 152, - [184] = 148, - [185] = 149, - [186] = 153, - [187] = 187, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 190, - [192] = 190, - [193] = 190, - [194] = 194, - [195] = 190, - [196] = 196, - [197] = 197, - [198] = 190, - [199] = 199, - [200] = 190, - [201] = 190, - [202] = 190, - [203] = 203, - [204] = 104, - [205] = 196, - [206] = 206, - [207] = 207, - [208] = 208, - [209] = 209, - [210] = 210, - [211] = 211, - [212] = 207, - [213] = 206, - [214] = 214, - [215] = 210, - [216] = 216, - [217] = 217, - [218] = 210, - [219] = 210, - [220] = 220, - [221] = 217, - [222] = 216, - [223] = 217, - [224] = 220, - [225] = 216, - [226] = 216, - [227] = 210, - [228] = 217, - [229] = 220, - [230] = 214, - [231] = 220, - [232] = 209, - [233] = 214, - [234] = 206, - [235] = 216, - [236] = 206, - [237] = 207, - [238] = 211, - [239] = 207, - [240] = 240, - [241] = 240, - [242] = 214, - [243] = 243, - [244] = 209, - [245] = 206, - [246] = 209, - [247] = 207, - [248] = 208, - [249] = 217, - [250] = 209, - [251] = 208, - [252] = 243, - [253] = 220, - [254] = 217, - [255] = 211, - [256] = 211, - [257] = 216, - [258] = 210, - [259] = 209, - [260] = 214, - [261] = 206, - [262] = 207, - [263] = 211, - [264] = 220, - [265] = 240, - [266] = 243, - [267] = 220, - [268] = 217, - [269] = 211, - [270] = 207, - [271] = 206, - [272] = 214, - [273] = 216, - [274] = 240, - [275] = 210, - [276] = 210, - [277] = 216, - [278] = 217, - [279] = 220, - [280] = 243, - [281] = 211, - [282] = 208, - [283] = 243, - [284] = 207, - [285] = 206, - [286] = 214, - [287] = 208, - [288] = 240, - [289] = 214, - [290] = 240, - [291] = 206, - [292] = 207, - [293] = 209, - [294] = 243, - [295] = 208, - [296] = 211, - [297] = 220, - [298] = 240, - [299] = 210, - [300] = 243, - [301] = 211, - [302] = 207, - [303] = 206, - [304] = 216, - [305] = 214, - [306] = 217, - [307] = 220, - [308] = 240, - [309] = 217, - [310] = 210, - [311] = 216, - [312] = 217, - [313] = 220, - [314] = 209, - [315] = 209, - [316] = 208, - [317] = 216, - [318] = 209, - [319] = 243, - [320] = 211, - [321] = 211, - [322] = 210, - [323] = 209, - [324] = 214, - [325] = 325, - [326] = 208, - [327] = 206, - [328] = 240, - [329] = 206, - [330] = 209, - [331] = 207, - [332] = 214, - [333] = 220, - [334] = 217, - [335] = 208, - [336] = 216, - [337] = 210, - [338] = 243, - [339] = 214, - [340] = 207, - [341] = 211, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 342, - [346] = 342, - [347] = 343, - [348] = 343, - [349] = 342, - [350] = 343, - [351] = 351, - [352] = 343, - [353] = 342, - [354] = 342, - [355] = 343, - [356] = 343, - [357] = 342, - [358] = 342, - [359] = 343, - [360] = 343, - [361] = 342, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 366, - [369] = 369, - [370] = 370, - [371] = 363, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 374, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 377, - [381] = 363, - [382] = 369, - [383] = 383, - [384] = 370, - [385] = 385, - [386] = 373, - [387] = 376, - [388] = 372, - [389] = 370, - [390] = 374, - [391] = 379, - [392] = 376, - [393] = 379, - [394] = 372, - [395] = 367, - [396] = 396, - [397] = 397, - [398] = 366, - [399] = 378, - [400] = 367, - [401] = 401, - [402] = 370, - [403] = 365, - [404] = 369, - [405] = 370, - [406] = 372, - [407] = 372, - [408] = 366, - [409] = 409, - [410] = 374, - [411] = 411, - [412] = 376, - [413] = 365, - [414] = 374, - [415] = 378, - [416] = 396, - [417] = 417, - [418] = 418, - [419] = 383, - [420] = 369, - [421] = 421, - [422] = 370, - [423] = 376, - [424] = 372, - [425] = 366, - [426] = 374, - [427] = 376, - [428] = 376, - [429] = 429, - [430] = 365, - [431] = 376, - [432] = 365, - [433] = 378, - [434] = 372, - [435] = 379, - [436] = 376, - [437] = 365, - [438] = 369, - [439] = 401, - [440] = 440, - [441] = 441, - [442] = 363, - [443] = 367, - [444] = 370, - [445] = 367, - [446] = 379, - [447] = 447, - [448] = 373, - [449] = 377, - [450] = 450, - [451] = 363, - [452] = 452, - [453] = 372, - [454] = 365, - [455] = 379, - [456] = 374, - [457] = 367, - [458] = 458, - [459] = 373, - [460] = 367, - [461] = 461, - [462] = 462, - [463] = 376, - [464] = 464, - [465] = 465, - [466] = 385, - [467] = 373, - [468] = 401, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 377, - [473] = 377, - [474] = 366, - [475] = 363, - [476] = 370, - [477] = 477, - [478] = 377, - [479] = 366, - [480] = 379, - [481] = 364, - [482] = 363, - [483] = 378, - [484] = 373, - [485] = 376, - [486] = 409, - [487] = 369, - [488] = 411, - [489] = 377, - [490] = 378, - [491] = 373, - [492] = 373, - [493] = 367, - [494] = 494, - [495] = 379, - [496] = 385, - [497] = 363, - [498] = 367, - [499] = 365, - [500] = 370, - [501] = 373, - [502] = 365, - [503] = 377, - [504] = 373, - [505] = 369, - [506] = 378, - [507] = 379, - [508] = 367, - [509] = 372, - [510] = 366, - [511] = 418, - [512] = 374, - [513] = 513, - [514] = 376, - [515] = 365, - [516] = 379, - [517] = 517, - [518] = 518, - [519] = 378, - [520] = 520, - [521] = 374, - [522] = 363, - [523] = 366, - [524] = 366, - [525] = 367, - [526] = 365, - [527] = 401, - [528] = 369, - [529] = 377, - [530] = 530, - [531] = 409, - [532] = 532, - [533] = 411, - [534] = 409, - [535] = 535, - [536] = 377, - [537] = 458, - [538] = 385, - [539] = 373, - [540] = 379, - [541] = 418, - [542] = 378, - [543] = 366, - [544] = 447, - [545] = 366, - [546] = 363, - [547] = 377, - [548] = 362, - [549] = 373, - [550] = 367, - [551] = 363, - [552] = 552, - [553] = 513, - [554] = 369, - [555] = 383, - [556] = 461, - [557] = 535, - [558] = 365, - [559] = 411, - [560] = 363, - [561] = 383, - [562] = 450, - [563] = 518, - [564] = 377, - [565] = 418, - [566] = 379, - [567] = 383, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 570, - [576] = 569, - [577] = 572, - [578] = 573, - [579] = 571, - [580] = 568, - [581] = 572, - [582] = 569, - [583] = 571, - [584] = 568, - [585] = 573, - [586] = 570, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 605, - [606] = 606, - [607] = 587, - [608] = 608, - [609] = 593, - [610] = 590, - [611] = 592, - [612] = 591, - [613] = 595, - [614] = 587, - [615] = 594, - [616] = 588, - [617] = 617, - [618] = 597, - [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 588, - [624] = 591, - [625] = 595, - [626] = 626, - [627] = 594, - [628] = 593, - [629] = 629, - [630] = 592, - [631] = 631, - [632] = 596, - [633] = 590, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 598, - [638] = 599, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 663, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 622, - [698] = 635, - [699] = 636, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 663, - [707] = 707, - [708] = 675, - [709] = 683, - [710] = 680, - [711] = 568, - [712] = 646, - [713] = 678, - [714] = 569, - [715] = 648, - [716] = 650, - [717] = 572, - [718] = 691, - [719] = 573, - [720] = 643, - [721] = 686, - [722] = 645, - [723] = 723, - [724] = 571, - [725] = 570, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 573, - [730] = 730, - [731] = 731, - [732] = 569, - [733] = 568, - [734] = 734, - [735] = 572, - [736] = 736, - [737] = 737, - [738] = 570, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 645, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 646, - [765] = 648, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 571, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 650, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 571, - [787] = 569, - [788] = 568, - [789] = 789, - [790] = 571, - [791] = 568, - [792] = 570, - [793] = 573, - [794] = 573, - [795] = 569, - [796] = 572, - [797] = 572, - [798] = 570, - [799] = 573, - [800] = 571, - [801] = 570, - [802] = 568, - [803] = 572, - [804] = 569, - [805] = 568, - [806] = 569, - [807] = 573, - [808] = 572, - [809] = 570, - [810] = 571, - [811] = 568, - [812] = 570, - [813] = 571, - [814] = 573, - [815] = 635, - [816] = 622, - [817] = 636, - [818] = 569, - [819] = 572, - [820] = 635, - [821] = 622, - [822] = 636, - [823] = 645, - [824] = 647, - [825] = 646, - [826] = 648, - [827] = 650, - [828] = 643, - [829] = 829, - [830] = 645, - [831] = 647, - [832] = 646, - [833] = 648, - [834] = 650, - [835] = 835, - [836] = 643, - [837] = 837, - [838] = 634, - [839] = 839, - [840] = 631, - [841] = 629, - [842] = 621, - [843] = 626, - [844] = 617, - [845] = 845, - [846] = 845, - [847] = 847, - [848] = 634, - [849] = 631, - [850] = 850, - [851] = 845, - [852] = 626, - [853] = 629, - [854] = 847, - [855] = 681, - [856] = 845, - [857] = 621, - [858] = 847, - [859] = 677, - [860] = 617, - [861] = 847, - [862] = 681, - [863] = 651, - [864] = 649, - [865] = 677, - [866] = 622, - [867] = 644, - [868] = 635, - [869] = 642, - [870] = 636, - [871] = 654, - [872] = 669, - [873] = 661, - [874] = 636, - [875] = 875, - [876] = 622, - [877] = 653, - [878] = 664, - [879] = 635, - [880] = 674, - [881] = 676, - [882] = 667, - [883] = 670, - [884] = 673, - [885] = 875, - [886] = 672, - [887] = 666, - [888] = 675, - [889] = 668, - [890] = 875, - [891] = 655, - [892] = 658, - [893] = 875, - [894] = 651, - [895] = 642, - [896] = 660, - [897] = 644, - [898] = 665, - [899] = 657, - [900] = 656, - [901] = 652, - [902] = 659, - [903] = 662, - [904] = 663, - [905] = 649, - [906] = 671, - [907] = 692, - [908] = 908, - [909] = 670, - [910] = 664, - [911] = 680, - [912] = 658, - [913] = 691, - [914] = 914, - [915] = 653, - [916] = 654, - [917] = 643, - [918] = 683, - [919] = 662, - [920] = 920, - [921] = 667, - [922] = 669, - [923] = 645, - [924] = 665, - [925] = 660, - [926] = 663, - [927] = 652, - [928] = 674, - [929] = 676, - [930] = 672, - [931] = 690, - [932] = 668, - [933] = 663, - [934] = 687, - [935] = 655, - [936] = 679, - [937] = 684, - [938] = 671, - [939] = 689, - [940] = 646, - [941] = 648, - [942] = 685, - [943] = 642, - [944] = 682, - [945] = 650, - [946] = 644, - [947] = 947, - [948] = 673, - [949] = 678, - [950] = 675, - [951] = 686, - [952] = 657, - [953] = 661, - [954] = 666, - [955] = 651, - [956] = 656, - [957] = 659, - [958] = 685, - [959] = 675, - [960] = 648, - [961] = 694, - [962] = 693, - [963] = 646, - [964] = 696, - [965] = 645, - [966] = 650, - [967] = 663, - [968] = 683, - [969] = 692, - [970] = 678, - [971] = 971, - [972] = 689, - [973] = 695, - [974] = 690, - [975] = 691, - [976] = 686, - [977] = 643, - [978] = 682, - [979] = 687, - [980] = 680, - [981] = 679, - [982] = 684, - [983] = 983, - [984] = 663, - [985] = 690, - [986] = 683, - [987] = 680, - [988] = 988, - [989] = 691, - [990] = 696, - [991] = 991, - [992] = 693, - [993] = 991, - [994] = 694, - [995] = 695, - [996] = 996, - [997] = 702, - [998] = 789, - [999] = 705, - [1000] = 703, - [1001] = 675, - [1002] = 707, - [1003] = 704, - [1004] = 568, - [1005] = 700, - [1006] = 663, - [1007] = 701, - [1008] = 703, - [1009] = 704, - [1010] = 663, - [1011] = 789, - [1012] = 701, - [1013] = 1013, - [1014] = 707, - [1015] = 680, - [1016] = 678, - [1017] = 702, - [1018] = 705, - [1019] = 686, - [1020] = 683, - [1021] = 675, - [1022] = 700, - [1023] = 723, - [1024] = 691, - [1025] = 645, - [1026] = 742, - [1027] = 762, - [1028] = 763, - [1029] = 751, - [1030] = 761, - [1031] = 767, - [1032] = 768, - [1033] = 646, - [1034] = 648, - [1035] = 769, - [1036] = 770, - [1037] = 772, - [1038] = 773, - [1039] = 774, - [1040] = 749, - [1041] = 775, - [1042] = 723, - [1043] = 776, - [1044] = 777, - [1045] = 778, - [1046] = 745, - [1047] = 779, - [1048] = 780, - [1049] = 728, - [1050] = 781, - [1051] = 726, - [1052] = 783, - [1053] = 784, - [1054] = 785, - [1055] = 766, - [1056] = 753, - [1057] = 683, - [1058] = 760, - [1059] = 727, - [1060] = 691, - [1061] = 752, - [1062] = 748, - [1063] = 754, - [1064] = 758, - [1065] = 730, - [1066] = 747, - [1067] = 650, - [1068] = 755, - [1069] = 750, - [1070] = 741, - [1071] = 756, - [1072] = 740, - [1073] = 737, - [1074] = 739, - [1075] = 678, - [1076] = 731, - [1077] = 680, - [1078] = 736, - [1079] = 744, - [1080] = 759, - [1081] = 734, - [1082] = 686, - [1083] = 757, - [1084] = 743, - [1085] = 767, - [1086] = 728, - [1087] = 731, - [1088] = 730, - [1089] = 772, - [1090] = 773, - [1091] = 774, - [1092] = 775, - [1093] = 776, - [1094] = 739, - [1095] = 777, - [1096] = 778, - [1097] = 779, - [1098] = 740, - [1099] = 743, - [1100] = 742, - [1101] = 741, - [1102] = 780, - [1103] = 747, - [1104] = 781, - [1105] = 750, - [1106] = 726, - [1107] = 754, - [1108] = 751, - [1109] = 758, - [1110] = 650, - [1111] = 755, - [1112] = 756, - [1113] = 783, - [1114] = 744, - [1115] = 748, - [1116] = 749, - [1117] = 770, - [1118] = 769, - [1119] = 759, - [1120] = 734, - [1121] = 752, - [1122] = 784, - [1123] = 785, - [1124] = 745, - [1125] = 760, - [1126] = 648, - [1127] = 757, - [1128] = 646, - [1129] = 645, - [1130] = 768, - [1131] = 761, - [1132] = 766, - [1133] = 737, - [1134] = 753, - [1135] = 736, - [1136] = 763, - [1137] = 762, - [1138] = 727, - [1139] = 608, - [1140] = 587, - [1141] = 590, - [1142] = 593, - [1143] = 594, - [1144] = 587, - [1145] = 591, - [1146] = 588, - [1147] = 595, - [1148] = 592, - [1149] = 620, - [1150] = 594, - [1151] = 587, - [1152] = 590, - [1153] = 596, - [1154] = 619, - [1155] = 599, - [1156] = 595, - [1157] = 598, - [1158] = 597, - [1159] = 592, - [1160] = 591, - [1161] = 593, - [1162] = 588, - [1163] = 587, - [1164] = 591, - [1165] = 1165, - [1166] = 596, - [1167] = 587, - [1168] = 588, - [1169] = 597, - [1170] = 1165, - [1171] = 594, - [1172] = 590, - [1173] = 1165, - [1174] = 1165, - [1175] = 595, - [1176] = 587, - [1177] = 641, - [1178] = 592, - [1179] = 598, - [1180] = 1165, - [1181] = 594, - [1182] = 1165, - [1183] = 1165, - [1184] = 593, - [1185] = 1165, - [1186] = 593, - [1187] = 591, - [1188] = 592, - [1189] = 588, - [1190] = 590, - [1191] = 599, - [1192] = 595, - [1193] = 608, - [1194] = 1165, - [1195] = 588, - [1196] = 1196, - [1197] = 1197, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1198, - [1203] = 640, - [1204] = 1204, - [1205] = 1205, - [1206] = 1196, - [1207] = 1199, - [1208] = 608, - [1209] = 1199, - [1210] = 1210, - [1211] = 1198, - [1212] = 1204, - [1213] = 1196, - [1214] = 1214, - [1215] = 1199, - [1216] = 1216, - [1217] = 1217, - [1218] = 1199, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1199, - [1223] = 1198, - [1224] = 1196, - [1225] = 1196, - [1226] = 1219, - [1227] = 1227, - [1228] = 1199, - [1229] = 1229, - [1230] = 1230, - [1231] = 587, - [1232] = 1200, - [1233] = 1198, - [1234] = 1214, - [1235] = 1198, - [1236] = 1216, - [1237] = 1198, - [1238] = 1198, - [1239] = 1196, - [1240] = 1217, - [1241] = 593, - [1242] = 591, - [1243] = 592, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1196, - [1248] = 594, - [1249] = 595, - [1250] = 590, - [1251] = 1251, - [1252] = 1197, - [1253] = 1253, - [1254] = 1254, - [1255] = 1198, - [1256] = 593, - [1257] = 591, - [1258] = 592, - [1259] = 594, - [1260] = 595, - [1261] = 1196, - [1262] = 590, - [1263] = 588, - [1264] = 639, - [1265] = 1199, - [1266] = 1266, - [1267] = 1196, - [1268] = 1227, - [1269] = 1244, - [1270] = 1245, - [1271] = 1199, - [1272] = 1246, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 593, - [1277] = 591, - [1278] = 619, - [1279] = 620, - [1280] = 592, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 594, - [1286] = 587, - [1287] = 1287, - [1288] = 595, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 588, - [1294] = 1294, - [1295] = 1295, - [1296] = 590, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1298, - [1301] = 1301, - [1302] = 595, - [1303] = 1301, - [1304] = 1301, - [1305] = 1299, - [1306] = 1301, - [1307] = 1298, - [1308] = 594, - [1309] = 1309, - [1310] = 1310, - [1311] = 592, - [1312] = 1299, - [1313] = 1301, - [1314] = 1298, - [1315] = 1298, - [1316] = 1309, - [1317] = 1309, - [1318] = 591, - [1319] = 1301, - [1320] = 1301, - [1321] = 590, - [1322] = 1299, - [1323] = 619, - [1324] = 1298, - [1325] = 1309, - [1326] = 1326, - [1327] = 1299, - [1328] = 1298, - [1329] = 593, - [1330] = 1326, - [1331] = 1299, - [1332] = 1301, - [1333] = 1299, - [1334] = 1301, - [1335] = 1298, - [1336] = 1299, - [1337] = 1298, - [1338] = 588, - [1339] = 1299, - [1340] = 1299, - [1341] = 1309, - [1342] = 1309, - [1343] = 620, - [1344] = 1309, - [1345] = 1299, - [1346] = 587, - [1347] = 1309, - [1348] = 1309, - [1349] = 1299, - [1350] = 1326, - [1351] = 620, - [1352] = 1352, - [1353] = 594, - [1354] = 593, - [1355] = 1355, - [1356] = 595, - [1357] = 590, - [1358] = 588, - [1359] = 592, - [1360] = 1352, - [1361] = 591, - [1362] = 1362, - [1363] = 1363, - [1364] = 629, - [1365] = 1365, - [1366] = 634, - [1367] = 629, - [1368] = 631, - [1369] = 651, - [1370] = 621, - [1371] = 642, - [1372] = 626, - [1373] = 617, - [1374] = 675, - [1375] = 644, - [1376] = 629, - [1377] = 626, - [1378] = 675, - [1379] = 651, - [1380] = 644, - [1381] = 631, - [1382] = 829, - [1383] = 634, - [1384] = 621, - [1385] = 642, - [1386] = 663, - [1387] = 663, - [1388] = 617, - [1389] = 691, - [1390] = 680, - [1391] = 690, - [1392] = 683, - [1393] = 668, - [1394] = 617, - [1395] = 644, - [1396] = 675, - [1397] = 669, - [1398] = 651, - [1399] = 642, - [1400] = 652, - [1401] = 621, - [1402] = 663, - [1403] = 626, - [1404] = 631, - [1405] = 634, - [1406] = 662, - [1407] = 669, - [1408] = 686, - [1409] = 680, - [1410] = 678, - [1411] = 691, - [1412] = 652, - [1413] = 682, - [1414] = 683, - [1415] = 684, - [1416] = 665, - [1417] = 668, - [1418] = 692, - [1419] = 690, - [1420] = 663, - [1421] = 686, - [1422] = 690, - [1423] = 682, - [1424] = 652, - [1425] = 683, - [1426] = 668, - [1427] = 635, - [1428] = 622, - [1429] = 691, - [1430] = 678, - [1431] = 685, - [1432] = 689, - [1433] = 692, - [1434] = 669, - [1435] = 680, - [1436] = 687, - [1437] = 665, - [1438] = 662, - [1439] = 684, - [1440] = 679, - [1441] = 636, - [1442] = 689, - [1443] = 635, - [1444] = 687, - [1445] = 682, - [1446] = 684, - [1447] = 686, - [1448] = 636, - [1449] = 662, - [1450] = 679, - [1451] = 685, - [1452] = 692, - [1453] = 678, - [1454] = 665, - [1455] = 622, - [1456] = 1456, - [1457] = 643, - [1458] = 635, - [1459] = 1459, - [1460] = 679, - [1461] = 687, - [1462] = 689, - [1463] = 685, - [1464] = 1464, - [1465] = 629, - [1466] = 636, - [1467] = 645, - [1468] = 622, - [1469] = 622, - [1470] = 646, - [1471] = 648, - [1472] = 635, - [1473] = 650, - [1474] = 636, - [1475] = 647, - [1476] = 837, - [1477] = 617, - [1478] = 1478, - [1479] = 634, - [1480] = 636, - [1481] = 631, - [1482] = 647, - [1483] = 646, - [1484] = 622, - [1485] = 663, - [1486] = 650, - [1487] = 648, - [1488] = 626, - [1489] = 622, - [1490] = 1490, - [1491] = 635, - [1492] = 829, - [1493] = 636, - [1494] = 643, - [1495] = 645, - [1496] = 1496, - [1497] = 651, - [1498] = 642, - [1499] = 635, - [1500] = 621, - [1501] = 675, - [1502] = 835, - [1503] = 644, - [1504] = 629, - [1505] = 1505, - [1506] = 1506, - [1507] = 663, - [1508] = 648, - [1509] = 1509, - [1510] = 634, - [1511] = 643, - [1512] = 646, - [1513] = 622, - [1514] = 648, - [1515] = 649, - [1516] = 1516, - [1517] = 1517, - [1518] = 663, - [1519] = 643, - [1520] = 645, - [1521] = 650, - [1522] = 626, - [1523] = 621, - [1524] = 631, - [1525] = 647, - [1526] = 650, - [1527] = 617, - [1528] = 1528, - [1529] = 663, - [1530] = 661, - [1531] = 636, - [1532] = 635, - [1533] = 839, - [1534] = 647, - [1535] = 646, - [1536] = 663, - [1537] = 645, - [1538] = 649, - [1539] = 1539, - [1540] = 1540, - [1541] = 648, - [1542] = 622, - [1543] = 636, - [1544] = 690, - [1545] = 652, - [1546] = 626, - [1547] = 648, - [1548] = 668, - [1549] = 646, - [1550] = 1550, - [1551] = 683, - [1552] = 691, - [1553] = 680, - [1554] = 650, - [1555] = 681, - [1556] = 645, - [1557] = 650, - [1558] = 643, - [1559] = 663, - [1560] = 1560, - [1561] = 631, - [1562] = 634, - [1563] = 643, - [1564] = 645, - [1565] = 1565, - [1566] = 647, - [1567] = 1567, - [1568] = 635, - [1569] = 617, - [1570] = 647, - [1571] = 621, - [1572] = 629, - [1573] = 669, - [1574] = 646, - [1575] = 677, - [1576] = 686, - [1577] = 665, - [1578] = 635, - [1579] = 1579, - [1580] = 649, - [1581] = 1581, - [1582] = 1582, - [1583] = 647, - [1584] = 651, - [1585] = 682, - [1586] = 1586, - [1587] = 644, - [1588] = 617, - [1589] = 650, - [1590] = 648, - [1591] = 642, - [1592] = 646, - [1593] = 643, - [1594] = 1594, - [1595] = 635, - [1596] = 1596, - [1597] = 636, - [1598] = 621, - [1599] = 678, - [1600] = 622, - [1601] = 629, - [1602] = 626, - [1603] = 684, - [1604] = 1604, - [1605] = 1605, - [1606] = 636, - [1607] = 645, - [1608] = 622, - [1609] = 634, - [1610] = 677, - [1611] = 692, - [1612] = 662, - [1613] = 631, - [1614] = 1614, - [1615] = 681, - [1616] = 1616, - [1617] = 634, - [1618] = 621, - [1619] = 644, - [1620] = 629, - [1621] = 631, - [1622] = 635, - [1623] = 634, - [1624] = 663, - [1625] = 662, - [1626] = 677, - [1627] = 617, - [1628] = 626, - [1629] = 626, - [1630] = 1630, - [1631] = 689, - [1632] = 655, - [1633] = 622, - [1634] = 642, - [1635] = 663, - [1636] = 658, - [1637] = 631, - [1638] = 669, - [1639] = 629, - [1640] = 636, - [1641] = 1641, - [1642] = 621, - [1643] = 681, - [1644] = 652, - [1645] = 665, - [1646] = 677, - [1647] = 651, - [1648] = 676, - [1649] = 674, - [1650] = 654, - [1651] = 1651, - [1652] = 617, - [1653] = 1653, - [1654] = 653, - [1655] = 664, - [1656] = 1656, - [1657] = 681, - [1658] = 675, - [1659] = 667, - [1660] = 670, - [1661] = 673, - [1662] = 668, - [1663] = 663, - [1664] = 672, - [1665] = 1665, - [1666] = 657, - [1667] = 656, - [1668] = 685, - [1669] = 687, - [1670] = 659, - [1671] = 679, - [1672] = 666, - [1673] = 671, - [1674] = 649, - [1675] = 660, - [1676] = 661, - [1677] = 675, - [1678] = 654, - [1679] = 1679, - [1680] = 658, - [1681] = 652, - [1682] = 635, - [1683] = 665, - [1684] = 678, - [1685] = 1685, - [1686] = 677, - [1687] = 686, - [1688] = 642, - [1689] = 669, - [1690] = 644, - [1691] = 681, - [1692] = 663, - [1693] = 657, - [1694] = 1665, - [1695] = 671, - [1696] = 649, - [1697] = 662, - [1698] = 659, - [1699] = 668, - [1700] = 680, - [1701] = 622, - [1702] = 651, - [1703] = 681, - [1704] = 691, - [1705] = 653, - [1706] = 683, - [1707] = 1630, - [1708] = 664, - [1709] = 687, - [1710] = 621, - [1711] = 667, - [1712] = 670, - [1713] = 1713, - [1714] = 679, - [1715] = 636, - [1716] = 626, - [1717] = 684, - [1718] = 689, - [1719] = 677, - [1720] = 672, - [1721] = 685, - [1722] = 682, - [1723] = 1723, - [1724] = 663, - [1725] = 1725, - [1726] = 644, - [1727] = 673, - [1728] = 622, - [1729] = 645, - [1730] = 692, - [1731] = 650, - [1732] = 1641, - [1733] = 642, - [1734] = 661, - [1735] = 635, - [1736] = 660, - [1737] = 643, - [1738] = 651, - [1739] = 690, - [1740] = 675, - [1741] = 629, - [1742] = 666, - [1743] = 646, - [1744] = 648, - [1745] = 674, - [1746] = 1746, - [1747] = 655, - [1748] = 636, - [1749] = 629, - [1750] = 1750, - [1751] = 631, - [1752] = 634, - [1753] = 676, - [1754] = 617, - [1755] = 1651, - [1756] = 656, - [1757] = 626, - [1758] = 1758, - [1759] = 617, - [1760] = 634, - [1761] = 631, - [1762] = 663, - [1763] = 644, - [1764] = 1685, - [1765] = 663, - [1766] = 681, - [1767] = 621, - [1768] = 1768, - [1769] = 1769, - [1770] = 635, - [1771] = 1771, - [1772] = 663, - [1773] = 1773, - [1774] = 661, - [1775] = 1775, - [1776] = 642, - [1777] = 1771, - [1778] = 668, - [1779] = 649, - [1780] = 1780, - [1781] = 686, - [1782] = 651, - [1783] = 1758, - [1784] = 1771, - [1785] = 1771, - [1786] = 636, - [1787] = 1771, - [1788] = 690, - [1789] = 1771, - [1790] = 622, - [1791] = 1791, - [1792] = 649, - [1793] = 678, - [1794] = 683, - [1795] = 687, - [1796] = 652, - [1797] = 676, - [1798] = 675, - [1799] = 674, - [1800] = 1800, - [1801] = 665, - [1802] = 1771, - [1803] = 644, - [1804] = 635, - [1805] = 651, - [1806] = 654, - [1807] = 1807, - [1808] = 653, - [1809] = 679, - [1810] = 664, - [1811] = 684, - [1812] = 1812, - [1813] = 1771, - [1814] = 667, - [1815] = 670, - [1816] = 673, - [1817] = 1807, - [1818] = 642, - [1819] = 650, - [1820] = 568, - [1821] = 1821, - [1822] = 689, - [1823] = 642, - [1824] = 685, - [1825] = 672, - [1826] = 682, - [1827] = 645, - [1828] = 622, - [1829] = 1829, - [1830] = 657, - [1831] = 656, - [1832] = 692, - [1833] = 646, - [1834] = 659, - [1835] = 669, - [1836] = 666, - [1837] = 636, - [1838] = 675, - [1839] = 671, - [1840] = 660, - [1841] = 648, - [1842] = 651, - [1843] = 643, - [1844] = 644, - [1845] = 677, - [1846] = 651, - [1847] = 1771, - [1848] = 1848, - [1849] = 658, - [1850] = 655, - [1851] = 680, - [1852] = 662, - [1853] = 675, - [1854] = 696, - [1855] = 695, - [1856] = 694, - [1857] = 693, - [1858] = 691, - [1859] = 679, - [1860] = 672, - [1861] = 1861, - [1862] = 1862, - [1863] = 655, - [1864] = 1864, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 658, - [1869] = 675, - [1870] = 650, - [1871] = 683, - [1872] = 680, - [1873] = 687, - [1874] = 636, - [1875] = 646, - [1876] = 671, - [1877] = 661, - [1878] = 663, - [1879] = 648, - [1880] = 650, - [1881] = 691, - [1882] = 643, - [1883] = 683, - [1884] = 660, - [1885] = 696, - [1886] = 663, - [1887] = 668, - [1888] = 684, - [1889] = 662, - [1890] = 666, - [1891] = 663, - [1892] = 692, - [1893] = 643, - [1894] = 1894, - [1895] = 671, - [1896] = 660, - [1897] = 659, - [1898] = 661, - [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1665, - [1904] = 691, - [1905] = 656, - [1906] = 651, - [1907] = 657, - [1908] = 652, - [1909] = 665, - [1910] = 690, - [1911] = 622, - [1912] = 1912, - [1913] = 680, - [1914] = 642, - [1915] = 658, - [1916] = 649, - [1917] = 690, - [1918] = 676, - [1919] = 663, - [1920] = 669, - [1921] = 682, - [1922] = 644, - [1923] = 648, - [1924] = 646, - [1925] = 676, - [1926] = 674, - [1927] = 663, - [1928] = 674, - [1929] = 677, - [1930] = 695, - [1931] = 655, - [1932] = 1932, - [1933] = 672, - [1934] = 654, - [1935] = 653, - [1936] = 664, - [1937] = 1937, - [1938] = 668, - [1939] = 662, - [1940] = 694, - [1941] = 693, - [1942] = 1942, - [1943] = 667, - [1944] = 670, - [1945] = 666, - [1946] = 673, - [1947] = 1947, - [1948] = 645, - [1949] = 669, - [1950] = 659, - [1951] = 673, - [1952] = 665, - [1953] = 656, - [1954] = 685, - [1955] = 657, - [1956] = 635, - [1957] = 670, - [1958] = 678, - [1959] = 652, - [1960] = 654, - [1961] = 675, - [1962] = 1962, - [1963] = 653, - [1964] = 664, - [1965] = 629, - [1966] = 681, - [1967] = 689, - [1968] = 686, - [1969] = 645, - [1970] = 667, - [1971] = 1971, - [1972] = 1972, - [1973] = 1973, - [1974] = 672, - [1975] = 1975, - [1976] = 1976, - [1977] = 694, - [1978] = 693, - [1979] = 662, - [1980] = 1980, - [1981] = 702, - [1982] = 703, - [1983] = 652, - [1984] = 1984, - [1985] = 1985, - [1986] = 695, - [1987] = 675, - [1988] = 621, - [1989] = 665, - [1990] = 668, - [1991] = 696, - [1992] = 1992, - [1993] = 1993, - [1994] = 673, - [1995] = 692, - [1996] = 669, - [1997] = 680, - [1998] = 670, - [1999] = 683, - [2000] = 691, - [2001] = 2001, - [2002] = 2002, - [2003] = 643, - [2004] = 682, - [2005] = 686, - [2006] = 685, - [2007] = 689, - [2008] = 2008, - [2009] = 667, - [2010] = 669, - [2011] = 680, - [2012] = 684, - [2013] = 680, - [2014] = 657, - [2015] = 678, - [2016] = 677, - [2017] = 2017, - [2018] = 656, - [2019] = 652, - [2020] = 664, - [2021] = 2021, - [2022] = 642, - [2023] = 653, - [2024] = 631, - [2025] = 634, - [2026] = 659, - [2027] = 678, - [2028] = 626, - [2029] = 654, - [2030] = 2030, - [2031] = 679, - [2032] = 789, - [2033] = 2033, - [2034] = 988, - [2035] = 687, - [2036] = 668, - [2037] = 691, - [2038] = 686, - [2039] = 644, - [2040] = 690, - [2041] = 2041, - [2042] = 683, - [2043] = 645, - [2044] = 681, - [2045] = 643, - [2046] = 661, - [2047] = 691, - [2048] = 666, - [2049] = 700, - [2050] = 692, - [2051] = 646, - [2052] = 642, - [2053] = 648, - [2054] = 682, - [2055] = 650, - [2056] = 1517, - [2057] = 701, - [2058] = 617, - [2059] = 691, - [2060] = 663, - [2061] = 707, - [2062] = 2062, - [2063] = 680, - [2064] = 2064, - [2065] = 645, - [2066] = 685, - [2067] = 690, - [2068] = 663, - [2069] = 689, - [2070] = 655, - [2071] = 675, - [2072] = 674, - [2073] = 684, - [2074] = 651, - [2075] = 676, - [2076] = 2076, - [2077] = 983, - [2078] = 2078, - [2079] = 663, - [2080] = 658, - [2081] = 679, - [2082] = 629, - [2083] = 705, - [2084] = 2084, - [2085] = 2085, - [2086] = 663, - [2087] = 690, - [2088] = 683, - [2089] = 675, - [2090] = 2090, - [2091] = 671, - [2092] = 644, - [2093] = 683, - [2094] = 996, - [2095] = 690, - [2096] = 2096, - [2097] = 660, - [2098] = 2098, - [2099] = 648, - [2100] = 704, - [2101] = 2101, - [2102] = 687, - [2103] = 650, - [2104] = 646, - [2105] = 689, - [2106] = 663, - [2107] = 2107, - [2108] = 650, - [2109] = 2109, - [2110] = 2110, - [2111] = 663, - [2112] = 621, - [2113] = 631, - [2114] = 675, - [2115] = 634, - [2116] = 626, - [2117] = 789, - [2118] = 693, - [2119] = 694, - [2120] = 617, - [2121] = 648, - [2122] = 646, - [2123] = 701, - [2124] = 707, - [2125] = 675, - [2126] = 692, - [2127] = 682, - [2128] = 685, - [2129] = 723, - [2130] = 683, - [2131] = 644, - [2132] = 695, - [2133] = 680, - [2134] = 696, - [2135] = 680, - [2136] = 1013, - [2137] = 684, - [2138] = 679, - [2139] = 703, - [2140] = 687, - [2141] = 2141, - [2142] = 696, - [2143] = 684, - [2144] = 695, - [2145] = 662, - [2146] = 2146, - [2147] = 700, - [2148] = 2148, - [2149] = 682, - [2150] = 642, - [2151] = 665, - [2152] = 663, - [2153] = 692, - [2154] = 702, - [2155] = 2155, - [2156] = 690, - [2157] = 2157, - [2158] = 678, - [2159] = 686, - [2160] = 686, - [2161] = 678, - [2162] = 691, - [2163] = 663, - [2164] = 693, - [2165] = 678, - [2166] = 645, - [2167] = 705, - [2168] = 686, - [2169] = 643, - [2170] = 651, - [2171] = 683, - [2172] = 704, - [2173] = 691, - [2174] = 694, - [2175] = 756, - [2176] = 675, - [2177] = 690, - [2178] = 2178, - [2179] = 663, - [2180] = 781, - [2181] = 726, - [2182] = 783, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 663, - [2194] = 784, - [2195] = 669, - [2196] = 785, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 705, - [2210] = 766, - [2211] = 2211, - [2212] = 753, - [2213] = 2213, - [2214] = 648, - [2215] = 646, - [2216] = 2216, - [2217] = 728, - [2218] = 745, - [2219] = 2219, - [2220] = 693, - [2221] = 694, - [2222] = 2222, - [2223] = 652, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 2227, - [2228] = 723, - [2229] = 2229, - [2230] = 2230, - [2231] = 727, - [2232] = 789, - [2233] = 2233, - [2234] = 749, - [2235] = 752, - [2236] = 748, - [2237] = 758, - [2238] = 747, - [2239] = 686, - [2240] = 741, - [2241] = 2241, - [2242] = 683, - [2243] = 750, - [2244] = 2244, - [2245] = 740, - [2246] = 739, - [2247] = 645, - [2248] = 751, - [2249] = 2249, - [2250] = 731, - [2251] = 2251, - [2252] = 2252, - [2253] = 754, - [2254] = 736, - [2255] = 2255, - [2256] = 742, - [2257] = 2257, - [2258] = 2258, - [2259] = 2259, - [2260] = 743, - [2261] = 744, - [2262] = 2262, - [2263] = 2263, - [2264] = 685, - [2265] = 2265, - [2266] = 757, - [2267] = 689, - [2268] = 2268, - [2269] = 2269, - [2270] = 2270, - [2271] = 734, - [2272] = 2272, - [2273] = 2273, - [2274] = 2274, - [2275] = 679, - [2276] = 755, - [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 737, - [2281] = 2281, - [2282] = 2282, - [2283] = 687, - [2284] = 2284, - [2285] = 2285, - [2286] = 704, - [2287] = 2287, - [2288] = 707, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 759, - [2297] = 701, - [2298] = 2298, - [2299] = 2273, - [2300] = 2300, - [2301] = 2301, - [2302] = 683, - [2303] = 2303, - [2304] = 691, - [2305] = 2305, - [2306] = 2306, - [2307] = 700, - [2308] = 2308, - [2309] = 2309, - [2310] = 703, - [2311] = 780, - [2312] = 695, - [2313] = 2313, - [2314] = 702, - [2315] = 696, - [2316] = 2316, - [2317] = 2317, - [2318] = 678, - [2319] = 2319, - [2320] = 789, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 760, - [2326] = 761, - [2327] = 779, - [2328] = 762, - [2329] = 2329, - [2330] = 2330, - [2331] = 650, - [2332] = 778, - [2333] = 2333, - [2334] = 777, - [2335] = 763, - [2336] = 2336, - [2337] = 2337, - [2338] = 680, - [2339] = 2339, - [2340] = 767, - [2341] = 691, - [2342] = 680, - [2343] = 668, - [2344] = 768, - [2345] = 2345, - [2346] = 769, - [2347] = 2347, - [2348] = 770, - [2349] = 772, - [2350] = 776, - [2351] = 775, - [2352] = 774, - [2353] = 730, - [2354] = 773, - [2355] = 650, - [2356] = 773, - [2357] = 726, - [2358] = 783, - [2359] = 701, - [2360] = 700, - [2361] = 747, - [2362] = 680, - [2363] = 749, - [2364] = 745, - [2365] = 2365, - [2366] = 707, - [2367] = 744, - [2368] = 663, - [2369] = 645, - [2370] = 736, - [2371] = 751, - [2372] = 743, - [2373] = 789, - [2374] = 734, - [2375] = 741, - [2376] = 728, - [2377] = 742, - [2378] = 1972, - [2379] = 739, - [2380] = 669, - [2381] = 723, - [2382] = 675, - [2383] = 770, - [2384] = 730, - [2385] = 761, - [2386] = 784, - [2387] = 682, - [2388] = 760, - [2389] = 678, - [2390] = 684, - [2391] = 757, - [2392] = 780, - [2393] = 703, - [2394] = 702, - [2395] = 759, - [2396] = 678, - [2397] = 785, - [2398] = 988, - [2399] = 752, - [2400] = 766, - [2401] = 762, - [2402] = 702, - [2403] = 781, - [2404] = 663, - [2405] = 750, - [2406] = 727, - [2407] = 692, - [2408] = 772, - [2409] = 703, - [2410] = 665, - [2411] = 789, - [2412] = 704, - [2413] = 652, - [2414] = 646, - [2415] = 779, - [2416] = 686, - [2417] = 767, - [2418] = 774, - [2419] = 756, - [2420] = 648, - [2421] = 768, - [2422] = 2422, - [2423] = 753, - [2424] = 755, - [2425] = 778, - [2426] = 754, - [2427] = 740, - [2428] = 680, - [2429] = 691, - [2430] = 701, - [2431] = 731, - [2432] = 707, - [2433] = 675, - [2434] = 777, - [2435] = 683, - [2436] = 705, - [2437] = 763, - [2438] = 690, - [2439] = 776, - [2440] = 705, - [2441] = 775, - [2442] = 668, - [2443] = 737, - [2444] = 686, - [2445] = 662, - [2446] = 683, - [2447] = 700, - [2448] = 691, - [2449] = 758, - [2450] = 704, - [2451] = 748, - [2452] = 769, - [2453] = 691, - [2454] = 778, - [2455] = 730, - [2456] = 1013, - [2457] = 2365, - [2458] = 678, - [2459] = 707, - [2460] = 737, - [2461] = 701, - [2462] = 2462, - [2463] = 680, - [2464] = 745, - [2465] = 682, - [2466] = 749, - [2467] = 789, - [2468] = 750, - [2469] = 692, - [2470] = 751, - [2471] = 2471, - [2472] = 678, - [2473] = 665, - [2474] = 650, - [2475] = 754, - [2476] = 755, - [2477] = 756, - [2478] = 648, - [2479] = 702, - [2480] = 703, - [2481] = 760, - [2482] = 761, - [2483] = 762, - [2484] = 763, - [2485] = 767, - [2486] = 983, - [2487] = 768, - [2488] = 769, - [2489] = 770, - [2490] = 772, - [2491] = 773, - [2492] = 774, - [2493] = 2493, - [2494] = 775, - [2495] = 2495, - [2496] = 776, - [2497] = 777, - [2498] = 779, - [2499] = 646, - [2500] = 686, - [2501] = 780, - [2502] = 781, - [2503] = 726, - [2504] = 691, - [2505] = 783, - [2506] = 662, - [2507] = 784, - [2508] = 785, - [2509] = 728, - [2510] = 684, - [2511] = 686, - [2512] = 766, - [2513] = 629, - [2514] = 753, - [2515] = 759, - [2516] = 683, - [2517] = 727, - [2518] = 752, - [2519] = 748, - [2520] = 758, - [2521] = 645, - [2522] = 680, - [2523] = 734, - [2524] = 747, - [2525] = 757, - [2526] = 723, - [2527] = 700, - [2528] = 678, - [2529] = 741, - [2530] = 685, - [2531] = 689, - [2532] = 740, - [2533] = 686, - [2534] = 683, - [2535] = 704, - [2536] = 679, - [2537] = 687, - [2538] = 739, - [2539] = 2539, - [2540] = 723, - [2541] = 644, - [2542] = 2542, - [2543] = 2543, - [2544] = 731, - [2545] = 736, - [2546] = 705, - [2547] = 651, - [2548] = 996, - [2549] = 642, - [2550] = 742, - [2551] = 675, - [2552] = 675, - [2553] = 2553, - [2554] = 743, - [2555] = 744, - [2556] = 663, - [2557] = 2557, - [2558] = 2558, - [2559] = 650, - [2560] = 781, - [2561] = 743, - [2562] = 742, - [2563] = 745, - [2564] = 650, - [2565] = 691, - [2566] = 737, - [2567] = 617, - [2568] = 767, - [2569] = 768, - [2570] = 736, - [2571] = 747, - [2572] = 730, - [2573] = 752, - [2574] = 763, - [2575] = 769, - [2576] = 770, - [2577] = 731, - [2578] = 772, - [2579] = 773, - [2580] = 774, - [2581] = 762, - [2582] = 651, - [2583] = 775, - [2584] = 772, - [2585] = 683, - [2586] = 777, - [2587] = 778, - [2588] = 779, - [2589] = 626, - [2590] = 749, - [2591] = 740, - [2592] = 648, - [2593] = 751, - [2594] = 761, - [2595] = 739, - [2596] = 748, - [2597] = 634, - [2598] = 780, - [2599] = 642, - [2600] = 760, - [2601] = 741, - [2602] = 663, - [2603] = 731, - [2604] = 644, - [2605] = 781, - [2606] = 726, - [2607] = 783, - [2608] = 784, - [2609] = 785, - [2610] = 646, - [2611] = 1490, - [2612] = 759, - [2613] = 631, - [2614] = 766, - [2615] = 645, - [2616] = 734, - [2617] = 757, - [2618] = 754, - [2619] = 727, - [2620] = 755, - [2621] = 753, - [2622] = 750, - [2623] = 776, - [2624] = 744, - [2625] = 776, - [2626] = 727, - [2627] = 736, - [2628] = 737, - [2629] = 766, - [2630] = 756, - [2631] = 685, - [2632] = 785, - [2633] = 752, - [2634] = 748, - [2635] = 758, - [2636] = 756, - [2637] = 784, - [2638] = 755, - [2639] = 728, - [2640] = 723, - [2641] = 757, - [2642] = 747, - [2643] = 783, - [2644] = 734, - [2645] = 741, - [2646] = 726, - [2647] = 754, - [2648] = 759, - [2649] = 621, - [2650] = 675, - [2651] = 760, - [2652] = 753, - [2653] = 740, - [2654] = 780, - [2655] = 678, - [2656] = 742, - [2657] = 1013, - [2658] = 739, - [2659] = 743, - [2660] = 744, - [2661] = 728, - [2662] = 761, - [2663] = 762, - [2664] = 763, - [2665] = 648, - [2666] = 745, - [2667] = 689, - [2668] = 686, - [2669] = 645, - [2670] = 779, - [2671] = 778, - [2672] = 777, - [2673] = 730, - [2674] = 646, - [2675] = 758, - [2676] = 775, - [2677] = 774, - [2678] = 773, - [2679] = 687, - [2680] = 679, - [2681] = 767, - [2682] = 751, - [2683] = 768, - [2684] = 750, - [2685] = 769, - [2686] = 749, - [2687] = 770, - [2688] = 680, - [2689] = 734, - [2690] = 784, - [2691] = 648, - [2692] = 646, - [2693] = 763, - [2694] = 2365, - [2695] = 730, - [2696] = 1509, - [2697] = 762, - [2698] = 736, - [2699] = 691, - [2700] = 737, - [2701] = 742, - [2702] = 739, - [2703] = 1464, - [2704] = 747, - [2705] = 761, - [2706] = 690, - [2707] = 663, - [2708] = 740, - [2709] = 767, - [2710] = 768, - [2711] = 769, - [2712] = 770, - [2713] = 772, - [2714] = 760, - [2715] = 759, - [2716] = 773, - [2717] = 774, - [2718] = 776, - [2719] = 743, - [2720] = 1528, - [2721] = 744, - [2722] = 728, - [2723] = 1516, - [2724] = 745, - [2725] = 777, - [2726] = 645, - [2727] = 778, - [2728] = 663, - [2729] = 741, - [2730] = 779, - [2731] = 780, - [2732] = 781, - [2733] = 726, - [2734] = 757, - [2735] = 783, - [2736] = 680, - [2737] = 775, - [2738] = 756, - [2739] = 755, - [2740] = 731, - [2741] = 758, - [2742] = 785, - [2743] = 748, - [2744] = 754, - [2745] = 752, - [2746] = 650, - [2747] = 1456, - [2748] = 766, - [2749] = 751, - [2750] = 753, - [2751] = 1506, - [2752] = 750, - [2753] = 727, - [2754] = 749, - [2755] = 683, - [2756] = 1567, - [2757] = 669, - [2758] = 691, - [2759] = 988, - [2760] = 668, - [2761] = 683, - [2762] = 690, - [2763] = 652, - [2764] = 663, - [2765] = 1540, - [2766] = 680, - [2767] = 996, - [2768] = 1581, - [2769] = 1582, - [2770] = 1614, - [2771] = 983, - [2772] = 1604, - [2773] = 1605, - [2774] = 2774, - [2775] = 1596, - [2776] = 678, - [2777] = 2539, - [2778] = 692, - [2779] = 1540, - [2780] = 1616, - [2781] = 2543, - [2782] = 2782, - [2783] = 684, - [2784] = 2784, - [2785] = 662, - [2786] = 686, - [2787] = 2787, - [2788] = 1567, - [2789] = 1579, - [2790] = 665, - [2791] = 682, - [2792] = 1586, - [2793] = 689, - [2794] = 2794, - [2795] = 685, - [2796] = 687, - [2797] = 2797, - [2798] = 1656, - [2799] = 679, - [2800] = 1653, - [2801] = 1653, - [2802] = 1656, - [2803] = 2803, - [2804] = 1750, - [2805] = 2805, - [2806] = 2806, - [2807] = 2806, - [2808] = 2808, - [2809] = 2809, - [2810] = 1723, - [2811] = 2806, - [2812] = 2812, - [2813] = 2813, - [2814] = 1641, - [2815] = 1775, - [2816] = 1829, - [2817] = 1812, - [2818] = 1685, - [2819] = 1641, - [2820] = 1800, - [2821] = 2821, - [2822] = 1865, - [2823] = 2823, - [2824] = 2823, - [2825] = 2823, - [2826] = 2823, - [2827] = 2823, - [2828] = 2823, - [2829] = 2823, - [2830] = 2823, - [2831] = 2823, - [2832] = 2823, - [2833] = 2823, - [2834] = 2823, - [2835] = 2823, - [2836] = 2823, - [2837] = 2837, - [2838] = 2823, - [2839] = 2823, - [2840] = 2823, - [2841] = 2841, - [2842] = 2823, - [2843] = 2823, - [2844] = 2823, - [2845] = 1867, - [2846] = 1866, - [2847] = 1947, - [2848] = 2823, - [2849] = 2823, - [2850] = 2850, - [2851] = 2823, - [2852] = 2852, - [2853] = 2853, - [2854] = 1862, - [2855] = 1861, - [2856] = 2823, - [2857] = 2823, - [2858] = 2823, - [2859] = 1685, - [2860] = 2823, - [2861] = 2823, - [2862] = 2823, - [2863] = 2823, - [2864] = 2823, - [2865] = 2823, - [2866] = 2033, - [2867] = 2098, - [2868] = 2868, - [2869] = 2869, - [2870] = 2870, - [2871] = 2871, - [2872] = 2872, - [2873] = 2873, - [2874] = 2874, - [2875] = 1993, - [2876] = 2876, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 2146, - [2881] = 2881, - [2882] = 2339, - [2883] = 2883, - [2884] = 2884, - [2885] = 2885, - [2886] = 2886, - [2887] = 2339, - [2888] = 2888, - [2889] = 2889, - [2890] = 2148, - [2891] = 2891, - [2892] = 2892, - [2893] = 2107, - [2894] = 2230, - [2895] = 2109, - [2896] = 2141, - [2897] = 2110, - [2898] = 2157, - [2899] = 2230, - [2900] = 2900, - [2901] = 2901, - [2902] = 1962, - [2903] = 2903, - [2904] = 2904, - [2905] = 2279, - [2906] = 2906, - [2907] = 2284, - [2908] = 2268, - [2909] = 2909, - [2910] = 2910, - [2911] = 2911, - [2912] = 2912, - [2913] = 2913, - [2914] = 2914, - [2915] = 2915, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2919, - [2920] = 2920, - [2921] = 2921, - [2922] = 2922, - [2923] = 2923, - [2924] = 2222, - [2925] = 2244, - [2926] = 2926, - [2927] = 2927, - [2928] = 2928, - [2929] = 2224, - [2930] = 2930, - [2931] = 2931, - [2932] = 2308, - [2933] = 2933, - [2934] = 2934, - [2935] = 2935, - [2936] = 2936, - [2937] = 2937, - [2938] = 2938, - [2939] = 2939, - [2940] = 2940, - [2941] = 2941, - [2942] = 2942, - [2943] = 2230, - [2944] = 2944, - [2945] = 2317, - [2946] = 2306, - [2947] = 2300, - [2948] = 2298, - [2949] = 2949, - [2950] = 2950, - [2951] = 2951, - [2952] = 2952, - [2953] = 2953, - [2954] = 2178, - [2955] = 2909, - [2956] = 2270, - [2957] = 2185, - [2958] = 2186, - [2959] = 2959, - [2960] = 2339, - [2961] = 2961, - [2962] = 2197, - [2963] = 2199, - [2964] = 2200, - [2965] = 2206, - [2966] = 2274, - [2967] = 2951, - [2968] = 2968, - [2969] = 2316, - [2970] = 2970, - [2971] = 2336, - [2972] = 2972, - [2973] = 2973, - [2974] = 2974, - [2975] = 2975, - [2976] = 2975, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2978, - [2981] = 2981, - [2982] = 2982, - [2983] = 2983, - [2984] = 2984, - [2985] = 2978, - [2986] = 2979, - [2987] = 2987, - [2988] = 2979, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 2992, - [2993] = 2422, - [2994] = 2994, - [2995] = 2995, - [2996] = 2996, - [2997] = 2471, - [2998] = 2493, - [2999] = 2999, - [3000] = 2542, - [3001] = 2557, - [3002] = 2155, - [3003] = 2558, - [3004] = 2999, - [3005] = 675, - [3006] = 642, - [3007] = 3007, - [3008] = 644, - [3009] = 651, - [3010] = 3010, - [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 3016, - [3017] = 3017, - [3018] = 3018, - [3019] = 3019, - [3020] = 3020, - [3021] = 3021, - [3022] = 3022, - [3023] = 3014, - [3024] = 3024, - [3025] = 3025, - [3026] = 3026, - [3027] = 3016, - [3028] = 3028, - [3029] = 3029, - [3030] = 3030, - [3031] = 3031, - [3032] = 3025, - [3033] = 3033, - [3034] = 3014, - [3035] = 3035, - [3036] = 3036, - [3037] = 3017, - [3038] = 3024, - [3039] = 3028, - [3040] = 3029, - [3041] = 3041, - [3042] = 3010, - [3043] = 3019, - [3044] = 3013, - [3045] = 3045, - [3046] = 3046, - [3047] = 3036, - [3048] = 3011, - [3049] = 3031, - [3050] = 3035, - [3051] = 3051, - [3052] = 3046, - [3053] = 3051, - [3054] = 3054, - [3055] = 3055, - [3056] = 3056, - [3057] = 3046, - [3058] = 3024, - [3059] = 3014, - [3060] = 3022, - [3061] = 3061, - [3062] = 3062, - [3063] = 3063, - [3064] = 3016, - [3065] = 3065, - [3066] = 3024, - [3067] = 663, - [3068] = 3068, - [3069] = 3069, - [3070] = 3046, - [3071] = 3021, - [3072] = 3072, - [3073] = 3033, - [3074] = 3074, - [3075] = 3061, - [3076] = 3054, - [3077] = 3077, - [3078] = 3078, - [3079] = 3046, - [3080] = 3051, - [3081] = 3010, - [3082] = 3082, - [3083] = 3016, - [3084] = 3016, - [3085] = 3041, - [3086] = 3072, - [3087] = 3024, - [3088] = 3088, - [3089] = 3017, - [3090] = 3077, - [3091] = 3078, - [3092] = 3082, - [3093] = 3093, - [3094] = 3046, - [3095] = 3093, - [3096] = 3096, - [3097] = 3096, - [3098] = 3018, - [3099] = 3021, - [3100] = 3015, - [3101] = 3055, - [3102] = 3045, - [3103] = 3061, - [3104] = 3016, - [3105] = 3024, - [3106] = 3068, - [3107] = 3056, - [3108] = 3036, - [3109] = 3063, - [3110] = 3033, - [3111] = 3046, - [3112] = 3074, - [3113] = 3021, - [3114] = 3061, - [3115] = 3115, - [3116] = 3017, - [3117] = 3018, - [3118] = 3056, - [3119] = 3011, - [3120] = 3051, - [3121] = 3045, - [3122] = 3056, - [3123] = 3123, - [3124] = 3012, - [3125] = 3011, - [3126] = 3015, - [3127] = 3045, - [3128] = 3041, - [3129] = 3013, - [3130] = 3019, - [3131] = 3030, - [3132] = 3132, - [3133] = 3133, - [3134] = 3134, - [3135] = 3133, - [3136] = 3136, - [3137] = 3137, - [3138] = 3137, - [3139] = 3137, - [3140] = 3137, - [3141] = 3134, - [3142] = 3142, - [3143] = 3142, - [3144] = 3144, - [3145] = 3142, - [3146] = 3142, - [3147] = 3142, - [3148] = 3148, - [3149] = 3149, - [3150] = 3142, - [3151] = 3137, - [3152] = 3152, - [3153] = 3148, - [3154] = 3142, - [3155] = 3155, - [3156] = 3148, - [3157] = 3157, - [3158] = 3137, - [3159] = 3133, - [3160] = 3133, - [3161] = 3157, - [3162] = 3134, - [3163] = 3137, - [3164] = 3142, - [3165] = 3136, - [3166] = 3133, - [3167] = 3137, - [3168] = 3142, - [3169] = 3133, - [3170] = 3142, - [3171] = 3171, - [3172] = 3137, - [3173] = 3173, - [3174] = 3142, - [3175] = 3175, - [3176] = 3133, - [3177] = 3134, - [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3144, - [3182] = 3182, - [3183] = 3134, - [3184] = 3133, - [3185] = 3133, - [3186] = 3186, - [3187] = 3148, - [3188] = 3137, - [3189] = 3189, - [3190] = 3137, - [3191] = 3137, - [3192] = 3142, - [3193] = 3148, - [3194] = 3133, - [3195] = 3137, - [3196] = 3142, - [3197] = 3148, - [3198] = 3142, - [3199] = 3148, - [3200] = 3133, - [3201] = 3133, - [3202] = 3136, - [3203] = 3137, - [3204] = 3148, - [3205] = 3137, - [3206] = 3144, - [3207] = 3207, - [3208] = 3142, - [3209] = 3133, - [3210] = 3137, - [3211] = 3211, - [3212] = 3212, - [3213] = 3213, - [3214] = 3137, - [3215] = 3137, - [3216] = 3133, - [3217] = 3134, - [3218] = 3182, - [3219] = 3134, - [3220] = 3136, - [3221] = 3148, - [3222] = 3134, - [3223] = 3137, - [3224] = 3134, - [3225] = 3134, - [3226] = 3157, - [3227] = 3148, - [3228] = 3142, - [3229] = 3229, - [3230] = 3136, - [3231] = 3142, - [3232] = 3142, - [3233] = 3189, - [3234] = 3180, - [3235] = 3148, - [3236] = 3133, - [3237] = 3148, - [3238] = 3137, - [3239] = 3142, - [3240] = 3133, - [3241] = 3229, - [3242] = 3137, - [3243] = 3136, - [3244] = 3133, - [3245] = 3148, - [3246] = 3182, - [3247] = 3134, - [3248] = 3133, - [3249] = 3133, - [3250] = 3250, - [3251] = 3137, - [3252] = 3137, - [3253] = 3253, - [3254] = 3133, - [3255] = 3133, - [3256] = 3137, - [3257] = 3213, - [3258] = 3133, - [3259] = 3259, - [3260] = 3229, - [3261] = 3142, - [3262] = 3144, - [3263] = 3137, - [3264] = 3136, - [3265] = 3133, - [3266] = 3137, - [3267] = 3142, - [3268] = 3133, - [3269] = 3259, - [3270] = 3142, - [3271] = 3271, - [3272] = 3142, - [3273] = 3186, - [3274] = 3134, - [3275] = 3133, - [3276] = 3137, - [3277] = 3133, - [3278] = 3134, - [3279] = 3171, - [3280] = 3180, - [3281] = 3148, - [3282] = 3133, - [3283] = 680, - [3284] = 3148, - [3285] = 3148, - [3286] = 644, - [3287] = 3212, - [3288] = 3133, - [3289] = 3142, - [3290] = 3207, - [3291] = 3291, - [3292] = 3134, - [3293] = 3157, - [3294] = 3134, - [3295] = 3133, - [3296] = 3133, - [3297] = 3133, - [3298] = 3148, - [3299] = 3136, - [3300] = 3148, - [3301] = 3134, - [3302] = 3229, - [3303] = 3133, - [3304] = 3132, - [3305] = 3137, - [3306] = 3291, - [3307] = 3136, - [3308] = 3189, - [3309] = 3189, - [3310] = 3142, - [3311] = 3133, - [3312] = 3134, - [3313] = 3148, - [3314] = 3133, - [3315] = 3173, - [3316] = 3137, - [3317] = 691, - [3318] = 3136, - [3319] = 3271, - [3320] = 3186, - [3321] = 683, - [3322] = 3207, - [3323] = 3136, - [3324] = 3136, - [3325] = 3136, - [3326] = 3136, - [3327] = 3144, - [3328] = 3259, - [3329] = 3134, - [3330] = 3148, - [3331] = 3142, - [3332] = 3171, - [3333] = 3180, - [3334] = 3148, - [3335] = 3133, - [3336] = 3148, - [3337] = 3137, - [3338] = 3133, - [3339] = 3142, - [3340] = 3137, - [3341] = 3134, - [3342] = 3213, - [3343] = 3136, - [3344] = 3133, - [3345] = 3134, - [3346] = 3207, - [3347] = 3133, - [3348] = 3134, - [3349] = 3134, - [3350] = 3142, - [3351] = 3136, - [3352] = 651, - [3353] = 3142, - [3354] = 3291, - [3355] = 3136, - [3356] = 3137, - [3357] = 3137, - [3358] = 3175, - [3359] = 3189, - [3360] = 3136, - [3361] = 3171, - [3362] = 3180, - [3363] = 3142, - [3364] = 3136, - [3365] = 3148, - [3366] = 3133, - [3367] = 3133, - [3368] = 3137, - [3369] = 3133, - [3370] = 3136, - [3371] = 3137, - [3372] = 3133, - [3373] = 3134, - [3374] = 3142, - [3375] = 3148, - [3376] = 3134, - [3377] = 3133, - [3378] = 3212, - [3379] = 3148, - [3380] = 3144, - [3381] = 3142, - [3382] = 3134, - [3383] = 3136, - [3384] = 3384, - [3385] = 3136, - [3386] = 3386, - [3387] = 3229, - [3388] = 3142, - [3389] = 3136, - [3390] = 3213, - [3391] = 3207, - [3392] = 3133, - [3393] = 690, - [3394] = 3229, - [3395] = 3180, - [3396] = 3171, - [3397] = 3142, - [3398] = 675, - [3399] = 3180, - [3400] = 3148, - [3401] = 3134, - [3402] = 3171, - [3403] = 3148, - [3404] = 3136, - [3405] = 3405, - [3406] = 3271, - [3407] = 3132, - [3408] = 3137, - [3409] = 3148, - [3410] = 3136, - [3411] = 3136, - [3412] = 3133, - [3413] = 3207, - [3414] = 3148, - [3415] = 3142, - [3416] = 3148, - [3417] = 3136, - [3418] = 3180, - [3419] = 3137, - [3420] = 3171, - [3421] = 3421, - [3422] = 3137, - [3423] = 3133, - [3424] = 3134, - [3425] = 3142, - [3426] = 3136, - [3427] = 3134, - [3428] = 3134, - [3429] = 3171, - [3430] = 3134, - [3431] = 3148, - [3432] = 3133, - [3433] = 3134, - [3434] = 3136, - [3435] = 3137, - [3436] = 3136, - [3437] = 3148, - [3438] = 3142, - [3439] = 3134, - [3440] = 3137, - [3441] = 3133, - [3442] = 3136, - [3443] = 3173, - [3444] = 3137, - [3445] = 3144, - [3446] = 3142, - [3447] = 3142, - [3448] = 3137, - [3449] = 3207, - [3450] = 3175, - [3451] = 3384, - [3452] = 3384, - [3453] = 3136, - [3454] = 3189, - [3455] = 3133, - [3456] = 3133, - [3457] = 3180, - [3458] = 3142, - [3459] = 642, - [3460] = 3137, - [3461] = 3142, - [3462] = 3171, - [3463] = 3463, - [3464] = 663, - [3465] = 3465, - [3466] = 3466, - [3467] = 3466, - [3468] = 3466, - [3469] = 3469, - [3470] = 3466, - [3471] = 3463, - [3472] = 983, - [3473] = 3469, - [3474] = 996, - [3475] = 988, - [3476] = 3476, - [3477] = 3463, - [3478] = 2062, - [3479] = 3463, - [3480] = 3480, - [3481] = 3481, - [3482] = 690, - [3483] = 3481, - [3484] = 683, - [3485] = 3480, - [3486] = 3486, - [3487] = 3486, - [3488] = 3486, - [3489] = 3486, - [3490] = 3481, - [3491] = 3481, - [3492] = 3480, - [3493] = 3480, - [3494] = 680, - [3495] = 3480, - [3496] = 691, - [3497] = 3486, - [3498] = 3481, - [3499] = 3481, - [3500] = 3480, - [3501] = 3501, - [3502] = 3502, - [3503] = 3501, - [3504] = 988, - [3505] = 3505, - [3506] = 3506, - [3507] = 3501, - [3508] = 3505, - [3509] = 3506, - [3510] = 3501, - [3511] = 996, - [3512] = 1972, - [3513] = 983, - [3514] = 2062, - [3515] = 3515, - [3516] = 3516, - [3517] = 3517, - [3518] = 3518, - [3519] = 3515, - [3520] = 3516, - [3521] = 3521, - [3522] = 3516, - [3523] = 3517, - [3524] = 3517, - [3525] = 3515, - [3526] = 3515, - [3527] = 3516, - [3528] = 3518, - [3529] = 3518, - [3530] = 3515, - [3531] = 3518, - [3532] = 3518, - [3533] = 3518, - [3534] = 3517, - [3535] = 3516, - [3536] = 3517, - [3537] = 3518, - [3538] = 3518, - [3539] = 3517, - [3540] = 3516, - [3541] = 3515, - [3542] = 3518, - [3543] = 3517, - [3544] = 3517, - [3545] = 3516, - [3546] = 3517, - [3547] = 3516, - [3548] = 3515, - [3549] = 3516, - [3550] = 3517, - [3551] = 3517, - [3552] = 3521, - [3553] = 3515, - [3554] = 3516, - [3555] = 3515, - [3556] = 3518, - [3557] = 3516, - [3558] = 3515, - [3559] = 3518, - [3560] = 3515, - [3561] = 3515, - [3562] = 3518, - [3563] = 3517, - [3564] = 3518, - [3565] = 3516, - [3566] = 3515, - [3567] = 3515, - [3568] = 3516, - [3569] = 3517, - [3570] = 3515, - [3571] = 3518, - [3572] = 3516, - [3573] = 3518, - [3574] = 3518, - [3575] = 3517, - [3576] = 3517, - [3577] = 3518, - [3578] = 3516, - [3579] = 3515, - [3580] = 3517, - [3581] = 3521, - [3582] = 3517, - [3583] = 3516, - [3584] = 3517, - [3585] = 3515, - [3586] = 3516, - [3587] = 3516, - [3588] = 3515, - [3589] = 3516, - [3590] = 3515, - [3591] = 3516, - [3592] = 3515, - [3593] = 3518, - [3594] = 3517, - [3595] = 3516, - [3596] = 3515, - [3597] = 3518, - [3598] = 3515, - [3599] = 3521, - [3600] = 3517, - [3601] = 3516, - [3602] = 3517, - [3603] = 3518, - [3604] = 3515, - [3605] = 3518, - [3606] = 3518, - [3607] = 3516, - [3608] = 629, - [3609] = 3517, - [3610] = 3516, - [3611] = 3515, - [3612] = 3515, - [3613] = 3516, - [3614] = 3517, - [3615] = 3515, - [3616] = 3517, - [3617] = 3517, - [3618] = 3518, - [3619] = 3516, - [3620] = 3517, - [3621] = 3515, - [3622] = 3518, - [3623] = 3518, - [3624] = 3516, - [3625] = 3517, - [3626] = 3516, - [3627] = 3515, - [3628] = 3516, - [3629] = 3516, - [3630] = 3515, - [3631] = 3517, - [3632] = 3517, - [3633] = 3518, - [3634] = 3517, - [3635] = 3518, - [3636] = 3515, - [3637] = 3515, - [3638] = 3518, - [3639] = 3518, - [3640] = 3517, - [3641] = 3518, - [3642] = 3518, - [3643] = 3516, - [3644] = 3515, - [3645] = 3516, - [3646] = 3518, - [3647] = 3517, - [3648] = 744, - [3649] = 731, - [3650] = 629, - [3651] = 663, - [3652] = 736, - [3653] = 634, - [3654] = 742, - [3655] = 743, - [3656] = 617, - [3657] = 642, - [3658] = 757, - [3659] = 734, - [3660] = 730, - [3661] = 621, - [3662] = 644, - [3663] = 759, - [3664] = 626, - [3665] = 631, - [3666] = 675, - [3667] = 651, - [3668] = 3668, - [3669] = 629, - [3670] = 626, - [3671] = 617, - [3672] = 675, - [3673] = 642, - [3674] = 651, - [3675] = 663, - [3676] = 675, - [3677] = 631, - [3678] = 621, - [3679] = 634, - [3680] = 644, - [3681] = 651, - [3682] = 690, - [3683] = 629, - [3684] = 651, - [3685] = 683, - [3686] = 691, - [3687] = 621, - [3688] = 652, - [3689] = 675, - [3690] = 644, - [3691] = 642, - [3692] = 631, - [3693] = 669, - [3694] = 663, - [3695] = 668, - [3696] = 629, - [3697] = 629, - [3698] = 617, - [3699] = 680, - [3700] = 663, - [3701] = 626, - [3702] = 634, - [3703] = 663, - [3704] = 644, - [3705] = 642, - [3706] = 690, - [3707] = 626, - [3708] = 684, - [3709] = 634, - [3710] = 631, - [3711] = 617, - [3712] = 626, - [3713] = 683, - [3714] = 629, - [3715] = 662, - [3716] = 690, - [3717] = 634, - [3718] = 617, - [3719] = 2543, - [3720] = 631, - [3721] = 3721, - [3722] = 2539, - [3723] = 680, - [3724] = 626, - [3725] = 644, - [3726] = 682, - [3727] = 621, - [3728] = 665, - [3729] = 642, - [3730] = 678, - [3731] = 617, - [3732] = 686, - [3733] = 683, - [3734] = 621, - [3735] = 692, - [3736] = 691, - [3737] = 642, - [3738] = 629, - [3739] = 668, - [3740] = 675, - [3741] = 675, - [3742] = 691, - [3743] = 651, - [3744] = 629, - [3745] = 680, - [3746] = 631, - [3747] = 652, - [3748] = 634, - [3749] = 3749, - [3750] = 644, - [3751] = 644, - [3752] = 621, - [3753] = 642, - [3754] = 629, - [3755] = 651, - [3756] = 669, - [3757] = 3757, - [3758] = 3757, - [3759] = 631, - [3760] = 683, - [3761] = 621, - [3762] = 691, - [3763] = 634, - [3764] = 626, - [3765] = 680, - [3766] = 626, - [3767] = 634, - [3768] = 675, - [3769] = 663, - [3770] = 631, - [3771] = 651, - [3772] = 617, - [3773] = 617, - [3774] = 621, - [3775] = 3775, - [3776] = 663, - [3777] = 626, - [3778] = 642, - [3779] = 621, - [3780] = 631, - [3781] = 686, - [3782] = 3757, - [3783] = 634, - [3784] = 621, - [3785] = 644, - [3786] = 626, - [3787] = 617, - [3788] = 687, - [3789] = 679, - [3790] = 3757, - [3791] = 678, - [3792] = 684, - [3793] = 669, - [3794] = 652, - [3795] = 644, - [3796] = 689, - [3797] = 685, - [3798] = 3798, - [3799] = 662, - [3800] = 675, - [3801] = 3798, - [3802] = 651, - [3803] = 642, - [3804] = 668, - [3805] = 3798, - [3806] = 629, - [3807] = 682, - [3808] = 617, - [3809] = 3798, - [3810] = 629, - [3811] = 665, - [3812] = 675, - [3813] = 692, - [3814] = 631, - [3815] = 690, - [3816] = 644, - [3817] = 629, - [3818] = 651, - [3819] = 642, - [3820] = 642, - [3821] = 644, - [3822] = 634, - [3823] = 651, - [3824] = 621, - [3825] = 685, - [3826] = 686, - [3827] = 690, - [3828] = 669, - [3829] = 631, - [3830] = 634, - [3831] = 678, - [3832] = 629, - [3833] = 675, - [3834] = 678, - [3835] = 3835, - [3836] = 626, - [3837] = 675, - [3838] = 652, - [3839] = 626, - [3840] = 669, - [3841] = 617, - [3842] = 651, - [3843] = 642, - [3844] = 617, - [3845] = 651, - [3846] = 652, - [3847] = 3835, - [3848] = 644, - [3849] = 642, - [3850] = 642, - [3851] = 668, - [3852] = 3852, - [3853] = 634, - [3854] = 644, - [3855] = 687, - [3856] = 668, - [3857] = 631, - [3858] = 686, - [3859] = 644, - [3860] = 669, - [3861] = 675, - [3862] = 675, - [3863] = 3835, - [3864] = 680, - [3865] = 690, - [3866] = 679, - [3867] = 621, - [3868] = 663, - [3869] = 3852, - [3870] = 663, - [3871] = 691, - [3872] = 668, - [3873] = 663, - [3874] = 631, - [3875] = 634, - [3876] = 621, - [3877] = 683, - [3878] = 691, - [3879] = 626, - [3880] = 3852, - [3881] = 651, - [3882] = 692, - [3883] = 684, - [3884] = 665, - [3885] = 683, - [3886] = 617, - [3887] = 680, - [3888] = 682, - [3889] = 689, - [3890] = 652, - [3891] = 662, - [3892] = 3892, - [3893] = 644, - [3894] = 3894, - [3895] = 678, - [3896] = 3896, - [3897] = 662, - [3898] = 685, - [3899] = 692, - [3900] = 683, - [3901] = 651, - [3902] = 690, - [3903] = 691, - [3904] = 675, - [3905] = 680, - [3906] = 679, - [3907] = 687, - [3908] = 686, - [3909] = 668, - [3910] = 662, - [3911] = 686, - [3912] = 680, - [3913] = 680, - [3914] = 668, - [3915] = 3915, - [3916] = 678, - [3917] = 682, - [3918] = 684, - [3919] = 669, - [3920] = 684, - [3921] = 669, - [3922] = 686, - [3923] = 652, - [3924] = 662, - [3925] = 682, - [3926] = 689, - [3927] = 665, - [3928] = 684, - [3929] = 669, - [3930] = 663, - [3931] = 3931, - [3932] = 663, - [3933] = 668, - [3934] = 682, - [3935] = 690, - [3936] = 665, - [3937] = 669, - [3938] = 663, - [3939] = 692, - [3940] = 626, - [3941] = 621, - [3942] = 617, - [3943] = 691, - [3944] = 678, - [3945] = 663, - [3946] = 690, - [3947] = 691, - [3948] = 665, - [3949] = 683, - [3950] = 690, - [3951] = 692, - [3952] = 652, - [3953] = 652, - [3954] = 634, - [3955] = 631, - [3956] = 652, - [3957] = 642, - [3958] = 668, - [3959] = 683, - [3960] = 680, - [3961] = 691, - [3962] = 683, - [3963] = 3963, - [3964] = 692, - [3965] = 680, - [3966] = 690, - [3967] = 678, - [3968] = 3968, - [3969] = 685, - [3970] = 689, - [3971] = 679, - [3972] = 684, - [3973] = 687, - [3974] = 663, - [3975] = 684, - [3976] = 629, - [3977] = 662, - [3978] = 3978, - [3979] = 682, - [3980] = 669, - [3981] = 686, - [3982] = 652, - [3983] = 686, - [3984] = 686, - [3985] = 668, - [3986] = 678, - [3987] = 665, - [3988] = 692, - [3989] = 665, - [3990] = 668, - [3991] = 662, - [3992] = 652, - [3993] = 682, - [3994] = 678, - [3995] = 685, - [3996] = 662, - [3997] = 689, - [3998] = 682, - [3999] = 684, - [4000] = 683, - [4001] = 691, - [4002] = 679, - [4003] = 1490, - [4004] = 665, - [4005] = 692, - [4006] = 680, - [4007] = 687, - [4008] = 687, - [4009] = 3968, - [4010] = 669, - [4011] = 685, - [4012] = 680, - [4013] = 689, - [4014] = 690, - [4015] = 678, - [4016] = 4016, - [4017] = 690, - [4018] = 4018, - [4019] = 686, - [4020] = 691, - [4021] = 683, - [4022] = 4022, - [4023] = 669, - [4024] = 692, - [4025] = 665, - [4026] = 668, - [4027] = 4027, - [4028] = 679, - [4029] = 4029, - [4030] = 4030, - [4031] = 682, - [4032] = 683, - [4033] = 662, - [4034] = 691, - [4035] = 4035, - [4036] = 652, - [4037] = 684, - [4038] = 4038, - [4039] = 4039, - [4040] = 4040, - [4041] = 4039, - [4042] = 1528, - [4043] = 4039, - [4044] = 4044, - [4045] = 4045, - [4046] = 683, - [4047] = 679, - [4048] = 4039, - [4049] = 651, - [4050] = 4050, - [4051] = 687, - [4052] = 691, - [4053] = 1490, - [4054] = 1506, - [4055] = 621, - [4056] = 4050, - [4057] = 1509, - [4058] = 631, - [4059] = 634, - [4060] = 4060, - [4061] = 4045, - [4062] = 689, - [4063] = 4045, - [4064] = 626, - [4065] = 685, - [4066] = 669, - [4067] = 4067, - [4068] = 4039, - [4069] = 642, - [4070] = 680, - [4071] = 651, - [4072] = 4039, - [4073] = 685, - [4074] = 675, - [4075] = 644, - [4076] = 4076, - [4077] = 4067, - [4078] = 689, - [4079] = 617, - [4080] = 4039, - [4081] = 1516, - [4082] = 663, - [4083] = 4050, - [4084] = 692, - [4085] = 4039, - [4086] = 675, - [4087] = 663, - [4088] = 4045, - [4089] = 679, - [4090] = 665, - [4091] = 687, - [4092] = 668, - [4093] = 4045, - [4094] = 651, - [4095] = 4045, - [4096] = 687, - [4097] = 4050, - [4098] = 4098, - [4099] = 684, - [4100] = 690, - [4101] = 662, - [4102] = 679, - [4103] = 4067, - [4104] = 4067, - [4105] = 4067, - [4106] = 682, - [4107] = 678, - [4108] = 662, - [4109] = 675, - [4110] = 689, - [4111] = 4039, - [4112] = 685, - [4113] = 665, - [4114] = 684, - [4115] = 689, - [4116] = 685, - [4117] = 692, - [4118] = 684, - [4119] = 679, - [4120] = 686, - [4121] = 4050, - [4122] = 4045, - [4123] = 687, - [4124] = 682, - [4125] = 686, - [4126] = 4039, - [4127] = 642, - [4128] = 2542, - [4129] = 652, - [4130] = 4045, - [4131] = 662, - [4132] = 692, - [4133] = 665, - [4134] = 642, - [4135] = 4067, - [4136] = 644, - [4137] = 4137, - [4138] = 4050, - [4139] = 678, - [4140] = 4039, - [4141] = 4039, - [4142] = 644, - [4143] = 686, - [4144] = 682, - [4145] = 4045, - [4146] = 678, - [4147] = 679, - [4148] = 1516, - [4149] = 4149, - [4150] = 4149, - [4151] = 4149, - [4152] = 678, - [4153] = 4153, - [4154] = 4154, - [4155] = 685, - [4156] = 4154, - [4157] = 4154, - [4158] = 663, - [4159] = 4149, - [4160] = 4154, - [4161] = 662, - [4162] = 663, - [4163] = 4154, - [4164] = 689, - [4165] = 4149, - [4166] = 687, - [4167] = 947, - [4168] = 684, - [4169] = 4154, - [4170] = 4154, - [4171] = 4149, - [4172] = 4154, - [4173] = 679, - [4174] = 682, - [4175] = 663, - [4176] = 947, - [4177] = 692, - [4178] = 4149, - [4179] = 4154, - [4180] = 663, - [4181] = 4149, - [4182] = 663, - [4183] = 4154, - [4184] = 686, - [4185] = 689, - [4186] = 687, - [4187] = 663, - [4188] = 3963, - [4189] = 685, - [4190] = 3931, - [4191] = 4191, - [4192] = 685, - [4193] = 689, - [4194] = 4194, - [4195] = 1509, - [4196] = 4149, - [4197] = 665, - [4198] = 4149, - [4199] = 687, - [4200] = 3894, - [4201] = 3892, - [4202] = 4202, - [4203] = 4203, - [4204] = 1506, - [4205] = 679, - [4206] = 1528, - [4207] = 1567, - [4208] = 908, - [4209] = 1540, - [4210] = 690, - [4211] = 669, - [4212] = 691, - [4213] = 2782, - [4214] = 680, - [4215] = 4215, - [4216] = 1582, - [4217] = 4217, - [4218] = 4218, - [4219] = 4217, - [4220] = 4220, - [4221] = 691, - [4222] = 683, - [4223] = 1604, - [4224] = 4224, - [4225] = 2787, - [4226] = 1586, - [4227] = 4227, - [4228] = 4215, - [4229] = 4229, - [4230] = 4227, - [4231] = 4231, - [4232] = 4218, - [4233] = 680, - [4234] = 683, - [4235] = 691, - [4236] = 4236, - [4237] = 683, - [4238] = 4220, - [4239] = 4239, - [4240] = 1596, - [4241] = 4215, - [4242] = 680, - [4243] = 1581, - [4244] = 4218, - [4245] = 687, - [4246] = 1579, - [4247] = 4247, - [4248] = 1540, - [4249] = 2784, - [4250] = 4217, - [4251] = 1567, - [4252] = 4220, - [4253] = 4217, - [4254] = 690, - [4255] = 4220, - [4256] = 4220, - [4257] = 2774, - [4258] = 4217, - [4259] = 4217, - [4260] = 4260, - [4261] = 685, - [4262] = 1540, - [4263] = 663, - [4264] = 1605, - [4265] = 4265, - [4266] = 689, - [4267] = 668, - [4268] = 4220, - [4269] = 4217, - [4270] = 4227, - [4271] = 4220, - [4272] = 1614, - [4273] = 4220, - [4274] = 4220, - [4275] = 1616, - [4276] = 4276, - [4277] = 690, - [4278] = 629, - [4279] = 4279, - [4280] = 4220, - [4281] = 679, - [4282] = 4217, - [4283] = 4217, - [4284] = 4217, - [4285] = 1567, - [4286] = 652, - [4287] = 662, - [4288] = 1582, - [4289] = 996, - [4290] = 988, - [4291] = 642, - [4292] = 4292, - [4293] = 1604, - [4294] = 644, - [4295] = 4295, - [4296] = 1490, - [4297] = 4297, - [4298] = 1653, - [4299] = 651, - [4300] = 1614, - [4301] = 4297, - [4302] = 682, - [4303] = 678, - [4304] = 1656, - [4305] = 686, - [4306] = 4297, - [4307] = 983, - [4308] = 665, - [4309] = 4297, - [4310] = 1586, - [4311] = 4311, - [4312] = 4297, - [4313] = 996, - [4314] = 684, - [4315] = 4315, - [4316] = 692, - [4317] = 1616, - [4318] = 4318, - [4319] = 2797, - [4320] = 1579, - [4321] = 4321, - [4322] = 675, - [4323] = 4323, - [4324] = 4324, - [4325] = 4295, - [4326] = 988, - [4327] = 4327, - [4328] = 4295, - [4329] = 983, - [4330] = 2794, - [4331] = 1653, - [4332] = 4332, - [4333] = 1656, - [4334] = 1581, - [4335] = 1596, - [4336] = 4297, - [4337] = 1605, - [4338] = 4338, - [4339] = 4339, - [4340] = 4340, - [4341] = 4341, - [4342] = 4342, - [4343] = 1656, - [4344] = 4344, - [4345] = 2813, - [4346] = 2812, - [4347] = 4347, - [4348] = 4348, - [4349] = 4349, - [4350] = 1723, - [4351] = 1490, - [4352] = 663, - [4353] = 2805, - [4354] = 1725, - [4355] = 4355, - [4356] = 1750, - [4357] = 687, - [4358] = 4060, - [4359] = 663, - [4360] = 4360, - [4361] = 4361, - [4362] = 1641, - [4363] = 689, - [4364] = 1679, - [4365] = 4348, - [4366] = 1509, - [4367] = 2808, - [4368] = 2809, - [4369] = 4369, - [4370] = 4370, - [4371] = 4371, - [4372] = 4372, - [4373] = 4349, - [4374] = 4374, - [4375] = 4344, - [4376] = 685, - [4377] = 1528, - [4378] = 4378, - [4379] = 4349, - [4380] = 1490, - [4381] = 4381, - [4382] = 4382, - [4383] = 4383, - [4384] = 4384, - [4385] = 4349, - [4386] = 1516, - [4387] = 679, - [4388] = 1653, - [4389] = 4389, - [4390] = 4390, - [4391] = 4391, - [4392] = 4392, - [4393] = 4393, - [4394] = 1516, - [4395] = 947, - [4396] = 1540, - [4397] = 4397, - [4398] = 1567, - [4399] = 4399, - [4400] = 4229, - [4401] = 4224, - [4402] = 4402, - [4403] = 4403, - [4404] = 1509, - [4405] = 4405, - [4406] = 1768, - [4407] = 4407, - [4408] = 4408, - [4409] = 1775, - [4410] = 1509, - [4411] = 4408, - [4412] = 4407, - [4413] = 1528, - [4414] = 680, - [4415] = 1528, - [4416] = 4416, - [4417] = 4407, - [4418] = 4408, - [4419] = 4419, - [4420] = 4392, - [4421] = 2821, - [4422] = 4422, - [4423] = 947, - [4424] = 4424, - [4425] = 1641, - [4426] = 4426, - [4427] = 4416, - [4428] = 4428, - [4429] = 2787, - [4430] = 2784, - [4431] = 2782, - [4432] = 1679, - [4433] = 4407, - [4434] = 4408, - [4435] = 4279, - [4436] = 4276, - [4437] = 4408, - [4438] = 4239, - [4439] = 4407, - [4440] = 1540, - [4441] = 4441, - [4442] = 4408, - [4443] = 4407, - [4444] = 1567, - [4445] = 1812, - [4446] = 2782, - [4447] = 1567, - [4448] = 2774, - [4449] = 4407, - [4450] = 4408, - [4451] = 2784, - [4452] = 2787, - [4453] = 4408, - [4454] = 1540, - [4455] = 4416, - [4456] = 1516, - [4457] = 4390, - [4458] = 1750, - [4459] = 4419, - [4460] = 4460, - [4461] = 1685, - [4462] = 4462, - [4463] = 4463, - [4464] = 1723, - [4465] = 683, - [4466] = 691, - [4467] = 1725, - [4468] = 690, - [4469] = 4407, - [4470] = 1829, - [4471] = 663, - [4472] = 4392, - [4473] = 2774, - [4474] = 4474, - [4475] = 663, - [4476] = 4476, - [4477] = 1780, - [4478] = 1641, - [4479] = 4408, - [4480] = 4408, - [4481] = 4481, - [4482] = 4407, - [4483] = 4483, - [4484] = 4419, - [4485] = 4390, - [4486] = 663, - [4487] = 1800, - [4488] = 1614, - [4489] = 4489, - [4490] = 1867, - [4491] = 1866, - [4492] = 4489, - [4493] = 1653, - [4494] = 1656, - [4495] = 4489, - [4496] = 1582, - [4497] = 1865, - [4498] = 4489, - [4499] = 4338, - [4500] = 4489, - [4501] = 4489, - [4502] = 4489, - [4503] = 4503, - [4504] = 1616, - [4505] = 4489, - [4506] = 1605, - [4507] = 1768, - [4508] = 2850, - [4509] = 4509, - [4510] = 4489, - [4511] = 4511, - [4512] = 4489, - [4513] = 4513, - [4514] = 4489, - [4515] = 4503, - [4516] = 4489, - [4517] = 4517, - [4518] = 4518, - [4519] = 1581, - [4520] = 4489, - [4521] = 4489, - [4522] = 4489, - [4523] = 4489, - [4524] = 1579, - [4525] = 4489, - [4526] = 2852, - [4527] = 4527, - [4528] = 4513, - [4529] = 4511, - [4530] = 4489, - [4531] = 4531, - [4532] = 4532, - [4533] = 4489, - [4534] = 4489, - [4535] = 4489, - [4536] = 4489, - [4537] = 4489, - [4538] = 4538, - [4539] = 4489, - [4540] = 4489, - [4541] = 4511, - [4542] = 4542, - [4543] = 2797, - [4544] = 4489, - [4545] = 1685, - [4546] = 4513, - [4547] = 4489, - [4548] = 4489, - [4549] = 4513, - [4550] = 4489, - [4551] = 4489, - [4552] = 4489, - [4553] = 4489, - [4554] = 1596, - [4555] = 4555, - [4556] = 1780, - [4557] = 4513, - [4558] = 1641, - [4559] = 663, - [4560] = 4489, - [4561] = 1567, - [4562] = 1540, - [4563] = 4527, - [4564] = 1567, - [4565] = 1586, - [4566] = 4489, - [4567] = 4489, - [4568] = 1641, - [4569] = 4332, - [4570] = 4489, - [4571] = 663, - [4572] = 4532, - [4573] = 4531, - [4574] = 4513, - [4575] = 4489, - [4576] = 4513, - [4577] = 4503, - [4578] = 4532, - [4579] = 4579, - [4580] = 4531, - [4581] = 4581, - [4582] = 1800, - [4583] = 4511, - [4584] = 4518, - [4585] = 4511, - [4586] = 1862, - [4587] = 1861, - [4588] = 4588, - [4589] = 1812, - [4590] = 4513, - [4591] = 2797, - [4592] = 4489, - [4593] = 2853, - [4594] = 4588, - [4595] = 4518, - [4596] = 4579, - [4597] = 1829, - [4598] = 2794, - [4599] = 2841, - [4600] = 4527, - [4601] = 1540, - [4602] = 4513, - [4603] = 4513, - [4604] = 4604, - [4605] = 4511, - [4606] = 4606, - [4607] = 1947, - [4608] = 4608, - [4609] = 4579, - [4610] = 2837, - [4611] = 663, - [4612] = 4511, - [4613] = 4518, - [4614] = 4588, - [4615] = 4511, - [4616] = 4616, - [4617] = 2794, - [4618] = 4323, - [4619] = 4489, - [4620] = 4513, - [4621] = 4621, - [4622] = 4513, - [4623] = 4623, - [4624] = 2230, - [4625] = 4503, - [4626] = 1685, - [4627] = 1656, - [4628] = 1653, - [4629] = 1775, - [4630] = 2339, - [4631] = 4631, - [4632] = 4489, - [4633] = 4633, - [4634] = 988, - [4635] = 4489, - [4636] = 4527, - [4637] = 4511, - [4638] = 4638, - [4639] = 4639, - [4640] = 2064, - [4641] = 1800, - [4642] = 4642, - [4643] = 4643, - [4644] = 4644, - [4645] = 1567, - [4646] = 2794, - [4647] = 4647, - [4648] = 4648, - [4649] = 1829, - [4650] = 1582, - [4651] = 4651, - [4652] = 4652, - [4653] = 2101, - [4654] = 1821, - [4655] = 2809, - [4656] = 663, - [4657] = 4657, - [4658] = 2805, - [4659] = 2870, - [4660] = 642, - [4661] = 4661, - [4662] = 4662, - [4663] = 1586, - [4664] = 4664, - [4665] = 1614, - [4666] = 4666, - [4667] = 4667, - [4668] = 1942, - [4669] = 4669, - [4670] = 1821, - [4671] = 661, - [4672] = 2008, - [4673] = 1993, - [4674] = 2098, - [4675] = 1641, - [4676] = 4644, - [4677] = 4677, - [4678] = 4644, - [4679] = 4643, - [4680] = 4669, - [4681] = 1579, - [4682] = 4669, - [4683] = 1641, - [4684] = 4684, - [4685] = 2812, - [4686] = 2813, - [4687] = 4687, - [4688] = 4688, - [4689] = 996, - [4690] = 4684, - [4691] = 4687, - [4692] = 983, - [4693] = 4662, - [4694] = 4694, - [4695] = 4695, - [4696] = 4643, - [4697] = 4695, - [4698] = 4669, - [4699] = 4644, - [4700] = 4700, - [4701] = 4701, - [4702] = 1769, - [4703] = 1581, - [4704] = 4704, - [4705] = 4705, - [4706] = 4706, - [4707] = 1685, - [4708] = 4708, - [4709] = 1614, - [4710] = 4710, - [4711] = 2869, - [4712] = 730, - [4713] = 4713, - [4714] = 2808, - [4715] = 2813, - [4716] = 2812, - [4717] = 4717, - [4718] = 4718, - [4719] = 1596, - [4720] = 2805, - [4721] = 1656, - [4722] = 4722, - [4723] = 4260, - [4724] = 4677, - [4725] = 1653, - [4726] = 4726, - [4727] = 1947, - [4728] = 4728, - [4729] = 1812, - [4730] = 4644, - [4731] = 4644, - [4732] = 4643, - [4733] = 4733, - [4734] = 4734, - [4735] = 4735, - [4736] = 1656, - [4737] = 4737, - [4738] = 4738, - [4739] = 2874, - [4740] = 4644, - [4741] = 4741, - [4742] = 644, - [4743] = 4667, - [4744] = 4643, - [4745] = 2797, - [4746] = 1605, - [4747] = 4747, - [4748] = 4667, - [4749] = 1942, - [4750] = 4750, - [4751] = 1769, - [4752] = 1605, - [4753] = 1596, - [4754] = 2033, - [4755] = 1581, - [4756] = 4644, - [4757] = 4704, - [4758] = 1867, - [4759] = 4759, - [4760] = 1866, - [4761] = 1865, - [4762] = 4762, - [4763] = 2797, - [4764] = 4643, - [4765] = 4765, - [4766] = 1848, - [4767] = 4704, - [4768] = 4713, - [4769] = 4662, - [4770] = 1616, - [4771] = 4695, - [4772] = 4669, - [4773] = 1848, - [4774] = 4695, - [4775] = 1653, - [4776] = 2809, - [4777] = 1656, - [4778] = 4738, - [4779] = 2808, - [4780] = 4780, - [4781] = 1769, - [4782] = 1821, - [4783] = 4783, - [4784] = 4784, - [4785] = 1641, - [4786] = 1579, - [4787] = 1861, - [4788] = 4677, - [4789] = 4789, - [4790] = 4643, - [4791] = 4791, - [4792] = 4700, - [4793] = 4701, - [4794] = 4794, - [4795] = 4664, - [4796] = 4796, - [4797] = 4797, - [4798] = 4798, - [4799] = 1540, - [4800] = 1616, - [4801] = 4791, - [4802] = 4700, - [4803] = 4701, - [4804] = 4644, - [4805] = 4713, - [4806] = 4705, - [4807] = 4807, - [4808] = 4664, - [4809] = 4664, - [4810] = 4810, - [4811] = 2876, - [4812] = 4662, - [4813] = 4662, - [4814] = 663, - [4815] = 4662, - [4816] = 4669, - [4817] = 4817, - [4818] = 4791, - [4819] = 4819, - [4820] = 2084, - [4821] = 4662, - [4822] = 4700, - [4823] = 4669, - [4824] = 4701, - [4825] = 4705, - [4826] = 1582, - [4827] = 4738, - [4828] = 4798, - [4829] = 4829, - [4830] = 1848, - [4831] = 4831, - [4832] = 1653, - [4833] = 4833, - [4834] = 4834, - [4835] = 4835, - [4836] = 4677, - [4837] = 2878, - [4838] = 1862, - [4839] = 1586, - [4840] = 2794, - [4841] = 1685, - [4842] = 4842, - [4843] = 4843, - [4844] = 4844, - [4845] = 4845, - [4846] = 4846, - [4847] = 4846, - [4848] = 4848, - [4849] = 4397, - [4850] = 4846, - [4851] = 2787, - [4852] = 4852, - [4853] = 4853, - [4854] = 1861, - [4855] = 4855, - [4856] = 1862, - [4857] = 4733, - [4858] = 4855, - [4859] = 4734, - [4860] = 2784, - [4861] = 4239, - [4862] = 2782, - [4863] = 4863, - [4864] = 4864, - [4865] = 2782, - [4866] = 4866, - [4867] = 4867, - [4868] = 2085, - [4869] = 4846, - [4870] = 4848, - [4871] = 4871, - [4872] = 4846, - [4873] = 4873, - [4874] = 4846, - [4875] = 2868, - [4876] = 4846, - [4877] = 1865, - [4878] = 4878, - [4879] = 4846, - [4880] = 4880, - [4881] = 4846, - [4882] = 4882, - [4883] = 2892, - [4884] = 4884, - [4885] = 2339, - [4886] = 4882, - [4887] = 1866, - [4888] = 568, - [4889] = 4846, - [4890] = 2784, - [4891] = 4846, - [4892] = 4846, - [4893] = 1867, - [4894] = 4846, - [4895] = 2871, - [4896] = 2888, - [4897] = 4897, - [4898] = 4846, - [4899] = 4899, - [4900] = 2148, - [4901] = 4901, - [4902] = 4846, - [4903] = 4903, - [4904] = 2881, - [4905] = 4905, - [4906] = 4906, - [4907] = 4907, - [4908] = 2064, - [4909] = 2098, - [4910] = 2787, - [4911] = 2157, - [4912] = 1685, - [4913] = 4913, - [4914] = 4846, - [4915] = 4915, - [4916] = 4866, - [4917] = 1641, - [4918] = 4846, - [4919] = 4846, - [4920] = 4899, - [4921] = 2901, - [4922] = 2886, - [4923] = 4923, - [4924] = 2879, - [4925] = 2900, - [4926] = 4848, - [4927] = 4913, - [4928] = 568, - [4929] = 4929, - [4930] = 4930, - [4931] = 4931, - [4932] = 4846, - [4933] = 4796, - [4934] = 4934, - [4935] = 4846, - [4936] = 4867, - [4937] = 4846, - [4938] = 4463, - [4939] = 2339, - [4940] = 1993, - [4941] = 4941, - [4942] = 1685, - [4943] = 2885, - [4944] = 4944, - [4945] = 4460, - [4946] = 4846, - [4947] = 4864, - [4948] = 4913, - [4949] = 4428, - [4950] = 4846, - [4951] = 4951, - [4952] = 4846, - [4953] = 4855, - [4954] = 2230, - [4955] = 4899, - [4956] = 4903, - [4957] = 2883, - [4958] = 4846, - [4959] = 4846, - [4960] = 2889, - [4961] = 2085, - [4962] = 2877, - [4963] = 2084, - [4964] = 2101, - [4965] = 4905, - [4966] = 4915, - [4967] = 4906, - [4968] = 4968, - [4969] = 4846, - [4970] = 2230, - [4971] = 4971, - [4972] = 4929, - [4973] = 4906, - [4974] = 4974, - [4975] = 4903, - [4976] = 4866, - [4977] = 4977, - [4978] = 2821, - [4979] = 4913, - [4980] = 4391, - [4981] = 4846, - [4982] = 4405, - [4983] = 4983, - [4984] = 4848, - [4985] = 2891, - [4986] = 4481, - [4987] = 4474, - [4988] = 4846, - [4989] = 1685, - [4990] = 2141, - [4991] = 4846, - [4992] = 2107, - [4993] = 2539, - [4994] = 1947, - [4995] = 4995, - [4996] = 4848, - [4997] = 4903, - [4998] = 4864, - [4999] = 4846, - [5000] = 2033, - [5001] = 4871, - [5002] = 4905, - [5003] = 4855, - [5004] = 2884, - [5005] = 5005, - [5006] = 2109, - [5007] = 2110, - [5008] = 4867, - [5009] = 2146, - [5010] = 4906, - [5011] = 4846, - [5012] = 2821, - [5013] = 4848, - [5014] = 2008, - [5015] = 4864, - [5016] = 5016, - [5017] = 4864, - [5018] = 4864, - [5019] = 4977, - [5020] = 4974, - [5021] = 5021, - [5022] = 5022, - [5023] = 5023, - [5024] = 5024, - [5025] = 5025, - [5026] = 5026, - [5027] = 2308, - [5028] = 5028, - [5029] = 5029, - [5030] = 5030, - [5031] = 5025, - [5032] = 2244, - [5033] = 1812, - [5034] = 5034, - [5035] = 2203, - [5036] = 686, - [5037] = 5037, - [5038] = 5038, - [5039] = 5039, - [5040] = 5040, - [5041] = 2192, - [5042] = 5042, - [5043] = 5043, - [5044] = 1685, - [5045] = 2241, - [5046] = 2921, - [5047] = 2910, - [5048] = 2201, - [5049] = 2903, - [5050] = 2284, - [5051] = 2279, - [5052] = 5024, - [5053] = 5053, - [5054] = 2915, - [5055] = 2076, - [5056] = 2206, - [5057] = 5057, - [5058] = 2270, - [5059] = 2938, - [5060] = 2200, - [5061] = 2199, - [5062] = 2208, - [5063] = 2927, - [5064] = 5064, - [5065] = 2923, - [5066] = 5022, - [5067] = 2268, - [5068] = 2076, - [5069] = 5069, - [5070] = 2949, - [5071] = 2913, - [5072] = 5072, - [5073] = 5069, - [5074] = 5074, - [5075] = 5043, - [5076] = 5038, - [5077] = 5077, - [5078] = 5078, - [5079] = 2922, - [5080] = 5080, - [5081] = 2914, - [5082] = 5039, - [5083] = 2950, - [5084] = 2941, - [5085] = 2970, - [5086] = 2968, - [5087] = 2912, - [5088] = 2911, - [5089] = 5089, - [5090] = 2317, - [5091] = 5091, - [5092] = 2933, - [5093] = 5029, - [5094] = 2306, - [5095] = 5026, - [5096] = 2937, - [5097] = 5028, - [5098] = 5098, - [5099] = 2853, - [5100] = 5100, - [5101] = 5026, - [5102] = 5102, - [5103] = 5025, - [5104] = 5098, - [5105] = 2300, - [5106] = 5028, - [5107] = 5029, - [5108] = 2298, - [5109] = 5109, - [5110] = 5072, - [5111] = 5111, - [5112] = 5112, - [5113] = 5030, - [5114] = 5114, - [5115] = 5024, - [5116] = 2290, - [5117] = 2222, - [5118] = 5057, - [5119] = 5119, - [5120] = 5091, - [5121] = 5121, - [5122] = 2197, - [5123] = 2224, - [5124] = 5022, - [5125] = 5037, - [5126] = 5126, - [5127] = 5127, - [5128] = 663, - [5129] = 1829, - [5130] = 5078, - [5131] = 5037, - [5132] = 5132, - [5133] = 5133, - [5134] = 5072, - [5135] = 5135, - [5136] = 5030, - [5137] = 5137, - [5138] = 5138, - [5139] = 2841, - [5140] = 2230, - [5141] = 5069, - [5142] = 5091, - [5143] = 5043, - [5144] = 5038, - [5145] = 2259, - [5146] = 5078, - [5147] = 5080, - [5148] = 2274, - [5149] = 5149, - [5150] = 5039, - [5151] = 5151, - [5152] = 4323, - [5153] = 5153, - [5154] = 5154, - [5155] = 5080, - [5156] = 5156, - [5157] = 5089, - [5158] = 5158, - [5159] = 5159, - [5160] = 5160, - [5161] = 5029, - [5162] = 5028, - [5163] = 5098, - [5164] = 2972, - [5165] = 5026, - [5166] = 2157, - [5167] = 5167, - [5168] = 5168, - [5169] = 5169, - [5170] = 2841, - [5171] = 5025, - [5172] = 5172, - [5173] = 5173, - [5174] = 5089, - [5175] = 5175, - [5176] = 5024, - [5177] = 2249, - [5178] = 1800, - [5179] = 2178, - [5180] = 5180, - [5181] = 5181, - [5182] = 5057, - [5183] = 2853, - [5184] = 5022, - [5185] = 678, - [5186] = 1775, - [5187] = 5187, - [5188] = 2339, - [5189] = 5074, - [5190] = 5190, - [5191] = 5034, - [5192] = 5192, - [5193] = 5193, - [5194] = 2076, - [5195] = 5195, - [5196] = 663, - [5197] = 5037, - [5198] = 2316, - [5199] = 5199, - [5200] = 5200, - [5201] = 2906, - [5202] = 2292, - [5203] = 5203, - [5204] = 4338, - [5205] = 5205, - [5206] = 2917, - [5207] = 2926, - [5208] = 5208, - [5209] = 5021, - [5210] = 1656, - [5211] = 1653, - [5212] = 5212, - [5213] = 5213, - [5214] = 5214, - [5215] = 663, - [5216] = 2336, - [5217] = 2936, - [5218] = 5218, - [5219] = 5219, - [5220] = 2141, - [5221] = 2107, - [5222] = 2109, - [5223] = 2110, - [5224] = 2148, - [5225] = 2146, - [5226] = 5226, - [5227] = 5227, - [5228] = 2185, - [5229] = 5229, - [5230] = 5230, - [5231] = 5091, - [5232] = 663, - [5233] = 5154, - [5234] = 5149, - [5235] = 5235, - [5236] = 2961, - [5237] = 2189, - [5238] = 5226, - [5239] = 5239, - [5240] = 4332, - [5241] = 663, - [5242] = 5242, - [5243] = 5039, - [5244] = 2973, - [5245] = 2186, - [5246] = 5246, - [5247] = 5247, - [5248] = 5248, - [5249] = 5249, - [5250] = 5250, - [5251] = 661, - [5252] = 1641, - [5253] = 2339, - [5254] = 2805, - [5255] = 2188, - [5256] = 5256, - [5257] = 2187, - [5258] = 2812, - [5259] = 2813, - [5260] = 2230, - [5261] = 572, - [5262] = 2226, - [5263] = 5263, - [5264] = 5264, - [5265] = 5265, - [5266] = 2225, - [5267] = 5267, - [5268] = 2216, - [5269] = 2213, - [5270] = 5270, - [5271] = 5271, - [5272] = 2191, - [5273] = 5273, - [5274] = 5274, - [5275] = 2183, - [5276] = 2322, - [5277] = 5277, - [5278] = 5278, - [5279] = 2184, - [5280] = 5248, - [5281] = 5281, - [5282] = 5282, - [5283] = 5283, - [5284] = 2330, - [5285] = 5285, - [5286] = 5286, - [5287] = 2337, - [5288] = 5288, - [5289] = 5289, - [5290] = 5249, - [5291] = 5291, - [5292] = 5292, - [5293] = 5293, - [5294] = 5294, - [5295] = 5295, - [5296] = 5296, - [5297] = 5297, - [5298] = 2345, - [5299] = 5299, - [5300] = 5300, - [5301] = 2347, - [5302] = 5302, - [5303] = 2269, - [5304] = 2263, - [5305] = 5300, - [5306] = 2258, - [5307] = 5307, - [5308] = 5299, - [5309] = 5309, - [5310] = 5296, - [5311] = 5250, - [5312] = 5295, - [5313] = 2262, - [5314] = 5314, - [5315] = 5294, - [5316] = 2329, - [5317] = 2251, - [5318] = 2821, - [5319] = 5293, - [5320] = 5309, - [5321] = 2189, - [5322] = 5256, - [5323] = 5292, - [5324] = 5291, - [5325] = 2208, - [5326] = 5249, - [5327] = 5327, - [5328] = 5289, - [5329] = 5288, - [5330] = 5330, - [5331] = 2252, - [5332] = 2207, - [5333] = 5333, - [5334] = 2265, - [5335] = 5265, - [5336] = 2206, - [5337] = 5267, - [5338] = 2203, - [5339] = 4833, - [5340] = 5340, - [5341] = 5341, - [5342] = 5271, - [5343] = 5300, - [5344] = 5273, - [5345] = 2202, - [5346] = 5250, - [5347] = 5347, - [5348] = 4741, - [5349] = 5248, - [5350] = 5281, - [5351] = 5282, - [5352] = 5283, - [5353] = 2227, - [5354] = 5285, - [5355] = 2200, - [5356] = 5286, - [5357] = 2199, - [5358] = 2198, - [5359] = 2262, - [5360] = 5286, - [5361] = 5256, - [5362] = 5289, - [5363] = 5249, - [5364] = 5291, - [5365] = 5292, - [5366] = 5293, - [5367] = 5294, - [5368] = 5295, - [5369] = 5296, - [5370] = 2329, - [5371] = 2197, - [5372] = 5299, - [5373] = 5300, - [5374] = 5285, - [5375] = 4807, - [5376] = 5283, - [5377] = 2192, - [5378] = 5282, - [5379] = 5281, - [5380] = 5248, - [5381] = 2190, - [5382] = 5309, - [5383] = 5278, - [5384] = 5250, - [5385] = 5385, - [5386] = 2293, - [5387] = 4842, - [5388] = 2188, - [5389] = 2187, - [5390] = 5256, - [5391] = 2186, - [5392] = 5273, - [5393] = 2185, - [5394] = 1865, - [5395] = 5256, - [5396] = 1866, - [5397] = 1867, - [5398] = 2184, - [5399] = 4834, - [5400] = 5271, - [5401] = 2257, - [5402] = 2178, - [5403] = 2249, - [5404] = 4817, - [5405] = 2257, - [5406] = 5406, - [5407] = 5267, - [5408] = 5265, - [5409] = 2290, - [5410] = 5267, - [5411] = 2295, - [5412] = 2201, - [5413] = 5265, - [5414] = 2920, - [5415] = 5271, - [5416] = 2930, - [5417] = 5273, - [5418] = 2190, - [5419] = 2934, - [5420] = 2935, - [5421] = 2944, - [5422] = 5248, - [5423] = 5281, - [5424] = 5282, - [5425] = 5283, - [5426] = 2952, - [5427] = 5285, - [5428] = 5248, - [5429] = 5286, - [5430] = 2953, - [5431] = 2904, - [5432] = 1862, - [5433] = 1861, - [5434] = 4706, - [5435] = 5289, - [5436] = 5249, - [5437] = 5291, - [5438] = 5292, - [5439] = 5293, - [5440] = 5294, - [5441] = 5295, - [5442] = 5296, - [5443] = 5443, - [5444] = 4728, - [5445] = 5299, - [5446] = 5300, - [5447] = 2916, - [5448] = 2300, - [5449] = 2301, - [5450] = 2305, - [5451] = 5451, - [5452] = 2306, - [5453] = 5250, - [5454] = 5250, - [5455] = 5309, - [5456] = 2258, - [5457] = 2263, - [5458] = 2317, - [5459] = 5309, - [5460] = 4708, - [5461] = 4794, - [5462] = 5333, - [5463] = 5250, - [5464] = 2298, - [5465] = 5267, - [5466] = 5466, - [5467] = 4652, - [5468] = 2319, - [5469] = 5256, - [5470] = 5248, - [5471] = 5443, - [5472] = 5286, - [5473] = 2308, - [5474] = 5300, - [5475] = 5249, - [5476] = 5292, - [5477] = 2244, - [5478] = 4661, - [5479] = 5299, - [5480] = 2233, - [5481] = 2205, - [5482] = 5265, - [5483] = 5483, - [5484] = 5267, - [5485] = 5485, - [5486] = 2333, - [5487] = 5267, - [5488] = 5271, - [5489] = 5489, - [5490] = 2269, - [5491] = 5273, - [5492] = 5248, - [5493] = 5286, - [5494] = 2277, - [5495] = 5495, - [5496] = 5249, - [5497] = 5292, - [5498] = 5296, - [5499] = 5295, - [5500] = 5500, - [5501] = 5501, - [5502] = 5278, - [5503] = 2241, - [5504] = 2291, - [5505] = 2285, - [5506] = 5294, - [5507] = 5293, - [5508] = 5267, - [5509] = 2284, - [5510] = 5292, - [5511] = 2279, - [5512] = 2324, - [5513] = 5248, - [5514] = 5286, - [5515] = 5248, - [5516] = 5299, - [5517] = 5249, - [5518] = 5292, - [5519] = 5291, - [5520] = 5249, - [5521] = 5289, - [5522] = 2293, - [5523] = 5281, - [5524] = 5288, - [5525] = 2295, - [5526] = 2321, - [5527] = 5527, - [5528] = 5282, - [5529] = 5267, - [5530] = 5530, - [5531] = 5531, - [5532] = 5532, - [5533] = 5283, - [5534] = 5248, - [5535] = 5286, - [5536] = 5536, - [5537] = 2272, - [5538] = 5249, - [5539] = 5292, - [5540] = 5286, - [5541] = 2270, - [5542] = 2268, - [5543] = 5285, - [5544] = 5544, - [5545] = 5545, - [5546] = 5283, - [5547] = 5285, - [5548] = 5286, - [5549] = 5282, - [5550] = 5267, - [5551] = 5265, - [5552] = 5552, - [5553] = 5281, - [5554] = 5554, - [5555] = 5248, - [5556] = 5286, - [5557] = 5267, - [5558] = 2874, - [5559] = 5249, - [5560] = 5292, - [5561] = 5561, - [5562] = 2301, - [5563] = 5563, - [5564] = 2305, - [5565] = 5271, - [5566] = 5273, - [5567] = 5278, - [5568] = 4555, - [5569] = 5569, - [5570] = 5289, - [5571] = 5267, - [5572] = 5249, - [5573] = 5291, - [5574] = 5292, - [5575] = 5293, - [5576] = 5248, - [5577] = 5286, - [5578] = 5294, - [5579] = 5295, - [5580] = 5249, - [5581] = 5292, - [5582] = 5273, - [5583] = 5583, - [5584] = 5584, - [5585] = 5271, - [5586] = 2928, - [5587] = 2931, - [5588] = 2939, - [5589] = 2940, - [5590] = 2918, - [5591] = 5267, - [5592] = 5267, - [5593] = 5593, - [5594] = 5295, - [5595] = 5296, - [5596] = 2222, - [5597] = 5248, - [5598] = 5286, - [5599] = 2224, - [5600] = 5265, - [5601] = 5249, - [5602] = 5292, - [5603] = 5603, - [5604] = 5604, - [5605] = 5605, - [5606] = 5606, - [5607] = 5278, - [5608] = 5608, - [5609] = 5299, - [5610] = 5300, - [5611] = 5611, - [5612] = 2813, - [5613] = 5267, - [5614] = 2812, - [5615] = 2805, - [5616] = 5299, - [5617] = 5617, - [5618] = 5248, - [5619] = 5286, - [5620] = 5288, - [5621] = 2282, - [5622] = 5249, - [5623] = 5292, - [5624] = 5624, - [5625] = 5625, - [5626] = 5256, - [5627] = 2274, - [5628] = 2278, - [5629] = 2198, - [5630] = 2278, - [5631] = 2282, - [5632] = 5605, - [5633] = 5248, - [5634] = 5267, - [5635] = 5281, - [5636] = 5282, - [5637] = 5283, - [5638] = 5638, - [5639] = 5248, - [5640] = 5286, - [5641] = 4581, - [5642] = 5536, - [5643] = 5249, - [5644] = 5292, - [5645] = 5250, - [5646] = 5309, - [5647] = 5647, - [5648] = 5648, - [5649] = 5309, - [5650] = 5333, - [5651] = 5250, - [5652] = 4260, - [5653] = 5653, - [5654] = 5256, - [5655] = 5267, - [5656] = 2316, - [5657] = 5657, - [5658] = 2321, - [5659] = 2292, - [5660] = 5248, - [5661] = 5286, - [5662] = 2324, - [5663] = 2333, - [5664] = 5249, - [5665] = 5292, - [5666] = 2336, - [5667] = 5265, - [5668] = 5668, - [5669] = 5267, - [5670] = 5271, - [5671] = 5273, - [5672] = 5300, - [5673] = 2319, - [5674] = 5296, - [5675] = 5278, - [5676] = 5267, - [5677] = 4509, - [5678] = 5248, - [5679] = 4735, - [5680] = 5281, - [5681] = 5248, - [5682] = 5286, - [5683] = 5282, - [5684] = 5278, - [5685] = 5249, - [5686] = 5292, - [5687] = 5593, - [5688] = 5283, - [5689] = 5689, - [5690] = 5690, - [5691] = 5536, - [5692] = 5544, - [5693] = 2251, - [5694] = 5285, - [5695] = 5605, - [5696] = 2265, - [5697] = 5267, - [5698] = 5286, - [5699] = 5292, - [5700] = 5292, - [5701] = 1947, - [5702] = 5248, - [5703] = 5286, - [5704] = 2259, - [5705] = 5296, - [5706] = 5249, - [5707] = 5295, - [5708] = 2252, - [5709] = 5288, - [5710] = 4666, - [5711] = 5711, - [5712] = 5712, - [5713] = 5544, - [5714] = 5554, - [5715] = 5285, - [5716] = 5294, - [5717] = 5267, - [5718] = 5718, - [5719] = 2233, - [5720] = 5720, - [5721] = 5286, - [5722] = 5248, - [5723] = 5286, - [5724] = 5289, - [5725] = 5293, - [5726] = 5249, - [5727] = 2205, - [5728] = 5292, - [5729] = 5291, - [5730] = 5249, - [5731] = 5249, - [5732] = 5289, - [5733] = 5291, - [5734] = 5292, - [5735] = 5735, - [5736] = 5293, - [5737] = 5267, - [5738] = 5294, - [5739] = 5584, - [5740] = 5740, - [5741] = 5741, - [5742] = 5248, - [5743] = 5286, - [5744] = 5744, - [5745] = 5745, - [5746] = 5249, - [5747] = 5747, - [5748] = 5288, - [5749] = 5554, - [5750] = 2227, - [5751] = 5751, - [5752] = 2202, - [5753] = 5593, - [5754] = 5295, - [5755] = 5296, - [5756] = 5286, - [5757] = 5267, - [5758] = 5617, - [5759] = 2942, - [5760] = 5285, - [5761] = 5761, - [5762] = 5248, - [5763] = 5286, - [5764] = 5606, - [5765] = 5605, - [5766] = 5249, - [5767] = 4843, - [5768] = 2226, - [5769] = 5554, - [5770] = 5299, - [5771] = 5466, - [5772] = 2225, - [5773] = 2347, - [5774] = 2874, - [5775] = 5451, - [5776] = 2216, - [5777] = 5267, - [5778] = 5300, - [5779] = 4651, - [5780] = 5283, - [5781] = 5249, - [5782] = 5248, - [5783] = 5286, - [5784] = 5248, - [5785] = 5282, - [5786] = 5249, - [5787] = 5249, - [5788] = 5281, - [5789] = 5248, - [5790] = 5248, - [5791] = 5249, - [5792] = 5248, - [5793] = 5249, - [5794] = 5248, - [5795] = 5249, - [5796] = 2345, - [5797] = 5267, - [5798] = 5248, - [5799] = 5584, - [5800] = 5249, - [5801] = 5248, - [5802] = 5248, - [5803] = 5286, - [5804] = 5249, - [5805] = 2337, - [5806] = 5249, - [5807] = 5248, - [5808] = 5294, - [5809] = 5293, - [5810] = 5292, - [5811] = 5249, - [5812] = 5291, - [5813] = 5249, - [5814] = 5248, - [5815] = 5249, - [5816] = 2330, - [5817] = 5267, - [5818] = 5248, - [5819] = 5249, - [5820] = 5289, - [5821] = 5248, - [5822] = 5248, - [5823] = 5286, - [5824] = 5249, - [5825] = 5248, - [5826] = 5249, - [5827] = 5249, - [5828] = 5828, - [5829] = 5248, - [5830] = 5249, - [5831] = 5248, - [5832] = 2291, - [5833] = 2285, - [5834] = 5834, - [5835] = 5273, - [5836] = 5271, - [5837] = 5267, - [5838] = 5249, - [5839] = 5248, - [5840] = 5249, - [5841] = 5248, - [5842] = 5248, - [5843] = 5286, - [5844] = 5249, - [5845] = 5248, - [5846] = 5249, - [5847] = 5249, - [5848] = 5267, - [5849] = 5248, - [5850] = 5265, - [5851] = 5249, - [5852] = 2277, - [5853] = 5248, - [5854] = 5309, - [5855] = 5249, - [5856] = 5286, - [5857] = 5267, - [5858] = 5248, - [5859] = 5859, - [5860] = 5267, - [5861] = 5288, - [5862] = 5248, - [5863] = 5286, - [5864] = 5309, - [5865] = 5865, - [5866] = 5249, - [5867] = 2272, - [5868] = 5868, - [5869] = 5869, - [5870] = 5250, - [5871] = 5249, - [5872] = 5286, - [5873] = 5248, - [5874] = 2207, - [5875] = 5267, - [5876] = 2213, - [5877] = 5267, - [5878] = 2322, - [5879] = 2183, - [5880] = 5286, - [5881] = 2191, - [5882] = 5256, - [5883] = 5883, - [5884] = 5884, - [5885] = 1685, - [5886] = 1775, - [5887] = 5887, - [5888] = 5887, - [5889] = 5889, - [5890] = 5890, - [5891] = 5890, - [5892] = 5892, - [5893] = 5893, - [5894] = 5887, - [5895] = 5895, - [5896] = 5893, - [5897] = 5897, - [5898] = 5898, - [5899] = 5899, - [5900] = 5900, - [5901] = 5887, - [5902] = 5902, - [5903] = 5903, - [5904] = 5887, - [5905] = 5905, - [5906] = 5906, - [5907] = 5893, - [5908] = 5908, - [5909] = 5893, - [5910] = 5910, - [5911] = 5889, - [5912] = 5912, - [5913] = 5893, - [5914] = 5914, - [5915] = 5905, - [5916] = 5916, - [5917] = 5917, - [5918] = 5887, - [5919] = 5919, - [5920] = 5890, - [5921] = 5921, - [5922] = 5922, - [5923] = 5887, - [5924] = 5924, - [5925] = 5887, - [5926] = 5887, - [5927] = 5927, - [5928] = 5887, - [5929] = 5929, - [5930] = 5930, - [5931] = 2881, - [5932] = 5893, - [5933] = 5887, - [5934] = 5934, - [5935] = 5935, - [5936] = 5893, - [5937] = 5937, - [5938] = 5887, - [5939] = 5892, - [5940] = 5940, - [5941] = 5941, - [5942] = 5942, - [5943] = 5887, - [5944] = 5893, - [5945] = 5945, - [5946] = 5890, - [5947] = 5887, - [5948] = 5887, - [5949] = 5949, - [5950] = 5890, - [5951] = 5887, - [5952] = 5887, - [5953] = 5887, - [5954] = 5895, - [5955] = 5955, - [5956] = 2881, - [5957] = 4750, - [5958] = 5887, - [5959] = 5898, - [5960] = 5960, - [5961] = 5893, - [5962] = 5893, - [5963] = 5887, - [5964] = 5949, - [5965] = 5965, - [5966] = 5893, - [5967] = 5887, - [5968] = 5887, - [5969] = 5890, - [5970] = 2891, - [5971] = 5887, - [5972] = 5897, - [5973] = 5887, - [5974] = 5624, - [5975] = 5883, - [5976] = 5893, - [5977] = 5977, - [5978] = 5978, - [5979] = 5979, - [5980] = 5906, - [5981] = 5887, - [5982] = 2901, - [5983] = 5893, - [5984] = 5890, - [5985] = 5985, - [5986] = 5986, - [5987] = 5899, - [5988] = 5914, - [5989] = 4718, - [5990] = 5937, - [5991] = 5991, - [5992] = 4710, - [5993] = 5887, - [5994] = 5994, - [5995] = 5941, - [5996] = 5893, - [5997] = 5919, - [5998] = 5998, - [5999] = 5910, - [6000] = 6000, - [6001] = 5960, - [6002] = 5978, - [6003] = 6003, - [6004] = 2885, - [6005] = 6005, - [6006] = 5887, - [6007] = 6000, - [6008] = 6003, - [6009] = 5887, - [6010] = 6000, - [6011] = 6003, - [6012] = 6012, - [6013] = 6013, - [6014] = 6014, - [6015] = 6015, - [6016] = 6016, - [6017] = 6017, - [6018] = 6003, - [6019] = 6019, - [6020] = 6020, - [6021] = 6021, - [6022] = 5917, - [6023] = 6000, - [6024] = 5884, - [6025] = 6003, - [6026] = 5934, - [6027] = 6000, - [6028] = 6028, - [6029] = 6003, - [6030] = 5893, - [6031] = 5893, - [6032] = 5893, - [6033] = 6000, - [6034] = 6003, - [6035] = 6035, - [6036] = 5924, - [6037] = 6000, - [6038] = 5887, - [6039] = 6015, - [6040] = 6040, - [6041] = 6041, - [6042] = 6020, - [6043] = 6000, - [6044] = 6003, - [6045] = 6045, - [6046] = 6046, - [6047] = 5887, - [6048] = 6048, - [6049] = 5903, - [6050] = 6050, - [6051] = 5893, - [6052] = 5930, - [6053] = 6000, - [6054] = 6000, - [6055] = 5892, - [6056] = 6003, - [6057] = 5887, - [6058] = 5940, - [6059] = 6059, - [6060] = 6012, - [6061] = 6000, - [6062] = 6003, - [6063] = 5977, - [6064] = 6041, - [6065] = 5893, - [6066] = 6066, - [6067] = 5893, - [6068] = 6021, - [6069] = 5930, - [6070] = 5979, - [6071] = 5922, - [6072] = 6000, - [6073] = 6003, - [6074] = 5903, - [6075] = 6075, - [6076] = 5887, - [6077] = 5889, - [6078] = 6000, - [6079] = 6035, - [6080] = 6003, - [6081] = 5887, - [6082] = 6000, - [6083] = 6035, - [6084] = 6003, - [6085] = 5893, - [6086] = 5893, - [6087] = 6021, - [6088] = 6013, - [6089] = 6000, - [6090] = 6003, - [6091] = 6050, - [6092] = 5887, - [6093] = 6019, - [6094] = 6014, - [6095] = 5978, - [6096] = 6013, - [6097] = 6097, - [6098] = 6014, - [6099] = 6000, - [6100] = 6003, - [6101] = 5979, - [6102] = 6012, - [6103] = 6066, - [6104] = 5977, - [6105] = 5893, - [6106] = 6106, - [6107] = 5887, - [6108] = 6003, - [6109] = 5937, - [6110] = 5893, - [6111] = 5884, - [6112] = 6028, - [6113] = 6113, - [6114] = 5893, - [6115] = 5887, - [6116] = 5917, - [6117] = 6000, - [6118] = 5914, - [6119] = 5917, - [6120] = 6120, - [6121] = 6000, - [6122] = 5898, - [6123] = 6003, - [6124] = 5895, - [6125] = 2886, - [6126] = 6000, - [6127] = 6003, - [6128] = 6019, - [6129] = 6050, - [6130] = 5893, - [6131] = 5893, - [6132] = 5929, - [6133] = 5887, - [6134] = 5940, - [6135] = 5890, - [6136] = 6000, - [6137] = 6003, - [6138] = 6138, - [6139] = 5994, - [6140] = 4784, - [6141] = 5986, - [6142] = 5887, - [6143] = 5929, - [6144] = 2889, - [6145] = 5910, - [6146] = 6146, - [6147] = 5978, - [6148] = 5905, - [6149] = 5942, - [6150] = 6000, - [6151] = 6003, - [6152] = 6012, - [6153] = 2886, - [6154] = 6021, - [6155] = 6155, - [6156] = 5883, - [6157] = 6003, - [6158] = 5887, - [6159] = 5919, - [6160] = 5884, - [6161] = 6028, - [6162] = 2891, - [6163] = 6000, - [6164] = 5924, - [6165] = 6003, - [6166] = 5929, - [6167] = 6167, - [6168] = 6000, - [6169] = 6169, - [6170] = 6170, - [6171] = 5979, - [6172] = 5934, - [6173] = 5897, - [6174] = 5890, - [6175] = 5949, - [6176] = 4260, - [6177] = 6066, - [6178] = 5887, - [6179] = 5977, - [6180] = 5887, - [6181] = 5978, - [6182] = 5895, - [6183] = 6028, - [6184] = 6012, - [6185] = 2901, - [6186] = 5898, - [6187] = 5899, - [6188] = 6003, - [6189] = 5914, - [6190] = 5884, - [6191] = 5893, - [6192] = 2885, - [6193] = 5916, - [6194] = 6000, - [6195] = 6000, - [6196] = 6003, - [6197] = 5903, - [6198] = 6003, - [6199] = 5921, - [6200] = 5922, - [6201] = 6000, - [6202] = 5927, - [6203] = 5978, - [6204] = 5893, - [6205] = 6003, - [6206] = 6012, - [6207] = 5937, - [6208] = 5941, - [6209] = 5960, - [6210] = 6003, - [6211] = 5930, - [6212] = 5884, - [6213] = 6017, - [6214] = 5892, - [6215] = 6013, - [6216] = 6000, - [6217] = 5884, - [6218] = 6014, - [6219] = 6017, - [6220] = 6220, - [6221] = 6221, - [6222] = 6019, - [6223] = 6000, - [6224] = 6224, - [6225] = 5978, - [6226] = 6220, - [6227] = 6003, - [6228] = 6012, - [6229] = 6000, - [6230] = 5887, - [6231] = 6231, - [6232] = 6003, - [6233] = 6045, - [6234] = 6003, - [6235] = 6235, - [6236] = 4810, - [6237] = 6000, - [6238] = 6170, - [6239] = 2889, - [6240] = 5893, - [6241] = 6241, - [6242] = 6000, - [6243] = 6003, - [6244] = 6169, - [6245] = 6035, - [6246] = 6041, - [6247] = 5887, - [6248] = 6003, - [6249] = 5893, - [6250] = 6224, - [6251] = 4844, - [6252] = 6000, - [6253] = 6167, - [6254] = 5893, - [6255] = 6255, - [6256] = 6256, - [6257] = 6257, - [6258] = 6258, - [6259] = 6259, - [6260] = 6260, - [6261] = 6256, - [6262] = 6262, - [6263] = 6263, - [6264] = 6264, - [6265] = 6262, - [6266] = 6266, - [6267] = 6267, - [6268] = 6262, - [6269] = 6262, - [6270] = 6270, - [6271] = 6256, - [6272] = 6267, - [6273] = 6266, - [6274] = 6256, - [6275] = 6266, - [6276] = 6276, - [6277] = 6277, - [6278] = 6278, - [6279] = 6279, - [6280] = 6280, - [6281] = 6280, - [6282] = 6266, - [6283] = 6259, - [6284] = 6266, - [6285] = 6255, - [6286] = 6255, - [6287] = 6287, - [6288] = 6255, - [6289] = 6266, - [6290] = 6276, - [6291] = 6291, - [6292] = 6292, - [6293] = 6262, - [6294] = 6256, - [6295] = 6255, - [6296] = 6266, - [6297] = 6297, - [6298] = 6266, - [6299] = 6299, - [6300] = 6255, - [6301] = 6301, - [6302] = 6266, - [6303] = 6266, - [6304] = 6304, - [6305] = 6305, - [6306] = 6306, - [6307] = 6307, - [6308] = 6266, - [6309] = 6262, - [6310] = 6266, - [6311] = 6256, - [6312] = 6312, - [6313] = 6313, - [6314] = 6313, - [6315] = 6256, - [6316] = 6255, - [6317] = 6266, - [6318] = 6307, - [6319] = 6256, - [6320] = 6262, - [6321] = 5156, - [6322] = 6255, - [6323] = 6323, - [6324] = 6266, - [6325] = 6262, - [6326] = 6256, - [6327] = 6327, - [6328] = 6328, - [6329] = 6329, - [6330] = 5159, - [6331] = 6266, - [6332] = 6266, - [6333] = 6267, - [6334] = 6255, - [6335] = 6262, - [6336] = 6280, - [6337] = 5173, - [6338] = 6266, - [6339] = 6262, - [6340] = 6340, - [6341] = 6256, - [6342] = 5212, - [6343] = 6256, - [6344] = 6344, - [6345] = 6266, - [6346] = 6255, - [6347] = 6262, - [6348] = 6348, - [6349] = 6329, - [6350] = 5172, - [6351] = 5169, - [6352] = 6266, - [6353] = 6262, - [6354] = 6354, - [6355] = 5135, - [6356] = 6255, - [6357] = 6256, - [6358] = 6256, - [6359] = 6266, - [6360] = 5167, - [6361] = 6256, - [6362] = 6304, - [6363] = 6262, - [6364] = 6364, - [6365] = 6255, - [6366] = 6292, - [6367] = 6329, - [6368] = 6278, - [6369] = 5227, - [6370] = 6370, - [6371] = 6262, - [6372] = 6256, - [6373] = 5168, - [6374] = 6255, - [6375] = 6297, - [6376] = 6376, - [6377] = 6255, - [6378] = 6255, - [6379] = 5160, - [6380] = 6262, - [6381] = 6280, - [6382] = 6256, - [6383] = 6257, - [6384] = 5158, - [6385] = 6258, - [6386] = 6255, - [6387] = 6387, - [6388] = 6262, - [6389] = 6255, - [6390] = 6266, - [6391] = 6256, - [6392] = 6262, - [6393] = 6256, - [6394] = 6394, - [6395] = 6395, - [6396] = 6299, - [6397] = 5219, - [6398] = 6267, - [6399] = 6255, - [6400] = 6327, - [6401] = 6262, - [6402] = 6258, - [6403] = 6328, - [6404] = 5214, - [6405] = 6270, - [6406] = 6406, - [6407] = 6329, - [6408] = 6408, - [6409] = 5406, - [6410] = 6410, - [6411] = 5213, - [6412] = 6287, - [6413] = 6410, - [6414] = 6340, - [6415] = 6340, - [6416] = 6287, - [6417] = 5242, - [6418] = 6256, - [6419] = 6256, - [6420] = 6266, - [6421] = 6258, - [6422] = 5246, - [6423] = 5208, - [6424] = 6424, - [6425] = 6425, - [6426] = 5133, - [6427] = 6262, - [6428] = 6256, - [6429] = 6262, - [6430] = 6307, - [6431] = 5247, - [6432] = 5205, - [6433] = 6313, - [6434] = 6257, - [6435] = 5200, - [6436] = 6255, - [6437] = 5495, - [6438] = 6255, - [6439] = 6262, - [6440] = 6313, - [6441] = 6256, - [6442] = 5235, - [6443] = 6443, - [6444] = 5230, - [6445] = 5229, - [6446] = 6255, - [6447] = 6313, - [6448] = 6448, - [6449] = 6307, - [6450] = 6256, - [6451] = 5192, - [6452] = 5132, - [6453] = 6256, - [6454] = 6255, - [6455] = 6256, - [6456] = 6280, - [6457] = 6262, - [6458] = 6280, - [6459] = 6459, - [6460] = 6460, - [6461] = 6255, - [6462] = 6462, - [6463] = 6267, - [6464] = 6464, - [6465] = 6262, - [6466] = 6466, - [6467] = 6267, - [6468] = 6256, - [6469] = 6448, - [6470] = 5175, - [6471] = 6279, - [6472] = 6472, - [6473] = 6256, - [6474] = 6474, - [6475] = 6291, - [6476] = 6256, - [6477] = 6477, - [6478] = 5181, - [6479] = 6479, - [6480] = 6262, - [6481] = 6263, - [6482] = 6255, - [6483] = 6278, - [6484] = 5187, - [6485] = 6256, - [6486] = 6486, - [6487] = 6307, - [6488] = 6256, - [6489] = 6307, - [6490] = 6262, - [6491] = 6280, - [6492] = 5190, - [6493] = 6255, - [6494] = 6313, - [6495] = 6256, - [6496] = 6256, - [6497] = 6425, - [6498] = 6256, - [6499] = 6256, - [6500] = 6262, - [6501] = 6280, - [6502] = 6262, - [6503] = 5195, - [6504] = 6504, - [6505] = 6256, - [6506] = 6267, - [6507] = 5126, - [6508] = 6508, - [6509] = 5151, - [6510] = 6256, - [6511] = 6256, - [6512] = 6255, - [6513] = 6267, - [6514] = 6256, - [6515] = 1775, - [6516] = 6516, - [6517] = 5495, - [6518] = 6256, - [6519] = 5406, - [6520] = 6255, - [6521] = 6466, - [6522] = 6307, - [6523] = 5385, - [6524] = 5385, - [6525] = 6312, - [6526] = 6313, - [6527] = 6313, - [6528] = 6459, - [6529] = 6462, - [6530] = 5193, - [6531] = 6466, - [6532] = 6532, - [6533] = 6256, - [6534] = 6448, - [6535] = 6279, - [6536] = 6256, - [6537] = 6459, - [6538] = 6462, - [6539] = 6280, - [6540] = 6262, - [6541] = 6448, - [6542] = 6279, - [6543] = 6292, - [6544] = 6459, - [6545] = 6462, - [6546] = 6464, - [6547] = 6279, - [6548] = 6262, - [6549] = 6459, - [6550] = 6462, - [6551] = 6313, - [6552] = 6279, - [6553] = 6267, - [6554] = 6459, - [6555] = 6462, - [6556] = 6462, - [6557] = 6279, - [6558] = 6459, - [6559] = 6462, - [6560] = 6256, - [6561] = 6279, - [6562] = 6459, - [6563] = 6462, - [6564] = 6564, - [6565] = 6279, - [6566] = 6459, - [6567] = 5153, - [6568] = 6313, - [6569] = 6477, - [6570] = 6256, - [6571] = 6571, - [6572] = 6255, - [6573] = 6255, - [6574] = 6479, - [6575] = 6307, - [6576] = 6306, - [6577] = 6301, - [6578] = 6307, - [6579] = 6564, - [6580] = 6564, - [6581] = 6564, - [6582] = 6564, - [6583] = 6564, - [6584] = 6564, - [6585] = 6564, - [6586] = 6564, -}; - -static inline bool aux_sym_simple_identifier_token1_character_set_1(int32_t c) { - return (c < 43259 - ? (c < 5998 - ? (c < 2949 - ? (c < 2185 - ? (c < 1376 - ? (c < 880 - ? (c < 216 - ? (c < 181 - ? (c < 169 - ? (c >= 'A' && c <= 'z') - : (c <= 170 || c == 174)) - : (c <= 181 || (c < 192 - ? c == 186 - : c <= 214))) - : (c <= 246 || (c < 736 - ? (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721) - : (c <= 740 || (c < 750 - ? c == 748 - : c <= 750))))) - : (c <= 884 || (c < 910 - ? (c < 902 - ? (c < 891 - ? (c >= 886 && c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908))) - : (c <= 929 || (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))))))) - : (c <= 1416 || (c < 1869 - ? (c < 1765 - ? (c < 1646 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))) - : (c <= 1647 || (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749))) - : (c <= 1766 || (c < 1791 - ? (c < 1786 - ? (c >= 1774 && c <= 1775) - : c <= 1788) - : (c <= 1791 || (c < 1810 - ? c == 1808 - : c <= 1839))))) - : (c <= 1957 || (c < 2074 - ? (c < 2036 - ? (c < 1994 - ? c == 1969 - : c <= 2026) - : (c <= 2037 || (c < 2048 - ? c == 2042 - : c <= 2069))) - : (c <= 2074 || (c < 2112 - ? (c < 2088 - ? c == 2084 - : c <= 2088) - : (c <= 2136 || (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183))))))))) - : (c <= 2190 || (c < 2616 - ? (c < 2493 - ? (c < 2437 - ? (c < 2384 - ? (c < 2308 - ? (c >= 2208 && c <= 2249) - : (c <= 2361 || c == 2365)) - : (c <= 2384 || (c < 2417 - ? (c >= 2392 && c <= 2401) - : c <= 2432))) - : (c <= 2444 || (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || (c < 2486 - ? c == 2482 - : c <= 2489))))) - : (c <= 2493 || (c < 2565 - ? (c < 2527 - ? (c < 2524 - ? c == 2510 - : c <= 2525) - : (c <= 2529 || (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556))) - : (c <= 2570 || (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614))))))) - : (c <= 2617 || (c < 2809 - ? (c < 2730 - ? (c < 2693 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2674 && c <= 2676))) - : (c <= 2701 || (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728))) - : (c <= 2736 || (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))))) - : (c <= 2809 || (c < 2869 - ? (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867))) - : (c <= 2873 || (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || (c < 2947 - ? c == 2929 - : c <= 2947))))))))))) - : (c <= 2954 || (c < 3762 - ? (c < 3293 - ? (c < 3114 - ? (c < 2984 - ? (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))))) - : (c <= 3129 || (c < 3205 - ? (c < 3165 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3165 || (c < 3200 - ? (c >= 3168 && c <= 3169) - : c <= 3200))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261))))))) - : (c <= 3294 || (c < 3507 - ? (c < 3406 - ? (c < 3342 - ? (c < 3313 - ? (c >= 3296 && c <= 3297) - : (c <= 3314 || (c >= 3332 && c <= 3340))) - : (c <= 3344 || (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389))) - : (c <= 3406 || (c < 3450 - ? (c < 3423 - ? (c >= 3412 && c <= 3414) - : c <= 3425) - : (c <= 3455 || (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505))))) - : (c <= 3515 || (c < 3713 - ? (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || (c < 3648 - ? c == 3634 - : c <= 3654))) - : (c <= 3714 || (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3760))))))))) - : (c <= 3762 || (c < 4696 - ? (c < 4193 - ? (c < 3913 - ? (c < 3804 - ? (c < 3776 - ? c == 3773 - : (c <= 3780 || c == 3782)) - : (c <= 3807 || (c < 3904 - ? c == 3840 - : c <= 3911))) - : (c <= 3948 || (c < 4159 - ? (c < 4096 - ? (c >= 3976 && c <= 3980) - : c <= 4138) - : (c <= 4159 || (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189))))) - : (c <= 4193 || (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694))))))) - : (c <= 4696 || (c < 4992 - ? (c < 4800 - ? (c < 4752 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798))) - : (c <= 4800 || (c < 4824 - ? (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822) - : (c <= 4880 || (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954))))) - : (c <= 5007 || (c < 5792 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996))))))))))))) - : (c <= 6000 || (c < 9832 - ? (c < 8182 - ? (c < 7312 - ? (c < 6656 - ? (c < 6320 - ? (c < 6176 - ? (c < 6103 - ? (c >= 6016 && c <= 6067) - : (c <= 6103 || c == 6108)) - : (c <= 6264 || (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314))) - : (c <= 6389 || (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))))) - : (c <= 6678 || (c < 7086 - ? (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c < 7043 - ? (c >= 6981 && c <= 6988) - : c <= 7072))) - : (c <= 7087 || (c < 7245 - ? (c < 7168 - ? (c >= 7098 && c <= 7141) - : c <= 7203) - : (c <= 7247 || (c < 7296 - ? (c >= 7258 && c <= 7293) - : c <= 7304))))))) - : (c <= 7354 || (c < 8027 - ? (c < 7680 - ? (c < 7413 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : (c <= 7404 || (c >= 7406 && c <= 7411))) - : (c <= 7414 || (c < 7424 - ? c == 7418 - : c <= 7615))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))))))))) - : (c <= 8188 || (c < 9193 - ? (c < 8486 - ? (c < 8455 - ? (c < 8319 - ? (c < 8265 - ? c == 8252 - : (c <= 8265 || c == 8305)) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || (c < 8484 - ? c == 8482 - : c <= 8484))))) - : (c <= 8486 || (c < 8544 - ? (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))) - : (c <= 8584 || (c < 8986 - ? (c < 8617 - ? (c >= 8596 && c <= 8601) - : c <= 8618) - : (c <= 8987 || (c < 9167 - ? c == 9000 - : c <= 9167))))))) - : (c <= 9203 || (c < 9760 - ? (c < 9728 - ? (c < 9654 - ? (c < 9410 - ? (c >= 9208 && c <= 9210) - : (c <= 9410 || (c >= 9642 && c <= 9643))) - : (c <= 9654 || (c < 9723 - ? c == 9664 - : c <= 9726))) - : (c <= 9732 || (c < 9748 - ? (c < 9745 - ? c == 9742 - : c <= 9745) - : (c <= 9749 || (c < 9757 - ? c == 9752 - : c <= 9757))))) - : (c <= 9760 || (c < 9792 - ? (c < 9770 - ? (c < 9766 - ? (c >= 9762 && c <= 9763) - : c <= 9766) - : (c <= 9770 || (c < 9784 - ? (c >= 9774 && c <= 9775) - : c <= 9786))) - : (c <= 9792 || (c < 9823 - ? (c < 9800 - ? c == 9794 - : c <= 9811) - : (c <= 9824 || (c < 9829 - ? c == 9827 - : c <= 9830))))))))))) - : (c <= 9832 || (c < 11520 - ? (c < 10004 - ? (c < 9934 - ? (c < 9895 - ? (c < 9881 - ? (c < 9854 - ? c == 9851 - : (c <= 9855 || (c >= 9874 && c <= 9879))) - : (c <= 9881 || (c < 9888 - ? (c >= 9883 && c <= 9884) - : c <= 9889))) - : (c <= 9895 || (c < 9917 - ? (c < 9904 - ? (c >= 9898 && c <= 9899) - : c <= 9905) - : (c <= 9918 || (c < 9928 - ? (c >= 9924 && c <= 9925) - : c <= 9928))))) - : (c <= 9935 || (c < 9981 - ? (c < 9961 - ? (c < 9939 - ? c == 9937 - : c <= 9940) - : (c <= 9962 || (c < 9975 - ? (c >= 9968 && c <= 9973) - : c <= 9978))) - : (c <= 9981 || (c < 9992 - ? (c < 9989 - ? c == 9986 - : c <= 9989) - : (c <= 9997 || (c < 10002 - ? c == 9999 - : c <= 10002))))))) - : (c <= 10004 || (c < 10133 - ? (c < 10055 - ? (c < 10024 - ? (c < 10013 - ? c == 10006 - : (c <= 10013 || c == 10017)) - : (c <= 10024 || (c < 10052 - ? (c >= 10035 && c <= 10036) - : c <= 10052))) - : (c <= 10055 || (c < 10067 - ? (c < 10062 - ? c == 10060 - : c <= 10062) - : (c <= 10069 || (c < 10083 - ? c == 10071 - : c <= 10084))))) - : (c <= 10135 || (c < 11035 - ? (c < 10175 - ? (c < 10160 - ? c == 10145 - : c <= 10160) - : (c <= 10175 || (c < 11013 - ? (c >= 10548 && c <= 10549) - : c <= 11015))) - : (c <= 11036 || (c < 11264 - ? (c < 11093 - ? c == 11088 - : c <= 11093) - : (c <= 11492 || (c < 11506 - ? (c >= 11499 && c <= 11502) - : c <= 11507))))))))) - : (c <= 11557 || (c < 12784 - ? (c < 11736 - ? (c < 11688 - ? (c < 11631 - ? (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))) - : (c <= 11631 || (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686))) - : (c <= 11694 || (c < 11712 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))))) - : (c <= 11742 || (c < 12445 - ? (c < 12336 - ? (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12329) - : (c <= 12341 || (c < 12353 - ? (c >= 12344 && c <= 12349) - : c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735))))))) - : (c <= 12799 || (c < 42786 - ? (c < 42512 - ? (c < 19968 - ? (c < 12953 - ? c == 12951 - : (c <= 12953 || (c >= 13312 && c <= 19903))) - : (c <= 42124 || (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508))) - : (c <= 42527 || (c < 42623 - ? (c < 42560 - ? (c >= 42538 && c <= 42539) - : c <= 42606) - : (c <= 42653 || (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783))))) - : (c <= 42888 || (c < 43011 - ? (c < 42963 - ? (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961) - : (c <= 42963 || (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c < 43250 - ? (c >= 43138 && c <= 43187) - : c <= 43255))))))))))))))) - : (c <= 43259 || (c < 72203 - ? (c < 67456 - ? (c < 64914 - ? (c < 43785 - ? (c < 43616 - ? (c < 43488 - ? (c < 43360 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471))) - : (c <= 43492 || (c < 43520 - ? (c < 43514 - ? (c >= 43494 && c <= 43503) - : c <= 43518) - : (c <= 43560 || (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595))))) - : (c <= 43638 || (c < 43712 - ? (c < 43697 - ? (c < 43646 - ? c == 43642 - : c <= 43695) - : (c <= 43697 || (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709))) - : (c <= 43712 || (c < 43744 - ? (c < 43739 - ? c == 43714 - : c <= 43741) - : (c <= 43754 || (c < 43777 - ? (c >= 43762 && c <= 43764) - : c <= 43782))))))) - : (c <= 43790 || (c < 64275 - ? (c < 44032 - ? (c < 43824 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44002))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64320 - ? (c < 64298 - ? (c < 64287 - ? c == 64285 - : c <= 64296) - : (c <= 64310 || (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318))) - : (c <= 64321 || (c < 64467 - ? (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))))))) - : (c <= 64967 || (c < 66176 - ? (c < 65474 - ? (c < 65149 - ? (c < 65143 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : (c <= 65137 || c == 65139)) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470))))) - : (c <= 65479 || (c < 65576 - ? (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574))) - : (c <= 65594 || (c < 65616 - ? (c < 65599 - ? (c >= 65596 && c <= 65597) - : c <= 65613) - : (c <= 65629 || (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908))))))) - : (c <= 66204 || (c < 66864 - ? (c < 66504 - ? (c < 66384 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : (c <= 66335 || (c >= 66349 && c <= 66378))) - : (c <= 66421 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))) - : (c <= 66511 || (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))))) - : (c <= 66915 || (c < 66979 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))))))))))) - : (c <= 67461 || (c < 70006 - ? (c < 68352 - ? (c < 67840 - ? (c < 67644 - ? (c < 67592 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : (c <= 67514 || (c >= 67584 && c <= 67589))) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))) - : (c <= 67861 || (c < 68117 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68112 - ? c == 68096 - : c <= 68115))) - : (c <= 68119 || (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324))))))) - : (c <= 68405 || (c < 69488 - ? (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68899 || (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))))) - : (c <= 69505 || (c < 69763 - ? (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c < 69749 - ? (c >= 69745 && c <= 69746) - : c <= 69749))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || (c < 69968 - ? c == 69959 - : c <= 70002))))))))) - : (c <= 70006 || (c < 70784 - ? (c < 70405 - ? (c < 70272 - ? (c < 70108 - ? (c < 70081 - ? (c >= 70019 && c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187))) - : (c <= 70278 || (c < 70287 - ? (c < 70282 - ? c == 70280 - : c <= 70285) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366))))) - : (c <= 70412 || (c < 70461 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c < 70751 - ? (c >= 70727 && c <= 70730) - : c <= 70753))))))) - : (c <= 70831 || (c < 71935 - ? (c < 71296 - ? (c < 71128 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : (c <= 70855 || (c >= 71040 && c <= 71086))) - : (c <= 71131 || (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236))) - : (c <= 71338 || (c < 71488 - ? (c < 71424 - ? c == 71352 - : c <= 71450) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903))))) - : (c <= 71942 || (c < 72001 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999))) - : (c <= 72001 || (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || (c < 72192 - ? c == 72163 - : c <= 72192))))))))))))) - : (c <= 72242 || (c < 126500 - ? (c < 113664 - ? (c < 82944 - ? (c < 73030 - ? (c < 72714 - ? (c < 72349 - ? (c < 72272 - ? c == 72250 - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008))))) - : (c <= 73030 || (c < 73648 - ? (c < 73066 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : c <= 73064) - : (c <= 73097 || (c < 73440 - ? c == 73112 - : c <= 73458))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))) - : (c <= 83526 || (c < 94176 - ? (c < 93027 - ? (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))) - : (c <= 92909 || (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94099 - ? c == 94032 - : c <= 94111))))) - : (c <= 94177 || (c < 110581 - ? (c < 100352 - ? (c < 94208 - ? c == 94179 - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))) - : (c <= 110587 || (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))))))))) - : (c <= 113770 || (c < 120540 - ? (c < 120005 - ? (c < 119970 - ? (c < 119808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : (c <= 113800 || (c >= 113808 && c <= 113817))) - : (c <= 119892 || (c < 119966 - ? (c >= 119894 && c <= 119964) - : c <= 119967))) - : (c <= 119970 || (c < 119982 - ? (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980) - : (c <= 119993 || (c < 119997 - ? c == 119995 - : c <= 120003))))) - : (c <= 120069 || (c < 120128 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126))) - : (c <= 120132 || (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538))))))) - : (c <= 120570 || (c < 123536 - ? (c < 120746 - ? (c < 120656 - ? (c < 120598 - ? (c >= 120572 && c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c < 123214 - ? (c >= 123191 && c <= 123197) - : c <= 123214))))) - : (c <= 123565 || (c < 124928 - ? (c < 124904 - ? (c < 124896 - ? (c >= 123584 && c <= 123627) - : c <= 124902) - : (c <= 124907 || (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926))) - : (c <= 125124 || (c < 126464 - ? (c < 125259 - ? (c >= 125184 && c <= 125251) - : c <= 125259) - : (c <= 126467 || (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498))))))))))) - : (c <= 126500 || (c < 128329 - ? (c < 126592 - ? (c < 126551 - ? (c < 126535 - ? (c < 126521 - ? (c < 126505 - ? c == 126503 - : (c <= 126514 || (c >= 126516 && c <= 126519))) - : (c <= 126521 || (c < 126530 - ? c == 126523 - : c <= 126530))) - : (c <= 126535 || (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548))))) - : (c <= 126551 || (c < 126564 - ? (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || (c < 126561 - ? c == 126559 - : c <= 126562))) - : (c <= 126564 || (c < 126580 - ? (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578) - : (c <= 126583 || (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590))))))) - : (c <= 126601 || (c < 127514 - ? (c < 127344 - ? (c < 126635 - ? (c < 126625 - ? (c >= 126603 && c <= 126619) - : (c <= 126627 || (c >= 126629 && c <= 126633))) - : (c <= 126651 || (c < 127183 - ? c == 126980 - : c <= 127183))) - : (c <= 127345 || (c < 127377 - ? (c < 127374 - ? (c >= 127358 && c <= 127359) - : c <= 127374) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))))) - : (c <= 127514 || (c < 127894 - ? (c < 127568 - ? (c < 127538 - ? c == 127535 - : c <= 127546) - : (c <= 127569 || (c < 127780 - ? (c >= 127744 && c <= 127777) - : c <= 127891))) - : (c <= 127895 || (c < 127987 - ? (c < 127902 - ? (c >= 127897 && c <= 127899) - : c <= 127984) - : (c <= 127989 || (c < 128255 - ? (c >= 127991 && c <= 128253) - : c <= 128317))))))))) - : (c <= 128334 || (c < 128745 - ? (c < 128465 - ? (c < 128405 - ? (c < 128391 - ? (c < 128367 - ? (c >= 128336 && c <= 128359) - : (c <= 128368 || (c >= 128371 && c <= 128378))) - : (c <= 128391 || (c < 128400 - ? (c >= 128394 && c <= 128397) - : c <= 128400))) - : (c <= 128406 || (c < 128433 - ? (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424) - : (c <= 128434 || (c < 128450 - ? c == 128444 - : c <= 128452))))) - : (c <= 128467 || (c < 128499 - ? (c < 128483 - ? (c < 128481 - ? (c >= 128476 && c <= 128478) - : c <= 128481) - : (c <= 128483 || (c < 128495 - ? c == 128488 - : c <= 128495))) - : (c <= 128499 || (c < 128715 - ? (c < 128640 - ? (c >= 128506 && c <= 128591) - : c <= 128709) - : (c <= 128722 || (c < 128733 - ? (c >= 128725 && c <= 128727) - : c <= 128741))))))) - : (c <= 128745 || (c < 129712 - ? (c < 129340 - ? (c < 128992 - ? (c < 128752 - ? (c >= 128747 && c <= 128748) - : (c <= 128752 || (c >= 128755 && c <= 128764))) - : (c <= 129003 || (c < 129292 - ? c == 129008 - : c <= 129338))) - : (c <= 129349 || (c < 129656 - ? (c < 129648 - ? (c >= 129351 && c <= 129535) - : c <= 129652) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129760 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : c <= 129753) - : (c <= 129767 || (c < 131072 - ? (c >= 129776 && c <= 129782) - : c <= 173791))) - : (c <= 177976 || (c < 183984 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : c <= 183969) - : (c <= 191456 || (c < 196608 - ? (c >= 194560 && c <= 195101) - : c <= 201546))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_2(int32_t c) { - return (c < 43250 - ? (c < 5984 - ? (c < 2947 - ? (c < 2160 - ? (c < 1369 - ? (c < 750 - ? (c < 192 - ? (c < 174 - ? (c < 'b' - ? (c >= 'A' && c <= 'Z') - : (c <= 'z' || (c >= 169 && c <= 170))) - : (c <= 174 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748))))) - : (c <= 750 || (c < 908 - ? (c < 895 - ? (c < 886 - ? (c >= 880 && c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 904 - ? c == 902 - : c <= 906))) - : (c <= 908 || (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366))))))) - : (c <= 1369 || (c < 1810 - ? (c < 1749 - ? (c < 1568 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : (c <= 1514 || (c >= 1519 && c <= 1522))) - : (c <= 1610 || (c < 1649 - ? (c >= 1646 && c <= 1647) - : c <= 1747))) - : (c <= 1749 || (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || (c < 1808 - ? c == 1791 - : c <= 1808))))) - : (c <= 1839 || (c < 2048 - ? (c < 1994 - ? (c < 1969 - ? (c >= 1869 && c <= 1957) - : c <= 1969) - : (c <= 2026 || (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042))) - : (c <= 2069 || (c < 2088 - ? (c < 2084 - ? c == 2074 - : c <= 2084) - : (c <= 2088 || (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154))))))))) - : (c <= 2183 || (c < 2613 - ? (c < 2486 - ? (c < 2417 - ? (c < 2365 - ? (c < 2208 - ? (c >= 2185 && c <= 2190) - : (c <= 2249 || (c >= 2308 && c <= 2361))) - : (c <= 2365 || (c < 2392 - ? c == 2384 - : c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482))))) - : (c <= 2489 || (c < 2556 - ? (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545))) - : (c <= 2556 || (c < 2579 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576) - : (c <= 2600 || (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611))))))) - : (c <= 2614 || (c < 2784 - ? (c < 2707 - ? (c < 2674 - ? (c < 2649 - ? (c >= 2616 && c <= 2617) - : (c <= 2652 || c == 2654)) - : (c <= 2676 || (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705))) - : (c <= 2728 || (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))))) - : (c <= 2785 || (c < 2866 - ? (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))) - : (c <= 2867 || (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c < 2929 - ? (c >= 2911 && c <= 2913) - : c <= 2929))))))))))) - : (c <= 2947 || (c < 3751 - ? (c < 3261 - ? (c < 3090 - ? (c < 2979 - ? (c < 2969 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))) - : (c <= 2970 || (c < 2974 - ? c == 2972 - : c <= 2975))) - : (c <= 2980 || (c < 3024 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001) - : (c <= 3024 || (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088))))) - : (c <= 3112 || (c < 3200 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || (c < 3168 - ? c == 3165 - : c <= 3169))) - : (c <= 3200 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))))) - : (c <= 3261 || (c < 3482 - ? (c < 3389 - ? (c < 3332 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : (c <= 3297 || (c >= 3313 && c <= 3314))) - : (c <= 3340 || (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386))) - : (c <= 3389 || (c < 3423 - ? (c < 3412 - ? c == 3406 - : c <= 3414) - : (c <= 3425 || (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478))))) - : (c <= 3505 || (c < 3648 - ? (c < 3520 - ? (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517) - : (c <= 3526 || (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634))) - : (c <= 3654 || (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749))))))))) - : (c <= 3760 || (c < 4688 - ? (c < 4186 - ? (c < 3904 - ? (c < 3782 - ? (c < 3773 - ? c == 3762 - : (c <= 3773 || (c >= 3776 && c <= 3780))) - : (c <= 3782 || (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840))) - : (c <= 3911 || (c < 4096 - ? (c < 3976 - ? (c >= 3913 && c <= 3948) - : c <= 3980) - : (c <= 4138 || (c < 4176 - ? c == 4159 - : c <= 4181))))) - : (c <= 4189 || (c < 4256 - ? (c < 4206 - ? (c < 4197 - ? c == 4193 - : c <= 4198) - : (c <= 4208 || (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4888 - ? (c < 4792 - ? (c < 4746 - ? (c < 4698 - ? c == 4696 - : (c <= 4701 || (c >= 4704 && c <= 4744))) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))))) - : (c <= 4954 || (c < 5761 - ? (c < 5112 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109) - : (c <= 5117 || (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5905 || (c < 5952 - ? (c >= 5919 && c <= 5937) - : c <= 5969))))))))))))) - : (c <= 5996 || (c < 9829 - ? (c < 8178 - ? (c < 7296 - ? (c < 6576 - ? (c < 6314 - ? (c < 6108 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312))) - : (c <= 6314 || (c < 6480 - ? (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430) - : (c <= 6509 || (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571))))) - : (c <= 6601 || (c < 7043 - ? (c < 6823 - ? (c < 6688 - ? (c >= 6656 && c <= 6678) - : c <= 6740) - : (c <= 6823 || (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988))) - : (c <= 7072 || (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c < 7258 - ? (c >= 7245 && c <= 7247) - : c <= 7293))))))) - : (c <= 7304 || (c < 8025 - ? (c < 7424 - ? (c < 7406 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))) - : (c <= 7411 || (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418))) - : (c <= 7615 || (c < 7968 - ? (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))) - : (c <= 8025 || (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))))))) - : (c <= 8180 || (c < 9167 - ? (c < 8484 - ? (c < 8450 - ? (c < 8305 - ? (c < 8252 - ? (c >= 8182 && c <= 8188) - : (c <= 8252 || c == 8265)) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8450 || (c < 8469 - ? (c < 8458 - ? c == 8455 - : c <= 8467) - : (c <= 8469 || (c < 8482 - ? (c >= 8472 && c <= 8477) - : c <= 8482))))) - : (c <= 8484 || (c < 8526 - ? (c < 8490 - ? (c < 8488 - ? c == 8486 - : c <= 8488) - : (c <= 8505 || (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521))) - : (c <= 8526 || (c < 8617 - ? (c < 8596 - ? (c >= 8544 && c <= 8584) - : c <= 8601) - : (c <= 8618 || (c < 9000 - ? (c >= 8986 && c <= 8987) - : c <= 9000))))))) - : (c <= 9167 || (c < 9757 - ? (c < 9723 - ? (c < 9642 - ? (c < 9208 - ? (c >= 9193 && c <= 9203) - : (c <= 9210 || c == 9410)) - : (c <= 9643 || (c < 9664 - ? c == 9654 - : c <= 9664))) - : (c <= 9726 || (c < 9745 - ? (c < 9742 - ? (c >= 9728 && c <= 9732) - : c <= 9742) - : (c <= 9745 || (c < 9752 - ? (c >= 9748 && c <= 9749) - : c <= 9752))))) - : (c <= 9757 || (c < 9784 - ? (c < 9766 - ? (c < 9762 - ? c == 9760 - : c <= 9763) - : (c <= 9766 || (c < 9774 - ? c == 9770 - : c <= 9775))) - : (c <= 9786 || (c < 9800 - ? (c < 9794 - ? c == 9792 - : c <= 9794) - : (c <= 9811 || (c < 9827 - ? (c >= 9823 && c <= 9824) - : c <= 9827))))))))))) - : (c <= 9830 || (c < 11506 - ? (c < 10002 - ? (c < 9928 - ? (c < 9888 - ? (c < 9874 - ? (c < 9851 - ? c == 9832 - : (c <= 9851 || (c >= 9854 && c <= 9855))) - : (c <= 9879 || (c < 9883 - ? c == 9881 - : c <= 9884))) - : (c <= 9889 || (c < 9904 - ? (c < 9898 - ? c == 9895 - : c <= 9899) - : (c <= 9905 || (c < 9924 - ? (c >= 9917 && c <= 9918) - : c <= 9925))))) - : (c <= 9928 || (c < 9975 - ? (c < 9939 - ? (c < 9937 - ? (c >= 9934 && c <= 9935) - : c <= 9937) - : (c <= 9940 || (c < 9968 - ? (c >= 9961 && c <= 9962) - : c <= 9973))) - : (c <= 9978 || (c < 9989 - ? (c < 9986 - ? c == 9981 - : c <= 9986) - : (c <= 9989 || (c < 9999 - ? (c >= 9992 && c <= 9997) - : c <= 9999))))))) - : (c <= 10002 || (c < 10083 - ? (c < 10052 - ? (c < 10017 - ? (c < 10006 - ? c == 10004 - : (c <= 10006 || c == 10013)) - : (c <= 10017 || (c < 10035 - ? c == 10024 - : c <= 10036))) - : (c <= 10052 || (c < 10062 - ? (c < 10060 - ? c == 10055 - : c <= 10060) - : (c <= 10062 || (c < 10071 - ? (c >= 10067 && c <= 10069) - : c <= 10071))))) - : (c <= 10084 || (c < 11013 - ? (c < 10160 - ? (c < 10145 - ? (c >= 10133 && c <= 10135) - : c <= 10145) - : (c <= 10160 || (c < 10548 - ? c == 10175 - : c <= 10549))) - : (c <= 11015 || (c < 11093 - ? (c < 11088 - ? (c >= 11035 && c <= 11036) - : c <= 11088) - : (c <= 11093 || (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502))))))))) - : (c <= 11507 || (c < 12704 - ? (c < 11728 - ? (c < 11680 - ? (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))))) - : (c <= 11734 || (c < 12353 - ? (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c < 12344 - ? (c >= 12336 && c <= 12341) - : c <= 12349))) - : (c <= 12438 || (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))))))) - : (c <= 12735 || (c < 42775 - ? (c < 42240 - ? (c < 13312 - ? (c < 12951 - ? (c >= 12784 && c <= 12799) - : (c <= 12951 || c == 12953)) - : (c <= 19903 || (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237))) - : (c <= 42508 || (c < 42560 - ? (c < 42538 - ? (c >= 42512 && c <= 42527) - : c <= 42539) - : (c <= 42606 || (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735))))) - : (c <= 42783 || (c < 42994 - ? (c < 42960 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42954) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43009 || (c < 43020 - ? (c < 43015 - ? (c >= 43011 && c <= 43013) - : c <= 43018) - : (c <= 43042 || (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187))))))))))))))) - : (c <= 43255 || (c < 72203 - ? (c < 67456 - ? (c < 64914 - ? (c < 43785 - ? (c < 43588 - ? (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : (c <= 43262 || (c >= 43274 && c <= 43301))) - : (c <= 43334 || (c < 43396 - ? (c >= 43360 && c <= 43388) - : c <= 43442))) - : (c <= 43471 || (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586))))) - : (c <= 43595 || (c < 43712 - ? (c < 43697 - ? (c < 43642 - ? (c >= 43616 && c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))) - : (c <= 43697 || (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709))) - : (c <= 43712 || (c < 43744 - ? (c < 43739 - ? c == 43714 - : c <= 43741) - : (c <= 43754 || (c < 43777 - ? (c >= 43762 && c <= 43764) - : c <= 43782))))))) - : (c <= 43790 || (c < 64275 - ? (c < 44032 - ? (c < 43824 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44002))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64320 - ? (c < 64298 - ? (c < 64287 - ? c == 64285 - : c <= 64296) - : (c <= 64310 || (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318))) - : (c <= 64321 || (c < 64467 - ? (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))))))) - : (c <= 64967 || (c < 66176 - ? (c < 65474 - ? (c < 65149 - ? (c < 65143 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : (c <= 65137 || c == 65139)) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470))))) - : (c <= 65479 || (c < 65576 - ? (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574))) - : (c <= 65594 || (c < 65616 - ? (c < 65599 - ? (c >= 65596 && c <= 65597) - : c <= 65613) - : (c <= 65629 || (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908))))))) - : (c <= 66204 || (c < 66864 - ? (c < 66504 - ? (c < 66384 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : (c <= 66335 || (c >= 66349 && c <= 66378))) - : (c <= 66421 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))) - : (c <= 66511 || (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))))) - : (c <= 66915 || (c < 66979 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))))))))))) - : (c <= 67461 || (c < 70006 - ? (c < 68352 - ? (c < 67840 - ? (c < 67644 - ? (c < 67592 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : (c <= 67514 || (c >= 67584 && c <= 67589))) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))) - : (c <= 67861 || (c < 68117 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68112 - ? c == 68096 - : c <= 68115))) - : (c <= 68119 || (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324))))))) - : (c <= 68405 || (c < 69488 - ? (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68899 || (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))))) - : (c <= 69505 || (c < 69763 - ? (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c < 69749 - ? (c >= 69745 && c <= 69746) - : c <= 69749))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || (c < 69968 - ? c == 69959 - : c <= 70002))))))))) - : (c <= 70006 || (c < 70784 - ? (c < 70405 - ? (c < 70272 - ? (c < 70108 - ? (c < 70081 - ? (c >= 70019 && c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187))) - : (c <= 70278 || (c < 70287 - ? (c < 70282 - ? c == 70280 - : c <= 70285) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366))))) - : (c <= 70412 || (c < 70461 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c < 70751 - ? (c >= 70727 && c <= 70730) - : c <= 70753))))))) - : (c <= 70831 || (c < 71935 - ? (c < 71296 - ? (c < 71128 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : (c <= 70855 || (c >= 71040 && c <= 71086))) - : (c <= 71131 || (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236))) - : (c <= 71338 || (c < 71488 - ? (c < 71424 - ? c == 71352 - : c <= 71450) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903))))) - : (c <= 71942 || (c < 72001 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999))) - : (c <= 72001 || (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || (c < 72192 - ? c == 72163 - : c <= 72192))))))))))))) - : (c <= 72242 || (c < 126500 - ? (c < 113664 - ? (c < 82944 - ? (c < 73030 - ? (c < 72714 - ? (c < 72349 - ? (c < 72272 - ? c == 72250 - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008))))) - : (c <= 73030 || (c < 73648 - ? (c < 73066 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : c <= 73064) - : (c <= 73097 || (c < 73440 - ? c == 73112 - : c <= 73458))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))) - : (c <= 83526 || (c < 94176 - ? (c < 93027 - ? (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))) - : (c <= 92909 || (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94099 - ? c == 94032 - : c <= 94111))))) - : (c <= 94177 || (c < 110581 - ? (c < 100352 - ? (c < 94208 - ? c == 94179 - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))) - : (c <= 110587 || (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))))))))) - : (c <= 113770 || (c < 120540 - ? (c < 120005 - ? (c < 119970 - ? (c < 119808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : (c <= 113800 || (c >= 113808 && c <= 113817))) - : (c <= 119892 || (c < 119966 - ? (c >= 119894 && c <= 119964) - : c <= 119967))) - : (c <= 119970 || (c < 119982 - ? (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980) - : (c <= 119993 || (c < 119997 - ? c == 119995 - : c <= 120003))))) - : (c <= 120069 || (c < 120128 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126))) - : (c <= 120132 || (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538))))))) - : (c <= 120570 || (c < 123536 - ? (c < 120746 - ? (c < 120656 - ? (c < 120598 - ? (c >= 120572 && c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c < 123214 - ? (c >= 123191 && c <= 123197) - : c <= 123214))))) - : (c <= 123565 || (c < 124928 - ? (c < 124904 - ? (c < 124896 - ? (c >= 123584 && c <= 123627) - : c <= 124902) - : (c <= 124907 || (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926))) - : (c <= 125124 || (c < 126464 - ? (c < 125259 - ? (c >= 125184 && c <= 125251) - : c <= 125259) - : (c <= 126467 || (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498))))))))))) - : (c <= 126500 || (c < 128329 - ? (c < 126592 - ? (c < 126551 - ? (c < 126535 - ? (c < 126521 - ? (c < 126505 - ? c == 126503 - : (c <= 126514 || (c >= 126516 && c <= 126519))) - : (c <= 126521 || (c < 126530 - ? c == 126523 - : c <= 126530))) - : (c <= 126535 || (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548))))) - : (c <= 126551 || (c < 126564 - ? (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || (c < 126561 - ? c == 126559 - : c <= 126562))) - : (c <= 126564 || (c < 126580 - ? (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578) - : (c <= 126583 || (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590))))))) - : (c <= 126601 || (c < 127514 - ? (c < 127344 - ? (c < 126635 - ? (c < 126625 - ? (c >= 126603 && c <= 126619) - : (c <= 126627 || (c >= 126629 && c <= 126633))) - : (c <= 126651 || (c < 127183 - ? c == 126980 - : c <= 127183))) - : (c <= 127345 || (c < 127377 - ? (c < 127374 - ? (c >= 127358 && c <= 127359) - : c <= 127374) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))))) - : (c <= 127514 || (c < 127894 - ? (c < 127568 - ? (c < 127538 - ? c == 127535 - : c <= 127546) - : (c <= 127569 || (c < 127780 - ? (c >= 127744 && c <= 127777) - : c <= 127891))) - : (c <= 127895 || (c < 127987 - ? (c < 127902 - ? (c >= 127897 && c <= 127899) - : c <= 127984) - : (c <= 127989 || (c < 128255 - ? (c >= 127991 && c <= 128253) - : c <= 128317))))))))) - : (c <= 128334 || (c < 128745 - ? (c < 128465 - ? (c < 128405 - ? (c < 128391 - ? (c < 128367 - ? (c >= 128336 && c <= 128359) - : (c <= 128368 || (c >= 128371 && c <= 128378))) - : (c <= 128391 || (c < 128400 - ? (c >= 128394 && c <= 128397) - : c <= 128400))) - : (c <= 128406 || (c < 128433 - ? (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424) - : (c <= 128434 || (c < 128450 - ? c == 128444 - : c <= 128452))))) - : (c <= 128467 || (c < 128499 - ? (c < 128483 - ? (c < 128481 - ? (c >= 128476 && c <= 128478) - : c <= 128481) - : (c <= 128483 || (c < 128495 - ? c == 128488 - : c <= 128495))) - : (c <= 128499 || (c < 128715 - ? (c < 128640 - ? (c >= 128506 && c <= 128591) - : c <= 128709) - : (c <= 128722 || (c < 128733 - ? (c >= 128725 && c <= 128727) - : c <= 128741))))))) - : (c <= 128745 || (c < 129712 - ? (c < 129340 - ? (c < 128992 - ? (c < 128752 - ? (c >= 128747 && c <= 128748) - : (c <= 128752 || (c >= 128755 && c <= 128764))) - : (c <= 129003 || (c < 129292 - ? c == 129008 - : c <= 129338))) - : (c <= 129349 || (c < 129656 - ? (c < 129648 - ? (c >= 129351 && c <= 129535) - : c <= 129652) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129760 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : c <= 129753) - : (c <= 129767 || (c < 131072 - ? (c >= 129776 && c <= 129782) - : c <= 173791))) - : (c <= 177976 || (c < 183984 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : c <= 183969) - : (c <= 191456 || (c < 196608 - ? (c >= 194560 && c <= 195101) - : c <= 201546))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_3(int32_t c) { - return (c < 43250 - ? (c < 5984 - ? (c < 2947 - ? (c < 2160 - ? (c < 1369 - ? (c < 750 - ? (c < 192 - ? (c < 174 - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : (c <= 'z' || (c >= 169 && c <= 170))) - : (c <= 174 || (c < 186 - ? c == 181 - : c <= 186))) - : (c <= 214 || (c < 710 - ? (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705) - : (c <= 721 || (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748))))) - : (c <= 750 || (c < 908 - ? (c < 895 - ? (c < 886 - ? (c >= 880 && c <= 884) - : (c <= 887 || (c >= 891 && c <= 893))) - : (c <= 895 || (c < 904 - ? c == 902 - : c <= 906))) - : (c <= 908 || (c < 1015 - ? (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013) - : (c <= 1153 || (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366))))))) - : (c <= 1369 || (c < 1810 - ? (c < 1749 - ? (c < 1568 - ? (c < 1488 - ? (c >= 1376 && c <= 1416) - : (c <= 1514 || (c >= 1519 && c <= 1522))) - : (c <= 1610 || (c < 1649 - ? (c >= 1646 && c <= 1647) - : c <= 1747))) - : (c <= 1749 || (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || (c < 1808 - ? c == 1791 - : c <= 1808))))) - : (c <= 1839 || (c < 2048 - ? (c < 1994 - ? (c < 1969 - ? (c >= 1869 && c <= 1957) - : c <= 1969) - : (c <= 2026 || (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042))) - : (c <= 2069 || (c < 2088 - ? (c < 2084 - ? c == 2074 - : c <= 2084) - : (c <= 2088 || (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154))))))))) - : (c <= 2183 || (c < 2613 - ? (c < 2486 - ? (c < 2417 - ? (c < 2365 - ? (c < 2208 - ? (c >= 2185 && c <= 2190) - : (c <= 2249 || (c >= 2308 && c <= 2361))) - : (c <= 2365 || (c < 2392 - ? c == 2384 - : c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c < 2482 - ? (c >= 2474 && c <= 2480) - : c <= 2482))))) - : (c <= 2489 || (c < 2556 - ? (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c < 2544 - ? (c >= 2527 && c <= 2529) - : c <= 2545))) - : (c <= 2556 || (c < 2579 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576) - : (c <= 2600 || (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611))))))) - : (c <= 2614 || (c < 2784 - ? (c < 2707 - ? (c < 2674 - ? (c < 2649 - ? (c >= 2616 && c <= 2617) - : (c <= 2652 || c == 2654)) - : (c <= 2676 || (c < 2703 - ? (c >= 2693 && c <= 2701) - : c <= 2705))) - : (c <= 2728 || (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2768 - ? c == 2749 - : c <= 2768))))) - : (c <= 2785 || (c < 2866 - ? (c < 2831 - ? (c < 2821 - ? c == 2809 - : c <= 2828) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))) - : (c <= 2867 || (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c < 2929 - ? (c >= 2911 && c <= 2913) - : c <= 2929))))))))))) - : (c <= 2947 || (c < 3751 - ? (c < 3261 - ? (c < 3090 - ? (c < 2979 - ? (c < 2969 - ? (c < 2958 - ? (c >= 2949 && c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))) - : (c <= 2970 || (c < 2974 - ? c == 2972 - : c <= 2975))) - : (c <= 2980 || (c < 3024 - ? (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001) - : (c <= 3024 || (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088))))) - : (c <= 3112 || (c < 3200 - ? (c < 3160 - ? (c < 3133 - ? (c >= 3114 && c <= 3129) - : c <= 3133) - : (c <= 3162 || (c < 3168 - ? c == 3165 - : c <= 3169))) - : (c <= 3200 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))))) - : (c <= 3261 || (c < 3482 - ? (c < 3389 - ? (c < 3332 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : (c <= 3297 || (c >= 3313 && c <= 3314))) - : (c <= 3340 || (c < 3346 - ? (c >= 3342 && c <= 3344) - : c <= 3386))) - : (c <= 3389 || (c < 3423 - ? (c < 3412 - ? c == 3406 - : c <= 3414) - : (c <= 3425 || (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478))))) - : (c <= 3505 || (c < 3648 - ? (c < 3520 - ? (c < 3517 - ? (c >= 3507 && c <= 3515) - : c <= 3517) - : (c <= 3526 || (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634))) - : (c <= 3654 || (c < 3718 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716) - : (c <= 3722 || (c < 3749 - ? (c >= 3724 && c <= 3747) - : c <= 3749))))))))) - : (c <= 3760 || (c < 4688 - ? (c < 4186 - ? (c < 3904 - ? (c < 3782 - ? (c < 3773 - ? c == 3762 - : (c <= 3773 || (c >= 3776 && c <= 3780))) - : (c <= 3782 || (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840))) - : (c <= 3911 || (c < 4096 - ? (c < 3976 - ? (c >= 3913 && c <= 3948) - : c <= 3980) - : (c <= 4138 || (c < 4176 - ? c == 4159 - : c <= 4181))))) - : (c <= 4189 || (c < 4256 - ? (c < 4206 - ? (c < 4197 - ? c == 4193 - : c <= 4198) - : (c <= 4208 || (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238))) - : (c <= 4293 || (c < 4304 - ? (c < 4301 - ? c == 4295 - : c <= 4301) - : (c <= 4346 || (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685))))))) - : (c <= 4694 || (c < 4888 - ? (c < 4792 - ? (c < 4746 - ? (c < 4698 - ? c == 4696 - : (c <= 4701 || (c >= 4704 && c <= 4744))) - : (c <= 4749 || (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))))) - : (c <= 4954 || (c < 5761 - ? (c < 5112 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109) - : (c <= 5117 || (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5905 || (c < 5952 - ? (c >= 5919 && c <= 5937) - : c <= 5969))))))))))))) - : (c <= 5996 || (c < 9829 - ? (c < 8178 - ? (c < 7296 - ? (c < 6576 - ? (c < 6314 - ? (c < 6108 - ? (c < 6016 - ? (c >= 5998 && c <= 6000) - : (c <= 6067 || c == 6103)) - : (c <= 6108 || (c < 6272 - ? (c >= 6176 && c <= 6264) - : c <= 6312))) - : (c <= 6314 || (c < 6480 - ? (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430) - : (c <= 6509 || (c < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571))))) - : (c <= 6601 || (c < 7043 - ? (c < 6823 - ? (c < 6688 - ? (c >= 6656 && c <= 6678) - : c <= 6740) - : (c <= 6823 || (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988))) - : (c <= 7072 || (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c < 7258 - ? (c >= 7245 && c <= 7247) - : c <= 7293))))))) - : (c <= 7304 || (c < 8025 - ? (c < 7424 - ? (c < 7406 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))) - : (c <= 7411 || (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418))) - : (c <= 7615 || (c < 7968 - ? (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))) - : (c <= 8025 || (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))))))) - : (c <= 8180 || (c < 9167 - ? (c < 8484 - ? (c < 8450 - ? (c < 8305 - ? (c < 8252 - ? (c >= 8182 && c <= 8188) - : (c <= 8252 || c == 8265)) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8450 || (c < 8469 - ? (c < 8458 - ? c == 8455 - : c <= 8467) - : (c <= 8469 || (c < 8482 - ? (c >= 8472 && c <= 8477) - : c <= 8482))))) - : (c <= 8484 || (c < 8526 - ? (c < 8490 - ? (c < 8488 - ? c == 8486 - : c <= 8488) - : (c <= 8505 || (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521))) - : (c <= 8526 || (c < 8617 - ? (c < 8596 - ? (c >= 8544 && c <= 8584) - : c <= 8601) - : (c <= 8618 || (c < 9000 - ? (c >= 8986 && c <= 8987) - : c <= 9000))))))) - : (c <= 9167 || (c < 9757 - ? (c < 9723 - ? (c < 9642 - ? (c < 9208 - ? (c >= 9193 && c <= 9203) - : (c <= 9210 || c == 9410)) - : (c <= 9643 || (c < 9664 - ? c == 9654 - : c <= 9664))) - : (c <= 9726 || (c < 9745 - ? (c < 9742 - ? (c >= 9728 && c <= 9732) - : c <= 9742) - : (c <= 9745 || (c < 9752 - ? (c >= 9748 && c <= 9749) - : c <= 9752))))) - : (c <= 9757 || (c < 9784 - ? (c < 9766 - ? (c < 9762 - ? c == 9760 - : c <= 9763) - : (c <= 9766 || (c < 9774 - ? c == 9770 - : c <= 9775))) - : (c <= 9786 || (c < 9800 - ? (c < 9794 - ? c == 9792 - : c <= 9794) - : (c <= 9811 || (c < 9827 - ? (c >= 9823 && c <= 9824) - : c <= 9827))))))))))) - : (c <= 9830 || (c < 11506 - ? (c < 10002 - ? (c < 9928 - ? (c < 9888 - ? (c < 9874 - ? (c < 9851 - ? c == 9832 - : (c <= 9851 || (c >= 9854 && c <= 9855))) - : (c <= 9879 || (c < 9883 - ? c == 9881 - : c <= 9884))) - : (c <= 9889 || (c < 9904 - ? (c < 9898 - ? c == 9895 - : c <= 9899) - : (c <= 9905 || (c < 9924 - ? (c >= 9917 && c <= 9918) - : c <= 9925))))) - : (c <= 9928 || (c < 9975 - ? (c < 9939 - ? (c < 9937 - ? (c >= 9934 && c <= 9935) - : c <= 9937) - : (c <= 9940 || (c < 9968 - ? (c >= 9961 && c <= 9962) - : c <= 9973))) - : (c <= 9978 || (c < 9989 - ? (c < 9986 - ? c == 9981 - : c <= 9986) - : (c <= 9989 || (c < 9999 - ? (c >= 9992 && c <= 9997) - : c <= 9999))))))) - : (c <= 10002 || (c < 10083 - ? (c < 10052 - ? (c < 10017 - ? (c < 10006 - ? c == 10004 - : (c <= 10006 || c == 10013)) - : (c <= 10017 || (c < 10035 - ? c == 10024 - : c <= 10036))) - : (c <= 10052 || (c < 10062 - ? (c < 10060 - ? c == 10055 - : c <= 10060) - : (c <= 10062 || (c < 10071 - ? (c >= 10067 && c <= 10069) - : c <= 10071))))) - : (c <= 10084 || (c < 11013 - ? (c < 10160 - ? (c < 10145 - ? (c >= 10133 && c <= 10135) - : c <= 10145) - : (c <= 10160 || (c < 10548 - ? c == 10175 - : c <= 10549))) - : (c <= 11015 || (c < 11093 - ? (c < 11088 - ? (c >= 11035 && c <= 11036) - : c <= 11088) - : (c <= 11093 || (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502))))))))) - : (c <= 11507 || (c < 12704 - ? (c < 11728 - ? (c < 11680 - ? (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))))) - : (c <= 11734 || (c < 12353 - ? (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c < 12344 - ? (c >= 12336 && c <= 12341) - : c <= 12349))) - : (c <= 12438 || (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))))))) - : (c <= 12735 || (c < 42775 - ? (c < 42240 - ? (c < 13312 - ? (c < 12951 - ? (c >= 12784 && c <= 12799) - : (c <= 12951 || c == 12953)) - : (c <= 19903 || (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237))) - : (c <= 42508 || (c < 42560 - ? (c < 42538 - ? (c >= 42512 && c <= 42527) - : c <= 42539) - : (c <= 42606 || (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735))))) - : (c <= 42783 || (c < 42994 - ? (c < 42960 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42954) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43009 || (c < 43020 - ? (c < 43015 - ? (c >= 43011 && c <= 43013) - : c <= 43018) - : (c <= 43042 || (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187))))))))))))))) - : (c <= 43255 || (c < 72203 - ? (c < 67456 - ? (c < 64914 - ? (c < 43785 - ? (c < 43588 - ? (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : (c <= 43262 || (c >= 43274 && c <= 43301))) - : (c <= 43334 || (c < 43396 - ? (c >= 43360 && c <= 43388) - : c <= 43442))) - : (c <= 43471 || (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586))))) - : (c <= 43595 || (c < 43712 - ? (c < 43697 - ? (c < 43642 - ? (c >= 43616 && c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))) - : (c <= 43697 || (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709))) - : (c <= 43712 || (c < 43744 - ? (c < 43739 - ? c == 43714 - : c <= 43741) - : (c <= 43754 || (c < 43777 - ? (c >= 43762 && c <= 43764) - : c <= 43782))))))) - : (c <= 43790 || (c < 64275 - ? (c < 44032 - ? (c < 43824 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44002))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64320 - ? (c < 64298 - ? (c < 64287 - ? c == 64285 - : c <= 64296) - : (c <= 64310 || (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318))) - : (c <= 64321 || (c < 64467 - ? (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))))))) - : (c <= 64967 || (c < 66176 - ? (c < 65474 - ? (c < 65149 - ? (c < 65143 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : (c <= 65137 || c == 65139)) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470))))) - : (c <= 65479 || (c < 65576 - ? (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574))) - : (c <= 65594 || (c < 65616 - ? (c < 65599 - ? (c >= 65596 && c <= 65597) - : c <= 65613) - : (c <= 65629 || (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908))))))) - : (c <= 66204 || (c < 66864 - ? (c < 66504 - ? (c < 66384 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : (c <= 66335 || (c >= 66349 && c <= 66378))) - : (c <= 66421 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))) - : (c <= 66511 || (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))))) - : (c <= 66915 || (c < 66979 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))))))))))) - : (c <= 67461 || (c < 70006 - ? (c < 68352 - ? (c < 67840 - ? (c < 67644 - ? (c < 67592 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : (c <= 67514 || (c >= 67584 && c <= 67589))) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))) - : (c <= 67861 || (c < 68117 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68112 - ? c == 68096 - : c <= 68115))) - : (c <= 68119 || (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324))))))) - : (c <= 68405 || (c < 69488 - ? (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68899 || (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))))) - : (c <= 69505 || (c < 69763 - ? (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c < 69749 - ? (c >= 69745 && c <= 69746) - : c <= 69749))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || (c < 69968 - ? c == 69959 - : c <= 70002))))))))) - : (c <= 70006 || (c < 70784 - ? (c < 70405 - ? (c < 70272 - ? (c < 70108 - ? (c < 70081 - ? (c >= 70019 && c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187))) - : (c <= 70278 || (c < 70287 - ? (c < 70282 - ? c == 70280 - : c <= 70285) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366))))) - : (c <= 70412 || (c < 70461 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c < 70751 - ? (c >= 70727 && c <= 70730) - : c <= 70753))))))) - : (c <= 70831 || (c < 71935 - ? (c < 71296 - ? (c < 71128 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : (c <= 70855 || (c >= 71040 && c <= 71086))) - : (c <= 71131 || (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236))) - : (c <= 71338 || (c < 71488 - ? (c < 71424 - ? c == 71352 - : c <= 71450) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903))))) - : (c <= 71942 || (c < 72001 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999))) - : (c <= 72001 || (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || (c < 72192 - ? c == 72163 - : c <= 72192))))))))))))) - : (c <= 72242 || (c < 126500 - ? (c < 113664 - ? (c < 82944 - ? (c < 73030 - ? (c < 72714 - ? (c < 72349 - ? (c < 72272 - ? c == 72250 - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008))))) - : (c <= 73030 || (c < 73648 - ? (c < 73066 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : c <= 73064) - : (c <= 73097 || (c < 73440 - ? c == 73112 - : c <= 73458))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))) - : (c <= 83526 || (c < 94176 - ? (c < 93027 - ? (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))) - : (c <= 92909 || (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94099 - ? c == 94032 - : c <= 94111))))) - : (c <= 94177 || (c < 110581 - ? (c < 100352 - ? (c < 94208 - ? c == 94179 - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))) - : (c <= 110587 || (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))))))))) - : (c <= 113770 || (c < 120540 - ? (c < 120005 - ? (c < 119970 - ? (c < 119808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : (c <= 113800 || (c >= 113808 && c <= 113817))) - : (c <= 119892 || (c < 119966 - ? (c >= 119894 && c <= 119964) - : c <= 119967))) - : (c <= 119970 || (c < 119982 - ? (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980) - : (c <= 119993 || (c < 119997 - ? c == 119995 - : c <= 120003))))) - : (c <= 120069 || (c < 120128 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126))) - : (c <= 120132 || (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538))))))) - : (c <= 120570 || (c < 123536 - ? (c < 120746 - ? (c < 120656 - ? (c < 120598 - ? (c >= 120572 && c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c < 123214 - ? (c >= 123191 && c <= 123197) - : c <= 123214))))) - : (c <= 123565 || (c < 124928 - ? (c < 124904 - ? (c < 124896 - ? (c >= 123584 && c <= 123627) - : c <= 124902) - : (c <= 124907 || (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926))) - : (c <= 125124 || (c < 126464 - ? (c < 125259 - ? (c >= 125184 && c <= 125251) - : c <= 125259) - : (c <= 126467 || (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498))))))))))) - : (c <= 126500 || (c < 128329 - ? (c < 126592 - ? (c < 126551 - ? (c < 126535 - ? (c < 126521 - ? (c < 126505 - ? c == 126503 - : (c <= 126514 || (c >= 126516 && c <= 126519))) - : (c <= 126521 || (c < 126530 - ? c == 126523 - : c <= 126530))) - : (c <= 126535 || (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548))))) - : (c <= 126551 || (c < 126564 - ? (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || (c < 126561 - ? c == 126559 - : c <= 126562))) - : (c <= 126564 || (c < 126580 - ? (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578) - : (c <= 126583 || (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590))))))) - : (c <= 126601 || (c < 127514 - ? (c < 127344 - ? (c < 126635 - ? (c < 126625 - ? (c >= 126603 && c <= 126619) - : (c <= 126627 || (c >= 126629 && c <= 126633))) - : (c <= 126651 || (c < 127183 - ? c == 126980 - : c <= 127183))) - : (c <= 127345 || (c < 127377 - ? (c < 127374 - ? (c >= 127358 && c <= 127359) - : c <= 127374) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))))) - : (c <= 127514 || (c < 127894 - ? (c < 127568 - ? (c < 127538 - ? c == 127535 - : c <= 127546) - : (c <= 127569 || (c < 127780 - ? (c >= 127744 && c <= 127777) - : c <= 127891))) - : (c <= 127895 || (c < 127987 - ? (c < 127902 - ? (c >= 127897 && c <= 127899) - : c <= 127984) - : (c <= 127989 || (c < 128255 - ? (c >= 127991 && c <= 128253) - : c <= 128317))))))))) - : (c <= 128334 || (c < 128745 - ? (c < 128465 - ? (c < 128405 - ? (c < 128391 - ? (c < 128367 - ? (c >= 128336 && c <= 128359) - : (c <= 128368 || (c >= 128371 && c <= 128378))) - : (c <= 128391 || (c < 128400 - ? (c >= 128394 && c <= 128397) - : c <= 128400))) - : (c <= 128406 || (c < 128433 - ? (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424) - : (c <= 128434 || (c < 128450 - ? c == 128444 - : c <= 128452))))) - : (c <= 128467 || (c < 128499 - ? (c < 128483 - ? (c < 128481 - ? (c >= 128476 && c <= 128478) - : c <= 128481) - : (c <= 128483 || (c < 128495 - ? c == 128488 - : c <= 128495))) - : (c <= 128499 || (c < 128715 - ? (c < 128640 - ? (c >= 128506 && c <= 128591) - : c <= 128709) - : (c <= 128722 || (c < 128733 - ? (c >= 128725 && c <= 128727) - : c <= 128741))))))) - : (c <= 128745 || (c < 129712 - ? (c < 129340 - ? (c < 128992 - ? (c < 128752 - ? (c >= 128747 && c <= 128748) - : (c <= 128752 || (c >= 128755 && c <= 128764))) - : (c <= 129003 || (c < 129292 - ? c == 129008 - : c <= 129338))) - : (c <= 129349 || (c < 129656 - ? (c < 129648 - ? (c >= 129351 && c <= 129535) - : c <= 129652) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129760 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : c <= 129753) - : (c <= 129767 || (c < 131072 - ? (c >= 129776 && c <= 129782) - : c <= 173791))) - : (c <= 177976 || (c < 183984 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : c <= 183969) - : (c <= 191456 || (c < 196608 - ? (c >= 194560 && c <= 195101) - : c <= 201546))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_4(int32_t c) { - return (c < 43259 - ? (c < 5998 - ? (c < 2949 - ? (c < 2185 - ? (c < 1376 - ? (c < 886 - ? (c < 248 - ? (c < 186 - ? (c < 174 - ? (c >= 169 && c <= 170) - : (c <= 174 || c == 181)) - : (c <= 186 || (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246))) - : (c <= 705 || (c < 748 - ? (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740) - : (c <= 748 || (c < 880 - ? c == 750 - : c <= 884))))) - : (c <= 887 || (c < 910 - ? (c < 902 - ? (c < 895 - ? (c >= 891 && c <= 893) - : c <= 895) - : (c <= 902 || (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908))) - : (c <= 929 || (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))))))) - : (c <= 1416 || (c < 1869 - ? (c < 1765 - ? (c < 1646 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : (c <= 1522 || (c >= 1568 && c <= 1610))) - : (c <= 1647 || (c < 1749 - ? (c >= 1649 && c <= 1747) - : c <= 1749))) - : (c <= 1766 || (c < 1791 - ? (c < 1786 - ? (c >= 1774 && c <= 1775) - : c <= 1788) - : (c <= 1791 || (c < 1810 - ? c == 1808 - : c <= 1839))))) - : (c <= 1957 || (c < 2074 - ? (c < 2036 - ? (c < 1994 - ? c == 1969 - : c <= 2026) - : (c <= 2037 || (c < 2048 - ? c == 2042 - : c <= 2069))) - : (c <= 2074 || (c < 2112 - ? (c < 2088 - ? c == 2084 - : c <= 2088) - : (c <= 2136 || (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183))))))))) - : (c <= 2190 || (c < 2616 - ? (c < 2493 - ? (c < 2437 - ? (c < 2384 - ? (c < 2308 - ? (c >= 2208 && c <= 2249) - : (c <= 2361 || c == 2365)) - : (c <= 2384 || (c < 2417 - ? (c >= 2392 && c <= 2401) - : c <= 2432))) - : (c <= 2444 || (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || (c < 2486 - ? c == 2482 - : c <= 2489))))) - : (c <= 2493 || (c < 2565 - ? (c < 2527 - ? (c < 2524 - ? c == 2510 - : c <= 2525) - : (c <= 2529 || (c < 2556 - ? (c >= 2544 && c <= 2545) - : c <= 2556))) - : (c <= 2570 || (c < 2602 - ? (c < 2579 - ? (c >= 2575 && c <= 2576) - : c <= 2600) - : (c <= 2608 || (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614))))))) - : (c <= 2617 || (c < 2809 - ? (c < 2730 - ? (c < 2693 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : (c <= 2654 || (c >= 2674 && c <= 2676))) - : (c <= 2701 || (c < 2707 - ? (c >= 2703 && c <= 2705) - : c <= 2728))) - : (c <= 2736 || (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))))) - : (c <= 2809 || (c < 2869 - ? (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867))) - : (c <= 2873 || (c < 2911 - ? (c < 2908 - ? c == 2877 - : c <= 2909) - : (c <= 2913 || (c < 2947 - ? c == 2929 - : c <= 2947))))))))))) - : (c <= 2954 || (c < 3762 - ? (c < 3293 - ? (c < 3114 - ? (c < 2984 - ? (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))) - : (c <= 2986 || (c < 3077 - ? (c < 3024 - ? (c >= 2990 && c <= 3001) - : c <= 3024) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))))) - : (c <= 3129 || (c < 3205 - ? (c < 3165 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3165 || (c < 3200 - ? (c >= 3168 && c <= 3169) - : c <= 3200))) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c < 3261 - ? (c >= 3253 && c <= 3257) - : c <= 3261))))))) - : (c <= 3294 || (c < 3507 - ? (c < 3406 - ? (c < 3342 - ? (c < 3313 - ? (c >= 3296 && c <= 3297) - : (c <= 3314 || (c >= 3332 && c <= 3340))) - : (c <= 3344 || (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389))) - : (c <= 3406 || (c < 3450 - ? (c < 3423 - ? (c >= 3412 && c <= 3414) - : c <= 3425) - : (c <= 3455 || (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505))))) - : (c <= 3515 || (c < 3713 - ? (c < 3585 - ? (c < 3520 - ? c == 3517 - : c <= 3526) - : (c <= 3632 || (c < 3648 - ? c == 3634 - : c <= 3654))) - : (c <= 3714 || (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3760))))))))) - : (c <= 3762 || (c < 4696 - ? (c < 4193 - ? (c < 3913 - ? (c < 3804 - ? (c < 3776 - ? c == 3773 - : (c <= 3780 || c == 3782)) - : (c <= 3807 || (c < 3904 - ? c == 3840 - : c <= 3911))) - : (c <= 3948 || (c < 4159 - ? (c < 4096 - ? (c >= 3976 && c <= 3980) - : c <= 4138) - : (c <= 4159 || (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189))))) - : (c <= 4193 || (c < 4295 - ? (c < 4213 - ? (c < 4206 - ? (c >= 4197 && c <= 4198) - : c <= 4208) - : (c <= 4225 || (c < 4256 - ? c == 4238 - : c <= 4293))) - : (c <= 4295 || (c < 4348 - ? (c < 4304 - ? c == 4301 - : c <= 4346) - : (c <= 4680 || (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694))))))) - : (c <= 4696 || (c < 4992 - ? (c < 4800 - ? (c < 4752 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : (c <= 4744 || (c >= 4746 && c <= 4749))) - : (c <= 4784 || (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798))) - : (c <= 4800 || (c < 4824 - ? (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822) - : (c <= 4880 || (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954))))) - : (c <= 5007 || (c < 5792 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5905) - : (c <= 5937 || (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996))))))))))))) - : (c <= 6000 || (c < 9832 - ? (c < 8182 - ? (c < 7312 - ? (c < 6656 - ? (c < 6320 - ? (c < 6176 - ? (c < 6103 - ? (c >= 6016 && c <= 6067) - : (c <= 6103 || c == 6108)) - : (c <= 6264 || (c < 6314 - ? (c >= 6272 && c <= 6312) - : c <= 6314))) - : (c <= 6389 || (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))))) - : (c <= 6678 || (c < 7086 - ? (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c < 7043 - ? (c >= 6981 && c <= 6988) - : c <= 7072))) - : (c <= 7087 || (c < 7245 - ? (c < 7168 - ? (c >= 7098 && c <= 7141) - : c <= 7203) - : (c <= 7247 || (c < 7296 - ? (c >= 7258 && c <= 7293) - : c <= 7304))))))) - : (c <= 7354 || (c < 8027 - ? (c < 7680 - ? (c < 7413 - ? (c < 7401 - ? (c >= 7357 && c <= 7359) - : (c <= 7404 || (c >= 7406 && c <= 7411))) - : (c <= 7414 || (c < 7424 - ? c == 7418 - : c <= 7615))) - : (c <= 7957 || (c < 8008 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005) - : (c <= 8013 || (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025))))) - : (c <= 8027 || (c < 8130 - ? (c < 8064 - ? (c < 8031 - ? c == 8029 - : c <= 8061) - : (c <= 8116 || (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126))) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))))))))) - : (c <= 8188 || (c < 9193 - ? (c < 8486 - ? (c < 8455 - ? (c < 8319 - ? (c < 8265 - ? c == 8252 - : (c <= 8265 || c == 8305)) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || (c < 8484 - ? c == 8482 - : c <= 8484))))) - : (c <= 8486 || (c < 8544 - ? (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))) - : (c <= 8584 || (c < 8986 - ? (c < 8617 - ? (c >= 8596 && c <= 8601) - : c <= 8618) - : (c <= 8987 || (c < 9167 - ? c == 9000 - : c <= 9167))))))) - : (c <= 9203 || (c < 9760 - ? (c < 9728 - ? (c < 9654 - ? (c < 9410 - ? (c >= 9208 && c <= 9210) - : (c <= 9410 || (c >= 9642 && c <= 9643))) - : (c <= 9654 || (c < 9723 - ? c == 9664 - : c <= 9726))) - : (c <= 9732 || (c < 9748 - ? (c < 9745 - ? c == 9742 - : c <= 9745) - : (c <= 9749 || (c < 9757 - ? c == 9752 - : c <= 9757))))) - : (c <= 9760 || (c < 9792 - ? (c < 9770 - ? (c < 9766 - ? (c >= 9762 && c <= 9763) - : c <= 9766) - : (c <= 9770 || (c < 9784 - ? (c >= 9774 && c <= 9775) - : c <= 9786))) - : (c <= 9792 || (c < 9823 - ? (c < 9800 - ? c == 9794 - : c <= 9811) - : (c <= 9824 || (c < 9829 - ? c == 9827 - : c <= 9830))))))))))) - : (c <= 9832 || (c < 11520 - ? (c < 10004 - ? (c < 9934 - ? (c < 9895 - ? (c < 9881 - ? (c < 9854 - ? c == 9851 - : (c <= 9855 || (c >= 9874 && c <= 9879))) - : (c <= 9881 || (c < 9888 - ? (c >= 9883 && c <= 9884) - : c <= 9889))) - : (c <= 9895 || (c < 9917 - ? (c < 9904 - ? (c >= 9898 && c <= 9899) - : c <= 9905) - : (c <= 9918 || (c < 9928 - ? (c >= 9924 && c <= 9925) - : c <= 9928))))) - : (c <= 9935 || (c < 9981 - ? (c < 9961 - ? (c < 9939 - ? c == 9937 - : c <= 9940) - : (c <= 9962 || (c < 9975 - ? (c >= 9968 && c <= 9973) - : c <= 9978))) - : (c <= 9981 || (c < 9992 - ? (c < 9989 - ? c == 9986 - : c <= 9989) - : (c <= 9997 || (c < 10002 - ? c == 9999 - : c <= 10002))))))) - : (c <= 10004 || (c < 10133 - ? (c < 10055 - ? (c < 10024 - ? (c < 10013 - ? c == 10006 - : (c <= 10013 || c == 10017)) - : (c <= 10024 || (c < 10052 - ? (c >= 10035 && c <= 10036) - : c <= 10052))) - : (c <= 10055 || (c < 10067 - ? (c < 10062 - ? c == 10060 - : c <= 10062) - : (c <= 10069 || (c < 10083 - ? c == 10071 - : c <= 10084))))) - : (c <= 10135 || (c < 11035 - ? (c < 10175 - ? (c < 10160 - ? c == 10145 - : c <= 10160) - : (c <= 10175 || (c < 11013 - ? (c >= 10548 && c <= 10549) - : c <= 11015))) - : (c <= 11036 || (c < 11264 - ? (c < 11093 - ? c == 11088 - : c <= 11093) - : (c <= 11492 || (c < 11506 - ? (c >= 11499 && c <= 11502) - : c <= 11507))))))))) - : (c <= 11557 || (c < 12784 - ? (c < 11736 - ? (c < 11688 - ? (c < 11631 - ? (c < 11565 - ? c == 11559 - : (c <= 11565 || (c >= 11568 && c <= 11623))) - : (c <= 11631 || (c < 11680 - ? (c >= 11648 && c <= 11670) - : c <= 11686))) - : (c <= 11694 || (c < 11712 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))))) - : (c <= 11742 || (c < 12445 - ? (c < 12336 - ? (c < 12321 - ? (c >= 12293 && c <= 12295) - : c <= 12329) - : (c <= 12341 || (c < 12353 - ? (c >= 12344 && c <= 12349) - : c <= 12438))) - : (c <= 12447 || (c < 12549 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543) - : (c <= 12591 || (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735))))))) - : (c <= 12799 || (c < 42786 - ? (c < 42512 - ? (c < 19968 - ? (c < 12953 - ? c == 12951 - : (c <= 12953 || (c >= 13312 && c <= 19903))) - : (c <= 42124 || (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508))) - : (c <= 42527 || (c < 42623 - ? (c < 42560 - ? (c >= 42538 && c <= 42539) - : c <= 42606) - : (c <= 42653 || (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783))))) - : (c <= 42888 || (c < 43011 - ? (c < 42963 - ? (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961) - : (c <= 42963 || (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43009))) - : (c <= 43013 || (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c < 43250 - ? (c >= 43138 && c <= 43187) - : c <= 43255))))))))))))))) - : (c <= 43259 || (c < 72203 - ? (c < 67456 - ? (c < 64914 - ? (c < 43785 - ? (c < 43616 - ? (c < 43488 - ? (c < 43360 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))) - : (c <= 43388 || (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471))) - : (c <= 43492 || (c < 43520 - ? (c < 43514 - ? (c >= 43494 && c <= 43503) - : c <= 43518) - : (c <= 43560 || (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595))))) - : (c <= 43638 || (c < 43712 - ? (c < 43697 - ? (c < 43646 - ? c == 43642 - : c <= 43695) - : (c <= 43697 || (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709))) - : (c <= 43712 || (c < 43744 - ? (c < 43739 - ? c == 43714 - : c <= 43741) - : (c <= 43754 || (c < 43777 - ? (c >= 43762 && c <= 43764) - : c <= 43782))))))) - : (c <= 43790 || (c < 64275 - ? (c < 44032 - ? (c < 43824 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44002))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64320 - ? (c < 64298 - ? (c < 64287 - ? c == 64285 - : c <= 64296) - : (c <= 64310 || (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318))) - : (c <= 64321 || (c < 64467 - ? (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))))))) - : (c <= 64967 || (c < 66176 - ? (c < 65474 - ? (c < 65149 - ? (c < 65143 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : (c <= 65137 || c == 65139)) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470))))) - : (c <= 65479 || (c < 65576 - ? (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574))) - : (c <= 65594 || (c < 65616 - ? (c < 65599 - ? (c >= 65596 && c <= 65597) - : c <= 65613) - : (c <= 65629 || (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908))))))) - : (c <= 66204 || (c < 66864 - ? (c < 66504 - ? (c < 66384 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : (c <= 66335 || (c >= 66349 && c <= 66378))) - : (c <= 66421 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))) - : (c <= 66511 || (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))))) - : (c <= 66915 || (c < 66979 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))))))))))) - : (c <= 67461 || (c < 70006 - ? (c < 68352 - ? (c < 67840 - ? (c < 67644 - ? (c < 67592 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : (c <= 67514 || (c >= 67584 && c <= 67589))) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))) - : (c <= 67861 || (c < 68117 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68112 - ? c == 68096 - : c <= 68115))) - : (c <= 68119 || (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324))))))) - : (c <= 68405 || (c < 69488 - ? (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68899 || (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))))) - : (c <= 69505 || (c < 69763 - ? (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c < 69749 - ? (c >= 69745 && c <= 69746) - : c <= 69749))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || (c < 69968 - ? c == 69959 - : c <= 70002))))))))) - : (c <= 70006 || (c < 70784 - ? (c < 70405 - ? (c < 70272 - ? (c < 70108 - ? (c < 70081 - ? (c >= 70019 && c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187))) - : (c <= 70278 || (c < 70287 - ? (c < 70282 - ? c == 70280 - : c <= 70285) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366))))) - : (c <= 70412 || (c < 70461 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c < 70751 - ? (c >= 70727 && c <= 70730) - : c <= 70753))))))) - : (c <= 70831 || (c < 71935 - ? (c < 71296 - ? (c < 71128 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : (c <= 70855 || (c >= 71040 && c <= 71086))) - : (c <= 71131 || (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236))) - : (c <= 71338 || (c < 71488 - ? (c < 71424 - ? c == 71352 - : c <= 71450) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903))))) - : (c <= 71942 || (c < 72001 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999))) - : (c <= 72001 || (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || (c < 72192 - ? c == 72163 - : c <= 72192))))))))))))) - : (c <= 72242 || (c < 126500 - ? (c < 113664 - ? (c < 82944 - ? (c < 73030 - ? (c < 72714 - ? (c < 72349 - ? (c < 72272 - ? c == 72250 - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008))))) - : (c <= 73030 || (c < 73648 - ? (c < 73066 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : c <= 73064) - : (c <= 73097 || (c < 73440 - ? c == 73112 - : c <= 73458))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))) - : (c <= 83526 || (c < 94176 - ? (c < 93027 - ? (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))) - : (c <= 92909 || (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94099 - ? c == 94032 - : c <= 94111))))) - : (c <= 94177 || (c < 110581 - ? (c < 100352 - ? (c < 94208 - ? c == 94179 - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))) - : (c <= 110587 || (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))))))))) - : (c <= 113770 || (c < 120540 - ? (c < 120005 - ? (c < 119970 - ? (c < 119808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : (c <= 113800 || (c >= 113808 && c <= 113817))) - : (c <= 119892 || (c < 119966 - ? (c >= 119894 && c <= 119964) - : c <= 119967))) - : (c <= 119970 || (c < 119982 - ? (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980) - : (c <= 119993 || (c < 119997 - ? c == 119995 - : c <= 120003))))) - : (c <= 120069 || (c < 120128 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126))) - : (c <= 120132 || (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538))))))) - : (c <= 120570 || (c < 123536 - ? (c < 120746 - ? (c < 120656 - ? (c < 120598 - ? (c >= 120572 && c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c < 123214 - ? (c >= 123191 && c <= 123197) - : c <= 123214))))) - : (c <= 123565 || (c < 124928 - ? (c < 124904 - ? (c < 124896 - ? (c >= 123584 && c <= 123627) - : c <= 124902) - : (c <= 124907 || (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926))) - : (c <= 125124 || (c < 126464 - ? (c < 125259 - ? (c >= 125184 && c <= 125251) - : c <= 125259) - : (c <= 126467 || (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498))))))))))) - : (c <= 126500 || (c < 128329 - ? (c < 126592 - ? (c < 126551 - ? (c < 126535 - ? (c < 126521 - ? (c < 126505 - ? c == 126503 - : (c <= 126514 || (c >= 126516 && c <= 126519))) - : (c <= 126521 || (c < 126530 - ? c == 126523 - : c <= 126530))) - : (c <= 126535 || (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548))))) - : (c <= 126551 || (c < 126564 - ? (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || (c < 126561 - ? c == 126559 - : c <= 126562))) - : (c <= 126564 || (c < 126580 - ? (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578) - : (c <= 126583 || (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590))))))) - : (c <= 126601 || (c < 127514 - ? (c < 127344 - ? (c < 126635 - ? (c < 126625 - ? (c >= 126603 && c <= 126619) - : (c <= 126627 || (c >= 126629 && c <= 126633))) - : (c <= 126651 || (c < 127183 - ? c == 126980 - : c <= 127183))) - : (c <= 127345 || (c < 127377 - ? (c < 127374 - ? (c >= 127358 && c <= 127359) - : c <= 127374) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))))) - : (c <= 127514 || (c < 127894 - ? (c < 127568 - ? (c < 127538 - ? c == 127535 - : c <= 127546) - : (c <= 127569 || (c < 127780 - ? (c >= 127744 && c <= 127777) - : c <= 127891))) - : (c <= 127895 || (c < 127987 - ? (c < 127902 - ? (c >= 127897 && c <= 127899) - : c <= 127984) - : (c <= 127989 || (c < 128255 - ? (c >= 127991 && c <= 128253) - : c <= 128317))))))))) - : (c <= 128334 || (c < 128745 - ? (c < 128465 - ? (c < 128405 - ? (c < 128391 - ? (c < 128367 - ? (c >= 128336 && c <= 128359) - : (c <= 128368 || (c >= 128371 && c <= 128378))) - : (c <= 128391 || (c < 128400 - ? (c >= 128394 && c <= 128397) - : c <= 128400))) - : (c <= 128406 || (c < 128433 - ? (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424) - : (c <= 128434 || (c < 128450 - ? c == 128444 - : c <= 128452))))) - : (c <= 128467 || (c < 128499 - ? (c < 128483 - ? (c < 128481 - ? (c >= 128476 && c <= 128478) - : c <= 128481) - : (c <= 128483 || (c < 128495 - ? c == 128488 - : c <= 128495))) - : (c <= 128499 || (c < 128715 - ? (c < 128640 - ? (c >= 128506 && c <= 128591) - : c <= 128709) - : (c <= 128722 || (c < 128733 - ? (c >= 128725 && c <= 128727) - : c <= 128741))))))) - : (c <= 128745 || (c < 129712 - ? (c < 129340 - ? (c < 128992 - ? (c < 128752 - ? (c >= 128747 && c <= 128748) - : (c <= 128752 || (c >= 128755 && c <= 128764))) - : (c <= 129003 || (c < 129292 - ? c == 129008 - : c <= 129338))) - : (c <= 129349 || (c < 129656 - ? (c < 129648 - ? (c >= 129351 && c <= 129535) - : c <= 129652) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129760 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : c <= 129753) - : (c <= 129767 || (c < 131072 - ? (c >= 129776 && c <= 129782) - : c <= 173791))) - : (c <= 177976 || (c < 183984 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : c <= 183969) - : (c <= 191456 || (c < 196608 - ? (c >= 194560 && c <= 195101) - : c <= 201546))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_5(int32_t c) { - return (c < 43232 - ? (c < 4808 - ? (c < 2887 - ? (c < 2200 - ? (c < 1162 - ? (c < 710 - ? (c < 174 - ? (c < 'A' - ? (c < '*' - ? c == '#' - : (c <= '*' || (c >= '0' && c <= '9'))) - : (c <= 'Z' || (c < 'a' - ? c == '_' - : (c <= 'z' || (c >= 169 && c <= 170))))) - : (c <= 174 || (c < 192 - ? (c < 183 - ? c == 181 - : (c <= 183 || c == 186)) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 895 - ? (c < 768 - ? (c < 748 - ? (c >= 736 && c <= 740) - : (c <= 748 || c == 750)) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 931 - ? (c < 908 - ? (c >= 902 && c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))) - : (c <= 1013 || (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159))))))) - : (c <= 1327 || (c < 1749 - ? (c < 1476 - ? (c < 1425 - ? (c < 1369 - ? (c >= 1329 && c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))) - : (c <= 1469 || (c < 1473 - ? c == 1471 - : c <= 1474))) - : (c <= 1477 || (c < 1552 - ? (c < 1488 - ? c == 1479 - : (c <= 1514 || (c >= 1519 && c <= 1522))) - : (c <= 1562 || (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747))))) - : (c <= 1756 || (c < 2042 - ? (c < 1808 - ? (c < 1770 - ? (c >= 1759 && c <= 1768) - : (c <= 1788 || c == 1791)) - : (c <= 1866 || (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037))) - : (c <= 2042 || (c < 2144 - ? (c < 2048 - ? c == 2045 - : (c <= 2093 || (c >= 2112 && c <= 2139))) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))))))))) - : (c <= 2273 || (c < 2631 - ? (c < 2527 - ? (c < 2482 - ? (c < 2437 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : (c <= 2415 || (c >= 2417 && c <= 2435))) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))) - : (c <= 2482 || (c < 2507 - ? (c < 2492 - ? (c >= 2486 && c <= 2489) - : (c <= 2500 || (c >= 2503 && c <= 2504))) - : (c <= 2510 || (c < 2524 - ? c == 2519 - : c <= 2525))))) - : (c <= 2531 || (c < 2579 - ? (c < 2561 - ? (c < 2556 - ? (c >= 2534 && c <= 2545) - : (c <= 2556 || c == 2558)) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2616 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))))) - : (c <= 2632 || (c < 2759 - ? (c < 2693 - ? (c < 2654 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : (c <= 2641 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757))))) - : (c <= 2761 || (c < 2821 - ? (c < 2790 - ? (c < 2768 - ? (c >= 2763 && c <= 2765) - : (c <= 2768 || (c >= 2784 && c <= 2787))) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2866 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))))))))))) - : (c <= 2888 || (c < 3450 - ? (c < 3146 - ? (c < 2984 - ? (c < 2949 - ? (c < 2911 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : (c <= 2903 || (c >= 2908 && c <= 2909))) - : (c <= 2915 || (c < 2929 - ? (c >= 2918 && c <= 2927) - : (c <= 2929 || (c >= 2946 && c <= 2947))))) - : (c <= 2954 || (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))))) - : (c <= 2986 || (c < 3046 - ? (c < 3018 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : (c <= 3010 || (c >= 3014 && c <= 3016))) - : (c <= 3021 || (c < 3031 - ? c == 3024 - : c <= 3031))) - : (c <= 3055 || (c < 3114 - ? (c < 3086 - ? (c >= 3072 && c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))))))) - : (c <= 3149 || (c < 3274 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : (c <= 3162 || c == 3165)) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3253 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))) - : (c <= 3257 || (c < 3270 - ? (c >= 3260 && c <= 3268) - : c <= 3272))))) - : (c <= 3277 || (c < 3342 - ? (c < 3302 - ? (c < 3293 - ? (c >= 3285 && c <= 3286) - : (c <= 3294 || (c >= 3296 && c <= 3299))) - : (c <= 3311 || (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3412 - ? (c < 3398 - ? (c >= 3346 && c <= 3396) - : (c <= 3400 || (c >= 3402 && c <= 3406))) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))))) - : (c <= 3455 || (c < 3872 - ? (c < 3664 - ? (c < 3535 - ? (c < 3507 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : (c <= 3526 || c == 3530)))) - : (c <= 3540 || (c < 3570 - ? (c < 3544 - ? c == 3542 - : (c <= 3551 || (c >= 3558 && c <= 3567))) - : (c <= 3571 || (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662))))) - : (c <= 3673 || (c < 3776 - ? (c < 3724 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3773))) - : (c <= 3780 || (c < 3804 - ? (c < 3784 - ? c == 3782 - : (c <= 3789 || (c >= 3792 && c <= 3801))) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))))))) - : (c <= 3881 || (c < 4301 - ? (c < 3974 - ? (c < 3902 - ? (c < 3895 - ? c == 3893 - : (c <= 3895 || c == 3897)) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4176 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : (c <= 4038 || (c >= 4096 && c <= 4169))) - : (c <= 4253 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))))) - : (c <= 4301 || (c < 4704 - ? (c < 4688 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4698 - ? c == 4696 - : c <= 4701))) - : (c <= 4744 || (c < 4792 - ? (c < 4752 - ? (c >= 4746 && c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))))))))))))) - : (c <= 4822 || (c < 9742 - ? (c < 7424 - ? (c < 6400 - ? (c < 5919 - ? (c < 5112 - ? (c < 4957 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))) - : (c <= 4959 || (c < 4992 - ? (c >= 4969 && c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))) - : (c <= 5117 || (c < 5792 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5909))))) - : (c <= 5940 || (c < 6108 - ? (c < 6002 - ? (c < 5984 - ? (c >= 5952 && c <= 5971) - : (c <= 5996 || (c >= 5998 && c <= 6000))) - : (c <= 6003 || (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103))) - : (c <= 6109 || (c < 6176 - ? (c < 6155 - ? (c >= 6112 && c <= 6121) - : (c <= 6157 || (c >= 6159 && c <= 6169))) - : (c <= 6264 || (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389))))))) - : (c <= 6430 || (c < 6832 - ? (c < 6608 - ? (c < 6512 - ? (c < 6448 - ? (c >= 6432 && c <= 6443) - : (c <= 6459 || (c >= 6470 && c <= 6509))) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6783 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : (c <= 6750 || (c >= 6752 && c <= 6780))) - : (c <= 6793 || (c < 6823 - ? (c >= 6800 && c <= 6809) - : c <= 6823))))) - : (c <= 6845 || (c < 7232 - ? (c < 7019 - ? (c < 6912 - ? (c >= 6847 && c <= 6862) - : (c <= 6988 || (c >= 6992 && c <= 7001))) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))) - : (c <= 7241 || (c < 7357 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))) - : (c <= 7359 || (c < 7380 - ? (c >= 7376 && c <= 7378) - : c <= 7418))))))))) - : (c <= 7957 || (c < 8421 - ? (c < 8150 - ? (c < 8031 - ? (c < 8016 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : (c <= 8027 || c == 8029)))) - : (c <= 8061 || (c < 8130 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147))))) - : (c <= 8155 || (c < 8265 - ? (c < 8205 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8205 || (c < 8255 - ? c == 8252 - : c <= 8256))) - : (c <= 8265 || (c < 8336 - ? (c < 8305 - ? c == 8276 - : (c <= 8305 || c == 8319)) - : (c <= 8348 || (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417))))))) - : (c <= 8432 || (c < 8544 - ? (c < 8484 - ? (c < 8469 - ? (c < 8455 - ? c == 8450 - : (c <= 8455 || (c >= 8458 && c <= 8467))) - : (c <= 8469 || (c < 8482 - ? (c >= 8472 && c <= 8477) - : c <= 8482))) - : (c <= 8484 || (c < 8508 - ? (c < 8488 - ? c == 8486 - : (c <= 8488 || (c >= 8490 && c <= 8505))) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))))) - : (c <= 8584 || (c < 9208 - ? (c < 9000 - ? (c < 8617 - ? (c >= 8596 && c <= 8601) - : (c <= 8618 || (c >= 8986 && c <= 8987))) - : (c <= 9000 || (c < 9193 - ? c == 9167 - : c <= 9203))) - : (c <= 9210 || (c < 9664 - ? (c < 9642 - ? c == 9410 - : (c <= 9643 || c == 9654)) - : (c <= 9664 || (c < 9728 - ? (c >= 9723 && c <= 9726) - : c <= 9732))))))))))) - : (c <= 9742 || (c < 10160 - ? (c < 9928 - ? (c < 9827 - ? (c < 9770 - ? (c < 9757 - ? (c < 9748 - ? c == 9745 - : (c <= 9749 || c == 9752)) - : (c <= 9757 || (c < 9762 - ? c == 9760 - : (c <= 9763 || c == 9766)))) - : (c <= 9770 || (c < 9794 - ? (c < 9784 - ? (c >= 9774 && c <= 9775) - : (c <= 9786 || c == 9792)) - : (c <= 9794 || (c < 9823 - ? (c >= 9800 && c <= 9811) - : c <= 9824))))) - : (c <= 9827 || (c < 9883 - ? (c < 9854 - ? (c < 9832 - ? (c >= 9829 && c <= 9830) - : (c <= 9832 || c == 9851)) - : (c <= 9855 || (c < 9881 - ? (c >= 9874 && c <= 9879) - : c <= 9881))) - : (c <= 9884 || (c < 9904 - ? (c < 9895 - ? (c >= 9888 && c <= 9889) - : (c <= 9895 || (c >= 9898 && c <= 9899))) - : (c <= 9905 || (c < 9924 - ? (c >= 9917 && c <= 9918) - : c <= 9925))))))) - : (c <= 9928 || (c < 10006 - ? (c < 9981 - ? (c < 9961 - ? (c < 9937 - ? (c >= 9934 && c <= 9935) - : (c <= 9937 || (c >= 9939 && c <= 9940))) - : (c <= 9962 || (c < 9975 - ? (c >= 9968 && c <= 9973) - : c <= 9978))) - : (c <= 9981 || (c < 9999 - ? (c < 9989 - ? c == 9986 - : (c <= 9989 || (c >= 9992 && c <= 9997))) - : (c <= 9999 || (c < 10004 - ? c == 10002 - : c <= 10004))))) - : (c <= 10006 || (c < 10060 - ? (c < 10035 - ? (c < 10017 - ? c == 10013 - : (c <= 10017 || c == 10024)) - : (c <= 10036 || (c < 10055 - ? c == 10052 - : c <= 10055))) - : (c <= 10060 || (c < 10083 - ? (c < 10067 - ? c == 10062 - : (c <= 10069 || c == 10071)) - : (c <= 10084 || (c < 10145 - ? (c >= 10133 && c <= 10135) - : c <= 10145))))))))) - : (c <= 10160 || (c < 12445 - ? (c < 11680 - ? (c < 11499 - ? (c < 11035 - ? (c < 10548 - ? c == 10175 - : (c <= 10549 || (c >= 11013 && c <= 11015))) - : (c <= 11036 || (c < 11093 - ? c == 11088 - : (c <= 11093 || (c >= 11264 && c <= 11492))))) - : (c <= 11507 || (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11736 - ? (c < 11712 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))) - : (c <= 11742 || (c < 12344 - ? (c < 12293 - ? (c >= 11744 && c <= 11775) - : (c <= 12295 || (c >= 12321 && c <= 12341))) - : (c <= 12349 || (c < 12441 - ? (c >= 12353 && c <= 12438) - : c <= 12442))))))) - : (c <= 12447 || (c < 42560 - ? (c < 12951 - ? (c < 12593 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : (c <= 12543 || (c >= 12549 && c <= 12591))) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))) - : (c <= 12951 || (c < 42192 - ? (c < 13312 - ? c == 12953 - : (c <= 19903 || (c >= 19968 && c <= 42124))) - : (c <= 42237 || (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539))))) - : (c <= 42607 || (c < 42963 - ? (c < 42786 - ? (c < 42623 - ? (c >= 42612 && c <= 42621) - : (c <= 42737 || (c >= 42775 && c <= 42783))) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))) - : (c <= 42963 || (c < 43072 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : (c <= 43047 || c == 43052)) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))))))))))))) - : (c <= 43255 || (c < 72818 - ? (c < 67840 - ? (c < 65313 - ? (c < 63744 - ? (c < 43762 - ? (c < 43520 - ? (c < 43360 - ? (c < 43261 - ? c == 43259 - : (c <= 43309 || (c >= 43312 && c <= 43347))) - : (c <= 43388 || (c < 43471 - ? (c >= 43392 && c <= 43456) - : (c <= 43481 || (c >= 43488 && c <= 43518))))) - : (c <= 43574 || (c < 43642 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : (c <= 43609 || (c >= 43616 && c <= 43638))) - : (c <= 43714 || (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759))))) - : (c <= 43766 || (c < 43868 - ? (c < 43808 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : (c <= 43790 || (c >= 43793 && c <= 43798))) - : (c <= 43814 || (c < 43824 - ? (c >= 43816 && c <= 43822) - : c <= 43866))) - : (c <= 43881 || (c < 44032 - ? (c < 44012 - ? (c >= 43888 && c <= 44010) - : (c <= 44013 || (c >= 44016 && c <= 44025))) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))))))) - : (c <= 64109 || (c < 64914 - ? (c < 64318 - ? (c < 64285 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : (c <= 64262 || (c >= 64275 && c <= 64279))) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))) - : (c <= 64318 || (c < 64467 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))) - : (c <= 64967 || (c < 65139 - ? (c < 65075 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : (c <= 65038 || (c >= 65056 && c <= 65071))) - : (c <= 65076 || (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137))) - : (c <= 65139 || (c < 65149 - ? (c < 65145 - ? c == 65143 - : (c <= 65145 || c == 65147)) - : (c <= 65149 || (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305))))))))) - : (c <= 65338 || (c < 66736 - ? (c < 65856 - ? (c < 65536 - ? (c < 65474 - ? (c < 65345 - ? c == 65343 - : (c <= 65370 || (c >= 65382 && c <= 65470))) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65599 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 65908 || (c < 66384 - ? (c < 66272 - ? (c < 66176 - ? c == 66045 - : (c <= 66204 || (c >= 66208 && c <= 66256))) - : (c <= 66272 || (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378))) - : (c <= 66426 || (c < 66513 - ? (c < 66464 - ? (c >= 66432 && c <= 66461) - : (c <= 66499 || (c >= 66504 && c <= 66511))) - : (c <= 66517 || (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729))))))) - : (c <= 66771 || (c < 67424 - ? (c < 66964 - ? (c < 66928 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : (c <= 66855 || (c >= 66864 && c <= 66915))) - : (c <= 66938 || (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962))) - : (c <= 66965 || (c < 67003 - ? (c < 66979 - ? (c >= 66967 && c <= 66977) - : (c <= 66993 || (c >= 66995 && c <= 67001))) - : (c <= 67004 || (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413))))) - : (c <= 67431 || (c < 67639 - ? (c < 67584 - ? (c < 67463 - ? (c >= 67456 && c <= 67461) - : (c <= 67504 || (c >= 67506 && c <= 67514))) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))) - : (c <= 67640 || (c < 67712 - ? (c < 67647 - ? c == 67644 - : (c <= 67669 || (c >= 67680 && c <= 67702))) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))))))))) - : (c <= 67861 || (c < 70384 - ? (c < 69424 - ? (c < 68352 - ? (c < 68121 - ? (c < 68096 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : (c <= 68115 || (c >= 68117 && c <= 68119))))) - : (c <= 68149 || (c < 68224 - ? (c < 68159 - ? (c >= 68152 && c <= 68154) - : (c <= 68159 || (c >= 68192 && c <= 68220))) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))))) - : (c <= 68405 || (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68903 || (c < 69296 - ? (c < 69248 - ? (c >= 68912 && c <= 68921) - : (c <= 69289 || (c >= 69291 && c <= 69292))) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))))) - : (c <= 69456 || (c < 70006 - ? (c < 69826 - ? (c < 69632 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : (c <= 69572 || (c >= 69600 && c <= 69622))) - : (c <= 69702 || (c < 69759 - ? (c >= 69734 && c <= 69749) - : c <= 69818))) - : (c <= 69826 || (c < 69942 - ? (c < 69872 - ? (c >= 69840 && c <= 69864) - : (c <= 69881 || (c >= 69888 && c <= 69940))) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))))) - : (c <= 70006 || (c < 70206 - ? (c < 70108 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : (c <= 70092 || (c >= 70094 && c <= 70106))) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199))) - : (c <= 70206 || (c < 70287 - ? (c < 70280 - ? (c >= 70272 && c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70378))))))))) - : (c <= 70393 || (c < 71360 - ? (c < 70512 - ? (c < 70459 - ? (c < 70419 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70450 - ? (c >= 70442 && c <= 70448) - : (c <= 70451 || (c >= 70453 && c <= 70457))))) - : (c <= 70468 || (c < 70487 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : (c <= 70477 || c == 70480)) - : (c <= 70487 || (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508))))) - : (c <= 70516 || (c < 71040 - ? (c < 70784 - ? (c < 70736 - ? (c >= 70656 && c <= 70730) - : (c <= 70745 || (c >= 70750 && c <= 70753))) - : (c <= 70853 || (c < 70864 - ? c == 70855 - : c <= 70873))) - : (c <= 71093 || (c < 71236 - ? (c < 71128 - ? (c >= 71096 && c <= 71104) - : (c <= 71133 || (c >= 71168 && c <= 71232))) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))))))) - : (c <= 71369 || (c < 72016 - ? (c < 71935 - ? (c < 71488 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : (c <= 71467 || (c >= 71472 && c <= 71481))) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))) - : (c <= 71942 || (c < 71960 - ? (c < 71948 - ? c == 71945 - : (c <= 71955 || (c >= 71957 && c <= 71958))) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72272 - ? (c < 72163 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))) - : (c <= 72164 || (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263))) - : (c <= 72345 || (c < 72714 - ? (c < 72368 - ? c == 72349 - : (c <= 72440 || (c >= 72704 && c <= 72712))) - : (c <= 72758 || (c < 72784 - ? (c >= 72760 && c <= 72768) - : c <= 72793))))))))))))) - : (c <= 72847 || (c < 123584 - ? (c < 113821 - ? (c < 92880 - ? (c < 73120 - ? (c < 73023 - ? (c < 72968 - ? (c < 72873 - ? (c >= 72850 && c <= 72871) - : (c <= 72886 || (c >= 72960 && c <= 72966))) - : (c <= 72969 || (c < 73018 - ? (c >= 72971 && c <= 73014) - : (c <= 73018 || (c >= 73020 && c <= 73021))))) - : (c <= 73031 || (c < 73066 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : (c <= 73061 || (c >= 73063 && c <= 73064))) - : (c <= 73102 || (c < 73107 - ? (c >= 73104 && c <= 73105) - : c <= 73112))))) - : (c <= 73129 || (c < 77824 - ? (c < 74752 - ? (c < 73648 - ? (c >= 73440 && c <= 73462) - : (c <= 73648 || (c >= 73728 && c <= 74649))) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))) - : (c <= 78894 || (c < 92768 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : (c <= 92728 || (c >= 92736 && c <= 92766))) - : (c <= 92777 || (c < 92864 - ? (c >= 92784 && c <= 92862) - : c <= 92873))))))) - : (c <= 92909 || (c < 94208 - ? (c < 93760 - ? (c < 93008 - ? (c < 92928 - ? (c >= 92912 && c <= 92916) - : (c <= 92982 || (c >= 92992 && c <= 92995))) - : (c <= 93017 || (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071))) - : (c <= 93823 || (c < 94176 - ? (c < 94031 - ? (c >= 93952 && c <= 94026) - : (c <= 94087 || (c >= 94095 && c <= 94111))) - : (c <= 94177 || (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193))))) - : (c <= 100343 || (c < 110928 - ? (c < 110581 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : (c <= 101640 || (c >= 110576 && c <= 110579))) - : (c <= 110587 || (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882))) - : (c <= 110930 || (c < 113776 - ? (c < 110960 - ? (c >= 110948 && c <= 110951) - : (c <= 111355 || (c >= 113664 && c <= 113770))) - : (c <= 113788 || (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817))))))))) - : (c <= 113822 || (c < 120514 - ? (c < 119982 - ? (c < 119362 - ? (c < 119149 - ? (c < 118576 - ? (c >= 118528 && c <= 118573) - : (c <= 118598 || (c >= 119141 && c <= 119145))) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : (c <= 119179 || (c >= 119210 && c <= 119213))))) - : (c <= 119364 || (c < 119970 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : (c <= 119964 || (c >= 119966 && c <= 119967))) - : (c <= 119970 || (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980))))) - : (c <= 119993 || (c < 120094 - ? (c < 120071 - ? (c < 119997 - ? c == 119995 - : (c <= 120003 || (c >= 120005 && c <= 120069))) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))) - : (c <= 120121 || (c < 120138 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))))))) - : (c <= 120538 || (c < 121476 - ? (c < 120714 - ? (c < 120630 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712))) - : (c <= 120744 || (c < 121344 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : (c <= 120779 || (c >= 120782 && c <= 120831))) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))))) - : (c <= 121476 || (c < 122915 - ? (c < 122880 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : (c <= 121519 || (c >= 122624 && c <= 122654))) - : (c <= 122886 || (c < 122907 - ? (c >= 122888 && c <= 122904) - : c <= 122913))) - : (c <= 122916 || (c < 123200 - ? (c < 123136 - ? (c >= 122918 && c <= 122922) - : (c <= 123180 || (c >= 123184 && c <= 123197))) - : (c <= 123209 || (c < 123536 - ? c == 123214 - : c <= 123566))))))))))) - : (c <= 123641 || (c < 127897 - ? (c < 126559 - ? (c < 126516 - ? (c < 125264 - ? (c < 124912 - ? (c < 124904 - ? (c >= 124896 && c <= 124902) - : (c <= 124907 || (c >= 124909 && c <= 124910))) - : (c <= 124926 || (c < 125136 - ? (c >= 124928 && c <= 125124) - : (c <= 125142 || (c >= 125184 && c <= 125259))))) - : (c <= 125273 || (c < 126500 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : (c <= 126495 || (c >= 126497 && c <= 126498))) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))))) - : (c <= 126519 || (c < 126541 - ? (c < 126535 - ? (c < 126523 - ? c == 126521 - : (c <= 126523 || c == 126530)) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126553 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : (c <= 126548 || c == 126551)) - : (c <= 126553 || (c < 126557 - ? c == 126555 - : c <= 126557))))))) - : (c <= 126559 || (c < 127183 - ? (c < 126590 - ? (c < 126572 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : (c <= 126564 || (c >= 126567 && c <= 126570))) - : (c <= 126578 || (c < 126585 - ? (c >= 126580 && c <= 126583) - : c <= 126588))) - : (c <= 126590 || (c < 126629 - ? (c < 126603 - ? (c >= 126592 && c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))) - : (c <= 126633 || (c < 126980 - ? (c >= 126635 && c <= 126651) - : c <= 126980))))) - : (c <= 127183 || (c < 127514 - ? (c < 127377 - ? (c < 127358 - ? (c >= 127344 && c <= 127345) - : (c <= 127359 || c == 127374)) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))) - : (c <= 127514 || (c < 127744 - ? (c < 127538 - ? c == 127535 - : (c <= 127546 || (c >= 127568 && c <= 127569))) - : (c <= 127777 || (c < 127894 - ? (c >= 127780 && c <= 127891) - : c <= 127895))))))))) - : (c <= 127899 || (c < 128733 - ? (c < 128433 - ? (c < 128371 - ? (c < 128255 - ? (c < 127987 - ? (c >= 127902 && c <= 127984) - : (c <= 127989 || (c >= 127991 && c <= 128253))) - : (c <= 128317 || (c < 128336 - ? (c >= 128329 && c <= 128334) - : (c <= 128359 || (c >= 128367 && c <= 128368))))) - : (c <= 128378 || (c < 128405 - ? (c < 128394 - ? c == 128391 - : (c <= 128397 || c == 128400)) - : (c <= 128406 || (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424))))) - : (c <= 128434 || (c < 128488 - ? (c < 128476 - ? (c < 128450 - ? c == 128444 - : (c <= 128452 || (c >= 128465 && c <= 128467))) - : (c <= 128478 || (c < 128483 - ? c == 128481 - : c <= 128483))) - : (c <= 128488 || (c < 128640 - ? (c < 128499 - ? c == 128495 - : (c <= 128499 || (c >= 128506 && c <= 128591))) - : (c <= 128709 || (c < 128725 - ? (c >= 128715 && c <= 128722) - : c <= 128727))))))) - : (c <= 128741 || (c < 129712 - ? (c < 129292 - ? (c < 128755 - ? (c < 128747 - ? c == 128745 - : (c <= 128748 || c == 128752)) - : (c <= 128764 || (c < 129008 - ? (c >= 128992 && c <= 129003) - : c <= 129008))) - : (c <= 129338 || (c < 129656 - ? (c < 129351 - ? (c >= 129340 && c <= 129349) - : (c <= 129535 || (c >= 129648 && c <= 129652))) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129776 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : (c <= 129753 || (c >= 129760 && c <= 129767))) - : (c <= 129782 || (c < 131072 - ? (c >= 130032 && c <= 130041) - : c <= 173791))) - : (c <= 177976 || (c < 194560 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : (c <= 183969 || (c >= 183984 && c <= 191456))) - : (c <= 195101 || (c < 917760 - ? (c >= 196608 && c <= 201546) - : c <= 917999))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_6(int32_t c) { - return (c < 43261 - ? (c < 4888 - ? (c < 2911 - ? (c < 2437 - ? (c < 1425 - ? (c < 768 - ? (c < 192 - ? (c < 174 - ? (c < '*' - ? c == '#' - : (c <= '*' || (c >= 169 && c <= 170))) - : (c <= 174 || (c < 183 - ? c == 181 - : (c <= 183 || c == 186)))) - : (c <= 214 || (c < 736 - ? (c < 248 - ? (c >= 216 && c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))) - : (c <= 740 || (c < 750 - ? c == 748 - : c <= 750))))) - : (c <= 884 || (c < 931 - ? (c < 902 - ? (c < 891 - ? (c >= 886 && c <= 887) - : (c <= 893 || c == 895)) - : (c <= 906 || (c < 910 - ? c == 908 - : c <= 929))) - : (c <= 1013 || (c < 1329 - ? (c < 1155 - ? (c >= 1015 && c <= 1153) - : (c <= 1159 || (c >= 1162 && c <= 1327))) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))))))) - : (c <= 1469 || (c < 1808 - ? (c < 1552 - ? (c < 1479 - ? (c < 1473 - ? c == 1471 - : (c <= 1474 || (c >= 1476 && c <= 1477))) - : (c <= 1479 || (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522))) - : (c <= 1562 || (c < 1759 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : (c <= 1747 || (c >= 1749 && c <= 1756))) - : (c <= 1768 || (c < 1791 - ? (c >= 1770 && c <= 1788) - : c <= 1791))))) - : (c <= 1866 || (c < 2144 - ? (c < 2045 - ? (c < 1984 - ? (c >= 1869 && c <= 1969) - : (c <= 2037 || c == 2042)) - : (c <= 2045 || (c < 2112 - ? (c >= 2048 && c <= 2093) - : c <= 2139))) - : (c <= 2154 || (c < 2275 - ? (c < 2185 - ? (c >= 2160 && c <= 2183) - : (c <= 2190 || (c >= 2200 && c <= 2273))) - : (c <= 2403 || (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2435))))))))) - : (c <= 2444 || (c < 2654 - ? (c < 2561 - ? (c < 2507 - ? (c < 2482 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : (c <= 2500 || (c >= 2503 && c <= 2504))))) - : (c <= 2510 || (c < 2534 - ? (c < 2524 - ? c == 2519 - : (c <= 2525 || (c >= 2527 && c <= 2531))) - : (c <= 2545 || (c < 2558 - ? c == 2556 - : c <= 2558))))) - : (c <= 2563 || (c < 2616 - ? (c < 2602 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))) - : (c <= 2608 || (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614))) - : (c <= 2617 || (c < 2635 - ? (c < 2622 - ? c == 2620 - : (c <= 2626 || (c >= 2631 && c <= 2632))) - : (c <= 2637 || (c < 2649 - ? c == 2641 - : c <= 2652))))))) - : (c <= 2654 || (c < 2790 - ? (c < 2738 - ? (c < 2703 - ? (c < 2689 - ? (c >= 2662 && c <= 2677) - : (c <= 2691 || (c >= 2693 && c <= 2701))) - : (c <= 2705 || (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736))) - : (c <= 2739 || (c < 2763 - ? (c < 2748 - ? (c >= 2741 && c <= 2745) - : (c <= 2757 || (c >= 2759 && c <= 2761))) - : (c <= 2765 || (c < 2784 - ? c == 2768 - : c <= 2787))))) - : (c <= 2799 || (c < 2866 - ? (c < 2831 - ? (c < 2817 - ? (c >= 2809 && c <= 2815) - : (c <= 2819 || (c >= 2821 && c <= 2828))) - : (c <= 2832 || (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864))) - : (c <= 2867 || (c < 2891 - ? (c < 2876 - ? (c >= 2869 && c <= 2873) - : (c <= 2884 || (c >= 2887 && c <= 2888))) - : (c <= 2893 || (c < 2908 - ? (c >= 2901 && c <= 2903) - : c <= 2909))))))))))) - : (c <= 2915 || (c < 3507 - ? (c < 3168 - ? (c < 3018 - ? (c < 2972 - ? (c < 2949 - ? (c < 2929 - ? (c >= 2918 && c <= 2927) - : (c <= 2929 || (c >= 2946 && c <= 2947))) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))))) - : (c <= 2972 || (c < 2990 - ? (c < 2979 - ? (c >= 2974 && c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))) - : (c <= 3001 || (c < 3014 - ? (c >= 3006 && c <= 3010) - : c <= 3016))))) - : (c <= 3021 || (c < 3114 - ? (c < 3072 - ? (c < 3031 - ? c == 3024 - : (c <= 3031 || (c >= 3046 && c <= 3055))) - : (c <= 3084 || (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112))) - : (c <= 3129 || (c < 3157 - ? (c < 3142 - ? (c >= 3132 && c <= 3140) - : (c <= 3144 || (c >= 3146 && c <= 3149))) - : (c <= 3158 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))))))) - : (c <= 3171 || (c < 3302 - ? (c < 3253 - ? (c < 3214 - ? (c < 3200 - ? (c >= 3174 && c <= 3183) - : (c <= 3203 || (c >= 3205 && c <= 3212))) - : (c <= 3216 || (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251))) - : (c <= 3257 || (c < 3285 - ? (c < 3270 - ? (c >= 3260 && c <= 3268) - : (c <= 3272 || (c >= 3274 && c <= 3277))) - : (c <= 3286 || (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3299))))) - : (c <= 3311 || (c < 3412 - ? (c < 3346 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))) - : (c <= 3396 || (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406))) - : (c <= 3415 || (c < 3457 - ? (c < 3430 - ? (c >= 3423 && c <= 3427) - : (c <= 3439 || (c >= 3450 && c <= 3455))) - : (c <= 3459 || (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505))))))))) - : (c <= 3515 || (c < 3897 - ? (c < 3718 - ? (c < 3558 - ? (c < 3535 - ? (c < 3520 - ? c == 3517 - : (c <= 3526 || c == 3530)) - : (c <= 3540 || (c < 3544 - ? c == 3542 - : c <= 3551))) - : (c <= 3567 || (c < 3664 - ? (c < 3585 - ? (c >= 3570 && c <= 3571) - : (c <= 3642 || (c >= 3648 && c <= 3662))) - : (c <= 3673 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : c <= 3716))))) - : (c <= 3722 || (c < 3792 - ? (c < 3776 - ? (c < 3749 - ? (c >= 3724 && c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3773))) - : (c <= 3780 || (c < 3784 - ? c == 3782 - : c <= 3789))) - : (c <= 3801 || (c < 3872 - ? (c < 3840 - ? (c >= 3804 && c <= 3807) - : (c <= 3840 || (c >= 3864 && c <= 3865))) - : (c <= 3881 || (c < 3895 - ? c == 3893 - : c <= 3895))))))) - : (c <= 3897 || (c < 4682 - ? (c < 4096 - ? (c < 3974 - ? (c < 3913 - ? (c >= 3902 && c <= 3911) - : (c <= 3948 || (c >= 3953 && c <= 3972))) - : (c <= 3991 || (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038))) - : (c <= 4169 || (c < 4301 - ? (c < 4256 - ? (c >= 4176 && c <= 4253) - : (c <= 4293 || c == 4295)) - : (c <= 4301 || (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680))))) - : (c <= 4685 || (c < 4786 - ? (c < 4704 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : (c <= 4696 || (c >= 4698 && c <= 4701))) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4808 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))))))))))))) - : (c <= 4954 || (c < 9752 - ? (c < 8008 - ? (c < 6470 - ? (c < 5998 - ? (c < 5761 - ? (c < 5024 - ? (c < 4969 - ? (c >= 4957 && c <= 4959) - : (c <= 4977 || (c >= 4992 && c <= 5007))) - : (c <= 5109 || (c < 5121 - ? (c >= 5112 && c <= 5117) - : (c <= 5740 || (c >= 5743 && c <= 5759))))) - : (c <= 5786 || (c < 5919 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : (c <= 5880 || (c >= 5888 && c <= 5909))) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))) - : (c <= 6000 || (c < 6159 - ? (c < 6108 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : (c <= 6099 || c == 6103)) - : (c <= 6109 || (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157))) - : (c <= 6169 || (c < 6400 - ? (c < 6272 - ? (c >= 6176 && c <= 6264) - : (c <= 6314 || (c >= 6320 && c <= 6389))) - : (c <= 6430 || (c < 6448 - ? (c >= 6432 && c <= 6443) - : c <= 6459))))))) - : (c <= 6509 || (c < 6992 - ? (c < 6752 - ? (c < 6608 - ? (c < 6528 - ? (c >= 6512 && c <= 6516) - : (c <= 6571 || (c >= 6576 && c <= 6601))) - : (c <= 6618 || (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750))) - : (c <= 6780 || (c < 6832 - ? (c < 6800 - ? (c >= 6783 && c <= 6793) - : (c <= 6809 || c == 6823)) - : (c <= 6845 || (c < 6912 - ? (c >= 6847 && c <= 6862) - : c <= 6988))))) - : (c <= 7001 || (c < 7312 - ? (c < 7232 - ? (c < 7040 - ? (c >= 7019 && c <= 7027) - : (c <= 7155 || (c >= 7168 && c <= 7223))) - : (c <= 7241 || (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304))) - : (c <= 7354 || (c < 7424 - ? (c < 7376 - ? (c >= 7357 && c <= 7359) - : (c <= 7378 || (c >= 7380 && c <= 7418))) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005))))))))) - : (c <= 8013 || (c < 8458 - ? (c < 8182 - ? (c < 8126 - ? (c < 8029 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : (c <= 8025 || c == 8027)) - : (c <= 8029 || (c < 8064 - ? (c >= 8031 && c <= 8061) - : (c <= 8116 || (c >= 8118 && c <= 8124))))) - : (c <= 8126 || (c < 8150 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))) - : (c <= 8155 || (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180))))) - : (c <= 8188 || (c < 8319 - ? (c < 8265 - ? (c < 8252 - ? c == 8205 - : (c <= 8252 || (c >= 8255 && c <= 8256))) - : (c <= 8265 || (c < 8305 - ? c == 8276 - : c <= 8305))) - : (c <= 8319 || (c < 8421 - ? (c < 8400 - ? (c >= 8336 && c <= 8348) - : (c <= 8412 || c == 8417)) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))))) - : (c <= 8467 || (c < 8986 - ? (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : (c <= 8477 || c == 8482)) - : (c <= 8484 || (c < 8488 - ? c == 8486 - : c <= 8488))) - : (c <= 8505 || (c < 8544 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : (c <= 8521 || c == 8526)) - : (c <= 8584 || (c < 8617 - ? (c >= 8596 && c <= 8601) - : c <= 8618))))) - : (c <= 8987 || (c < 9654 - ? (c < 9208 - ? (c < 9167 - ? c == 9000 - : (c <= 9167 || (c >= 9193 && c <= 9203))) - : (c <= 9210 || (c < 9642 - ? c == 9410 - : c <= 9643))) - : (c <= 9654 || (c < 9742 - ? (c < 9723 - ? c == 9664 - : (c <= 9726 || (c >= 9728 && c <= 9732))) - : (c <= 9742 || (c < 9748 - ? c == 9745 - : c <= 9749))))))))))) - : (c <= 9752 || (c < 11013 - ? (c < 9939 - ? (c < 9851 - ? (c < 9792 - ? (c < 9766 - ? (c < 9760 - ? c == 9757 - : (c <= 9760 || (c >= 9762 && c <= 9763))) - : (c <= 9766 || (c < 9774 - ? c == 9770 - : (c <= 9775 || (c >= 9784 && c <= 9786))))) - : (c <= 9792 || (c < 9827 - ? (c < 9800 - ? c == 9794 - : (c <= 9811 || (c >= 9823 && c <= 9824))) - : (c <= 9827 || (c < 9832 - ? (c >= 9829 && c <= 9830) - : c <= 9832))))) - : (c <= 9851 || (c < 9898 - ? (c < 9883 - ? (c < 9874 - ? (c >= 9854 && c <= 9855) - : (c <= 9879 || c == 9881)) - : (c <= 9884 || (c < 9895 - ? (c >= 9888 && c <= 9889) - : c <= 9895))) - : (c <= 9899 || (c < 9928 - ? (c < 9917 - ? (c >= 9904 && c <= 9905) - : (c <= 9918 || (c >= 9924 && c <= 9925))) - : (c <= 9928 || (c < 9937 - ? (c >= 9934 && c <= 9935) - : c <= 9937))))))) - : (c <= 9940 || (c < 10024 - ? (c < 9992 - ? (c < 9981 - ? (c < 9968 - ? (c >= 9961 && c <= 9962) - : (c <= 9973 || (c >= 9975 && c <= 9978))) - : (c <= 9981 || (c < 9989 - ? c == 9986 - : c <= 9989))) - : (c <= 9997 || (c < 10006 - ? (c < 10002 - ? c == 9999 - : (c <= 10002 || c == 10004)) - : (c <= 10006 || (c < 10017 - ? c == 10013 - : c <= 10017))))) - : (c <= 10024 || (c < 10071 - ? (c < 10060 - ? (c < 10052 - ? (c >= 10035 && c <= 10036) - : (c <= 10052 || c == 10055)) - : (c <= 10060 || (c < 10067 - ? c == 10062 - : c <= 10069))) - : (c <= 10071 || (c < 10160 - ? (c < 10133 - ? (c >= 10083 && c <= 10084) - : (c <= 10135 || c == 10145)) - : (c <= 10160 || (c < 10548 - ? c == 10175 - : c <= 10549))))))))) - : (c <= 11015 || (c < 12540 - ? (c < 11696 - ? (c < 11559 - ? (c < 11264 - ? (c < 11088 - ? (c >= 11035 && c <= 11036) - : (c <= 11088 || c == 11093)) - : (c <= 11492 || (c < 11520 - ? (c >= 11499 && c <= 11507) - : c <= 11557))) - : (c <= 11559 || (c < 11647 - ? (c < 11568 - ? c == 11565 - : (c <= 11623 || c == 11631)) - : (c <= 11670 || (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 12293 - ? (c < 11728 - ? (c < 11712 - ? (c >= 11704 && c <= 11710) - : (c <= 11718 || (c >= 11720 && c <= 11726))) - : (c <= 11734 || (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775))) - : (c <= 12295 || (c < 12441 - ? (c < 12344 - ? (c >= 12321 && c <= 12341) - : (c <= 12349 || (c >= 12353 && c <= 12438))) - : (c <= 12442 || (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538))))))) - : (c <= 12543 || (c < 42623 - ? (c < 13312 - ? (c < 12784 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : (c <= 12686 || (c >= 12704 && c <= 12735))) - : (c <= 12799 || (c < 12953 - ? c == 12951 - : c <= 12953))) - : (c <= 19903 || (c < 42512 - ? (c < 42192 - ? (c >= 19968 && c <= 42124) - : (c <= 42237 || (c >= 42240 && c <= 42508))) - : (c <= 42539 || (c < 42612 - ? (c >= 42560 && c <= 42607) - : c <= 42621))))) - : (c <= 42737 || (c < 42994 - ? (c < 42960 - ? (c < 42786 - ? (c >= 42775 && c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42954))) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43047 || (c < 43216 - ? (c < 43072 - ? c == 43052 - : (c <= 43123 || (c >= 43136 && c <= 43205))) - : (c <= 43225 || (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259))))))))))))))) - : (c <= 43309 || (c < 72850 - ? (c < 67968 - ? (c < 65345 - ? (c < 64256 - ? (c < 43785 - ? (c < 43600 - ? (c < 43471 - ? (c < 43360 - ? (c >= 43312 && c <= 43347) - : (c <= 43388 || (c >= 43392 && c <= 43456))) - : (c <= 43481 || (c < 43520 - ? (c >= 43488 && c <= 43518) - : (c <= 43574 || (c >= 43584 && c <= 43597))))) - : (c <= 43609 || (c < 43744 - ? (c < 43642 - ? (c >= 43616 && c <= 43638) - : (c <= 43714 || (c >= 43739 && c <= 43741))) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))))) - : (c <= 43790 || (c < 44012 - ? (c < 43824 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44010))) - : (c <= 44013 || (c < 55243 - ? (c < 44032 - ? (c >= 44016 && c <= 44025) - : (c <= 55203 || (c >= 55216 && c <= 55238))) - : (c <= 55291 || (c < 64112 - ? (c >= 63744 && c <= 64109) - : c <= 64217))))))) - : (c <= 64262 || (c < 65024 - ? (c < 64323 - ? (c < 64312 - ? (c < 64285 - ? (c >= 64275 && c <= 64279) - : (c <= 64296 || (c >= 64298 && c <= 64310))) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64848 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : (c <= 64605 || (c >= 64612 && c <= 64829))) - : (c <= 64911 || (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017))))) - : (c <= 65038 || (c < 65145 - ? (c < 65137 - ? (c < 65075 - ? (c >= 65056 && c <= 65071) - : (c <= 65076 || (c >= 65101 && c <= 65103))) - : (c <= 65137 || (c < 65143 - ? c == 65139 - : c <= 65143))) - : (c <= 65145 || (c < 65296 - ? (c < 65149 - ? c == 65147 - : (c <= 65149 || (c >= 65151 && c <= 65276))) - : (c <= 65305 || (c < 65343 - ? (c >= 65313 && c <= 65338) - : c <= 65343))))))))) - : (c <= 65370 || (c < 66816 - ? (c < 66176 - ? (c < 65576 - ? (c < 65490 - ? (c < 65474 - ? (c >= 65382 && c <= 65470) - : (c <= 65479 || (c >= 65482 && c <= 65487))) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : (c <= 65547 || (c >= 65549 && c <= 65574))))) - : (c <= 65594 || (c < 65664 - ? (c < 65599 - ? (c >= 65596 && c <= 65597) - : (c <= 65613 || (c >= 65616 && c <= 65629))) - : (c <= 65786 || (c < 66045 - ? (c >= 65856 && c <= 65908) - : c <= 66045))))) - : (c <= 66204 || (c < 66464 - ? (c < 66349 - ? (c < 66272 - ? (c >= 66208 && c <= 66256) - : (c <= 66272 || (c >= 66304 && c <= 66335))) - : (c <= 66378 || (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461))) - : (c <= 66499 || (c < 66720 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : (c <= 66517 || (c >= 66560 && c <= 66717))) - : (c <= 66729 || (c < 66776 - ? (c >= 66736 && c <= 66771) - : c <= 66811))))))) - : (c <= 66855 || (c < 67463 - ? (c < 66979 - ? (c < 66956 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : (c <= 66938 || (c >= 66940 && c <= 66954))) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67392 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))))) - : (c <= 67504 || (c < 67647 - ? (c < 67594 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : (c <= 67589 || c == 67592)) - : (c <= 67637 || (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644))) - : (c <= 67669 || (c < 67828 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : (c <= 67742 || (c >= 67808 && c <= 67826))) - : (c <= 67829 || (c < 67872 - ? (c >= 67840 && c <= 67861) - : c <= 67897))))))))))) - : (c <= 68023 || (c < 70405 - ? (c < 69552 - ? (c < 68448 - ? (c < 68159 - ? (c < 68108 - ? (c < 68096 - ? (c >= 68030 && c <= 68031) - : (c <= 68099 || (c >= 68101 && c <= 68102))) - : (c <= 68115 || (c < 68121 - ? (c >= 68117 && c <= 68119) - : (c <= 68149 || (c >= 68152 && c <= 68154))))) - : (c <= 68159 || (c < 68297 - ? (c < 68224 - ? (c >= 68192 && c <= 68220) - : (c <= 68252 || (c >= 68288 && c <= 68295))) - : (c <= 68326 || (c < 68416 - ? (c >= 68352 && c <= 68405) - : c <= 68437))))) - : (c <= 68466 || (c < 69248 - ? (c < 68800 - ? (c < 68608 - ? (c >= 68480 && c <= 68497) - : (c <= 68680 || (c >= 68736 && c <= 68786))) - : (c <= 68850 || (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921))) - : (c <= 69289 || (c < 69415 - ? (c < 69296 - ? (c >= 69291 && c <= 69292) - : (c <= 69297 || (c >= 69376 && c <= 69404))) - : (c <= 69415 || (c < 69488 - ? (c >= 69424 && c <= 69456) - : c <= 69509))))))) - : (c <= 69572 || (c < 70089 - ? (c < 69872 - ? (c < 69759 - ? (c < 69632 - ? (c >= 69600 && c <= 69622) - : (c <= 69702 || (c >= 69734 && c <= 69749))) - : (c <= 69818 || (c < 69840 - ? c == 69826 - : c <= 69864))) - : (c <= 69881 || (c < 69968 - ? (c < 69942 - ? (c >= 69888 && c <= 69940) - : (c <= 69951 || (c >= 69956 && c <= 69959))) - : (c <= 70003 || (c < 70016 - ? c == 70006 - : c <= 70084))))) - : (c <= 70092 || (c < 70280 - ? (c < 70163 - ? (c < 70108 - ? (c >= 70094 && c <= 70106) - : (c <= 70108 || (c >= 70144 && c <= 70161))) - : (c <= 70199 || (c < 70272 - ? c == 70206 - : c <= 70278))) - : (c <= 70280 || (c < 70320 - ? (c < 70287 - ? (c >= 70282 && c <= 70285) - : (c <= 70301 || (c >= 70303 && c <= 70312))) - : (c <= 70378 || (c < 70400 - ? (c >= 70384 && c <= 70393) - : c <= 70403))))))))) - : (c <= 70412 || (c < 71424 - ? (c < 70656 - ? (c < 70471 - ? (c < 70450 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : (c <= 70440 || (c >= 70442 && c <= 70448))) - : (c <= 70451 || (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468))) - : (c <= 70472 || (c < 70493 - ? (c < 70480 - ? (c >= 70475 && c <= 70477) - : (c <= 70480 || c == 70487)) - : (c <= 70499 || (c < 70512 - ? (c >= 70502 && c <= 70508) - : c <= 70516))))) - : (c <= 70730 || (c < 71096 - ? (c < 70855 - ? (c < 70750 - ? (c >= 70736 && c <= 70745) - : (c <= 70753 || (c >= 70784 && c <= 70853))) - : (c <= 70855 || (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093))) - : (c <= 71104 || (c < 71248 - ? (c < 71168 - ? (c >= 71128 && c <= 71133) - : (c <= 71232 || c == 71236)) - : (c <= 71257 || (c < 71360 - ? (c >= 71296 && c <= 71352) - : c <= 71369))))))) - : (c <= 71450 || (c < 72096 - ? (c < 71945 - ? (c < 71680 - ? (c < 71472 - ? (c >= 71453 && c <= 71467) - : (c <= 71481 || (c >= 71488 && c <= 71494))) - : (c <= 71738 || (c < 71935 - ? (c >= 71840 && c <= 71913) - : c <= 71942))) - : (c <= 71945 || (c < 71991 - ? (c < 71957 - ? (c >= 71948 && c <= 71955) - : (c <= 71958 || (c >= 71960 && c <= 71989))) - : (c <= 71992 || (c < 72016 - ? (c >= 71995 && c <= 72003) - : c <= 72025))))) - : (c <= 72103 || (c < 72349 - ? (c < 72192 - ? (c < 72154 - ? (c >= 72106 && c <= 72151) - : (c <= 72161 || (c >= 72163 && c <= 72164))) - : (c <= 72254 || (c < 72272 - ? c == 72263 - : c <= 72345))) - : (c <= 72349 || (c < 72760 - ? (c < 72704 - ? (c >= 72368 && c <= 72440) - : (c <= 72712 || (c >= 72714 && c <= 72758))) - : (c <= 72768 || (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847))))))))))))) - : (c <= 72871 || (c < 124896 - ? (c < 118528 - ? (c < 92912 - ? (c < 73440 - ? (c < 73040 - ? (c < 72971 - ? (c < 72960 - ? (c >= 72873 && c <= 72886) - : (c <= 72966 || (c >= 72968 && c <= 72969))) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : (c <= 73021 || (c >= 73023 && c <= 73031))))) - : (c <= 73049 || (c < 73104 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73102))) - : (c <= 73105 || (c < 73120 - ? (c >= 73107 && c <= 73112) - : c <= 73129))))) - : (c <= 73462 || (c < 82944 - ? (c < 74880 - ? (c < 73728 - ? c == 73648 - : (c <= 74649 || (c >= 74752 && c <= 74862))) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))) - : (c <= 83526 || (c < 92784 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : (c <= 92766 || (c >= 92768 && c <= 92777))) - : (c <= 92862 || (c < 92880 - ? (c >= 92864 && c <= 92873) - : c <= 92909))))))) - : (c <= 92916 || (c < 100352 - ? (c < 93952 - ? (c < 93027 - ? (c < 92992 - ? (c >= 92928 && c <= 92982) - : (c <= 92995 || (c >= 93008 && c <= 93017))) - : (c <= 93047 || (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823))) - : (c <= 94026 || (c < 94179 - ? (c < 94095 - ? (c >= 94031 && c <= 94087) - : (c <= 94111 || (c >= 94176 && c <= 94177))) - : (c <= 94180 || (c < 94208 - ? (c >= 94192 && c <= 94193) - : c <= 100343))))) - : (c <= 101589 || (c < 110948 - ? (c < 110589 - ? (c < 110576 - ? (c >= 101632 && c <= 101640) - : (c <= 110579 || (c >= 110581 && c <= 110587))) - : (c <= 110590 || (c < 110928 - ? (c >= 110592 && c <= 110882) - : c <= 110930))) - : (c <= 110951 || (c < 113792 - ? (c < 113664 - ? (c >= 110960 && c <= 111355) - : (c <= 113770 || (c >= 113776 && c <= 113788))) - : (c <= 113800 || (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822))))))))) - : (c <= 118573 || (c < 120540 - ? (c < 119995 - ? (c < 119808 - ? (c < 119163 - ? (c < 119141 - ? (c >= 118576 && c <= 118598) - : (c <= 119145 || (c >= 119149 && c <= 119154))) - : (c <= 119170 || (c < 119210 - ? (c >= 119173 && c <= 119179) - : (c <= 119213 || (c >= 119362 && c <= 119364))))) - : (c <= 119892 || (c < 119973 - ? (c < 119966 - ? (c >= 119894 && c <= 119964) - : (c <= 119967 || c == 119970)) - : (c <= 119974 || (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))))) - : (c <= 119995 || (c < 120123 - ? (c < 120077 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : (c <= 120069 || (c >= 120071 && c <= 120074))) - : (c <= 120084 || (c < 120094 - ? (c >= 120086 && c <= 120092) - : c <= 120121))) - : (c <= 120126 || (c < 120146 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : (c <= 120134 || (c >= 120138 && c <= 120144))) - : (c <= 120485 || (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538))))))) - : (c <= 120570 || (c < 121499 - ? (c < 120746 - ? (c < 120656 - ? (c < 120598 - ? (c >= 120572 && c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))) - : (c <= 120770 || (c < 121403 - ? (c < 120782 - ? (c >= 120772 && c <= 120779) - : (c <= 120831 || (c >= 121344 && c <= 121398))) - : (c <= 121452 || (c < 121476 - ? c == 121461 - : c <= 121476))))) - : (c <= 121503 || (c < 122918 - ? (c < 122888 - ? (c < 122624 - ? (c >= 121505 && c <= 121519) - : (c <= 122654 || (c >= 122880 && c <= 122886))) - : (c <= 122904 || (c < 122915 - ? (c >= 122907 && c <= 122913) - : c <= 122916))) - : (c <= 122922 || (c < 123214 - ? (c < 123184 - ? (c >= 123136 && c <= 123180) - : (c <= 123197 || (c >= 123200 && c <= 123209))) - : (c <= 123214 || (c < 123584 - ? (c >= 123536 && c <= 123566) - : c <= 123641))))))))))) - : (c <= 124902 || (c < 127902 - ? (c < 126561 - ? (c < 126521 - ? (c < 126464 - ? (c < 124928 - ? (c < 124909 - ? (c >= 124904 && c <= 124907) - : (c <= 124910 || (c >= 124912 && c <= 124926))) - : (c <= 125124 || (c < 125184 - ? (c >= 125136 && c <= 125142) - : (c <= 125259 || (c >= 125264 && c <= 125273))))) - : (c <= 126467 || (c < 126503 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : (c <= 126498 || c == 126500)) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126545 - ? (c < 126537 - ? (c < 126530 - ? c == 126523 - : (c <= 126530 || c == 126535)) - : (c <= 126537 || (c < 126541 - ? c == 126539 - : c <= 126543))) - : (c <= 126546 || (c < 126555 - ? (c < 126551 - ? c == 126548 - : (c <= 126551 || c == 126553)) - : (c <= 126555 || (c < 126559 - ? c == 126557 - : c <= 126559))))))) - : (c <= 126562 || (c < 127344 - ? (c < 126592 - ? (c < 126580 - ? (c < 126567 - ? c == 126564 - : (c <= 126570 || (c >= 126572 && c <= 126578))) - : (c <= 126583 || (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590))) - : (c <= 126601 || (c < 126635 - ? (c < 126625 - ? (c >= 126603 && c <= 126619) - : (c <= 126627 || (c >= 126629 && c <= 126633))) - : (c <= 126651 || (c < 127183 - ? c == 126980 - : c <= 127183))))) - : (c <= 127345 || (c < 127535 - ? (c < 127462 - ? (c < 127374 - ? (c >= 127358 && c <= 127359) - : (c <= 127374 || (c >= 127377 && c <= 127386))) - : (c <= 127487 || (c < 127514 - ? (c >= 127489 && c <= 127490) - : c <= 127514))) - : (c <= 127535 || (c < 127780 - ? (c < 127568 - ? (c >= 127538 && c <= 127546) - : (c <= 127569 || (c >= 127744 && c <= 127777))) - : (c <= 127891 || (c < 127897 - ? (c >= 127894 && c <= 127895) - : c <= 127899))))))))) - : (c <= 127984 || (c < 128733 - ? (c < 128433 - ? (c < 128371 - ? (c < 128329 - ? (c < 127991 - ? (c >= 127987 && c <= 127989) - : (c <= 128253 || (c >= 128255 && c <= 128317))) - : (c <= 128334 || (c < 128367 - ? (c >= 128336 && c <= 128359) - : c <= 128368))) - : (c <= 128378 || (c < 128405 - ? (c < 128394 - ? c == 128391 - : (c <= 128397 || c == 128400)) - : (c <= 128406 || (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424))))) - : (c <= 128434 || (c < 128488 - ? (c < 128476 - ? (c < 128450 - ? c == 128444 - : (c <= 128452 || (c >= 128465 && c <= 128467))) - : (c <= 128478 || (c < 128483 - ? c == 128481 - : c <= 128483))) - : (c <= 128488 || (c < 128640 - ? (c < 128499 - ? c == 128495 - : (c <= 128499 || (c >= 128506 && c <= 128591))) - : (c <= 128709 || (c < 128725 - ? (c >= 128715 && c <= 128722) - : c <= 128727))))))) - : (c <= 128741 || (c < 129712 - ? (c < 129292 - ? (c < 128755 - ? (c < 128747 - ? c == 128745 - : (c <= 128748 || c == 128752)) - : (c <= 128764 || (c < 129008 - ? (c >= 128992 && c <= 129003) - : c <= 129008))) - : (c <= 129338 || (c < 129656 - ? (c < 129351 - ? (c >= 129340 && c <= 129349) - : (c <= 129535 || (c >= 129648 && c <= 129652))) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129776 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : (c <= 129753 || (c >= 129760 && c <= 129767))) - : (c <= 129782 || (c < 131072 - ? (c >= 130032 && c <= 130041) - : c <= 173791))) - : (c <= 177976 || (c < 194560 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : (c <= 183969 || (c >= 183984 && c <= 191456))) - : (c <= 195101 || (c < 917760 - ? (c >= 196608 && c <= 201546) - : c <= 917999))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_7(int32_t c) { - return (c < 43232 - ? (c < 4808 - ? (c < 2887 - ? (c < 2200 - ? (c < 1162 - ? (c < 710 - ? (c < 174 - ? (c < 'A' - ? (c < '*' - ? c == '#' - : (c <= '*' || (c >= '0' && c <= '9'))) - : (c <= 'Z' || (c < 'b' - ? c == '_' - : (c <= 'z' || (c >= 169 && c <= 170))))) - : (c <= 174 || (c < 192 - ? (c < 183 - ? c == 181 - : (c <= 183 || c == 186)) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 895 - ? (c < 768 - ? (c < 748 - ? (c >= 736 && c <= 740) - : (c <= 748 || c == 750)) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 931 - ? (c < 908 - ? (c >= 902 && c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))) - : (c <= 1013 || (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159))))))) - : (c <= 1327 || (c < 1749 - ? (c < 1476 - ? (c < 1425 - ? (c < 1369 - ? (c >= 1329 && c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))) - : (c <= 1469 || (c < 1473 - ? c == 1471 - : c <= 1474))) - : (c <= 1477 || (c < 1552 - ? (c < 1488 - ? c == 1479 - : (c <= 1514 || (c >= 1519 && c <= 1522))) - : (c <= 1562 || (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747))))) - : (c <= 1756 || (c < 2042 - ? (c < 1808 - ? (c < 1770 - ? (c >= 1759 && c <= 1768) - : (c <= 1788 || c == 1791)) - : (c <= 1866 || (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037))) - : (c <= 2042 || (c < 2144 - ? (c < 2048 - ? c == 2045 - : (c <= 2093 || (c >= 2112 && c <= 2139))) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))))))))) - : (c <= 2273 || (c < 2631 - ? (c < 2527 - ? (c < 2482 - ? (c < 2437 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : (c <= 2415 || (c >= 2417 && c <= 2435))) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))) - : (c <= 2482 || (c < 2507 - ? (c < 2492 - ? (c >= 2486 && c <= 2489) - : (c <= 2500 || (c >= 2503 && c <= 2504))) - : (c <= 2510 || (c < 2524 - ? c == 2519 - : c <= 2525))))) - : (c <= 2531 || (c < 2579 - ? (c < 2561 - ? (c < 2556 - ? (c >= 2534 && c <= 2545) - : (c <= 2556 || c == 2558)) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2616 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))))) - : (c <= 2632 || (c < 2759 - ? (c < 2693 - ? (c < 2654 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : (c <= 2641 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757))))) - : (c <= 2761 || (c < 2821 - ? (c < 2790 - ? (c < 2768 - ? (c >= 2763 && c <= 2765) - : (c <= 2768 || (c >= 2784 && c <= 2787))) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2866 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))))))))))) - : (c <= 2888 || (c < 3450 - ? (c < 3146 - ? (c < 2984 - ? (c < 2949 - ? (c < 2911 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : (c <= 2903 || (c >= 2908 && c <= 2909))) - : (c <= 2915 || (c < 2929 - ? (c >= 2918 && c <= 2927) - : (c <= 2929 || (c >= 2946 && c <= 2947))))) - : (c <= 2954 || (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))))) - : (c <= 2986 || (c < 3046 - ? (c < 3018 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : (c <= 3010 || (c >= 3014 && c <= 3016))) - : (c <= 3021 || (c < 3031 - ? c == 3024 - : c <= 3031))) - : (c <= 3055 || (c < 3114 - ? (c < 3086 - ? (c >= 3072 && c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))))))) - : (c <= 3149 || (c < 3274 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : (c <= 3162 || c == 3165)) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3253 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))) - : (c <= 3257 || (c < 3270 - ? (c >= 3260 && c <= 3268) - : c <= 3272))))) - : (c <= 3277 || (c < 3342 - ? (c < 3302 - ? (c < 3293 - ? (c >= 3285 && c <= 3286) - : (c <= 3294 || (c >= 3296 && c <= 3299))) - : (c <= 3311 || (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3412 - ? (c < 3398 - ? (c >= 3346 && c <= 3396) - : (c <= 3400 || (c >= 3402 && c <= 3406))) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))))) - : (c <= 3455 || (c < 3872 - ? (c < 3664 - ? (c < 3535 - ? (c < 3507 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : (c <= 3526 || c == 3530)))) - : (c <= 3540 || (c < 3570 - ? (c < 3544 - ? c == 3542 - : (c <= 3551 || (c >= 3558 && c <= 3567))) - : (c <= 3571 || (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662))))) - : (c <= 3673 || (c < 3776 - ? (c < 3724 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3773))) - : (c <= 3780 || (c < 3804 - ? (c < 3784 - ? c == 3782 - : (c <= 3789 || (c >= 3792 && c <= 3801))) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))))))) - : (c <= 3881 || (c < 4301 - ? (c < 3974 - ? (c < 3902 - ? (c < 3895 - ? c == 3893 - : (c <= 3895 || c == 3897)) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4176 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : (c <= 4038 || (c >= 4096 && c <= 4169))) - : (c <= 4253 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))))) - : (c <= 4301 || (c < 4704 - ? (c < 4688 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4698 - ? c == 4696 - : c <= 4701))) - : (c <= 4744 || (c < 4792 - ? (c < 4752 - ? (c >= 4746 && c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))))))))))))) - : (c <= 4822 || (c < 9742 - ? (c < 7424 - ? (c < 6400 - ? (c < 5919 - ? (c < 5112 - ? (c < 4957 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))) - : (c <= 4959 || (c < 4992 - ? (c >= 4969 && c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))) - : (c <= 5117 || (c < 5792 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5909))))) - : (c <= 5940 || (c < 6108 - ? (c < 6002 - ? (c < 5984 - ? (c >= 5952 && c <= 5971) - : (c <= 5996 || (c >= 5998 && c <= 6000))) - : (c <= 6003 || (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103))) - : (c <= 6109 || (c < 6176 - ? (c < 6155 - ? (c >= 6112 && c <= 6121) - : (c <= 6157 || (c >= 6159 && c <= 6169))) - : (c <= 6264 || (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389))))))) - : (c <= 6430 || (c < 6832 - ? (c < 6608 - ? (c < 6512 - ? (c < 6448 - ? (c >= 6432 && c <= 6443) - : (c <= 6459 || (c >= 6470 && c <= 6509))) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6783 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : (c <= 6750 || (c >= 6752 && c <= 6780))) - : (c <= 6793 || (c < 6823 - ? (c >= 6800 && c <= 6809) - : c <= 6823))))) - : (c <= 6845 || (c < 7232 - ? (c < 7019 - ? (c < 6912 - ? (c >= 6847 && c <= 6862) - : (c <= 6988 || (c >= 6992 && c <= 7001))) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))) - : (c <= 7241 || (c < 7357 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))) - : (c <= 7359 || (c < 7380 - ? (c >= 7376 && c <= 7378) - : c <= 7418))))))))) - : (c <= 7957 || (c < 8421 - ? (c < 8150 - ? (c < 8031 - ? (c < 8016 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : (c <= 8027 || c == 8029)))) - : (c <= 8061 || (c < 8130 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147))))) - : (c <= 8155 || (c < 8265 - ? (c < 8205 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8205 || (c < 8255 - ? c == 8252 - : c <= 8256))) - : (c <= 8265 || (c < 8336 - ? (c < 8305 - ? c == 8276 - : (c <= 8305 || c == 8319)) - : (c <= 8348 || (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417))))))) - : (c <= 8432 || (c < 8544 - ? (c < 8484 - ? (c < 8469 - ? (c < 8455 - ? c == 8450 - : (c <= 8455 || (c >= 8458 && c <= 8467))) - : (c <= 8469 || (c < 8482 - ? (c >= 8472 && c <= 8477) - : c <= 8482))) - : (c <= 8484 || (c < 8508 - ? (c < 8488 - ? c == 8486 - : (c <= 8488 || (c >= 8490 && c <= 8505))) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))))) - : (c <= 8584 || (c < 9208 - ? (c < 9000 - ? (c < 8617 - ? (c >= 8596 && c <= 8601) - : (c <= 8618 || (c >= 8986 && c <= 8987))) - : (c <= 9000 || (c < 9193 - ? c == 9167 - : c <= 9203))) - : (c <= 9210 || (c < 9664 - ? (c < 9642 - ? c == 9410 - : (c <= 9643 || c == 9654)) - : (c <= 9664 || (c < 9728 - ? (c >= 9723 && c <= 9726) - : c <= 9732))))))))))) - : (c <= 9742 || (c < 10160 - ? (c < 9928 - ? (c < 9827 - ? (c < 9770 - ? (c < 9757 - ? (c < 9748 - ? c == 9745 - : (c <= 9749 || c == 9752)) - : (c <= 9757 || (c < 9762 - ? c == 9760 - : (c <= 9763 || c == 9766)))) - : (c <= 9770 || (c < 9794 - ? (c < 9784 - ? (c >= 9774 && c <= 9775) - : (c <= 9786 || c == 9792)) - : (c <= 9794 || (c < 9823 - ? (c >= 9800 && c <= 9811) - : c <= 9824))))) - : (c <= 9827 || (c < 9883 - ? (c < 9854 - ? (c < 9832 - ? (c >= 9829 && c <= 9830) - : (c <= 9832 || c == 9851)) - : (c <= 9855 || (c < 9881 - ? (c >= 9874 && c <= 9879) - : c <= 9881))) - : (c <= 9884 || (c < 9904 - ? (c < 9895 - ? (c >= 9888 && c <= 9889) - : (c <= 9895 || (c >= 9898 && c <= 9899))) - : (c <= 9905 || (c < 9924 - ? (c >= 9917 && c <= 9918) - : c <= 9925))))))) - : (c <= 9928 || (c < 10006 - ? (c < 9981 - ? (c < 9961 - ? (c < 9937 - ? (c >= 9934 && c <= 9935) - : (c <= 9937 || (c >= 9939 && c <= 9940))) - : (c <= 9962 || (c < 9975 - ? (c >= 9968 && c <= 9973) - : c <= 9978))) - : (c <= 9981 || (c < 9999 - ? (c < 9989 - ? c == 9986 - : (c <= 9989 || (c >= 9992 && c <= 9997))) - : (c <= 9999 || (c < 10004 - ? c == 10002 - : c <= 10004))))) - : (c <= 10006 || (c < 10060 - ? (c < 10035 - ? (c < 10017 - ? c == 10013 - : (c <= 10017 || c == 10024)) - : (c <= 10036 || (c < 10055 - ? c == 10052 - : c <= 10055))) - : (c <= 10060 || (c < 10083 - ? (c < 10067 - ? c == 10062 - : (c <= 10069 || c == 10071)) - : (c <= 10084 || (c < 10145 - ? (c >= 10133 && c <= 10135) - : c <= 10145))))))))) - : (c <= 10160 || (c < 12445 - ? (c < 11680 - ? (c < 11499 - ? (c < 11035 - ? (c < 10548 - ? c == 10175 - : (c <= 10549 || (c >= 11013 && c <= 11015))) - : (c <= 11036 || (c < 11093 - ? c == 11088 - : (c <= 11093 || (c >= 11264 && c <= 11492))))) - : (c <= 11507 || (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11736 - ? (c < 11712 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))) - : (c <= 11742 || (c < 12344 - ? (c < 12293 - ? (c >= 11744 && c <= 11775) - : (c <= 12295 || (c >= 12321 && c <= 12341))) - : (c <= 12349 || (c < 12441 - ? (c >= 12353 && c <= 12438) - : c <= 12442))))))) - : (c <= 12447 || (c < 42560 - ? (c < 12951 - ? (c < 12593 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : (c <= 12543 || (c >= 12549 && c <= 12591))) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))) - : (c <= 12951 || (c < 42192 - ? (c < 13312 - ? c == 12953 - : (c <= 19903 || (c >= 19968 && c <= 42124))) - : (c <= 42237 || (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539))))) - : (c <= 42607 || (c < 42963 - ? (c < 42786 - ? (c < 42623 - ? (c >= 42612 && c <= 42621) - : (c <= 42737 || (c >= 42775 && c <= 42783))) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))) - : (c <= 42963 || (c < 43072 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : (c <= 43047 || c == 43052)) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))))))))))))) - : (c <= 43255 || (c < 72818 - ? (c < 67840 - ? (c < 65313 - ? (c < 63744 - ? (c < 43762 - ? (c < 43520 - ? (c < 43360 - ? (c < 43261 - ? c == 43259 - : (c <= 43309 || (c >= 43312 && c <= 43347))) - : (c <= 43388 || (c < 43471 - ? (c >= 43392 && c <= 43456) - : (c <= 43481 || (c >= 43488 && c <= 43518))))) - : (c <= 43574 || (c < 43642 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : (c <= 43609 || (c >= 43616 && c <= 43638))) - : (c <= 43714 || (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759))))) - : (c <= 43766 || (c < 43868 - ? (c < 43808 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : (c <= 43790 || (c >= 43793 && c <= 43798))) - : (c <= 43814 || (c < 43824 - ? (c >= 43816 && c <= 43822) - : c <= 43866))) - : (c <= 43881 || (c < 44032 - ? (c < 44012 - ? (c >= 43888 && c <= 44010) - : (c <= 44013 || (c >= 44016 && c <= 44025))) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))))))) - : (c <= 64109 || (c < 64914 - ? (c < 64318 - ? (c < 64285 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : (c <= 64262 || (c >= 64275 && c <= 64279))) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))) - : (c <= 64318 || (c < 64467 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))) - : (c <= 64967 || (c < 65139 - ? (c < 65075 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : (c <= 65038 || (c >= 65056 && c <= 65071))) - : (c <= 65076 || (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137))) - : (c <= 65139 || (c < 65149 - ? (c < 65145 - ? c == 65143 - : (c <= 65145 || c == 65147)) - : (c <= 65149 || (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305))))))))) - : (c <= 65338 || (c < 66736 - ? (c < 65856 - ? (c < 65536 - ? (c < 65474 - ? (c < 65345 - ? c == 65343 - : (c <= 65370 || (c >= 65382 && c <= 65470))) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65599 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 65908 || (c < 66384 - ? (c < 66272 - ? (c < 66176 - ? c == 66045 - : (c <= 66204 || (c >= 66208 && c <= 66256))) - : (c <= 66272 || (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378))) - : (c <= 66426 || (c < 66513 - ? (c < 66464 - ? (c >= 66432 && c <= 66461) - : (c <= 66499 || (c >= 66504 && c <= 66511))) - : (c <= 66517 || (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729))))))) - : (c <= 66771 || (c < 67424 - ? (c < 66964 - ? (c < 66928 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : (c <= 66855 || (c >= 66864 && c <= 66915))) - : (c <= 66938 || (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962))) - : (c <= 66965 || (c < 67003 - ? (c < 66979 - ? (c >= 66967 && c <= 66977) - : (c <= 66993 || (c >= 66995 && c <= 67001))) - : (c <= 67004 || (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413))))) - : (c <= 67431 || (c < 67639 - ? (c < 67584 - ? (c < 67463 - ? (c >= 67456 && c <= 67461) - : (c <= 67504 || (c >= 67506 && c <= 67514))) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))) - : (c <= 67640 || (c < 67712 - ? (c < 67647 - ? c == 67644 - : (c <= 67669 || (c >= 67680 && c <= 67702))) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))))))))) - : (c <= 67861 || (c < 70384 - ? (c < 69424 - ? (c < 68352 - ? (c < 68121 - ? (c < 68096 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : (c <= 68115 || (c >= 68117 && c <= 68119))))) - : (c <= 68149 || (c < 68224 - ? (c < 68159 - ? (c >= 68152 && c <= 68154) - : (c <= 68159 || (c >= 68192 && c <= 68220))) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))))) - : (c <= 68405 || (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68903 || (c < 69296 - ? (c < 69248 - ? (c >= 68912 && c <= 68921) - : (c <= 69289 || (c >= 69291 && c <= 69292))) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))))) - : (c <= 69456 || (c < 70006 - ? (c < 69826 - ? (c < 69632 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : (c <= 69572 || (c >= 69600 && c <= 69622))) - : (c <= 69702 || (c < 69759 - ? (c >= 69734 && c <= 69749) - : c <= 69818))) - : (c <= 69826 || (c < 69942 - ? (c < 69872 - ? (c >= 69840 && c <= 69864) - : (c <= 69881 || (c >= 69888 && c <= 69940))) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))))) - : (c <= 70006 || (c < 70206 - ? (c < 70108 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : (c <= 70092 || (c >= 70094 && c <= 70106))) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199))) - : (c <= 70206 || (c < 70287 - ? (c < 70280 - ? (c >= 70272 && c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70378))))))))) - : (c <= 70393 || (c < 71360 - ? (c < 70512 - ? (c < 70459 - ? (c < 70419 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70450 - ? (c >= 70442 && c <= 70448) - : (c <= 70451 || (c >= 70453 && c <= 70457))))) - : (c <= 70468 || (c < 70487 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : (c <= 70477 || c == 70480)) - : (c <= 70487 || (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508))))) - : (c <= 70516 || (c < 71040 - ? (c < 70784 - ? (c < 70736 - ? (c >= 70656 && c <= 70730) - : (c <= 70745 || (c >= 70750 && c <= 70753))) - : (c <= 70853 || (c < 70864 - ? c == 70855 - : c <= 70873))) - : (c <= 71093 || (c < 71236 - ? (c < 71128 - ? (c >= 71096 && c <= 71104) - : (c <= 71133 || (c >= 71168 && c <= 71232))) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))))))) - : (c <= 71369 || (c < 72016 - ? (c < 71935 - ? (c < 71488 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : (c <= 71467 || (c >= 71472 && c <= 71481))) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))) - : (c <= 71942 || (c < 71960 - ? (c < 71948 - ? c == 71945 - : (c <= 71955 || (c >= 71957 && c <= 71958))) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72272 - ? (c < 72163 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))) - : (c <= 72164 || (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263))) - : (c <= 72345 || (c < 72714 - ? (c < 72368 - ? c == 72349 - : (c <= 72440 || (c >= 72704 && c <= 72712))) - : (c <= 72758 || (c < 72784 - ? (c >= 72760 && c <= 72768) - : c <= 72793))))))))))))) - : (c <= 72847 || (c < 123584 - ? (c < 113821 - ? (c < 92880 - ? (c < 73120 - ? (c < 73023 - ? (c < 72968 - ? (c < 72873 - ? (c >= 72850 && c <= 72871) - : (c <= 72886 || (c >= 72960 && c <= 72966))) - : (c <= 72969 || (c < 73018 - ? (c >= 72971 && c <= 73014) - : (c <= 73018 || (c >= 73020 && c <= 73021))))) - : (c <= 73031 || (c < 73066 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : (c <= 73061 || (c >= 73063 && c <= 73064))) - : (c <= 73102 || (c < 73107 - ? (c >= 73104 && c <= 73105) - : c <= 73112))))) - : (c <= 73129 || (c < 77824 - ? (c < 74752 - ? (c < 73648 - ? (c >= 73440 && c <= 73462) - : (c <= 73648 || (c >= 73728 && c <= 74649))) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))) - : (c <= 78894 || (c < 92768 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : (c <= 92728 || (c >= 92736 && c <= 92766))) - : (c <= 92777 || (c < 92864 - ? (c >= 92784 && c <= 92862) - : c <= 92873))))))) - : (c <= 92909 || (c < 94208 - ? (c < 93760 - ? (c < 93008 - ? (c < 92928 - ? (c >= 92912 && c <= 92916) - : (c <= 92982 || (c >= 92992 && c <= 92995))) - : (c <= 93017 || (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071))) - : (c <= 93823 || (c < 94176 - ? (c < 94031 - ? (c >= 93952 && c <= 94026) - : (c <= 94087 || (c >= 94095 && c <= 94111))) - : (c <= 94177 || (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193))))) - : (c <= 100343 || (c < 110928 - ? (c < 110581 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : (c <= 101640 || (c >= 110576 && c <= 110579))) - : (c <= 110587 || (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882))) - : (c <= 110930 || (c < 113776 - ? (c < 110960 - ? (c >= 110948 && c <= 110951) - : (c <= 111355 || (c >= 113664 && c <= 113770))) - : (c <= 113788 || (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817))))))))) - : (c <= 113822 || (c < 120514 - ? (c < 119982 - ? (c < 119362 - ? (c < 119149 - ? (c < 118576 - ? (c >= 118528 && c <= 118573) - : (c <= 118598 || (c >= 119141 && c <= 119145))) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : (c <= 119179 || (c >= 119210 && c <= 119213))))) - : (c <= 119364 || (c < 119970 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : (c <= 119964 || (c >= 119966 && c <= 119967))) - : (c <= 119970 || (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980))))) - : (c <= 119993 || (c < 120094 - ? (c < 120071 - ? (c < 119997 - ? c == 119995 - : (c <= 120003 || (c >= 120005 && c <= 120069))) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))) - : (c <= 120121 || (c < 120138 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))))))) - : (c <= 120538 || (c < 121476 - ? (c < 120714 - ? (c < 120630 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712))) - : (c <= 120744 || (c < 121344 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : (c <= 120779 || (c >= 120782 && c <= 120831))) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))))) - : (c <= 121476 || (c < 122915 - ? (c < 122880 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : (c <= 121519 || (c >= 122624 && c <= 122654))) - : (c <= 122886 || (c < 122907 - ? (c >= 122888 && c <= 122904) - : c <= 122913))) - : (c <= 122916 || (c < 123200 - ? (c < 123136 - ? (c >= 122918 && c <= 122922) - : (c <= 123180 || (c >= 123184 && c <= 123197))) - : (c <= 123209 || (c < 123536 - ? c == 123214 - : c <= 123566))))))))))) - : (c <= 123641 || (c < 127897 - ? (c < 126559 - ? (c < 126516 - ? (c < 125264 - ? (c < 124912 - ? (c < 124904 - ? (c >= 124896 && c <= 124902) - : (c <= 124907 || (c >= 124909 && c <= 124910))) - : (c <= 124926 || (c < 125136 - ? (c >= 124928 && c <= 125124) - : (c <= 125142 || (c >= 125184 && c <= 125259))))) - : (c <= 125273 || (c < 126500 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : (c <= 126495 || (c >= 126497 && c <= 126498))) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))))) - : (c <= 126519 || (c < 126541 - ? (c < 126535 - ? (c < 126523 - ? c == 126521 - : (c <= 126523 || c == 126530)) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126553 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : (c <= 126548 || c == 126551)) - : (c <= 126553 || (c < 126557 - ? c == 126555 - : c <= 126557))))))) - : (c <= 126559 || (c < 127183 - ? (c < 126590 - ? (c < 126572 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : (c <= 126564 || (c >= 126567 && c <= 126570))) - : (c <= 126578 || (c < 126585 - ? (c >= 126580 && c <= 126583) - : c <= 126588))) - : (c <= 126590 || (c < 126629 - ? (c < 126603 - ? (c >= 126592 && c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))) - : (c <= 126633 || (c < 126980 - ? (c >= 126635 && c <= 126651) - : c <= 126980))))) - : (c <= 127183 || (c < 127514 - ? (c < 127377 - ? (c < 127358 - ? (c >= 127344 && c <= 127345) - : (c <= 127359 || c == 127374)) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))) - : (c <= 127514 || (c < 127744 - ? (c < 127538 - ? c == 127535 - : (c <= 127546 || (c >= 127568 && c <= 127569))) - : (c <= 127777 || (c < 127894 - ? (c >= 127780 && c <= 127891) - : c <= 127895))))))))) - : (c <= 127899 || (c < 128733 - ? (c < 128433 - ? (c < 128371 - ? (c < 128255 - ? (c < 127987 - ? (c >= 127902 && c <= 127984) - : (c <= 127989 || (c >= 127991 && c <= 128253))) - : (c <= 128317 || (c < 128336 - ? (c >= 128329 && c <= 128334) - : (c <= 128359 || (c >= 128367 && c <= 128368))))) - : (c <= 128378 || (c < 128405 - ? (c < 128394 - ? c == 128391 - : (c <= 128397 || c == 128400)) - : (c <= 128406 || (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424))))) - : (c <= 128434 || (c < 128488 - ? (c < 128476 - ? (c < 128450 - ? c == 128444 - : (c <= 128452 || (c >= 128465 && c <= 128467))) - : (c <= 128478 || (c < 128483 - ? c == 128481 - : c <= 128483))) - : (c <= 128488 || (c < 128640 - ? (c < 128499 - ? c == 128495 - : (c <= 128499 || (c >= 128506 && c <= 128591))) - : (c <= 128709 || (c < 128725 - ? (c >= 128715 && c <= 128722) - : c <= 128727))))))) - : (c <= 128741 || (c < 129712 - ? (c < 129292 - ? (c < 128755 - ? (c < 128747 - ? c == 128745 - : (c <= 128748 || c == 128752)) - : (c <= 128764 || (c < 129008 - ? (c >= 128992 && c <= 129003) - : c <= 129008))) - : (c <= 129338 || (c < 129656 - ? (c < 129351 - ? (c >= 129340 && c <= 129349) - : (c <= 129535 || (c >= 129648 && c <= 129652))) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129776 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : (c <= 129753 || (c >= 129760 && c <= 129767))) - : (c <= 129782 || (c < 131072 - ? (c >= 130032 && c <= 130041) - : c <= 173791))) - : (c <= 177976 || (c < 194560 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : (c <= 183969 || (c >= 183984 && c <= 191456))) - : (c <= 195101 || (c < 917760 - ? (c >= 196608 && c <= 201546) - : c <= 917999))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_8(int32_t c) { - return (c < 43232 - ? (c < 4808 - ? (c < 2887 - ? (c < 2200 - ? (c < 1162 - ? (c < 710 - ? (c < 174 - ? (c < 'A' - ? (c < '*' - ? c == '#' - : (c <= '*' || (c >= '0' && c <= '9'))) - : (c <= 'Z' || (c < 'a' - ? c == '_' - : (c <= 'y' || (c >= 169 && c <= 170))))) - : (c <= 174 || (c < 192 - ? (c < 183 - ? c == 181 - : (c <= 183 || c == 186)) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 895 - ? (c < 768 - ? (c < 748 - ? (c >= 736 && c <= 740) - : (c <= 748 || c == 750)) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 931 - ? (c < 908 - ? (c >= 902 && c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))) - : (c <= 1013 || (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159))))))) - : (c <= 1327 || (c < 1749 - ? (c < 1476 - ? (c < 1425 - ? (c < 1369 - ? (c >= 1329 && c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))) - : (c <= 1469 || (c < 1473 - ? c == 1471 - : c <= 1474))) - : (c <= 1477 || (c < 1552 - ? (c < 1488 - ? c == 1479 - : (c <= 1514 || (c >= 1519 && c <= 1522))) - : (c <= 1562 || (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747))))) - : (c <= 1756 || (c < 2042 - ? (c < 1808 - ? (c < 1770 - ? (c >= 1759 && c <= 1768) - : (c <= 1788 || c == 1791)) - : (c <= 1866 || (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037))) - : (c <= 2042 || (c < 2144 - ? (c < 2048 - ? c == 2045 - : (c <= 2093 || (c >= 2112 && c <= 2139))) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))))))))) - : (c <= 2273 || (c < 2631 - ? (c < 2527 - ? (c < 2482 - ? (c < 2437 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : (c <= 2415 || (c >= 2417 && c <= 2435))) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))) - : (c <= 2482 || (c < 2507 - ? (c < 2492 - ? (c >= 2486 && c <= 2489) - : (c <= 2500 || (c >= 2503 && c <= 2504))) - : (c <= 2510 || (c < 2524 - ? c == 2519 - : c <= 2525))))) - : (c <= 2531 || (c < 2579 - ? (c < 2561 - ? (c < 2556 - ? (c >= 2534 && c <= 2545) - : (c <= 2556 || c == 2558)) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2616 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))))) - : (c <= 2632 || (c < 2759 - ? (c < 2693 - ? (c < 2654 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : (c <= 2641 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757))))) - : (c <= 2761 || (c < 2821 - ? (c < 2790 - ? (c < 2768 - ? (c >= 2763 && c <= 2765) - : (c <= 2768 || (c >= 2784 && c <= 2787))) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2866 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))))))))))) - : (c <= 2888 || (c < 3450 - ? (c < 3146 - ? (c < 2984 - ? (c < 2949 - ? (c < 2911 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : (c <= 2903 || (c >= 2908 && c <= 2909))) - : (c <= 2915 || (c < 2929 - ? (c >= 2918 && c <= 2927) - : (c <= 2929 || (c >= 2946 && c <= 2947))))) - : (c <= 2954 || (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))))) - : (c <= 2986 || (c < 3046 - ? (c < 3018 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : (c <= 3010 || (c >= 3014 && c <= 3016))) - : (c <= 3021 || (c < 3031 - ? c == 3024 - : c <= 3031))) - : (c <= 3055 || (c < 3114 - ? (c < 3086 - ? (c >= 3072 && c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))))))) - : (c <= 3149 || (c < 3274 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : (c <= 3162 || c == 3165)) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3253 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))) - : (c <= 3257 || (c < 3270 - ? (c >= 3260 && c <= 3268) - : c <= 3272))))) - : (c <= 3277 || (c < 3342 - ? (c < 3302 - ? (c < 3293 - ? (c >= 3285 && c <= 3286) - : (c <= 3294 || (c >= 3296 && c <= 3299))) - : (c <= 3311 || (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3412 - ? (c < 3398 - ? (c >= 3346 && c <= 3396) - : (c <= 3400 || (c >= 3402 && c <= 3406))) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))))) - : (c <= 3455 || (c < 3872 - ? (c < 3664 - ? (c < 3535 - ? (c < 3507 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : (c <= 3526 || c == 3530)))) - : (c <= 3540 || (c < 3570 - ? (c < 3544 - ? c == 3542 - : (c <= 3551 || (c >= 3558 && c <= 3567))) - : (c <= 3571 || (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662))))) - : (c <= 3673 || (c < 3776 - ? (c < 3724 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3773))) - : (c <= 3780 || (c < 3804 - ? (c < 3784 - ? c == 3782 - : (c <= 3789 || (c >= 3792 && c <= 3801))) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))))))) - : (c <= 3881 || (c < 4301 - ? (c < 3974 - ? (c < 3902 - ? (c < 3895 - ? c == 3893 - : (c <= 3895 || c == 3897)) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4176 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : (c <= 4038 || (c >= 4096 && c <= 4169))) - : (c <= 4253 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))))) - : (c <= 4301 || (c < 4704 - ? (c < 4688 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4698 - ? c == 4696 - : c <= 4701))) - : (c <= 4744 || (c < 4792 - ? (c < 4752 - ? (c >= 4746 && c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))))))))))))) - : (c <= 4822 || (c < 9742 - ? (c < 7424 - ? (c < 6400 - ? (c < 5919 - ? (c < 5112 - ? (c < 4957 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))) - : (c <= 4959 || (c < 4992 - ? (c >= 4969 && c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))) - : (c <= 5117 || (c < 5792 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5909))))) - : (c <= 5940 || (c < 6108 - ? (c < 6002 - ? (c < 5984 - ? (c >= 5952 && c <= 5971) - : (c <= 5996 || (c >= 5998 && c <= 6000))) - : (c <= 6003 || (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103))) - : (c <= 6109 || (c < 6176 - ? (c < 6155 - ? (c >= 6112 && c <= 6121) - : (c <= 6157 || (c >= 6159 && c <= 6169))) - : (c <= 6264 || (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389))))))) - : (c <= 6430 || (c < 6832 - ? (c < 6608 - ? (c < 6512 - ? (c < 6448 - ? (c >= 6432 && c <= 6443) - : (c <= 6459 || (c >= 6470 && c <= 6509))) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6783 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : (c <= 6750 || (c >= 6752 && c <= 6780))) - : (c <= 6793 || (c < 6823 - ? (c >= 6800 && c <= 6809) - : c <= 6823))))) - : (c <= 6845 || (c < 7232 - ? (c < 7019 - ? (c < 6912 - ? (c >= 6847 && c <= 6862) - : (c <= 6988 || (c >= 6992 && c <= 7001))) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))) - : (c <= 7241 || (c < 7357 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))) - : (c <= 7359 || (c < 7380 - ? (c >= 7376 && c <= 7378) - : c <= 7418))))))))) - : (c <= 7957 || (c < 8421 - ? (c < 8150 - ? (c < 8031 - ? (c < 8016 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : (c <= 8027 || c == 8029)))) - : (c <= 8061 || (c < 8130 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147))))) - : (c <= 8155 || (c < 8265 - ? (c < 8205 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8205 || (c < 8255 - ? c == 8252 - : c <= 8256))) - : (c <= 8265 || (c < 8336 - ? (c < 8305 - ? c == 8276 - : (c <= 8305 || c == 8319)) - : (c <= 8348 || (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417))))))) - : (c <= 8432 || (c < 8544 - ? (c < 8484 - ? (c < 8469 - ? (c < 8455 - ? c == 8450 - : (c <= 8455 || (c >= 8458 && c <= 8467))) - : (c <= 8469 || (c < 8482 - ? (c >= 8472 && c <= 8477) - : c <= 8482))) - : (c <= 8484 || (c < 8508 - ? (c < 8488 - ? c == 8486 - : (c <= 8488 || (c >= 8490 && c <= 8505))) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))))) - : (c <= 8584 || (c < 9208 - ? (c < 9000 - ? (c < 8617 - ? (c >= 8596 && c <= 8601) - : (c <= 8618 || (c >= 8986 && c <= 8987))) - : (c <= 9000 || (c < 9193 - ? c == 9167 - : c <= 9203))) - : (c <= 9210 || (c < 9664 - ? (c < 9642 - ? c == 9410 - : (c <= 9643 || c == 9654)) - : (c <= 9664 || (c < 9728 - ? (c >= 9723 && c <= 9726) - : c <= 9732))))))))))) - : (c <= 9742 || (c < 10160 - ? (c < 9928 - ? (c < 9827 - ? (c < 9770 - ? (c < 9757 - ? (c < 9748 - ? c == 9745 - : (c <= 9749 || c == 9752)) - : (c <= 9757 || (c < 9762 - ? c == 9760 - : (c <= 9763 || c == 9766)))) - : (c <= 9770 || (c < 9794 - ? (c < 9784 - ? (c >= 9774 && c <= 9775) - : (c <= 9786 || c == 9792)) - : (c <= 9794 || (c < 9823 - ? (c >= 9800 && c <= 9811) - : c <= 9824))))) - : (c <= 9827 || (c < 9883 - ? (c < 9854 - ? (c < 9832 - ? (c >= 9829 && c <= 9830) - : (c <= 9832 || c == 9851)) - : (c <= 9855 || (c < 9881 - ? (c >= 9874 && c <= 9879) - : c <= 9881))) - : (c <= 9884 || (c < 9904 - ? (c < 9895 - ? (c >= 9888 && c <= 9889) - : (c <= 9895 || (c >= 9898 && c <= 9899))) - : (c <= 9905 || (c < 9924 - ? (c >= 9917 && c <= 9918) - : c <= 9925))))))) - : (c <= 9928 || (c < 10006 - ? (c < 9981 - ? (c < 9961 - ? (c < 9937 - ? (c >= 9934 && c <= 9935) - : (c <= 9937 || (c >= 9939 && c <= 9940))) - : (c <= 9962 || (c < 9975 - ? (c >= 9968 && c <= 9973) - : c <= 9978))) - : (c <= 9981 || (c < 9999 - ? (c < 9989 - ? c == 9986 - : (c <= 9989 || (c >= 9992 && c <= 9997))) - : (c <= 9999 || (c < 10004 - ? c == 10002 - : c <= 10004))))) - : (c <= 10006 || (c < 10060 - ? (c < 10035 - ? (c < 10017 - ? c == 10013 - : (c <= 10017 || c == 10024)) - : (c <= 10036 || (c < 10055 - ? c == 10052 - : c <= 10055))) - : (c <= 10060 || (c < 10083 - ? (c < 10067 - ? c == 10062 - : (c <= 10069 || c == 10071)) - : (c <= 10084 || (c < 10145 - ? (c >= 10133 && c <= 10135) - : c <= 10145))))))))) - : (c <= 10160 || (c < 12445 - ? (c < 11680 - ? (c < 11499 - ? (c < 11035 - ? (c < 10548 - ? c == 10175 - : (c <= 10549 || (c >= 11013 && c <= 11015))) - : (c <= 11036 || (c < 11093 - ? c == 11088 - : (c <= 11093 || (c >= 11264 && c <= 11492))))) - : (c <= 11507 || (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11736 - ? (c < 11712 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))) - : (c <= 11742 || (c < 12344 - ? (c < 12293 - ? (c >= 11744 && c <= 11775) - : (c <= 12295 || (c >= 12321 && c <= 12341))) - : (c <= 12349 || (c < 12441 - ? (c >= 12353 && c <= 12438) - : c <= 12442))))))) - : (c <= 12447 || (c < 42560 - ? (c < 12951 - ? (c < 12593 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : (c <= 12543 || (c >= 12549 && c <= 12591))) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))) - : (c <= 12951 || (c < 42192 - ? (c < 13312 - ? c == 12953 - : (c <= 19903 || (c >= 19968 && c <= 42124))) - : (c <= 42237 || (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539))))) - : (c <= 42607 || (c < 42963 - ? (c < 42786 - ? (c < 42623 - ? (c >= 42612 && c <= 42621) - : (c <= 42737 || (c >= 42775 && c <= 42783))) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))) - : (c <= 42963 || (c < 43072 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : (c <= 43047 || c == 43052)) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))))))))))))) - : (c <= 43255 || (c < 72818 - ? (c < 67840 - ? (c < 65313 - ? (c < 63744 - ? (c < 43762 - ? (c < 43520 - ? (c < 43360 - ? (c < 43261 - ? c == 43259 - : (c <= 43309 || (c >= 43312 && c <= 43347))) - : (c <= 43388 || (c < 43471 - ? (c >= 43392 && c <= 43456) - : (c <= 43481 || (c >= 43488 && c <= 43518))))) - : (c <= 43574 || (c < 43642 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : (c <= 43609 || (c >= 43616 && c <= 43638))) - : (c <= 43714 || (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759))))) - : (c <= 43766 || (c < 43868 - ? (c < 43808 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : (c <= 43790 || (c >= 43793 && c <= 43798))) - : (c <= 43814 || (c < 43824 - ? (c >= 43816 && c <= 43822) - : c <= 43866))) - : (c <= 43881 || (c < 44032 - ? (c < 44012 - ? (c >= 43888 && c <= 44010) - : (c <= 44013 || (c >= 44016 && c <= 44025))) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))))))) - : (c <= 64109 || (c < 64914 - ? (c < 64318 - ? (c < 64285 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : (c <= 64262 || (c >= 64275 && c <= 64279))) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))) - : (c <= 64318 || (c < 64467 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))) - : (c <= 64967 || (c < 65139 - ? (c < 65075 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : (c <= 65038 || (c >= 65056 && c <= 65071))) - : (c <= 65076 || (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137))) - : (c <= 65139 || (c < 65149 - ? (c < 65145 - ? c == 65143 - : (c <= 65145 || c == 65147)) - : (c <= 65149 || (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305))))))))) - : (c <= 65338 || (c < 66736 - ? (c < 65856 - ? (c < 65536 - ? (c < 65474 - ? (c < 65345 - ? c == 65343 - : (c <= 65370 || (c >= 65382 && c <= 65470))) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65599 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 65908 || (c < 66384 - ? (c < 66272 - ? (c < 66176 - ? c == 66045 - : (c <= 66204 || (c >= 66208 && c <= 66256))) - : (c <= 66272 || (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378))) - : (c <= 66426 || (c < 66513 - ? (c < 66464 - ? (c >= 66432 && c <= 66461) - : (c <= 66499 || (c >= 66504 && c <= 66511))) - : (c <= 66517 || (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729))))))) - : (c <= 66771 || (c < 67424 - ? (c < 66964 - ? (c < 66928 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : (c <= 66855 || (c >= 66864 && c <= 66915))) - : (c <= 66938 || (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962))) - : (c <= 66965 || (c < 67003 - ? (c < 66979 - ? (c >= 66967 && c <= 66977) - : (c <= 66993 || (c >= 66995 && c <= 67001))) - : (c <= 67004 || (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413))))) - : (c <= 67431 || (c < 67639 - ? (c < 67584 - ? (c < 67463 - ? (c >= 67456 && c <= 67461) - : (c <= 67504 || (c >= 67506 && c <= 67514))) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))) - : (c <= 67640 || (c < 67712 - ? (c < 67647 - ? c == 67644 - : (c <= 67669 || (c >= 67680 && c <= 67702))) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))))))))) - : (c <= 67861 || (c < 70384 - ? (c < 69424 - ? (c < 68352 - ? (c < 68121 - ? (c < 68096 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : (c <= 68115 || (c >= 68117 && c <= 68119))))) - : (c <= 68149 || (c < 68224 - ? (c < 68159 - ? (c >= 68152 && c <= 68154) - : (c <= 68159 || (c >= 68192 && c <= 68220))) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))))) - : (c <= 68405 || (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68903 || (c < 69296 - ? (c < 69248 - ? (c >= 68912 && c <= 68921) - : (c <= 69289 || (c >= 69291 && c <= 69292))) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))))) - : (c <= 69456 || (c < 70006 - ? (c < 69826 - ? (c < 69632 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : (c <= 69572 || (c >= 69600 && c <= 69622))) - : (c <= 69702 || (c < 69759 - ? (c >= 69734 && c <= 69749) - : c <= 69818))) - : (c <= 69826 || (c < 69942 - ? (c < 69872 - ? (c >= 69840 && c <= 69864) - : (c <= 69881 || (c >= 69888 && c <= 69940))) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))))) - : (c <= 70006 || (c < 70206 - ? (c < 70108 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : (c <= 70092 || (c >= 70094 && c <= 70106))) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199))) - : (c <= 70206 || (c < 70287 - ? (c < 70280 - ? (c >= 70272 && c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70378))))))))) - : (c <= 70393 || (c < 71360 - ? (c < 70512 - ? (c < 70459 - ? (c < 70419 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70450 - ? (c >= 70442 && c <= 70448) - : (c <= 70451 || (c >= 70453 && c <= 70457))))) - : (c <= 70468 || (c < 70487 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : (c <= 70477 || c == 70480)) - : (c <= 70487 || (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508))))) - : (c <= 70516 || (c < 71040 - ? (c < 70784 - ? (c < 70736 - ? (c >= 70656 && c <= 70730) - : (c <= 70745 || (c >= 70750 && c <= 70753))) - : (c <= 70853 || (c < 70864 - ? c == 70855 - : c <= 70873))) - : (c <= 71093 || (c < 71236 - ? (c < 71128 - ? (c >= 71096 && c <= 71104) - : (c <= 71133 || (c >= 71168 && c <= 71232))) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))))))) - : (c <= 71369 || (c < 72016 - ? (c < 71935 - ? (c < 71488 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : (c <= 71467 || (c >= 71472 && c <= 71481))) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))) - : (c <= 71942 || (c < 71960 - ? (c < 71948 - ? c == 71945 - : (c <= 71955 || (c >= 71957 && c <= 71958))) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72272 - ? (c < 72163 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))) - : (c <= 72164 || (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263))) - : (c <= 72345 || (c < 72714 - ? (c < 72368 - ? c == 72349 - : (c <= 72440 || (c >= 72704 && c <= 72712))) - : (c <= 72758 || (c < 72784 - ? (c >= 72760 && c <= 72768) - : c <= 72793))))))))))))) - : (c <= 72847 || (c < 123584 - ? (c < 113821 - ? (c < 92880 - ? (c < 73120 - ? (c < 73023 - ? (c < 72968 - ? (c < 72873 - ? (c >= 72850 && c <= 72871) - : (c <= 72886 || (c >= 72960 && c <= 72966))) - : (c <= 72969 || (c < 73018 - ? (c >= 72971 && c <= 73014) - : (c <= 73018 || (c >= 73020 && c <= 73021))))) - : (c <= 73031 || (c < 73066 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : (c <= 73061 || (c >= 73063 && c <= 73064))) - : (c <= 73102 || (c < 73107 - ? (c >= 73104 && c <= 73105) - : c <= 73112))))) - : (c <= 73129 || (c < 77824 - ? (c < 74752 - ? (c < 73648 - ? (c >= 73440 && c <= 73462) - : (c <= 73648 || (c >= 73728 && c <= 74649))) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))) - : (c <= 78894 || (c < 92768 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : (c <= 92728 || (c >= 92736 && c <= 92766))) - : (c <= 92777 || (c < 92864 - ? (c >= 92784 && c <= 92862) - : c <= 92873))))))) - : (c <= 92909 || (c < 94208 - ? (c < 93760 - ? (c < 93008 - ? (c < 92928 - ? (c >= 92912 && c <= 92916) - : (c <= 92982 || (c >= 92992 && c <= 92995))) - : (c <= 93017 || (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071))) - : (c <= 93823 || (c < 94176 - ? (c < 94031 - ? (c >= 93952 && c <= 94026) - : (c <= 94087 || (c >= 94095 && c <= 94111))) - : (c <= 94177 || (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193))))) - : (c <= 100343 || (c < 110928 - ? (c < 110581 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : (c <= 101640 || (c >= 110576 && c <= 110579))) - : (c <= 110587 || (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882))) - : (c <= 110930 || (c < 113776 - ? (c < 110960 - ? (c >= 110948 && c <= 110951) - : (c <= 111355 || (c >= 113664 && c <= 113770))) - : (c <= 113788 || (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817))))))))) - : (c <= 113822 || (c < 120514 - ? (c < 119982 - ? (c < 119362 - ? (c < 119149 - ? (c < 118576 - ? (c >= 118528 && c <= 118573) - : (c <= 118598 || (c >= 119141 && c <= 119145))) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : (c <= 119179 || (c >= 119210 && c <= 119213))))) - : (c <= 119364 || (c < 119970 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : (c <= 119964 || (c >= 119966 && c <= 119967))) - : (c <= 119970 || (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980))))) - : (c <= 119993 || (c < 120094 - ? (c < 120071 - ? (c < 119997 - ? c == 119995 - : (c <= 120003 || (c >= 120005 && c <= 120069))) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))) - : (c <= 120121 || (c < 120138 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))))))) - : (c <= 120538 || (c < 121476 - ? (c < 120714 - ? (c < 120630 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712))) - : (c <= 120744 || (c < 121344 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : (c <= 120779 || (c >= 120782 && c <= 120831))) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))))) - : (c <= 121476 || (c < 122915 - ? (c < 122880 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : (c <= 121519 || (c >= 122624 && c <= 122654))) - : (c <= 122886 || (c < 122907 - ? (c >= 122888 && c <= 122904) - : c <= 122913))) - : (c <= 122916 || (c < 123200 - ? (c < 123136 - ? (c >= 122918 && c <= 122922) - : (c <= 123180 || (c >= 123184 && c <= 123197))) - : (c <= 123209 || (c < 123536 - ? c == 123214 - : c <= 123566))))))))))) - : (c <= 123641 || (c < 127897 - ? (c < 126559 - ? (c < 126516 - ? (c < 125264 - ? (c < 124912 - ? (c < 124904 - ? (c >= 124896 && c <= 124902) - : (c <= 124907 || (c >= 124909 && c <= 124910))) - : (c <= 124926 || (c < 125136 - ? (c >= 124928 && c <= 125124) - : (c <= 125142 || (c >= 125184 && c <= 125259))))) - : (c <= 125273 || (c < 126500 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : (c <= 126495 || (c >= 126497 && c <= 126498))) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))))) - : (c <= 126519 || (c < 126541 - ? (c < 126535 - ? (c < 126523 - ? c == 126521 - : (c <= 126523 || c == 126530)) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126553 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : (c <= 126548 || c == 126551)) - : (c <= 126553 || (c < 126557 - ? c == 126555 - : c <= 126557))))))) - : (c <= 126559 || (c < 127183 - ? (c < 126590 - ? (c < 126572 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : (c <= 126564 || (c >= 126567 && c <= 126570))) - : (c <= 126578 || (c < 126585 - ? (c >= 126580 && c <= 126583) - : c <= 126588))) - : (c <= 126590 || (c < 126629 - ? (c < 126603 - ? (c >= 126592 && c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))) - : (c <= 126633 || (c < 126980 - ? (c >= 126635 && c <= 126651) - : c <= 126980))))) - : (c <= 127183 || (c < 127514 - ? (c < 127377 - ? (c < 127358 - ? (c >= 127344 && c <= 127345) - : (c <= 127359 || c == 127374)) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))) - : (c <= 127514 || (c < 127744 - ? (c < 127538 - ? c == 127535 - : (c <= 127546 || (c >= 127568 && c <= 127569))) - : (c <= 127777 || (c < 127894 - ? (c >= 127780 && c <= 127891) - : c <= 127895))))))))) - : (c <= 127899 || (c < 128733 - ? (c < 128433 - ? (c < 128371 - ? (c < 128255 - ? (c < 127987 - ? (c >= 127902 && c <= 127984) - : (c <= 127989 || (c >= 127991 && c <= 128253))) - : (c <= 128317 || (c < 128336 - ? (c >= 128329 && c <= 128334) - : (c <= 128359 || (c >= 128367 && c <= 128368))))) - : (c <= 128378 || (c < 128405 - ? (c < 128394 - ? c == 128391 - : (c <= 128397 || c == 128400)) - : (c <= 128406 || (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424))))) - : (c <= 128434 || (c < 128488 - ? (c < 128476 - ? (c < 128450 - ? c == 128444 - : (c <= 128452 || (c >= 128465 && c <= 128467))) - : (c <= 128478 || (c < 128483 - ? c == 128481 - : c <= 128483))) - : (c <= 128488 || (c < 128640 - ? (c < 128499 - ? c == 128495 - : (c <= 128499 || (c >= 128506 && c <= 128591))) - : (c <= 128709 || (c < 128725 - ? (c >= 128715 && c <= 128722) - : c <= 128727))))))) - : (c <= 128741 || (c < 129712 - ? (c < 129292 - ? (c < 128755 - ? (c < 128747 - ? c == 128745 - : (c <= 128748 || c == 128752)) - : (c <= 128764 || (c < 129008 - ? (c >= 128992 && c <= 129003) - : c <= 129008))) - : (c <= 129338 || (c < 129656 - ? (c < 129351 - ? (c >= 129340 && c <= 129349) - : (c <= 129535 || (c >= 129648 && c <= 129652))) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129776 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : (c <= 129753 || (c >= 129760 && c <= 129767))) - : (c <= 129782 || (c < 131072 - ? (c >= 130032 && c <= 130041) - : c <= 173791))) - : (c <= 177976 || (c < 194560 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : (c <= 183969 || (c >= 183984 && c <= 191456))) - : (c <= 195101 || (c < 917760 - ? (c >= 196608 && c <= 201546) - : c <= 917999))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token1_character_set_9(int32_t c) { - return (c < 43232 - ? (c < 4808 - ? (c < 2887 - ? (c < 2200 - ? (c < 1162 - ? (c < 710 - ? (c < 174 - ? (c < 'A' - ? (c < '*' - ? c == '#' - : (c <= '*' || (c >= '0' && c <= '9'))) - : (c <= 'Z' || (c < 'a' - ? c == '_' - : (c <= 'z' || (c >= 169 && c <= 170))))) - : (c <= 174 || (c < 192 - ? (c < 183 - ? c == 181 - : (c <= 183 || c == 186)) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 895 - ? (c < 768 - ? (c < 748 - ? (c >= 736 && c <= 740) - : (c <= 748 || c == 750)) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 931 - ? (c < 908 - ? (c >= 902 && c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))) - : (c <= 1013 || (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159))))))) - : (c <= 1327 || (c < 1749 - ? (c < 1476 - ? (c < 1425 - ? (c < 1369 - ? (c >= 1329 && c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))) - : (c <= 1469 || (c < 1473 - ? c == 1471 - : c <= 1474))) - : (c <= 1477 || (c < 1552 - ? (c < 1488 - ? c == 1479 - : (c <= 1514 || (c >= 1519 && c <= 1522))) - : (c <= 1562 || (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747))))) - : (c <= 1756 || (c < 2042 - ? (c < 1808 - ? (c < 1770 - ? (c >= 1759 && c <= 1768) - : (c <= 1788 || c == 1791)) - : (c <= 1866 || (c < 1984 - ? (c >= 1869 && c <= 1969) - : c <= 2037))) - : (c <= 2042 || (c < 2144 - ? (c < 2048 - ? c == 2045 - : (c <= 2093 || (c >= 2112 && c <= 2139))) - : (c <= 2154 || (c < 2185 - ? (c >= 2160 && c <= 2183) - : c <= 2190))))))))) - : (c <= 2273 || (c < 2631 - ? (c < 2527 - ? (c < 2482 - ? (c < 2437 - ? (c < 2406 - ? (c >= 2275 && c <= 2403) - : (c <= 2415 || (c >= 2417 && c <= 2435))) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))) - : (c <= 2482 || (c < 2507 - ? (c < 2492 - ? (c >= 2486 && c <= 2489) - : (c <= 2500 || (c >= 2503 && c <= 2504))) - : (c <= 2510 || (c < 2524 - ? c == 2519 - : c <= 2525))))) - : (c <= 2531 || (c < 2579 - ? (c < 2561 - ? (c < 2556 - ? (c >= 2534 && c <= 2545) - : (c <= 2556 || c == 2558)) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2616 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : (c <= 2611 || (c >= 2613 && c <= 2614))) - : (c <= 2617 || (c < 2622 - ? c == 2620 - : c <= 2626))))))) - : (c <= 2632 || (c < 2759 - ? (c < 2693 - ? (c < 2654 - ? (c < 2641 - ? (c >= 2635 && c <= 2637) - : (c <= 2641 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691))) - : (c <= 2701 || (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757))))) - : (c <= 2761 || (c < 2821 - ? (c < 2790 - ? (c < 2768 - ? (c >= 2763 && c <= 2765) - : (c <= 2768 || (c >= 2784 && c <= 2787))) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2866 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))))))))))) - : (c <= 2888 || (c < 3450 - ? (c < 3146 - ? (c < 2984 - ? (c < 2949 - ? (c < 2911 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : (c <= 2903 || (c >= 2908 && c <= 2909))) - : (c <= 2915 || (c < 2929 - ? (c >= 2918 && c <= 2927) - : (c <= 2929 || (c >= 2946 && c <= 2947))))) - : (c <= 2954 || (c < 2972 - ? (c < 2962 - ? (c >= 2958 && c <= 2960) - : (c <= 2965 || (c >= 2969 && c <= 2970))) - : (c <= 2972 || (c < 2979 - ? (c >= 2974 && c <= 2975) - : c <= 2980))))) - : (c <= 2986 || (c < 3046 - ? (c < 3018 - ? (c < 3006 - ? (c >= 2990 && c <= 3001) - : (c <= 3010 || (c >= 3014 && c <= 3016))) - : (c <= 3021 || (c < 3031 - ? c == 3024 - : c <= 3031))) - : (c <= 3055 || (c < 3114 - ? (c < 3086 - ? (c >= 3072 && c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))))))) - : (c <= 3149 || (c < 3274 - ? (c < 3205 - ? (c < 3168 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : (c <= 3162 || c == 3165)) - : (c <= 3171 || (c < 3200 - ? (c >= 3174 && c <= 3183) - : c <= 3203))) - : (c <= 3212 || (c < 3253 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))) - : (c <= 3257 || (c < 3270 - ? (c >= 3260 && c <= 3268) - : c <= 3272))))) - : (c <= 3277 || (c < 3342 - ? (c < 3302 - ? (c < 3293 - ? (c >= 3285 && c <= 3286) - : (c <= 3294 || (c >= 3296 && c <= 3299))) - : (c <= 3311 || (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3412 - ? (c < 3398 - ? (c >= 3346 && c <= 3396) - : (c <= 3400 || (c >= 3402 && c <= 3406))) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))))))))) - : (c <= 3455 || (c < 3872 - ? (c < 3664 - ? (c < 3535 - ? (c < 3507 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : (c <= 3478 || (c >= 3482 && c <= 3505))) - : (c <= 3515 || (c < 3520 - ? c == 3517 - : (c <= 3526 || c == 3530)))) - : (c <= 3540 || (c < 3570 - ? (c < 3544 - ? c == 3542 - : (c <= 3551 || (c >= 3558 && c <= 3567))) - : (c <= 3571 || (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662))))) - : (c <= 3673 || (c < 3776 - ? (c < 3724 - ? (c < 3716 - ? (c >= 3713 && c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3773))) - : (c <= 3780 || (c < 3804 - ? (c < 3784 - ? c == 3782 - : (c <= 3789 || (c >= 3792 && c <= 3801))) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))))))) - : (c <= 3881 || (c < 4301 - ? (c < 3974 - ? (c < 3902 - ? (c < 3895 - ? c == 3893 - : (c <= 3895 || c == 3897)) - : (c <= 3911 || (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972))) - : (c <= 3991 || (c < 4176 - ? (c < 4038 - ? (c >= 3993 && c <= 4028) - : (c <= 4038 || (c >= 4096 && c <= 4169))) - : (c <= 4253 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))))) - : (c <= 4301 || (c < 4704 - ? (c < 4688 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : (c <= 4680 || (c >= 4682 && c <= 4685))) - : (c <= 4694 || (c < 4698 - ? c == 4696 - : c <= 4701))) - : (c <= 4744 || (c < 4792 - ? (c < 4752 - ? (c >= 4746 && c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))))))))))))) - : (c <= 4822 || (c < 9742 - ? (c < 7424 - ? (c < 6400 - ? (c < 5919 - ? (c < 5112 - ? (c < 4957 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : (c <= 4885 || (c >= 4888 && c <= 4954))) - : (c <= 4959 || (c < 4992 - ? (c >= 4969 && c <= 4977) - : (c <= 5007 || (c >= 5024 && c <= 5109))))) - : (c <= 5117 || (c < 5792 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : (c <= 5759 || (c >= 5761 && c <= 5786))) - : (c <= 5866 || (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5909))))) - : (c <= 5940 || (c < 6108 - ? (c < 6002 - ? (c < 5984 - ? (c >= 5952 && c <= 5971) - : (c <= 5996 || (c >= 5998 && c <= 6000))) - : (c <= 6003 || (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103))) - : (c <= 6109 || (c < 6176 - ? (c < 6155 - ? (c >= 6112 && c <= 6121) - : (c <= 6157 || (c >= 6159 && c <= 6169))) - : (c <= 6264 || (c < 6320 - ? (c >= 6272 && c <= 6314) - : c <= 6389))))))) - : (c <= 6430 || (c < 6832 - ? (c < 6608 - ? (c < 6512 - ? (c < 6448 - ? (c >= 6432 && c <= 6443) - : (c <= 6459 || (c >= 6470 && c <= 6509))) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6618 || (c < 6783 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : (c <= 6750 || (c >= 6752 && c <= 6780))) - : (c <= 6793 || (c < 6823 - ? (c >= 6800 && c <= 6809) - : c <= 6823))))) - : (c <= 6845 || (c < 7232 - ? (c < 7019 - ? (c < 6912 - ? (c >= 6847 && c <= 6862) - : (c <= 6988 || (c >= 6992 && c <= 7001))) - : (c <= 7027 || (c < 7168 - ? (c >= 7040 && c <= 7155) - : c <= 7223))) - : (c <= 7241 || (c < 7357 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))) - : (c <= 7359 || (c < 7380 - ? (c >= 7376 && c <= 7378) - : c <= 7418))))))))) - : (c <= 7957 || (c < 8421 - ? (c < 8150 - ? (c < 8031 - ? (c < 8016 - ? (c < 7968 - ? (c >= 7960 && c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))) - : (c <= 8023 || (c < 8027 - ? c == 8025 - : (c <= 8027 || c == 8029)))) - : (c <= 8061 || (c < 8130 - ? (c < 8118 - ? (c >= 8064 && c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147))))) - : (c <= 8155 || (c < 8265 - ? (c < 8205 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : (c <= 8180 || (c >= 8182 && c <= 8188))) - : (c <= 8205 || (c < 8255 - ? c == 8252 - : c <= 8256))) - : (c <= 8265 || (c < 8336 - ? (c < 8305 - ? c == 8276 - : (c <= 8305 || c == 8319)) - : (c <= 8348 || (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417))))))) - : (c <= 8432 || (c < 8544 - ? (c < 8484 - ? (c < 8469 - ? (c < 8455 - ? c == 8450 - : (c <= 8455 || (c >= 8458 && c <= 8467))) - : (c <= 8469 || (c < 8482 - ? (c >= 8472 && c <= 8477) - : c <= 8482))) - : (c <= 8484 || (c < 8508 - ? (c < 8488 - ? c == 8486 - : (c <= 8488 || (c >= 8490 && c <= 8505))) - : (c <= 8511 || (c < 8526 - ? (c >= 8517 && c <= 8521) - : c <= 8526))))) - : (c <= 8584 || (c < 9208 - ? (c < 9000 - ? (c < 8617 - ? (c >= 8596 && c <= 8601) - : (c <= 8618 || (c >= 8986 && c <= 8987))) - : (c <= 9000 || (c < 9193 - ? c == 9167 - : c <= 9203))) - : (c <= 9210 || (c < 9664 - ? (c < 9642 - ? c == 9410 - : (c <= 9643 || c == 9654)) - : (c <= 9664 || (c < 9728 - ? (c >= 9723 && c <= 9726) - : c <= 9732))))))))))) - : (c <= 9742 || (c < 10160 - ? (c < 9928 - ? (c < 9827 - ? (c < 9770 - ? (c < 9757 - ? (c < 9748 - ? c == 9745 - : (c <= 9749 || c == 9752)) - : (c <= 9757 || (c < 9762 - ? c == 9760 - : (c <= 9763 || c == 9766)))) - : (c <= 9770 || (c < 9794 - ? (c < 9784 - ? (c >= 9774 && c <= 9775) - : (c <= 9786 || c == 9792)) - : (c <= 9794 || (c < 9823 - ? (c >= 9800 && c <= 9811) - : c <= 9824))))) - : (c <= 9827 || (c < 9883 - ? (c < 9854 - ? (c < 9832 - ? (c >= 9829 && c <= 9830) - : (c <= 9832 || c == 9851)) - : (c <= 9855 || (c < 9881 - ? (c >= 9874 && c <= 9879) - : c <= 9881))) - : (c <= 9884 || (c < 9904 - ? (c < 9895 - ? (c >= 9888 && c <= 9889) - : (c <= 9895 || (c >= 9898 && c <= 9899))) - : (c <= 9905 || (c < 9924 - ? (c >= 9917 && c <= 9918) - : c <= 9925))))))) - : (c <= 9928 || (c < 10006 - ? (c < 9981 - ? (c < 9961 - ? (c < 9937 - ? (c >= 9934 && c <= 9935) - : (c <= 9937 || (c >= 9939 && c <= 9940))) - : (c <= 9962 || (c < 9975 - ? (c >= 9968 && c <= 9973) - : c <= 9978))) - : (c <= 9981 || (c < 9999 - ? (c < 9989 - ? c == 9986 - : (c <= 9989 || (c >= 9992 && c <= 9997))) - : (c <= 9999 || (c < 10004 - ? c == 10002 - : c <= 10004))))) - : (c <= 10006 || (c < 10060 - ? (c < 10035 - ? (c < 10017 - ? c == 10013 - : (c <= 10017 || c == 10024)) - : (c <= 10036 || (c < 10055 - ? c == 10052 - : c <= 10055))) - : (c <= 10060 || (c < 10083 - ? (c < 10067 - ? c == 10062 - : (c <= 10069 || c == 10071)) - : (c <= 10084 || (c < 10145 - ? (c >= 10133 && c <= 10135) - : c <= 10145))))))))) - : (c <= 10160 || (c < 12445 - ? (c < 11680 - ? (c < 11499 - ? (c < 11035 - ? (c < 10548 - ? c == 10175 - : (c <= 10549 || (c >= 11013 && c <= 11015))) - : (c <= 11036 || (c < 11093 - ? c == 11088 - : (c <= 11093 || (c >= 11264 && c <= 11492))))) - : (c <= 11507 || (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11736 - ? (c < 11712 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : (c <= 11702 || (c >= 11704 && c <= 11710))) - : (c <= 11718 || (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734))) - : (c <= 11742 || (c < 12344 - ? (c < 12293 - ? (c >= 11744 && c <= 11775) - : (c <= 12295 || (c >= 12321 && c <= 12341))) - : (c <= 12349 || (c < 12441 - ? (c >= 12353 && c <= 12438) - : c <= 12442))))))) - : (c <= 12447 || (c < 42560 - ? (c < 12951 - ? (c < 12593 - ? (c < 12540 - ? (c >= 12449 && c <= 12538) - : (c <= 12543 || (c >= 12549 && c <= 12591))) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))) - : (c <= 12951 || (c < 42192 - ? (c < 13312 - ? c == 12953 - : (c <= 19903 || (c >= 19968 && c <= 42124))) - : (c <= 42237 || (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42539))))) - : (c <= 42607 || (c < 42963 - ? (c < 42786 - ? (c < 42623 - ? (c >= 42612 && c <= 42621) - : (c <= 42737 || (c >= 42775 && c <= 42783))) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))) - : (c <= 42963 || (c < 43072 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : (c <= 43047 || c == 43052)) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))))))))))))))) - : (c <= 43255 || (c < 72818 - ? (c < 67840 - ? (c < 65313 - ? (c < 63744 - ? (c < 43762 - ? (c < 43520 - ? (c < 43360 - ? (c < 43261 - ? c == 43259 - : (c <= 43309 || (c >= 43312 && c <= 43347))) - : (c <= 43388 || (c < 43471 - ? (c >= 43392 && c <= 43456) - : (c <= 43481 || (c >= 43488 && c <= 43518))))) - : (c <= 43574 || (c < 43642 - ? (c < 43600 - ? (c >= 43584 && c <= 43597) - : (c <= 43609 || (c >= 43616 && c <= 43638))) - : (c <= 43714 || (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759))))) - : (c <= 43766 || (c < 43868 - ? (c < 43808 - ? (c < 43785 - ? (c >= 43777 && c <= 43782) - : (c <= 43790 || (c >= 43793 && c <= 43798))) - : (c <= 43814 || (c < 43824 - ? (c >= 43816 && c <= 43822) - : c <= 43866))) - : (c <= 43881 || (c < 44032 - ? (c < 44012 - ? (c >= 43888 && c <= 44010) - : (c <= 44013 || (c >= 44016 && c <= 44025))) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))))))) - : (c <= 64109 || (c < 64914 - ? (c < 64318 - ? (c < 64285 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : (c <= 64262 || (c >= 64275 && c <= 64279))) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))) - : (c <= 64318 || (c < 64467 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))) - : (c <= 64967 || (c < 65139 - ? (c < 65075 - ? (c < 65024 - ? (c >= 65008 && c <= 65017) - : (c <= 65039 || (c >= 65056 && c <= 65071))) - : (c <= 65076 || (c < 65137 - ? (c >= 65101 && c <= 65103) - : c <= 65137))) - : (c <= 65139 || (c < 65149 - ? (c < 65145 - ? c == 65143 - : (c <= 65145 || c == 65147)) - : (c <= 65149 || (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305))))))))) - : (c <= 65338 || (c < 66736 - ? (c < 65856 - ? (c < 65536 - ? (c < 65474 - ? (c < 65345 - ? c == 65343 - : (c <= 65370 || (c >= 65382 && c <= 65470))) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65599 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))))) - : (c <= 65908 || (c < 66384 - ? (c < 66272 - ? (c < 66176 - ? c == 66045 - : (c <= 66204 || (c >= 66208 && c <= 66256))) - : (c <= 66272 || (c < 66349 - ? (c >= 66304 && c <= 66335) - : c <= 66378))) - : (c <= 66426 || (c < 66513 - ? (c < 66464 - ? (c >= 66432 && c <= 66461) - : (c <= 66499 || (c >= 66504 && c <= 66511))) - : (c <= 66517 || (c < 66720 - ? (c >= 66560 && c <= 66717) - : c <= 66729))))))) - : (c <= 66771 || (c < 67424 - ? (c < 66964 - ? (c < 66928 - ? (c < 66816 - ? (c >= 66776 && c <= 66811) - : (c <= 66855 || (c >= 66864 && c <= 66915))) - : (c <= 66938 || (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962))) - : (c <= 66965 || (c < 67003 - ? (c < 66979 - ? (c >= 66967 && c <= 66977) - : (c <= 66993 || (c >= 66995 && c <= 67001))) - : (c <= 67004 || (c < 67392 - ? (c >= 67072 && c <= 67382) - : c <= 67413))))) - : (c <= 67431 || (c < 67639 - ? (c < 67584 - ? (c < 67463 - ? (c >= 67456 && c <= 67461) - : (c <= 67504 || (c >= 67506 && c <= 67514))) - : (c <= 67589 || (c < 67594 - ? c == 67592 - : c <= 67637))) - : (c <= 67640 || (c < 67712 - ? (c < 67647 - ? c == 67644 - : (c <= 67669 || (c >= 67680 && c <= 67702))) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))))))))) - : (c <= 67861 || (c < 70384 - ? (c < 69424 - ? (c < 68352 - ? (c < 68121 - ? (c < 68096 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : (c <= 68115 || (c >= 68117 && c <= 68119))))) - : (c <= 68149 || (c < 68224 - ? (c < 68159 - ? (c >= 68152 && c <= 68154) - : (c <= 68159 || (c >= 68192 && c <= 68220))) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326))))) - : (c <= 68405 || (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68903 || (c < 69296 - ? (c < 69248 - ? (c >= 68912 && c <= 68921) - : (c <= 69289 || (c >= 69291 && c <= 69292))) - : (c <= 69297 || (c < 69415 - ? (c >= 69376 && c <= 69404) - : c <= 69415))))))) - : (c <= 69456 || (c < 70006 - ? (c < 69826 - ? (c < 69632 - ? (c < 69552 - ? (c >= 69488 && c <= 69509) - : (c <= 69572 || (c >= 69600 && c <= 69622))) - : (c <= 69702 || (c < 69759 - ? (c >= 69734 && c <= 69749) - : c <= 69818))) - : (c <= 69826 || (c < 69942 - ? (c < 69872 - ? (c >= 69840 && c <= 69864) - : (c <= 69881 || (c >= 69888 && c <= 69940))) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))))) - : (c <= 70006 || (c < 70206 - ? (c < 70108 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : (c <= 70092 || (c >= 70094 && c <= 70106))) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70199))) - : (c <= 70206 || (c < 70287 - ? (c < 70280 - ? (c >= 70272 && c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70378))))))))) - : (c <= 70393 || (c < 71360 - ? (c < 70512 - ? (c < 70459 - ? (c < 70419 - ? (c < 70405 - ? (c >= 70400 && c <= 70403) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70450 - ? (c >= 70442 && c <= 70448) - : (c <= 70451 || (c >= 70453 && c <= 70457))))) - : (c <= 70468 || (c < 70487 - ? (c < 70475 - ? (c >= 70471 && c <= 70472) - : (c <= 70477 || c == 70480)) - : (c <= 70487 || (c < 70502 - ? (c >= 70493 && c <= 70499) - : c <= 70508))))) - : (c <= 70516 || (c < 71040 - ? (c < 70784 - ? (c < 70736 - ? (c >= 70656 && c <= 70730) - : (c <= 70745 || (c >= 70750 && c <= 70753))) - : (c <= 70853 || (c < 70864 - ? c == 70855 - : c <= 70873))) - : (c <= 71093 || (c < 71236 - ? (c < 71128 - ? (c >= 71096 && c <= 71104) - : (c <= 71133 || (c >= 71168 && c <= 71232))) - : (c <= 71236 || (c < 71296 - ? (c >= 71248 && c <= 71257) - : c <= 71352))))))) - : (c <= 71369 || (c < 72016 - ? (c < 71935 - ? (c < 71488 - ? (c < 71453 - ? (c >= 71424 && c <= 71450) - : (c <= 71467 || (c >= 71472 && c <= 71481))) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71738) - : c <= 71913))) - : (c <= 71942 || (c < 71960 - ? (c < 71948 - ? c == 71945 - : (c <= 71955 || (c >= 71957 && c <= 71958))) - : (c <= 71989 || (c < 71995 - ? (c >= 71991 && c <= 71992) - : c <= 72003))))) - : (c <= 72025 || (c < 72272 - ? (c < 72163 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : (c <= 72151 || (c >= 72154 && c <= 72161))) - : (c <= 72164 || (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263))) - : (c <= 72345 || (c < 72714 - ? (c < 72368 - ? c == 72349 - : (c <= 72440 || (c >= 72704 && c <= 72712))) - : (c <= 72758 || (c < 72784 - ? (c >= 72760 && c <= 72768) - : c <= 72793))))))))))))) - : (c <= 72847 || (c < 123584 - ? (c < 113821 - ? (c < 92880 - ? (c < 73120 - ? (c < 73023 - ? (c < 72968 - ? (c < 72873 - ? (c >= 72850 && c <= 72871) - : (c <= 72886 || (c >= 72960 && c <= 72966))) - : (c <= 72969 || (c < 73018 - ? (c >= 72971 && c <= 73014) - : (c <= 73018 || (c >= 73020 && c <= 73021))))) - : (c <= 73031 || (c < 73066 - ? (c < 73056 - ? (c >= 73040 && c <= 73049) - : (c <= 73061 || (c >= 73063 && c <= 73064))) - : (c <= 73102 || (c < 73107 - ? (c >= 73104 && c <= 73105) - : c <= 73112))))) - : (c <= 73129 || (c < 77824 - ? (c < 74752 - ? (c < 73648 - ? (c >= 73440 && c <= 73462) - : (c <= 73648 || (c >= 73728 && c <= 74649))) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))) - : (c <= 78894 || (c < 92768 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : (c <= 92728 || (c >= 92736 && c <= 92766))) - : (c <= 92777 || (c < 92864 - ? (c >= 92784 && c <= 92862) - : c <= 92873))))))) - : (c <= 92909 || (c < 94208 - ? (c < 93760 - ? (c < 93008 - ? (c < 92928 - ? (c >= 92912 && c <= 92916) - : (c <= 92982 || (c >= 92992 && c <= 92995))) - : (c <= 93017 || (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071))) - : (c <= 93823 || (c < 94176 - ? (c < 94031 - ? (c >= 93952 && c <= 94026) - : (c <= 94087 || (c >= 94095 && c <= 94111))) - : (c <= 94177 || (c < 94192 - ? (c >= 94179 && c <= 94180) - : c <= 94193))))) - : (c <= 100343 || (c < 110928 - ? (c < 110581 - ? (c < 101632 - ? (c >= 100352 && c <= 101589) - : (c <= 101640 || (c >= 110576 && c <= 110579))) - : (c <= 110587 || (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882))) - : (c <= 110930 || (c < 113776 - ? (c < 110960 - ? (c >= 110948 && c <= 110951) - : (c <= 111355 || (c >= 113664 && c <= 113770))) - : (c <= 113788 || (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817))))))))) - : (c <= 113822 || (c < 120514 - ? (c < 119982 - ? (c < 119362 - ? (c < 119149 - ? (c < 118576 - ? (c >= 118528 && c <= 118573) - : (c <= 118598 || (c >= 119141 && c <= 119145))) - : (c <= 119154 || (c < 119173 - ? (c >= 119163 && c <= 119170) - : (c <= 119179 || (c >= 119210 && c <= 119213))))) - : (c <= 119364 || (c < 119970 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : (c <= 119964 || (c >= 119966 && c <= 119967))) - : (c <= 119970 || (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980))))) - : (c <= 119993 || (c < 120094 - ? (c < 120071 - ? (c < 119997 - ? c == 119995 - : (c <= 120003 || (c >= 120005 && c <= 120069))) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))) - : (c <= 120121 || (c < 120138 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : (c <= 120132 || c == 120134)) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))))))) - : (c <= 120538 || (c < 121476 - ? (c < 120714 - ? (c < 120630 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : (c <= 120596 || (c >= 120598 && c <= 120628))) - : (c <= 120654 || (c < 120688 - ? (c >= 120656 && c <= 120686) - : c <= 120712))) - : (c <= 120744 || (c < 121344 - ? (c < 120772 - ? (c >= 120746 && c <= 120770) - : (c <= 120779 || (c >= 120782 && c <= 120831))) - : (c <= 121398 || (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461))))) - : (c <= 121476 || (c < 122915 - ? (c < 122880 - ? (c < 121505 - ? (c >= 121499 && c <= 121503) - : (c <= 121519 || (c >= 122624 && c <= 122654))) - : (c <= 122886 || (c < 122907 - ? (c >= 122888 && c <= 122904) - : c <= 122913))) - : (c <= 122916 || (c < 123200 - ? (c < 123136 - ? (c >= 122918 && c <= 122922) - : (c <= 123180 || (c >= 123184 && c <= 123197))) - : (c <= 123209 || (c < 123536 - ? c == 123214 - : c <= 123566))))))))))) - : (c <= 123641 || (c < 127897 - ? (c < 126559 - ? (c < 126516 - ? (c < 125264 - ? (c < 124912 - ? (c < 124904 - ? (c >= 124896 && c <= 124902) - : (c <= 124907 || (c >= 124909 && c <= 124910))) - : (c <= 124926 || (c < 125136 - ? (c >= 124928 && c <= 125124) - : (c <= 125142 || (c >= 125184 && c <= 125259))))) - : (c <= 125273 || (c < 126500 - ? (c < 126469 - ? (c >= 126464 && c <= 126467) - : (c <= 126495 || (c >= 126497 && c <= 126498))) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))))) - : (c <= 126519 || (c < 126541 - ? (c < 126535 - ? (c < 126523 - ? c == 126521 - : (c <= 126523 || c == 126530)) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126553 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : (c <= 126548 || c == 126551)) - : (c <= 126553 || (c < 126557 - ? c == 126555 - : c <= 126557))))))) - : (c <= 126559 || (c < 127183 - ? (c < 126590 - ? (c < 126572 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : (c <= 126564 || (c >= 126567 && c <= 126570))) - : (c <= 126578 || (c < 126585 - ? (c >= 126580 && c <= 126583) - : c <= 126588))) - : (c <= 126590 || (c < 126629 - ? (c < 126603 - ? (c >= 126592 && c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))) - : (c <= 126633 || (c < 126980 - ? (c >= 126635 && c <= 126651) - : c <= 126980))))) - : (c <= 127183 || (c < 127514 - ? (c < 127377 - ? (c < 127358 - ? (c >= 127344 && c <= 127345) - : (c <= 127359 || c == 127374)) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))) - : (c <= 127514 || (c < 127744 - ? (c < 127538 - ? c == 127535 - : (c <= 127546 || (c >= 127568 && c <= 127569))) - : (c <= 127777 || (c < 127894 - ? (c >= 127780 && c <= 127891) - : c <= 127895))))))))) - : (c <= 127899 || (c < 128733 - ? (c < 128433 - ? (c < 128371 - ? (c < 128255 - ? (c < 127987 - ? (c >= 127902 && c <= 127984) - : (c <= 127989 || (c >= 127991 && c <= 128253))) - : (c <= 128317 || (c < 128336 - ? (c >= 128329 && c <= 128334) - : (c <= 128359 || (c >= 128367 && c <= 128368))))) - : (c <= 128378 || (c < 128405 - ? (c < 128394 - ? c == 128391 - : (c <= 128397 || c == 128400)) - : (c <= 128406 || (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424))))) - : (c <= 128434 || (c < 128488 - ? (c < 128476 - ? (c < 128450 - ? c == 128444 - : (c <= 128452 || (c >= 128465 && c <= 128467))) - : (c <= 128478 || (c < 128483 - ? c == 128481 - : c <= 128483))) - : (c <= 128488 || (c < 128640 - ? (c < 128499 - ? c == 128495 - : (c <= 128499 || (c >= 128506 && c <= 128591))) - : (c <= 128709 || (c < 128725 - ? (c >= 128715 && c <= 128722) - : c <= 128727))))))) - : (c <= 128741 || (c < 129712 - ? (c < 129292 - ? (c < 128755 - ? (c < 128747 - ? c == 128745 - : (c <= 128748 || c == 128752)) - : (c <= 128764 || (c < 129008 - ? (c >= 128992 && c <= 129003) - : c <= 129008))) - : (c <= 129338 || (c < 129656 - ? (c < 129351 - ? (c >= 129340 && c <= 129349) - : (c <= 129535 || (c >= 129648 && c <= 129652))) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129776 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : (c <= 129753 || (c >= 129760 && c <= 129767))) - : (c <= 129782 || (c < 131072 - ? (c >= 130032 && c <= 130041) - : c <= 173791))) - : (c <= 177976 || (c < 194560 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : (c <= 183969 || (c >= 183984 && c <= 191456))) - : (c <= 195101 || (c < 917760 - ? (c >= 196608 && c <= 201546) - : c <= 917999))))))))))))))))); -} - -static inline bool aux_sym_simple_identifier_token4_character_set_1(int32_t c) { - return (c < 43250 - ? (c < 5952 - ? (c < 2929 - ? (c < 2144 - ? (c < 1329 - ? (c < 748 - ? (c < 186 - ? (c < 169 - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : (c <= '_' || (c >= 'a' && c <= 'z'))) - : (c <= 170 || (c < 181 - ? c == 174 - : c <= 181))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740))))) - : (c <= 748 || (c < 904 - ? (c < 891 - ? (c < 880 - ? c == 750 - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 902 - ? c == 895 - : c <= 902))) - : (c <= 906 || (c < 931 - ? (c < 910 - ? c == 908 - : c <= 929) - : (c <= 1013 || (c < 1162 - ? (c >= 1015 && c <= 1153) - : c <= 1327))))))) - : (c <= 1366 || (c < 1808 - ? (c < 1649 - ? (c < 1519 - ? (c < 1376 - ? c == 1369 - : (c <= 1416 || (c >= 1488 && c <= 1514))) - : (c <= 1522 || (c < 1646 - ? (c >= 1568 && c <= 1610) - : c <= 1647))) - : (c <= 1747 || (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c < 1791 - ? (c >= 1786 && c <= 1788) - : c <= 1791))))) - : (c <= 1808 || (c < 2042 - ? (c < 1969 - ? (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957) - : (c <= 1969 || (c < 2036 - ? (c >= 1994 && c <= 2026) - : c <= 2037))) - : (c <= 2042 || (c < 2084 - ? (c < 2074 - ? (c >= 2048 && c <= 2069) - : c <= 2074) - : (c <= 2084 || (c < 2112 - ? c == 2088 - : c <= 2136))))))))) - : (c <= 2154 || (c < 2610 - ? (c < 2482 - ? (c < 2392 - ? (c < 2308 - ? (c < 2185 - ? (c >= 2160 && c <= 2183) - : (c <= 2190 || (c >= 2208 && c <= 2249))) - : (c <= 2361 || (c < 2384 - ? c == 2365 - : c <= 2384))) - : (c <= 2401 || (c < 2447 - ? (c < 2437 - ? (c >= 2417 && c <= 2432) - : c <= 2444) - : (c <= 2448 || (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480))))) - : (c <= 2482 || (c < 2544 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529))) - : (c <= 2545 || (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608))))))) - : (c <= 2611 || (c < 2768 - ? (c < 2703 - ? (c < 2654 - ? (c < 2616 - ? (c >= 2613 && c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701))) - : (c <= 2705 || (c < 2738 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736) - : (c <= 2739 || (c < 2749 - ? (c >= 2741 && c <= 2745) - : c <= 2749))))) - : (c <= 2768 || (c < 2858 - ? (c < 2821 - ? (c < 2809 - ? (c >= 2784 && c <= 2785) - : c <= 2809) - : (c <= 2828 || (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856))) - : (c <= 2864 || (c < 2877 - ? (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873) - : (c <= 2877 || (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2913))))))))))) - : (c <= 2929 || (c < 3749 - ? (c < 3253 - ? (c < 3086 - ? (c < 2974 - ? (c < 2962 - ? (c < 2949 - ? c == 2947 - : (c <= 2954 || (c >= 2958 && c <= 2960))) - : (c <= 2965 || (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972))) - : (c <= 2975 || (c < 2990 - ? (c < 2984 - ? (c >= 2979 && c <= 2980) - : c <= 2986) - : (c <= 3001 || (c < 3077 - ? c == 3024 - : c <= 3084))))) - : (c <= 3088 || (c < 3168 - ? (c < 3133 - ? (c < 3114 - ? (c >= 3090 && c <= 3112) - : c <= 3129) - : (c <= 3133 || (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165))) - : (c <= 3169 || (c < 3214 - ? (c < 3205 - ? c == 3200 - : c <= 3212) - : (c <= 3216 || (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251))))))) - : (c <= 3257 || (c < 3461 - ? (c < 3346 - ? (c < 3313 - ? (c < 3293 - ? c == 3261 - : (c <= 3294 || (c >= 3296 && c <= 3297))) - : (c <= 3314 || (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344))) - : (c <= 3386 || (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c < 3450 - ? (c >= 3423 && c <= 3425) - : c <= 3455))))) - : (c <= 3478 || (c < 3634 - ? (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632))) - : (c <= 3634 || (c < 3716 - ? (c < 3713 - ? (c >= 3648 && c <= 3654) - : c <= 3714) - : (c <= 3716 || (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747))))))))) - : (c <= 3749 || (c < 4682 - ? (c < 4176 - ? (c < 3840 - ? (c < 3776 - ? (c < 3762 - ? (c >= 3751 && c <= 3760) - : (c <= 3762 || c == 3773)) - : (c <= 3780 || (c < 3804 - ? c == 3782 - : c <= 3807))) - : (c <= 3840 || (c < 3976 - ? (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948) - : (c <= 3980 || (c < 4159 - ? (c >= 4096 && c <= 4138) - : c <= 4159))))) - : (c <= 4181 || (c < 4238 - ? (c < 4197 - ? (c < 4193 - ? (c >= 4186 && c <= 4189) - : c <= 4193) - : (c <= 4198 || (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225))) - : (c <= 4238 || (c < 4301 - ? (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295) - : (c <= 4301 || (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680))))))) - : (c <= 4685 || (c < 4882 - ? (c < 4786 - ? (c < 4704 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : (c <= 4696 || (c >= 4698 && c <= 4701))) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c < 4824 - ? (c >= 4808 && c <= 4822) - : c <= 4880))))) - : (c <= 4885 || (c < 5743 - ? (c < 5024 - ? (c < 4992 - ? (c >= 4888 && c <= 4954) - : c <= 5007) - : (c <= 5109 || (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c < 5919 - ? (c >= 5888 && c <= 5905) - : c <= 5937))))))))))))) - : (c <= 5969 || (c < 9829 - ? (c < 8178 - ? (c < 7296 - ? (c < 6528 - ? (c < 6272 - ? (c < 6103 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6176 - ? c == 6108 - : c <= 6264))) - : (c <= 6312 || (c < 6400 - ? (c < 6320 - ? c == 6314 - : c <= 6389) - : (c <= 6430 || (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516))))) - : (c <= 6571 || (c < 7043 - ? (c < 6823 - ? (c < 6656 - ? (c >= 6576 && c <= 6601) - : (c <= 6678 || (c >= 6688 && c <= 6740))) - : (c <= 6823 || (c < 6981 - ? (c >= 6917 && c <= 6963) - : c <= 6988))) - : (c <= 7072 || (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c < 7258 - ? (c >= 7245 && c <= 7247) - : c <= 7293))))))) - : (c <= 7304 || (c < 8025 - ? (c < 7424 - ? (c < 7406 - ? (c < 7357 - ? (c >= 7312 && c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))) - : (c <= 7411 || (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418))) - : (c <= 7615 || (c < 7968 - ? (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023))))) - : (c <= 8025 || (c < 8126 - ? (c < 8031 - ? (c < 8029 - ? c == 8027 - : c <= 8029) - : (c <= 8061 || (c < 8118 - ? (c >= 8064 && c <= 8116) - : c <= 8124))) - : (c <= 8126 || (c < 8144 - ? (c < 8134 - ? (c >= 8130 && c <= 8132) - : c <= 8140) - : (c <= 8147 || (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172))))))))) - : (c <= 8180 || (c < 9167 - ? (c < 8484 - ? (c < 8450 - ? (c < 8305 - ? (c < 8252 - ? (c >= 8182 && c <= 8188) - : (c <= 8252 || c == 8265)) - : (c <= 8305 || (c < 8336 - ? c == 8319 - : c <= 8348))) - : (c <= 8450 || (c < 8469 - ? (c < 8458 - ? c == 8455 - : c <= 8467) - : (c <= 8469 || (c < 8482 - ? (c >= 8472 && c <= 8477) - : c <= 8482))))) - : (c <= 8484 || (c < 8526 - ? (c < 8490 - ? (c < 8488 - ? c == 8486 - : c <= 8488) - : (c <= 8505 || (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521))) - : (c <= 8526 || (c < 8617 - ? (c < 8596 - ? (c >= 8544 && c <= 8584) - : c <= 8601) - : (c <= 8618 || (c < 9000 - ? (c >= 8986 && c <= 8987) - : c <= 9000))))))) - : (c <= 9167 || (c < 9757 - ? (c < 9723 - ? (c < 9642 - ? (c < 9208 - ? (c >= 9193 && c <= 9203) - : (c <= 9210 || c == 9410)) - : (c <= 9643 || (c < 9664 - ? c == 9654 - : c <= 9664))) - : (c <= 9726 || (c < 9745 - ? (c < 9742 - ? (c >= 9728 && c <= 9732) - : c <= 9742) - : (c <= 9745 || (c < 9752 - ? (c >= 9748 && c <= 9749) - : c <= 9752))))) - : (c <= 9757 || (c < 9784 - ? (c < 9766 - ? (c < 9762 - ? c == 9760 - : c <= 9763) - : (c <= 9766 || (c < 9774 - ? c == 9770 - : c <= 9775))) - : (c <= 9786 || (c < 9800 - ? (c < 9794 - ? c == 9792 - : c <= 9794) - : (c <= 9811 || (c < 9827 - ? (c >= 9823 && c <= 9824) - : c <= 9827))))))))))) - : (c <= 9830 || (c < 11506 - ? (c < 10002 - ? (c < 9928 - ? (c < 9888 - ? (c < 9874 - ? (c < 9851 - ? c == 9832 - : (c <= 9851 || (c >= 9854 && c <= 9855))) - : (c <= 9879 || (c < 9883 - ? c == 9881 - : c <= 9884))) - : (c <= 9889 || (c < 9904 - ? (c < 9898 - ? c == 9895 - : c <= 9899) - : (c <= 9905 || (c < 9924 - ? (c >= 9917 && c <= 9918) - : c <= 9925))))) - : (c <= 9928 || (c < 9975 - ? (c < 9939 - ? (c < 9937 - ? (c >= 9934 && c <= 9935) - : c <= 9937) - : (c <= 9940 || (c < 9968 - ? (c >= 9961 && c <= 9962) - : c <= 9973))) - : (c <= 9978 || (c < 9989 - ? (c < 9986 - ? c == 9981 - : c <= 9986) - : (c <= 9989 || (c < 9999 - ? (c >= 9992 && c <= 9997) - : c <= 9999))))))) - : (c <= 10002 || (c < 10083 - ? (c < 10052 - ? (c < 10017 - ? (c < 10006 - ? c == 10004 - : (c <= 10006 || c == 10013)) - : (c <= 10017 || (c < 10035 - ? c == 10024 - : c <= 10036))) - : (c <= 10052 || (c < 10062 - ? (c < 10060 - ? c == 10055 - : c <= 10060) - : (c <= 10062 || (c < 10071 - ? (c >= 10067 && c <= 10069) - : c <= 10071))))) - : (c <= 10084 || (c < 11013 - ? (c < 10160 - ? (c < 10145 - ? (c >= 10133 && c <= 10135) - : c <= 10145) - : (c <= 10160 || (c < 10548 - ? c == 10175 - : c <= 10549))) - : (c <= 11015 || (c < 11093 - ? (c < 11088 - ? (c >= 11035 && c <= 11036) - : c <= 11088) - : (c <= 11093 || (c < 11499 - ? (c >= 11264 && c <= 11492) - : c <= 11502))))))))) - : (c <= 11507 || (c < 12704 - ? (c < 11728 - ? (c < 11680 - ? (c < 11568 - ? (c < 11559 - ? (c >= 11520 && c <= 11557) - : (c <= 11559 || c == 11565)) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))))) - : (c <= 11734 || (c < 12353 - ? (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c < 12344 - ? (c >= 12336 && c <= 12341) - : c <= 12349))) - : (c <= 12438 || (c < 12540 - ? (c < 12449 - ? (c >= 12445 && c <= 12447) - : c <= 12538) - : (c <= 12543 || (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686))))))) - : (c <= 12735 || (c < 42775 - ? (c < 42240 - ? (c < 13312 - ? (c < 12951 - ? (c >= 12784 && c <= 12799) - : (c <= 12951 || c == 12953)) - : (c <= 19903 || (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237))) - : (c <= 42508 || (c < 42560 - ? (c < 42538 - ? (c >= 42512 && c <= 42527) - : c <= 42539) - : (c <= 42606 || (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735))))) - : (c <= 42783 || (c < 42994 - ? (c < 42960 - ? (c < 42891 - ? (c >= 42786 && c <= 42888) - : c <= 42954) - : (c <= 42961 || (c < 42965 - ? c == 42963 - : c <= 42969))) - : (c <= 43009 || (c < 43020 - ? (c < 43015 - ? (c >= 43011 && c <= 43013) - : c <= 43018) - : (c <= 43042 || (c < 43138 - ? (c >= 43072 && c <= 43123) - : c <= 43187))))))))))))))) - : (c <= 43255 || (c < 72203 - ? (c < 67456 - ? (c < 64914 - ? (c < 43785 - ? (c < 43588 - ? (c < 43471 - ? (c < 43312 - ? (c < 43261 - ? c == 43259 - : (c <= 43262 || (c >= 43274 && c <= 43301))) - : (c <= 43334 || (c < 43396 - ? (c >= 43360 && c <= 43388) - : c <= 43442))) - : (c <= 43471 || (c < 43514 - ? (c < 43494 - ? (c >= 43488 && c <= 43492) - : c <= 43503) - : (c <= 43518 || (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586))))) - : (c <= 43595 || (c < 43712 - ? (c < 43697 - ? (c < 43642 - ? (c >= 43616 && c <= 43638) - : (c <= 43642 || (c >= 43646 && c <= 43695))) - : (c <= 43697 || (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709))) - : (c <= 43712 || (c < 43744 - ? (c < 43739 - ? c == 43714 - : c <= 43741) - : (c <= 43754 || (c < 43777 - ? (c >= 43762 && c <= 43764) - : c <= 43782))))))) - : (c <= 43790 || (c < 64275 - ? (c < 44032 - ? (c < 43824 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44002))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64320 - ? (c < 64298 - ? (c < 64287 - ? c == 64285 - : c <= 64296) - : (c <= 64310 || (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318))) - : (c <= 64321 || (c < 64467 - ? (c < 64326 - ? (c >= 64323 && c <= 64324) - : c <= 64433) - : (c <= 64605 || (c < 64848 - ? (c >= 64612 && c <= 64829) - : c <= 64911))))))))) - : (c <= 64967 || (c < 66176 - ? (c < 65474 - ? (c < 65149 - ? (c < 65143 - ? (c < 65137 - ? (c >= 65008 && c <= 65017) - : (c <= 65137 || c == 65139)) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c < 65440 - ? (c >= 65382 && c <= 65437) - : c <= 65470))))) - : (c <= 65479 || (c < 65576 - ? (c < 65498 - ? (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495) - : (c <= 65500 || (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574))) - : (c <= 65594 || (c < 65616 - ? (c < 65599 - ? (c >= 65596 && c <= 65597) - : c <= 65613) - : (c <= 65629 || (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908))))))) - : (c <= 66204 || (c < 66864 - ? (c < 66504 - ? (c < 66384 - ? (c < 66304 - ? (c >= 66208 && c <= 66256) - : (c <= 66335 || (c >= 66349 && c <= 66378))) - : (c <= 66421 || (c < 66464 - ? (c >= 66432 && c <= 66461) - : c <= 66499))) - : (c <= 66511 || (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c < 66816 - ? (c >= 66776 && c <= 66811) - : c <= 66855))))) - : (c <= 66915 || (c < 66979 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c < 66967 - ? (c >= 66964 && c <= 66965) - : c <= 66977))) - : (c <= 66993 || (c < 67072 - ? (c < 67003 - ? (c >= 66995 && c <= 67001) - : c <= 67004) - : (c <= 67382 || (c < 67424 - ? (c >= 67392 && c <= 67413) - : c <= 67431))))))))))) - : (c <= 67461 || (c < 70006 - ? (c < 68352 - ? (c < 67840 - ? (c < 67644 - ? (c < 67592 - ? (c < 67506 - ? (c >= 67463 && c <= 67504) - : (c <= 67514 || (c >= 67584 && c <= 67589))) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))) - : (c <= 67861 || (c < 68117 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || (c < 68112 - ? c == 68096 - : c <= 68115))) - : (c <= 68119 || (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324))))))) - : (c <= 68405 || (c < 69488 - ? (c < 68864 - ? (c < 68608 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : (c <= 68466 || (c >= 68480 && c <= 68497))) - : (c <= 68680 || (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850))) - : (c <= 68899 || (c < 69376 - ? (c < 69296 - ? (c >= 69248 && c <= 69289) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69445))))) - : (c <= 69505 || (c < 69763 - ? (c < 69635 - ? (c < 69600 - ? (c >= 69552 && c <= 69572) - : c <= 69622) - : (c <= 69687 || (c < 69749 - ? (c >= 69745 && c <= 69746) - : c <= 69749))) - : (c <= 69807 || (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || (c < 69968 - ? c == 69959 - : c <= 70002))))))))) - : (c <= 70006 || (c < 70784 - ? (c < 70405 - ? (c < 70272 - ? (c < 70108 - ? (c < 70081 - ? (c >= 70019 && c <= 70066) - : (c <= 70084 || c == 70106)) - : (c <= 70108 || (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187))) - : (c <= 70278 || (c < 70287 - ? (c < 70282 - ? c == 70280 - : c <= 70285) - : (c <= 70301 || (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366))))) - : (c <= 70412 || (c < 70461 - ? (c < 70442 - ? (c < 70419 - ? (c >= 70415 && c <= 70416) - : c <= 70440) - : (c <= 70448 || (c < 70453 - ? (c >= 70450 && c <= 70451) - : c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c < 70751 - ? (c >= 70727 && c <= 70730) - : c <= 70753))))))) - : (c <= 70831 || (c < 71935 - ? (c < 71296 - ? (c < 71128 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : (c <= 70855 || (c >= 71040 && c <= 71086))) - : (c <= 71131 || (c < 71236 - ? (c >= 71168 && c <= 71215) - : c <= 71236))) - : (c <= 71338 || (c < 71488 - ? (c < 71424 - ? c == 71352 - : c <= 71450) - : (c <= 71494 || (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903))))) - : (c <= 71942 || (c < 72001 - ? (c < 71957 - ? (c < 71948 - ? c == 71945 - : c <= 71955) - : (c <= 71958 || (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999))) - : (c <= 72001 || (c < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (c <= 72161 || (c < 72192 - ? c == 72163 - : c <= 72192))))))))))))) - : (c <= 72242 || (c < 126500 - ? (c < 113664 - ? (c < 82944 - ? (c < 73030 - ? (c < 72714 - ? (c < 72349 - ? (c < 72272 - ? c == 72250 - : (c <= 72272 || (c >= 72284 && c <= 72329))) - : (c <= 72349 || (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008))))) - : (c <= 73030 || (c < 73648 - ? (c < 73066 - ? (c < 73063 - ? (c >= 73056 && c <= 73061) - : c <= 73064) - : (c <= 73097 || (c < 73440 - ? c == 73112 - : c <= 73458))) - : (c <= 73648 || (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78894))))))) - : (c <= 83526 || (c < 94176 - ? (c < 93027 - ? (c < 92880 - ? (c < 92736 - ? (c >= 92160 && c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))) - : (c <= 92909 || (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995))) - : (c <= 93047 || (c < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (c <= 94026 || (c < 94099 - ? c == 94032 - : c <= 94111))))) - : (c <= 94177 || (c < 110581 - ? (c < 100352 - ? (c < 94208 - ? c == 94179 - : c <= 100343) - : (c <= 101589 || (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579))) - : (c <= 110587 || (c < 110928 - ? (c < 110592 - ? (c >= 110589 && c <= 110590) - : c <= 110882) - : (c <= 110930 || (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355))))))))) - : (c <= 113770 || (c < 120540 - ? (c < 120005 - ? (c < 119970 - ? (c < 119808 - ? (c < 113792 - ? (c >= 113776 && c <= 113788) - : (c <= 113800 || (c >= 113808 && c <= 113817))) - : (c <= 119892 || (c < 119966 - ? (c >= 119894 && c <= 119964) - : c <= 119967))) - : (c <= 119970 || (c < 119982 - ? (c < 119977 - ? (c >= 119973 && c <= 119974) - : c <= 119980) - : (c <= 119993 || (c < 119997 - ? c == 119995 - : c <= 120003))))) - : (c <= 120069 || (c < 120128 - ? (c < 120086 - ? (c < 120077 - ? (c >= 120071 && c <= 120074) - : c <= 120084) - : (c <= 120092 || (c < 120123 - ? (c >= 120094 && c <= 120121) - : c <= 120126))) - : (c <= 120132 || (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538))))))) - : (c <= 120570 || (c < 123536 - ? (c < 120746 - ? (c < 120656 - ? (c < 120598 - ? (c >= 120572 && c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))) - : (c <= 120686 || (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c < 123214 - ? (c >= 123191 && c <= 123197) - : c <= 123214))))) - : (c <= 123565 || (c < 124928 - ? (c < 124904 - ? (c < 124896 - ? (c >= 123584 && c <= 123627) - : c <= 124902) - : (c <= 124907 || (c < 124912 - ? (c >= 124909 && c <= 124910) - : c <= 124926))) - : (c <= 125124 || (c < 126464 - ? (c < 125259 - ? (c >= 125184 && c <= 125251) - : c <= 125259) - : (c <= 126467 || (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498))))))))))) - : (c <= 126500 || (c < 128329 - ? (c < 126592 - ? (c < 126551 - ? (c < 126535 - ? (c < 126521 - ? (c < 126505 - ? c == 126503 - : (c <= 126514 || (c >= 126516 && c <= 126519))) - : (c <= 126521 || (c < 126530 - ? c == 126523 - : c <= 126530))) - : (c <= 126535 || (c < 126541 - ? (c < 126539 - ? c == 126537 - : c <= 126539) - : (c <= 126543 || (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548))))) - : (c <= 126551 || (c < 126564 - ? (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || (c < 126561 - ? c == 126559 - : c <= 126562))) - : (c <= 126564 || (c < 126580 - ? (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578) - : (c <= 126583 || (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590))))))) - : (c <= 126601 || (c < 127514 - ? (c < 127344 - ? (c < 126635 - ? (c < 126625 - ? (c >= 126603 && c <= 126619) - : (c <= 126627 || (c >= 126629 && c <= 126633))) - : (c <= 126651 || (c < 127183 - ? c == 126980 - : c <= 127183))) - : (c <= 127345 || (c < 127377 - ? (c < 127374 - ? (c >= 127358 && c <= 127359) - : c <= 127374) - : (c <= 127386 || (c < 127489 - ? (c >= 127462 && c <= 127487) - : c <= 127490))))) - : (c <= 127514 || (c < 127894 - ? (c < 127568 - ? (c < 127538 - ? c == 127535 - : c <= 127546) - : (c <= 127569 || (c < 127780 - ? (c >= 127744 && c <= 127777) - : c <= 127891))) - : (c <= 127895 || (c < 127987 - ? (c < 127902 - ? (c >= 127897 && c <= 127899) - : c <= 127984) - : (c <= 127989 || (c < 128255 - ? (c >= 127991 && c <= 128253) - : c <= 128317))))))))) - : (c <= 128334 || (c < 128745 - ? (c < 128465 - ? (c < 128405 - ? (c < 128391 - ? (c < 128367 - ? (c >= 128336 && c <= 128359) - : (c <= 128368 || (c >= 128371 && c <= 128378))) - : (c <= 128391 || (c < 128400 - ? (c >= 128394 && c <= 128397) - : c <= 128400))) - : (c <= 128406 || (c < 128433 - ? (c < 128424 - ? (c >= 128420 && c <= 128421) - : c <= 128424) - : (c <= 128434 || (c < 128450 - ? c == 128444 - : c <= 128452))))) - : (c <= 128467 || (c < 128499 - ? (c < 128483 - ? (c < 128481 - ? (c >= 128476 && c <= 128478) - : c <= 128481) - : (c <= 128483 || (c < 128495 - ? c == 128488 - : c <= 128495))) - : (c <= 128499 || (c < 128715 - ? (c < 128640 - ? (c >= 128506 && c <= 128591) - : c <= 128709) - : (c <= 128722 || (c < 128733 - ? (c >= 128725 && c <= 128727) - : c <= 128741))))))) - : (c <= 128745 || (c < 129712 - ? (c < 129340 - ? (c < 128992 - ? (c < 128752 - ? (c >= 128747 && c <= 128748) - : (c <= 128752 || (c >= 128755 && c <= 128764))) - : (c <= 129003 || (c < 129292 - ? c == 129008 - : c <= 129338))) - : (c <= 129349 || (c < 129656 - ? (c < 129648 - ? (c >= 129351 && c <= 129535) - : c <= 129652) - : (c <= 129660 || (c < 129680 - ? (c >= 129664 && c <= 129670) - : c <= 129708))))) - : (c <= 129722 || (c < 173824 - ? (c < 129760 - ? (c < 129744 - ? (c >= 129728 && c <= 129733) - : c <= 129753) - : (c <= 129767 || (c < 131072 - ? (c >= 129776 && c <= 129782) - : c <= 173791))) - : (c <= 177976 || (c < 183984 - ? (c < 178208 - ? (c >= 177984 && c <= 178205) - : c <= 183969) - : (c <= 191456 || (c < 196608 - ? (c >= 194560 && c <= 195101) - : c <= 201546))))))))))))))))); -} - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(1376); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(35); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1310); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == 'P') ADVANCE(501); - if (lookahead == 'T') ADVANCE(611); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1360); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '_') ADVANCE(1572); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(188); - if (lookahead == 'b') ADVANCE(504); - if (lookahead == 'c') ADVANCE(143); - if (lookahead == 'd') ADVANCE(227); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(138); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'i') ADVANCE(301); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(327); - if (lookahead == 'o') ADVANCE(478); - if (lookahead == 'p') ADVANCE(146); - if (lookahead == 'r') ADVANCE(228); - if (lookahead == 's') ADVANCE(229); - if (lookahead == 't') ADVANCE(323); - if (lookahead == 'u') ADVANCE(1362); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(262); - if (lookahead == 'y') ADVANCE(332); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(637) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1311); - END_STATE(); - case 1: - if (lookahead == '\n') ADVANCE(1371); - if (lookahead == '/') ADVANCE(634); - if (lookahead != 0) ADVANCE(112); - END_STATE(); - case 2: - if (lookahead == '\n') ADVANCE(3); - if (lookahead == '#') ADVANCE(10); - if (lookahead == '/') ADVANCE(115); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(2); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 3: - if (lookahead == '\n') ADVANCE(3); - if (lookahead == '#') ADVANCE(10); - if (lookahead == '/') ADVANCE(99); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(2); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 4: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'L') ADVANCE(23); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 5: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'a') ADVANCE(31); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 6: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'a') ADVANCE(26); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 7: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'c') ADVANCE(5); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 8: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'c') ADVANCE(12); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 9: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'd') ADVANCE(15); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 10: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'e') ADVANCE(18); - if (lookahead == 'i') ADVANCE(13); - if (lookahead == 's') ADVANCE(22); - if (lookahead == 'w') ADVANCE(6); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 11: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'e') ADVANCE(1643); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 12: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'e') ADVANCE(4); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 13: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'f') ADVANCE(1644); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 14: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'g') ADVANCE(1650); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 15: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'i') ADVANCE(13); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 16: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'i') ADVANCE(19); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 17: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'i') ADVANCE(24); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 18: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'l') ADVANCE(30); - if (lookahead == 'n') ADVANCE(9); - if (lookahead == 'r') ADVANCE(29); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 19: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'n') ADVANCE(14); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 20: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'n') ADVANCE(1641); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 21: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'n') ADVANCE(16); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 22: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'o') ADVANCE(32); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'o') ADVANCE(7); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 24: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'o') ADVANCE(20); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 25: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'o') ADVANCE(28); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 26: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'r') ADVANCE(21); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 27: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'r') ADVANCE(8); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 28: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'r') ADVANCE(1650); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 29: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'r') ADVANCE(25); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 30: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 's') ADVANCE(11); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 31: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 't') ADVANCE(17); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 32: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead == 'u') ADVANCE(27); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 33: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(633); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 34: - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(100); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 35: - if (lookahead == '!') ADVANCE(651); - if (lookahead == '/') ADVANCE(1); - if (lookahead == 'a') ADVANCE(602); - if (lookahead == 'c') ADVANCE(451); - if (lookahead == 'd') ADVANCE(531); - if (lookahead == 'e') ADVANCE(397); - if (lookahead == 'f') ADVANCE(331); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == 'k') ADVANCE(258); - if (lookahead == 'l') ADVANCE(335); - if (lookahead == 's') ADVANCE(290); - if (lookahead == 'w') ADVANCE(152); - END_STATE(); - case 36: - if (lookahead == '!') ADVANCE(651); - if (lookahead == '/') ADVANCE(1); - if (lookahead == 'c') ADVANCE(451); - if (lookahead == 'd') ADVANCE(531); - if (lookahead == 'e') ADVANCE(397); - if (lookahead == 'f') ADVANCE(331); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == 'k') ADVANCE(258); - if (lookahead == 'l') ADVANCE(335); - if (lookahead == 's') ADVANCE(290); - if (lookahead == 'w') ADVANCE(152); - END_STATE(); - case 37: - if (lookahead == '!') ADVANCE(1375); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '.') ADVANCE(1380); - if (lookahead == '/') ADVANCE(113); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '>') ADVANCE(1401); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(621); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'u') ADVANCE(1361); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(95) - END_STATE(); - case 38: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1063); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1293); - END_STATE(); - case 39: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '_') ADVANCE(1573); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1013); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'i') ADVANCE(1165); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1058); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(39) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1293); - END_STATE(); - case 40: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1013); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1058); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1293); - END_STATE(); - case 41: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1013); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1058); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1293); - END_STATE(); - case 42: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1015); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1001); - if (lookahead == 'i') ADVANCE(1143); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1099); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1059); - if (lookahead == 't') ADVANCE(1203); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 43: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1015); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1001); - if (lookahead == 'i') ADVANCE(1143); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1099); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1059); - if (lookahead == 't') ADVANCE(1203); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 44: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(986); - if (lookahead == 'i') ADVANCE(1147); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1099); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1061); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 45: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(986); - if (lookahead == 'i') ADVANCE(1147); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1099); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1061); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(45) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 46: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(986); - if (lookahead == 'i') ADVANCE(1148); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1099); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1061); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(46) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 47: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1013); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'i') ADVANCE(1165); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1058); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 48: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(719); - if (lookahead == 'b') ADVANCE(921); - if (lookahead == 'c') ADVANCE(710); - if (lookahead == 'd') ADVANCE(877); - if (lookahead == 'e') ADVANCE(863); - if (lookahead == 'f') ADVANCE(692); - if (lookahead == 'g') ADVANCE(967); - if (lookahead == 'i') ADVANCE(787); - if (lookahead == 'l') ADVANCE(694); - if (lookahead == 'm') ADVANCE(959); - if (lookahead == 'n') ADVANCE(803); - if (lookahead == 'o') ADVANCE(894); - if (lookahead == 'p') ADVANCE(880); - if (lookahead == 'r') ADVANCE(754); - if (lookahead == 's') ADVANCE(761); - if (lookahead == 't') ADVANCE(800); - if (lookahead == 'u') ADVANCE(853); - if (lookahead == 'v') ADVANCE(699); - if (lookahead == 'w') ADVANCE(765); - if (lookahead == 'y') ADVANCE(823); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1293); - END_STATE(); - case 49: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(719); - if (lookahead == 'b') ADVANCE(921); - if (lookahead == 'c') ADVANCE(710); - if (lookahead == 'd') ADVANCE(877); - if (lookahead == 'e') ADVANCE(863); - if (lookahead == 'f') ADVANCE(707); - if (lookahead == 'g') ADVANCE(967); - if (lookahead == 'i') ADVANCE(786); - if (lookahead == 'l') ADVANCE(694); - if (lookahead == 'm') ADVANCE(959); - if (lookahead == 'n') ADVANCE(803); - if (lookahead == 'o') ADVANCE(894); - if (lookahead == 'p') ADVANCE(880); - if (lookahead == 'r') ADVANCE(754); - if (lookahead == 's') ADVANCE(761); - if (lookahead == 't') ADVANCE(800); - if (lookahead == 'u') ADVANCE(853); - if (lookahead == 'v') ADVANCE(699); - if (lookahead == 'w') ADVANCE(765); - if (lookahead == 'y') ADVANCE(823); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(49) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1293); - END_STATE(); - case 50: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '_') ADVANCE(850); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(719); - if (lookahead == 'b') ADVANCE(921); - if (lookahead == 'c') ADVANCE(840); - if (lookahead == 'd') ADVANCE(878); - if (lookahead == 'e') ADVANCE(863); - if (lookahead == 'f') ADVANCE(693); - if (lookahead == 'g') ADVANCE(780); - if (lookahead == 'i') ADVANCE(788); - if (lookahead == 'l') ADVANCE(760); - if (lookahead == 'm') ADVANCE(959); - if (lookahead == 'n') ADVANCE(804); - if (lookahead == 'r') ADVANCE(757); - if (lookahead == 's') ADVANCE(758); - if (lookahead == 't') ADVANCE(800); - if (lookahead == 'u') ADVANCE(853); - if (lookahead == 'v') ADVANCE(699); - if (lookahead == 'w') ADVANCE(765); - if (lookahead == 'y') ADVANCE(823); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(50) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (('A' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1293); - END_STATE(); - case 51: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(719); - if (lookahead == 'b') ADVANCE(921); - if (lookahead == 'c') ADVANCE(840); - if (lookahead == 'd') ADVANCE(878); - if (lookahead == 'e') ADVANCE(863); - if (lookahead == 'f') ADVANCE(693); - if (lookahead == 'g') ADVANCE(967); - if (lookahead == 'i') ADVANCE(788); - if (lookahead == 'l') ADVANCE(760); - if (lookahead == 'n') ADVANCE(805); - if (lookahead == 'r') ADVANCE(757); - if (lookahead == 's') ADVANCE(762); - if (lookahead == 't') ADVANCE(800); - if (lookahead == 'u') ADVANCE(853); - if (lookahead == 'v') ADVANCE(699); - if (lookahead == 'w') ADVANCE(765); - if (lookahead == 'y') ADVANCE(823); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(51) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1293); - END_STATE(); - case 52: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(719); - if (lookahead == 'b') ADVANCE(921); - if (lookahead == 'c') ADVANCE(840); - if (lookahead == 'd') ADVANCE(878); - if (lookahead == 'e') ADVANCE(863); - if (lookahead == 'f') ADVANCE(693); - if (lookahead == 'g') ADVANCE(967); - if (lookahead == 'i') ADVANCE(789); - if (lookahead == 'l') ADVANCE(760); - if (lookahead == 'n') ADVANCE(805); - if (lookahead == 'r') ADVANCE(757); - if (lookahead == 's') ADVANCE(762); - if (lookahead == 't') ADVANCE(800); - if (lookahead == 'u') ADVANCE(853); - if (lookahead == 'v') ADVANCE(699); - if (lookahead == 'w') ADVANCE(765); - if (lookahead == 'y') ADVANCE(823); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(52) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1293); - END_STATE(); - case 53: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '_') ADVANCE(1573); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'c') ADVANCE(985); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1063); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(53) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1293); - END_STATE(); - case 54: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'g') ADVANCE(1076); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1052); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(54) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 55: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(107); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'c') ADVANCE(985); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1063); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(55) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 56: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1156); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 57: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1156); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 58: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1016); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1143); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(59) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 59: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1016); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1143); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(59) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 60: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(1003); - if (lookahead == 'i') ADVANCE(1147); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1249); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(61) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 61: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(1003); - if (lookahead == 'i') ADVANCE(1147); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1249); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(61) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 62: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '^') ADVANCE(1483); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(62) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 63: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1016); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1143); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 64: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1016); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1143); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1178); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(64) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 65: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(1003); - if (lookahead == 'i') ADVANCE(1147); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1249); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(66) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 66: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(1003); - if (lookahead == 'i') ADVANCE(1147); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1249); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(66) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 67: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == 'i') ADVANCE(419); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(68) - END_STATE(); - case 68: - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == 'i') ADVANCE(419); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(68) - END_STATE(); - case 69: - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(109); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '.') ADVANCE(628); - if (lookahead == '/') ADVANCE(110); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 't') ADVANCE(1214); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(69) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 70: - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(1334); - if (lookahead == '/') ADVANCE(1327); - if (lookahead == '\\') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1326); - if (lookahead != 0) ADVANCE(1358); - END_STATE(); - case 71: - if (lookahead == '"') ADVANCE(1364); - END_STATE(); - case 72: - if (lookahead == '"') ADVANCE(1321); - if (lookahead == '#') ADVANCE(1334); - if (lookahead == '/') ADVANCE(1327); - if (lookahead == '\\') ADVANCE(1360); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1326); - if (lookahead != 0) ADVANCE(1358); - END_STATE(); - case 73: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '0') ADVANCE(1311); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(73) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1311); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 74: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '_') ADVANCE(1573); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1014); - if (lookahead == 'i') ADVANCE(1165); - if (lookahead == 's') ADVANCE(1180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(74) - if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1293); - END_STATE(); - case 75: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '_') ADVANCE(1573); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1014); - if (lookahead == 's') ADVANCE(1180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(75) - if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1293); - END_STATE(); - case 76: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1018); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1158); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1060); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(76) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 77: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1014); - if (lookahead == 's') ADVANCE(1180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(77) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 78: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1018); - if (lookahead == 'c') ADVANCE(1133); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1120); - if (lookahead == 'i') ADVANCE(1159); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 's') ADVANCE(1062); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(78) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 79: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1157); - if (lookahead == 's') ADVANCE(1064); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(79) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 80: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1014); - if (lookahead == 'i') ADVANCE(1165); - if (lookahead == 's') ADVANCE(1180); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(80) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 81: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '_') ADVANCE(1573); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1019); - if (lookahead == 'c') ADVANCE(985); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 't') ADVANCE(1210); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(81) - if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1293); - END_STATE(); - case 82: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '_') ADVANCE(1573); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1019); - if (lookahead == 'c') ADVANCE(985); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(82) - if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1293); - END_STATE(); - case 83: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '_') ADVANCE(1573); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'c') ADVANCE(985); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(83) - if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1293); - END_STATE(); - case 84: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 's') ADVANCE(1064); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(84) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 85: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '/') ADVANCE(113); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1157); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(85) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 86: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1016); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1144); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1179); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '{') ADVANCE(631); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(86) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 87: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1016); - if (lookahead == 'c') ADVANCE(1132); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1144); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1179); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1240); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(87) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 88: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1016); - if (lookahead == 'c') ADVANCE(1132); - if (lookahead == 'd') ADVANCE(1084); - if (lookahead == 'e') ADVANCE(1161); - if (lookahead == 'f') ADVANCE(1095); - if (lookahead == 'i') ADVANCE(1144); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1179); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(88) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 89: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'c') ADVANCE(984); - if (lookahead == 'd') ADVANCE(1287); - if (lookahead == 'f') ADVANCE(1096); - if (lookahead == 'i') ADVANCE(1148); - if (lookahead == 'l') ADVANCE(988); - if (lookahead == 'm') ADVANCE(1266); - if (lookahead == 'n') ADVANCE(1183); - if (lookahead == 'o') ADVANCE(1194); - if (lookahead == 'p') ADVANCE(1177); - if (lookahead == 'r') ADVANCE(1041); - if (lookahead == 's') ADVANCE(1249); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(89) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 90: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'c') ADVANCE(1133); - if (lookahead == 'e') ADVANCE(1162); - if (lookahead == 'f') ADVANCE(1275); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 'p') ADVANCE(1216); - if (lookahead == 's') ADVANCE(1254); - if (lookahead == 't') ADVANCE(1289); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(90) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 91: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'f') ADVANCE(1275); - if (lookahead == 'i') ADVANCE(1175); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(91) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 92: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 't') ADVANCE(1214); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(92) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 93: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'l') ADVANCE(1074); - if (lookahead == 'v') ADVANCE(999); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(93) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 94: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 's') ADVANCE(1064); - if (lookahead == 'u') ADVANCE(1149); - if (lookahead == 'w') ADVANCE(1069); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(94) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 95: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '.') ADVANCE(1380); - if (lookahead == '/') ADVANCE(113); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '>') ADVANCE(1401); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(621); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 'u') ADVANCE(1361); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(95) - END_STATE(); - case 96: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '.') ADVANCE(1380); - if (lookahead == '/') ADVANCE(113); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(96) - END_STATE(); - case 97: - if (lookahead == '#') ADVANCE(226); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '/') ADVANCE(113); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '@') ADVANCE(1570); - if (lookahead == '_') ADVANCE(406); - if (lookahead == 'a') ADVANCE(190); - if (lookahead == 'c') ADVANCE(382); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(361); - if (lookahead == 'g') ADVANCE(285); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 'l') ADVANCE(263); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(471); - if (lookahead == 's') ADVANCE(288); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(261); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(97) - END_STATE(); - case 98: - if (lookahead == '#') ADVANCE(98); - if (lookahead == '(') ADVANCE(1366); - END_STATE(); - case 99: - if (lookahead == '#') ADVANCE(1372); - if (lookahead == '/') ADVANCE(685); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 100: - if (lookahead == '#') ADVANCE(1372); - if (lookahead != 0) ADVANCE(33); - END_STATE(); - case 101: - if (lookahead == ')') ADVANCE(1633); - END_STATE(); - case 102: - if (lookahead == ')') ADVANCE(1634); - END_STATE(); - case 103: - if (lookahead == '.') ADVANCE(106); - END_STATE(); - case 104: - if (lookahead == '.') ADVANCE(106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1306); - END_STATE(); - case 105: - if (lookahead == '.') ADVANCE(1464); - END_STATE(); - case 106: - if (lookahead == '.') ADVANCE(1464); - if (lookahead == '<') ADVANCE(1465); - END_STATE(); - case 107: - if (lookahead == '/') ADVANCE(1); - if (lookahead == 'a') ADVANCE(602); - if (lookahead == 'c') ADVANCE(451); - if (lookahead == 'd') ADVANCE(531); - if (lookahead == 'e') ADVANCE(397); - if (lookahead == 'f') ADVANCE(331); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == 'k') ADVANCE(258); - if (lookahead == 'l') ADVANCE(335); - if (lookahead == 's') ADVANCE(290); - if (lookahead == 'w') ADVANCE(152); - END_STATE(); - case 108: - if (lookahead == '/') ADVANCE(1); - if (lookahead == 'c') ADVANCE(451); - if (lookahead == 'd') ADVANCE(531); - if (lookahead == 'e') ADVANCE(397); - if (lookahead == 'f') ADVANCE(331); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == 'k') ADVANCE(258); - if (lookahead == 'l') ADVANCE(335); - if (lookahead == 's') ADVANCE(290); - if (lookahead == 'w') ADVANCE(152); - END_STATE(); - case 109: - if (lookahead == '/') ADVANCE(1); - if (lookahead == 'e') ADVANCE(397); - if (lookahead == 'i') ADVANCE(303); - if (lookahead == 's') ADVANCE(450); - if (lookahead == 'w') ADVANCE(152); - END_STATE(); - case 110: - if (lookahead == '/') ADVANCE(688); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(623); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(111); - END_STATE(); - case 111: - if (lookahead == '/') ADVANCE(1373); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(623); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(111); - END_STATE(); - case 112: - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(112); - END_STATE(); - case 113: - if (lookahead == '/') ADVANCE(689); - END_STATE(); - case 114: - if (lookahead == '/') ADVANCE(689); - if (lookahead == '=') ADVANCE(1455); - END_STATE(); - case 115: - if (lookahead == '/') ADVANCE(685); - if (lookahead != 0 && - lookahead != '#') ADVANCE(33); - END_STATE(); - case 116: - if (lookahead == ':') ADVANCE(1396); - END_STATE(); - case 117: - if (lookahead == ':') ADVANCE(1397); - END_STATE(); - case 118: - if (lookahead == '=') ADVANCE(1459); - END_STATE(); - case 119: - if (lookahead == '=') ADVANCE(1456); - END_STATE(); - case 120: - if (lookahead == '=') ADVANCE(1454); - END_STATE(); - case 121: - if (lookahead == '=') ADVANCE(1452); - END_STATE(); - case 122: - if (lookahead == '=') ADVANCE(1453); - END_STATE(); - case 123: - if (lookahead == '=') ADVANCE(124); - END_STATE(); - case 124: - if (lookahead == '=') ADVANCE(1461); - END_STATE(); - case 125: - if (lookahead == 'D') ADVANCE(1407); - END_STATE(); - case 126: - if (lookahead == 'L') ADVANCE(473); - END_STATE(); - case 127: - if (lookahead == 'L') ADVANCE(364); - END_STATE(); - case 128: - if (lookahead == 'L') ADVANCE(366); - END_STATE(); - case 129: - if (lookahead == 'P') ADVANCE(168); - END_STATE(); - case 130: - if (lookahead == '_') ADVANCE(130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1311); - END_STATE(); - case 131: - if (lookahead == '_') ADVANCE(131); - if (lookahead == '0' || - lookahead == '1') ADVANCE(1314); - END_STATE(); - case 132: - if (lookahead == '_') ADVANCE(132); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1313); - END_STATE(); - case 133: - if (lookahead == '_') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1312); - END_STATE(); - case 134: - if (lookahead == '_') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1309); - END_STATE(); - case 135: - if (lookahead == '_') ADVANCE(135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1306); - END_STATE(); - case 136: - if (lookahead == '_') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1307); - END_STATE(); - case 137: - if (lookahead == '`') ADVANCE(1295); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(137); - END_STATE(); - case 138: - if (lookahead == 'a') ADVANCE(369); - if (lookahead == 'i') ADVANCE(384); - if (lookahead == 'o') ADVANCE(491); - if (lookahead == 'u') ADVANCE(422); - END_STATE(); - case 139: - if (lookahead == 'a') ADVANCE(620); - if (lookahead == 'e') ADVANCE(545); - END_STATE(); - case 140: - if (lookahead == 'a') ADVANCE(367); - END_STATE(); - case 141: - if (lookahead == 'a') ADVANCE(315); - END_STATE(); - case 142: - if (lookahead == 'a') ADVANCE(368); - END_STATE(); - case 143: - if (lookahead == 'a') ADVANCE(534); - if (lookahead == 'l') ADVANCE(151); - if (lookahead == 'o') ADVANCE(409); - END_STATE(); - case 144: - if (lookahead == 'a') ADVANCE(534); - if (lookahead == 'l') ADVANCE(151); - if (lookahead == 'o') ADVANCE(442); - END_STATE(); - case 145: - if (lookahead == 'a') ADVANCE(407); - END_STATE(); - case 146: - if (lookahead == 'a') ADVANCE(509); - if (lookahead == 'o') ADVANCE(536); - if (lookahead == 'r') ADVANCE(231); - if (lookahead == 'u') ADVANCE(184); - END_STATE(); - case 147: - if (lookahead == 'a') ADVANCE(488); - END_STATE(); - case 148: - if (lookahead == 'a') ADVANCE(400); - END_STATE(); - case 149: - if (lookahead == 'a') ADVANCE(308); - END_STATE(); - case 150: - if (lookahead == 'a') ADVANCE(492); - END_STATE(); - case 151: - if (lookahead == 'a') ADVANCE(535); - END_STATE(); - case 152: - if (lookahead == 'a') ADVANCE(507); - END_STATE(); - case 153: - if (lookahead == 'a') ADVANCE(401); - END_STATE(); - case 154: - if (lookahead == 'a') ADVANCE(502); - END_STATE(); - case 155: - if (lookahead == 'a') ADVANCE(374); - END_STATE(); - case 156: - if (lookahead == 'a') ADVANCE(576); - if (lookahead == 'r') ADVANCE(596); - END_STATE(); - case 157: - if (lookahead == 'a') ADVANCE(530); - END_STATE(); - case 158: - if (lookahead == 'a') ADVANCE(376); - END_STATE(); - case 159: - if (lookahead == 'a') ADVANCE(377); - END_STATE(); - case 160: - if (lookahead == 'a') ADVANCE(577); - END_STATE(); - case 161: - if (lookahead == 'a') ADVANCE(379); - END_STATE(); - case 162: - if (lookahead == 'a') ADVANCE(430); - END_STATE(); - case 163: - if (lookahead == 'a') ADVANCE(380); - END_STATE(); - case 164: - if (lookahead == 'a') ADVANCE(381); - END_STATE(); - case 165: - if (lookahead == 'a') ADVANCE(551); - END_STATE(); - case 166: - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'i') ADVANCE(384); - if (lookahead == 'o') ADVANCE(491); - if (lookahead == 'u') ADVANCE(422); - END_STATE(); - case 167: - if (lookahead == 'a') ADVANCE(393); - if (lookahead == 'i') ADVANCE(384); - if (lookahead == 'u') ADVANCE(422); - END_STATE(); - case 168: - if (lookahead == 'a') ADVANCE(559); - END_STATE(); - case 169: - if (lookahead == 'a') ADVANCE(562); - END_STATE(); - case 170: - if (lookahead == 'a') ADVANCE(187); - END_STATE(); - case 171: - if (lookahead == 'a') ADVANCE(567); - END_STATE(); - case 172: - if (lookahead == 'a') ADVANCE(343); - END_STATE(); - case 173: - if (lookahead == 'a') ADVANCE(518); - END_STATE(); - case 174: - if (lookahead == 'a') ADVANCE(339); - END_STATE(); - case 175: - if (lookahead == 'a') ADVANCE(309); - END_STATE(); - case 176: - if (lookahead == 'a') ADVANCE(392); - END_STATE(); - case 177: - if (lookahead == 'a') ADVANCE(568); - END_STATE(); - case 178: - if (lookahead == 'a') ADVANCE(570); - END_STATE(); - case 179: - if (lookahead == 'a') ADVANCE(571); - END_STATE(); - case 180: - if (lookahead == 'a') ADVANCE(572); - END_STATE(); - case 181: - if (lookahead == 'a') ADVANCE(578); - END_STATE(); - case 182: - if (lookahead == 'a') ADVANCE(581); - END_STATE(); - case 183: - if (lookahead == 'a') ADVANCE(579); - END_STATE(); - case 184: - if (lookahead == 'b') ADVANCE(385); - END_STATE(); - case 185: - if (lookahead == 'b') ADVANCE(533); - END_STATE(); - case 186: - if (lookahead == 'b') ADVANCE(533); - if (lookahead == 'p') ADVANCE(278); - END_STATE(); - case 187: - if (lookahead == 'b') ADVANCE(395); - END_STATE(); - case 188: - if (lookahead == 'c') ADVANCE(561); - if (lookahead == 'n') ADVANCE(612); - if (lookahead == 's') ADVANCE(532); - if (lookahead == 'w') ADVANCE(172); - END_STATE(); - case 189: - if (lookahead == 'c') ADVANCE(561); - if (lookahead == 's') ADVANCE(532); - END_STATE(); - case 190: - if (lookahead == 'c') ADVANCE(561); - if (lookahead == 's') ADVANCE(617); - END_STATE(); - case 191: - if (lookahead == 'c') ADVANCE(1529); - END_STATE(); - case 192: - if (lookahead == 'c') ADVANCE(1392); - END_STATE(); - case 193: - if (lookahead == 'c') ADVANCE(1589); - END_STATE(); - case 194: - if (lookahead == 'c') ADVANCE(1610); - END_STATE(); - case 195: - if (lookahead == 'c') ADVANCE(1613); - END_STATE(); - case 196: - if (lookahead == 'c') ADVANCE(318); - END_STATE(); - case 197: - if (lookahead == 'c') ADVANCE(386); - END_STATE(); - case 198: - if (lookahead == 'c') ADVANCE(275); - if (lookahead == 'p') ADVANCE(291); - if (lookahead == 'q') ADVANCE(599); - if (lookahead == 't') ADVANCE(597); - END_STATE(); - case 199: - if (lookahead == 'c') ADVANCE(147); - END_STATE(); - case 200: - if (lookahead == 'c') ADVANCE(365); - END_STATE(); - case 201: - if (lookahead == 'c') ADVANCE(574); - END_STATE(); - case 202: - if (lookahead == 'c') ADVANCE(552); - END_STATE(); - case 203: - if (lookahead == 'c') ADVANCE(264); - if (lookahead == 'f') ADVANCE(328); - END_STATE(); - case 204: - if (lookahead == 'c') ADVANCE(553); - END_STATE(); - case 205: - if (lookahead == 'c') ADVANCE(256); - END_STATE(); - case 206: - if (lookahead == 'c') ADVANCE(272); - END_STATE(); - case 207: - if (lookahead == 'c') ADVANCE(248); - END_STATE(); - case 208: - if (lookahead == 'c') ADVANCE(459); - END_STATE(); - case 209: - if (lookahead == 'c') ADVANCE(517); - END_STATE(); - case 210: - if (lookahead == 'c') ADVANCE(463); - END_STATE(); - case 211: - if (lookahead == 'c') ADVANCE(183); - END_STATE(); - case 212: - if (lookahead == 'c') ADVANCE(580); - END_STATE(); - case 213: - if (lookahead == 'd') ADVANCE(1434); - END_STATE(); - case 214: - if (lookahead == 'd') ADVANCE(1502); - END_STATE(); - case 215: - if (lookahead == 'd') ADVANCE(1630); - END_STATE(); - case 216: - if (lookahead == 'd') ADVANCE(1583); - END_STATE(); - case 217: - if (lookahead == 'd') ADVANCE(1586); - END_STATE(); - case 218: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'f') ADVANCE(325); - if (lookahead == 'i') ADVANCE(546); - if (lookahead == 'o') ADVANCE(592); - if (lookahead == 't') ADVANCE(276); - END_STATE(); - case 219: - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'i') ADVANCE(546); - END_STATE(); - case 220: - if (lookahead == 'd') ADVANCE(329); - END_STATE(); - case 221: - if (lookahead == 'd') ADVANCE(334); - END_STATE(); - case 222: - if (lookahead == 'd') ADVANCE(582); - END_STATE(); - case 223: - if (lookahead == 'd') ADVANCE(245); - END_STATE(); - case 224: - if (lookahead == 'd') ADVANCE(283); - END_STATE(); - case 225: - if (lookahead == 'd') ADVANCE(396); - END_STATE(); - case 226: - if (lookahead == 'e') ADVANCE(397); - if (lookahead == 'i') ADVANCE(303); - if (lookahead == 's') ADVANCE(450); - if (lookahead == 'w') ADVANCE(152); - END_STATE(); - case 227: - if (lookahead == 'e') ADVANCE(338); - if (lookahead == 'o') ADVANCE(1444); - if (lookahead == 'y') ADVANCE(431); - END_STATE(); - case 228: - if (lookahead == 'e') ADVANCE(198); - END_STATE(); - case 229: - if (lookahead == 'e') ADVANCE(372); - if (lookahead == 'o') ADVANCE(404); - if (lookahead == 't') ADVANCE(156); - if (lookahead == 'u') ADVANCE(186); - if (lookahead == 'w') ADVANCE(341); - END_STATE(); - case 230: - if (lookahead == 'e') ADVANCE(412); - if (lookahead == 't') ADVANCE(340); - END_STATE(); - case 231: - if (lookahead == 'e') ADVANCE(203); - if (lookahead == 'i') ADVANCE(601); - if (lookahead == 'o') ADVANCE(489); - END_STATE(); - case 232: - if (lookahead == 'e') ADVANCE(203); - if (lookahead == 'i') ADVANCE(601); - if (lookahead == 'o') ADVANCE(584); - END_STATE(); - case 233: - if (lookahead == 'e') ADVANCE(1383); - END_STATE(); - case 234: - if (lookahead == 'e') ADVANCE(1438); - END_STATE(); - case 235: - if (lookahead == 'e') ADVANCE(1387); - END_STATE(); - case 236: - if (lookahead == 'e') ADVANCE(1315); - END_STATE(); - case 237: - if (lookahead == 'e') ADVANCE(1647); - END_STATE(); - case 238: - if (lookahead == 'e') ADVANCE(1406); - END_STATE(); - case 239: - if (lookahead == 'e') ADVANCE(1409); - END_STATE(); - case 240: - if (lookahead == 'e') ADVANCE(1318); - END_STATE(); - case 241: - if (lookahead == 'e') ADVANCE(1490); - END_STATE(); - case 242: - if (lookahead == 'e') ADVANCE(1592); - END_STATE(); - case 243: - if (lookahead == 'e') ADVANCE(1498); - END_STATE(); - case 244: - if (lookahead == 'e') ADVANCE(1639); - END_STATE(); - case 245: - if (lookahead == 'e') ADVANCE(1577); - END_STATE(); - case 246: - if (lookahead == 'e') ADVANCE(1504); - END_STATE(); - case 247: - if (lookahead == 'e') ADVANCE(1412); - END_STATE(); - case 248: - if (lookahead == 'e') ADVANCE(1580); - END_STATE(); - case 249: - if (lookahead == 'e') ADVANCE(1598); - END_STATE(); - case 250: - if (lookahead == 'e') ADVANCE(1626); - END_STATE(); - case 251: - if (lookahead == 'e') ADVANCE(101); - END_STATE(); - case 252: - if (lookahead == 'e') ADVANCE(1567); - END_STATE(); - case 253: - if (lookahead == 'e') ADVANCE(490); - END_STATE(); - case 254: - if (lookahead == 'e') ADVANCE(484); - END_STATE(); - case 255: - if (lookahead == 'e') ADVANCE(317); - END_STATE(); - case 256: - if (lookahead == 'e') ADVANCE(126); - END_STATE(); - case 257: - if (lookahead == 'e') ADVANCE(102); - END_STATE(); - case 258: - if (lookahead == 'e') ADVANCE(613); - END_STATE(); - case 259: - if (lookahead == 'e') ADVANCE(486); - END_STATE(); - case 260: - if (lookahead == 'e') ADVANCE(544); - if (lookahead == 'u') ADVANCE(154); - END_STATE(); - case 261: - if (lookahead == 'e') ADVANCE(140); - END_STATE(); - case 262: - if (lookahead == 'e') ADVANCE(140); - if (lookahead == 'h') ADVANCE(358); - END_STATE(); - case 263: - if (lookahead == 'e') ADVANCE(545); - END_STATE(); - case 264: - if (lookahead == 'e') ADVANCE(224); - END_STATE(); - case 265: - if (lookahead == 'e') ADVANCE(215); - END_STATE(); - case 266: - if (lookahead == 'e') ADVANCE(142); - END_STATE(); - case 267: - if (lookahead == 'e') ADVANCE(383); - END_STATE(); - case 268: - if (lookahead == 'e') ADVANCE(216); - END_STATE(); - case 269: - if (lookahead == 'e') ADVANCE(511); - END_STATE(); - case 270: - if (lookahead == 'e') ADVANCE(222); - END_STATE(); - case 271: - if (lookahead == 'e') ADVANCE(212); - END_STATE(); - case 272: - if (lookahead == 'e') ADVANCE(316); - END_STATE(); - case 273: - if (lookahead == 'e') ADVANCE(217); - END_STATE(); - case 274: - if (lookahead == 'e') ADVANCE(435); - END_STATE(); - case 275: - if (lookahead == 'e') ADVANCE(326); - END_STATE(); - case 276: - if (lookahead == 'e') ADVANCE(526); - END_STATE(); - case 277: - if (lookahead == 'e') ADVANCE(441); - END_STATE(); - case 278: - if (lookahead == 'e') ADVANCE(494); - END_STATE(); - case 279: - if (lookahead == 'e') ADVANCE(176); - END_STATE(); - case 280: - if (lookahead == 'e') ADVANCE(497); - END_STATE(); - case 281: - if (lookahead == 'e') ADVANCE(503); - END_STATE(); - case 282: - if (lookahead == 'e') ADVANCE(371); - if (lookahead == 't') ADVANCE(156); - if (lookahead == 'u') ADVANCE(185); - END_STATE(); - case 283: - if (lookahead == 'e') ADVANCE(443); - END_STATE(); - case 284: - if (lookahead == 'e') ADVANCE(499); - END_STATE(); - case 285: - if (lookahead == 'e') ADVANCE(555); - END_STATE(); - case 286: - if (lookahead == 'e') ADVANCE(555); - if (lookahead == 'u') ADVANCE(154); - END_STATE(); - case 287: - if (lookahead == 'e') ADVANCE(556); - if (lookahead == 't') ADVANCE(156); - if (lookahead == 'u') ADVANCE(185); - if (lookahead == 'w') ADVANCE(341); - END_STATE(); - case 288: - if (lookahead == 'e') ADVANCE(556); - if (lookahead == 't') ADVANCE(505); - END_STATE(); - case 289: - if (lookahead == 'e') ADVANCE(411); - if (lookahead == 't') ADVANCE(340); - END_STATE(); - case 290: - if (lookahead == 'e') ADVANCE(391); - if (lookahead == 'o') ADVANCE(591); - END_STATE(); - case 291: - if (lookahead == 'e') ADVANCE(165); - END_STATE(); - case 292: - if (lookahead == 'e') ADVANCE(519); - END_STATE(); - case 293: - if (lookahead == 'e') ADVANCE(204); - END_STATE(); - case 294: - if (lookahead == 'e') ADVANCE(520); - END_STATE(); - case 295: - if (lookahead == 'e') ADVANCE(522); - END_STATE(); - case 296: - if (lookahead == 'e') ADVANCE(523); - END_STATE(); - case 297: - if (lookahead == 'e') ADVANCE(337); - if (lookahead == 'o') ADVANCE(1444); - if (lookahead == 'y') ADVANCE(431); - END_STATE(); - case 298: - if (lookahead == 'e') ADVANCE(337); - if (lookahead == 'y') ADVANCE(431); - END_STATE(); - case 299: - if (lookahead == 'e') ADVANCE(446); - END_STATE(); - case 300: - if (lookahead == 'e') ADVANCE(128); - END_STATE(); - case 301: - if (lookahead == 'f') ADVANCE(1432); - if (lookahead == 'm') ADVANCE(485); - if (lookahead == 'n') ADVANCE(1422); - if (lookahead == 's') ADVANCE(1466); - END_STATE(); - case 302: - if (lookahead == 'f') ADVANCE(1432); - if (lookahead == 'm') ADVANCE(485); - if (lookahead == 'n') ADVANCE(218); - END_STATE(); - case 303: - if (lookahead == 'f') ADVANCE(1649); - END_STATE(); - case 304: - if (lookahead == 'f') ADVANCE(1649); - if (lookahead == 'm') ADVANCE(141); - END_STATE(); - case 305: - if (lookahead == 'f') ADVANCE(1426); - END_STATE(); - case 306: - if (lookahead == 'f') ADVANCE(616); - END_STATE(); - case 307: - if (lookahead == 'f') ADVANCE(330); - END_STATE(); - case 308: - if (lookahead == 'f') ADVANCE(251); - END_STATE(); - case 309: - if (lookahead == 'f') ADVANCE(257); - END_STATE(); - case 310: - if (lookahead == 'g') ADVANCE(1652); - END_STATE(); - case 311: - if (lookahead == 'g') ADVANCE(1604); - END_STATE(); - case 312: - if (lookahead == 'g') ADVANCE(1625); - END_STATE(); - case 313: - if (lookahead == 'g') ADVANCE(1607); - END_STATE(); - case 314: - if (lookahead == 'g') ADVANCE(321); - END_STATE(); - case 315: - if (lookahead == 'g') ADVANCE(300); - END_STATE(); - case 316: - if (lookahead == 'g') ADVANCE(514); - END_STATE(); - case 317: - if (lookahead == 'g') ADVANCE(177); - END_STATE(); - case 318: - if (lookahead == 'h') ADVANCE(1436); - END_STATE(); - case 319: - if (lookahead == 'h') ADVANCE(1446); - END_STATE(); - case 320: - if (lookahead == 'h') ADVANCE(1408); - END_STATE(); - case 321: - if (lookahead == 'h') ADVANCE(1441); - END_STATE(); - case 322: - if (lookahead == 'h') ADVANCE(162); - END_STATE(); - case 323: - if (lookahead == 'h') ADVANCE(506); - if (lookahead == 'r') ADVANCE(593); - if (lookahead == 'y') ADVANCE(487); - END_STATE(); - case 324: - if (lookahead == 'h') ADVANCE(510); - END_STATE(); - case 325: - if (lookahead == 'i') ADVANCE(608); - END_STATE(); - case 326: - if (lookahead == 'i') ADVANCE(604); - END_STATE(); - case 327: - if (lookahead == 'i') ADVANCE(370); - if (lookahead == 'o') ADVANCE(410); - END_STATE(); - case 328: - if (lookahead == 'i') ADVANCE(609); - END_STATE(); - case 329: - if (lookahead == 'i') ADVANCE(303); - END_STATE(); - case 330: - if (lookahead == 'i') ADVANCE(610); - END_STATE(); - case 331: - if (lookahead == 'i') ADVANCE(389); - if (lookahead == 'u') ADVANCE(424); - END_STATE(); - case 332: - if (lookahead == 'i') ADVANCE(267); - END_STATE(); - case 333: - if (lookahead == 'i') ADVANCE(482); - END_STATE(); - case 334: - if (lookahead == 'i') ADVANCE(306); - END_STATE(); - case 335: - if (lookahead == 'i') ADVANCE(437); - END_STATE(); - case 336: - if (lookahead == 'i') ADVANCE(540); - if (lookahead == 'm') ADVANCE(600); - END_STATE(); - case 337: - if (lookahead == 'i') ADVANCE(445); - END_STATE(); - case 338: - if (lookahead == 'i') ADVANCE(445); - if (lookahead == 'l') ADVANCE(255); - END_STATE(); - case 339: - if (lookahead == 'i') ADVANCE(390); - END_STATE(); - case 340: - if (lookahead == 'i') ADVANCE(476); - END_STATE(); - case 341: - if (lookahead == 'i') ADVANCE(563); - END_STATE(); - case 342: - if (lookahead == 'i') ADVANCE(467); - END_STATE(); - case 343: - if (lookahead == 'i') ADVANCE(547); - END_STATE(); - case 344: - if (lookahead == 'i') ADVANCE(429); - END_STATE(); - case 345: - if (lookahead == 'i') ADVANCE(193); - END_STATE(); - case 346: - if (lookahead == 'i') ADVANCE(194); - END_STATE(); - case 347: - if (lookahead == 'i') ADVANCE(195); - END_STATE(); - case 348: - if (lookahead == 'i') ADVANCE(549); - END_STATE(); - case 349: - if (lookahead == 'i') ADVANCE(425); - END_STATE(); - case 350: - if (lookahead == 'i') ADVANCE(426); - END_STATE(); - case 351: - if (lookahead == 'i') ADVANCE(428); - END_STATE(); - case 352: - if (lookahead == 'i') ADVANCE(432); - END_STATE(); - case 353: - if (lookahead == 'i') ADVANCE(521); - END_STATE(); - case 354: - if (lookahead == 'i') ADVANCE(157); - END_STATE(); - case 355: - if (lookahead == 'i') ADVANCE(223); - END_STATE(); - case 356: - if (lookahead == 'i') ADVANCE(469); - END_STATE(); - case 357: - if (lookahead == 'i') ADVANCE(524); - END_STATE(); - case 358: - if (lookahead == 'i') ADVANCE(394); - END_STATE(); - case 359: - if (lookahead == 'i') ADVANCE(470); - END_STATE(); - case 360: - if (lookahead == 'i') ADVANCE(569); - END_STATE(); - case 361: - if (lookahead == 'i') ADVANCE(433); - if (lookahead == 'u') ADVANCE(422); - END_STATE(); - case 362: - if (lookahead == 'i') ADVANCE(605); - END_STATE(); - case 363: - if (lookahead == 'i') ADVANCE(299); - END_STATE(); - case 364: - if (lookahead == 'i') ADVANCE(583); - END_STATE(); - case 365: - if (lookahead == 'i') ADVANCE(178); - END_STATE(); - case 366: - if (lookahead == 'i') ADVANCE(585); - END_STATE(); - case 367: - if (lookahead == 'k') ADVANCE(1627); - END_STATE(); - case 368: - if (lookahead == 'k') ADVANCE(1500); - END_STATE(); - case 369: - if (lookahead == 'l') ADVANCE(388); - END_STATE(); - case 370: - if (lookahead == 'l') ADVANCE(1303); - END_STATE(); - case 371: - if (lookahead == 'l') ADVANCE(305); - END_STATE(); - case 372: - if (lookahead == 'l') ADVANCE(305); - if (lookahead == 't') ADVANCE(1551); - END_STATE(); - case 373: - if (lookahead == 'l') ADVANCE(464); - END_STATE(); - case 374: - if (lookahead == 'l') ADVANCE(1619); - END_STATE(); - case 375: - if (lookahead == 'l') ADVANCE(1384); - END_STATE(); - case 376: - if (lookahead == 'l') ADVANCE(1595); - END_STATE(); - case 377: - if (lookahead == 'l') ADVANCE(1616); - END_STATE(); - case 378: - if (lookahead == 'l') ADVANCE(1520); - END_STATE(); - case 379: - if (lookahead == 'l') ADVANCE(1414); - END_STATE(); - case 380: - if (lookahead == 'l') ADVANCE(1413); - END_STATE(); - case 381: - if (lookahead == 'l') ADVANCE(1415); - END_STATE(); - case 382: - if (lookahead == 'l') ADVANCE(151); - END_STATE(); - case 383: - if (lookahead == 'l') ADVANCE(214); - END_STATE(); - case 384: - if (lookahead == 'l') ADVANCE(259); - if (lookahead == 'n') ADVANCE(155); - END_STATE(); - case 385: - if (lookahead == 'l') ADVANCE(345); - END_STATE(); - case 386: - if (lookahead == 'l') ADVANCE(458); - END_STATE(); - case 387: - if (lookahead == 'l') ADVANCE(558); - END_STATE(); - case 388: - if (lookahead == 'l') ADVANCE(558); - if (lookahead == 's') ADVANCE(240); - END_STATE(); - case 389: - if (lookahead == 'l') ADVANCE(238); - END_STATE(); - case 390: - if (lookahead == 'l') ADVANCE(170); - END_STATE(); - case 391: - if (lookahead == 'l') ADVANCE(271); - END_STATE(); - case 392: - if (lookahead == 'l') ADVANCE(354); - END_STATE(); - case 393: - if (lookahead == 'l') ADVANCE(387); - END_STATE(); - case 394: - if (lookahead == 'l') ADVANCE(241); - END_STATE(); - case 395: - if (lookahead == 'l') ADVANCE(246); - END_STATE(); - case 396: - if (lookahead == 'l') ADVANCE(247); - END_STATE(); - case 397: - if (lookahead == 'l') ADVANCE(538); - if (lookahead == 'n') ADVANCE(220); - if (lookahead == 'r') ADVANCE(527); - END_STATE(); - case 398: - if (lookahead == 'l') ADVANCE(179); - END_STATE(); - case 399: - if (lookahead == 'm') ADVANCE(1517); - END_STATE(); - case 400: - if (lookahead == 'm') ADVANCE(1637); - END_STATE(); - case 401: - if (lookahead == 'm') ADVANCE(1638); - END_STATE(); - case 402: - if (lookahead == 'm') ADVANCE(485); - if (lookahead == 'n') ADVANCE(218); - END_STATE(); - case 403: - if (lookahead == 'm') ADVANCE(485); - if (lookahead == 'n') ADVANCE(218); - if (lookahead == 's') ADVANCE(1466); - END_STATE(); - case 404: - if (lookahead == 'm') ADVANCE(235); - END_STATE(); - case 405: - if (lookahead == 'm') ADVANCE(414); - END_STATE(); - case 406: - if (lookahead == 'm') ADVANCE(472); - END_STATE(); - case 407: - if (lookahead == 'm') ADVANCE(347); - END_STATE(); - case 408: - if (lookahead == 'm') ADVANCE(600); - END_STATE(); - case 409: - if (lookahead == 'n') ADVANCE(573); - END_STATE(); - case 410: - if (lookahead == 'n') ADVANCE(336); - END_STATE(); - case 411: - if (lookahead == 'n') ADVANCE(1601); - END_STATE(); - case 412: - if (lookahead == 'n') ADVANCE(1601); - if (lookahead == 'r') ADVANCE(181); - END_STATE(); - case 413: - if (lookahead == 'n') ADVANCE(1496); - END_STATE(); - case 414: - if (lookahead == 'n') ADVANCE(1410); - END_STATE(); - case 415: - if (lookahead == 'n') ADVANCE(1411); - END_STATE(); - case 416: - if (lookahead == 'n') ADVANCE(1532); - END_STATE(); - case 417: - if (lookahead == 'n') ADVANCE(1648); - END_STATE(); - case 418: - if (lookahead == 'n') ADVANCE(1419); - END_STATE(); - case 419: - if (lookahead == 'n') ADVANCE(1419); - if (lookahead == 's') ADVANCE(1466); - END_STATE(); - case 420: - if (lookahead == 'n') ADVANCE(219); - END_STATE(); - case 421: - if (lookahead == 'n') ADVANCE(587); - if (lookahead == 'x') ADVANCE(565); - END_STATE(); - case 422: - if (lookahead == 'n') ADVANCE(191); - END_STATE(); - case 423: - if (lookahead == 'n') ADVANCE(447); - END_STATE(); - case 424: - if (lookahead == 'n') ADVANCE(201); - END_STATE(); - case 425: - if (lookahead == 'n') ADVANCE(310); - END_STATE(); - case 426: - if (lookahead == 'n') ADVANCE(311); - END_STATE(); - case 427: - if (lookahead == 'n') ADVANCE(192); - END_STATE(); - case 428: - if (lookahead == 'n') ADVANCE(312); - END_STATE(); - case 429: - if (lookahead == 'n') ADVANCE(594); - END_STATE(); - case 430: - if (lookahead == 'n') ADVANCE(225); - END_STATE(); - case 431: - if (lookahead == 'n') ADVANCE(145); - END_STATE(); - case 432: - if (lookahead == 'n') ADVANCE(313); - END_STATE(); - case 433: - if (lookahead == 'n') ADVANCE(155); - END_STATE(); - case 434: - if (lookahead == 'n') ADVANCE(408); - END_STATE(); - case 435: - if (lookahead == 'n') ADVANCE(542); - END_STATE(); - case 436: - if (lookahead == 'n') ADVANCE(541); - END_STATE(); - case 437: - if (lookahead == 'n') ADVANCE(239); - END_STATE(); - case 438: - if (lookahead == 'n') ADVANCE(158); - END_STATE(); - case 439: - if (lookahead == 'n') ADVANCE(159); - END_STATE(); - case 440: - if (lookahead == 'n') ADVANCE(265); - END_STATE(); - case 441: - if (lookahead == 'n') ADVANCE(363); - END_STATE(); - case 442: - if (lookahead == 'n') ADVANCE(603); - END_STATE(); - case 443: - if (lookahead == 'n') ADVANCE(206); - END_STATE(); - case 444: - if (lookahead == 'n') ADVANCE(349); - END_STATE(); - case 445: - if (lookahead == 'n') ADVANCE(348); - END_STATE(); - case 446: - if (lookahead == 'n') ADVANCE(207); - END_STATE(); - case 447: - if (lookahead == 'o') ADVANCE(607); - END_STATE(); - case 448: - if (lookahead == 'o') ADVANCE(322); - END_STATE(); - case 449: - if (lookahead == 'o') ADVANCE(606); - END_STATE(); - case 450: - if (lookahead == 'o') ADVANCE(591); - END_STATE(); - case 451: - if (lookahead == 'o') ADVANCE(373); - END_STATE(); - case 452: - if (lookahead == 'o') ADVANCE(536); - if (lookahead == 'r') ADVANCE(232); - if (lookahead == 'u') ADVANCE(184); - END_STATE(); - case 453: - if (lookahead == 'o') ADVANCE(410); - END_STATE(); - case 454: - if (lookahead == 'o') ADVANCE(200); - END_STATE(); - case 455: - if (lookahead == 'o') ADVANCE(590); - END_STATE(); - case 456: - if (lookahead == 'o') ADVANCE(589); - END_STATE(); - case 457: - if (lookahead == 'o') ADVANCE(493); - END_STATE(); - case 458: - if (lookahead == 'o') ADVANCE(537); - END_STATE(); - case 459: - if (lookahead == 'o') ADVANCE(375); - END_STATE(); - case 460: - if (lookahead == 'o') ADVANCE(197); - END_STATE(); - case 461: - if (lookahead == 'o') ADVANCE(516); - END_STATE(); - case 462: - if (lookahead == 'o') ADVANCE(208); - END_STATE(); - case 463: - if (lookahead == 'o') ADVANCE(378); - END_STATE(); - case 464: - if (lookahead == 'o') ADVANCE(495); - if (lookahead == 'u') ADVANCE(405); - END_STATE(); - case 465: - if (lookahead == 'o') ADVANCE(496); - END_STATE(); - case 466: - if (lookahead == 'o') ADVANCE(498); - END_STATE(); - case 467: - if (lookahead == 'o') ADVANCE(415); - END_STATE(); - case 468: - if (lookahead == 'o') ADVANCE(500); - END_STATE(); - case 469: - if (lookahead == 'o') ADVANCE(416); - END_STATE(); - case 470: - if (lookahead == 'o') ADVANCE(417); - END_STATE(); - case 471: - if (lookahead == 'o') ADVANCE(434); - END_STATE(); - case 472: - if (lookahead == 'o') ADVANCE(221); - END_STATE(); - case 473: - if (lookahead == 'o') ADVANCE(211); - END_STATE(); - case 474: - if (lookahead == 'o') ADVANCE(398); - END_STATE(); - case 475: - if (lookahead == 'o') ADVANCE(575); - END_STATE(); - case 476: - if (lookahead == 'o') ADVANCE(439); - END_STATE(); - case 477: - if (lookahead == 'o') ADVANCE(210); - END_STATE(); - case 478: - if (lookahead == 'p') ADVANCE(230); - if (lookahead == 'v') ADVANCE(269); - END_STATE(); - case 479: - if (lookahead == 'p') ADVANCE(1564); - END_STATE(); - case 480: - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'v') ADVANCE(269); - END_STATE(); - case 481: - if (lookahead == 'p') ADVANCE(233); - END_STATE(); - case 482: - if (lookahead == 'p') ADVANCE(554); - END_STATE(); - case 483: - if (lookahead == 'p') ADVANCE(252); - END_STATE(); - case 484: - if (lookahead == 'p') ADVANCE(291); - if (lookahead == 'q') ADVANCE(599); - END_STATE(); - case 485: - if (lookahead == 'p') ADVANCE(461); - END_STATE(); - case 486: - if (lookahead == 'p') ADVANCE(515); - END_STATE(); - case 487: - if (lookahead == 'p') ADVANCE(279); - END_STATE(); - case 488: - if (lookahead == 'p') ADVANCE(351); - END_STATE(); - case 489: - if (lookahead == 'p') ADVANCE(292); - if (lookahead == 't') ADVANCE(477); - END_STATE(); - case 490: - if (lookahead == 'q') ADVANCE(599); - END_STATE(); - case 491: - if (lookahead == 'r') ADVANCE(1488); - END_STATE(); - case 492: - if (lookahead == 'r') ADVANCE(1526); - END_STATE(); - case 493: - if (lookahead == 'r') ADVANCE(1300); - END_STATE(); - case 494: - if (lookahead == 'r') ADVANCE(1429); - END_STATE(); - case 495: - if (lookahead == 'r') ADVANCE(127); - END_STATE(); - case 496: - if (lookahead == 'r') ADVANCE(1652); - END_STATE(); - case 497: - if (lookahead == 'r') ADVANCE(116); - END_STATE(); - case 498: - if (lookahead == 'r') ADVANCE(1563); - END_STATE(); - case 499: - if (lookahead == 'r') ADVANCE(1636); - END_STATE(); - case 500: - if (lookahead == 'r') ADVANCE(1395); - END_STATE(); - case 501: - if (lookahead == 'r') ADVANCE(475); - END_STATE(); - case 502: - if (lookahead == 'r') ADVANCE(213); - END_STATE(); - case 503: - if (lookahead == 'r') ADVANCE(117); - END_STATE(); - case 504: - if (lookahead == 'r') ADVANCE(266); - END_STATE(); - case 505: - if (lookahead == 'r') ADVANCE(596); - END_STATE(); - case 506: - if (lookahead == 'r') ADVANCE(449); - END_STATE(); - case 507: - if (lookahead == 'r') ADVANCE(444); - END_STATE(); - case 508: - if (lookahead == 'r') ADVANCE(205); - END_STATE(); - case 509: - if (lookahead == 'r') ADVANCE(148); - END_STATE(); - case 510: - if (lookahead == 'r') ADVANCE(455); - END_STATE(); - case 511: - if (lookahead == 'r') ADVANCE(512); - END_STATE(); - case 512: - if (lookahead == 'r') ADVANCE(355); - END_STATE(); - case 513: - if (lookahead == 'r') ADVANCE(413); - END_STATE(); - case 514: - if (lookahead == 'r') ADVANCE(456); - END_STATE(); - case 515: - if (lookahead == 'r') ADVANCE(362); - END_STATE(); - case 516: - if (lookahead == 'r') ADVANCE(550); - END_STATE(); - case 517: - if (lookahead == 'r') ADVANCE(333); - END_STATE(); - case 518: - if (lookahead == 'r') ADVANCE(153); - END_STATE(); - case 519: - if (lookahead == 'r') ADVANCE(560); - END_STATE(); - case 520: - if (lookahead == 'r') ADVANCE(161); - END_STATE(); - case 521: - if (lookahead == 'r') ADVANCE(293); - END_STATE(); - case 522: - if (lookahead == 'r') ADVANCE(163); - END_STATE(); - case 523: - if (lookahead == 'r') ADVANCE(164); - END_STATE(); - case 524: - if (lookahead == 'r') ADVANCE(268); - END_STATE(); - case 525: - if (lookahead == 'r') ADVANCE(250); - END_STATE(); - case 526: - if (lookahead == 'r') ADVANCE(438); - END_STATE(); - case 527: - if (lookahead == 'r') ADVANCE(465); - END_STATE(); - case 528: - if (lookahead == 's') ADVANCE(199); - END_STATE(); - case 529: - if (lookahead == 's') ADVANCE(1514); - END_STATE(); - case 530: - if (lookahead == 's') ADVANCE(1508); - END_STATE(); - case 531: - if (lookahead == 's') ADVANCE(448); - END_STATE(); - case 532: - if (lookahead == 's') ADVANCE(454); - if (lookahead == 'y') ADVANCE(427); - END_STATE(); - case 533: - if (lookahead == 's') ADVANCE(209); - END_STATE(); - case 534: - if (lookahead == 's') ADVANCE(234); - END_STATE(); - case 535: - if (lookahead == 's') ADVANCE(529); - END_STATE(); - case 536: - if (lookahead == 's') ADVANCE(557); - END_STATE(); - case 537: - if (lookahead == 's') ADVANCE(598); - END_STATE(); - case 538: - if (lookahead == 's') ADVANCE(237); - END_STATE(); - case 539: - if (lookahead == 's') ADVANCE(149); - if (lookahead == 'u') ADVANCE(436); - END_STATE(); - case 540: - if (lookahead == 's') ADVANCE(474); - END_STATE(); - case 541: - if (lookahead == 's') ADVANCE(175); - END_STATE(); - case 542: - if (lookahead == 's') ADVANCE(356); - END_STATE(); - case 543: - if (lookahead == 't') ADVANCE(156); - if (lookahead == 'u') ADVANCE(185); - END_STATE(); - case 544: - if (lookahead == 't') ADVANCE(1548); - END_STATE(); - case 545: - if (lookahead == 't') ADVANCE(1523); - END_STATE(); - case 546: - if (lookahead == 't') ADVANCE(1538); - END_STATE(); - case 547: - if (lookahead == 't') ADVANCE(1403); - END_STATE(); - case 548: - if (lookahead == 't') ADVANCE(1622); - END_STATE(); - case 549: - if (lookahead == 't') ADVANCE(1542); - END_STATE(); - case 550: - if (lookahead == 't') ADVANCE(1505); - END_STATE(); - case 551: - if (lookahead == 't') ADVANCE(1492); - END_STATE(); - case 552: - if (lookahead == 't') ADVANCE(1511); - END_STATE(); - case 553: - if (lookahead == 't') ADVANCE(1535); - END_STATE(); - case 554: - if (lookahead == 't') ADVANCE(1544); - END_STATE(); - case 555: - if (lookahead == 't') ADVANCE(1546); - END_STATE(); - case 556: - if (lookahead == 't') ADVANCE(1549); - END_STATE(); - case 557: - if (lookahead == 't') ADVANCE(307); - END_STATE(); - case 558: - if (lookahead == 't') ADVANCE(324); - END_STATE(); - case 559: - if (lookahead == 't') ADVANCE(319); - END_STATE(); - case 560: - if (lookahead == 't') ADVANCE(615); - END_STATE(); - case 561: - if (lookahead == 't') ADVANCE(457); - END_STATE(); - case 562: - if (lookahead == 't') ADVANCE(320); - END_STATE(); - case 563: - if (lookahead == 't') ADVANCE(196); - END_STATE(); - case 564: - if (lookahead == 't') ADVANCE(460); - END_STATE(); - case 565: - if (lookahead == 't') ADVANCE(274); - END_STATE(); - case 566: - if (lookahead == 't') ADVANCE(160); - END_STATE(); - case 567: - if (lookahead == 't') ADVANCE(242); - END_STATE(); - case 568: - if (lookahead == 't') ADVANCE(244); - END_STATE(); - case 569: - if (lookahead == 't') ADVANCE(294); - END_STATE(); - case 570: - if (lookahead == 't') ADVANCE(270); - END_STATE(); - case 571: - if (lookahead == 't') ADVANCE(273); - END_STATE(); - case 572: - if (lookahead == 't') ADVANCE(249); - END_STATE(); - case 573: - if (lookahead == 't') ADVANCE(344); - if (lookahead == 'v') ADVANCE(277); - END_STATE(); - case 574: - if (lookahead == 't') ADVANCE(342); - END_STATE(); - case 575: - if (lookahead == 't') ADVANCE(462); - END_STATE(); - case 576: - if (lookahead == 't') ADVANCE(346); - END_STATE(); - case 577: - if (lookahead == 't') ADVANCE(350); - END_STATE(); - case 578: - if (lookahead == 't') ADVANCE(466); - END_STATE(); - case 579: - if (lookahead == 't') ADVANCE(359); - END_STATE(); - case 580: - if (lookahead == 't') ADVANCE(468); - END_STATE(); - case 581: - if (lookahead == 't') ADVANCE(352); - END_STATE(); - case 582: - if (lookahead == 't') ADVANCE(619); - END_STATE(); - case 583: - if (lookahead == 't') ADVANCE(295); - END_STATE(); - case 584: - if (lookahead == 't') ADVANCE(477); - END_STATE(); - case 585: - if (lookahead == 't') ADVANCE(296); - END_STATE(); - case 586: - if (lookahead == 't') ADVANCE(182); - END_STATE(); - case 587: - if (lookahead == 'u') ADVANCE(399); - END_STATE(); - case 588: - if (lookahead == 'u') ADVANCE(566); - END_STATE(); - case 589: - if (lookahead == 'u') ADVANCE(479); - END_STATE(); - case 590: - if (lookahead == 'u') ADVANCE(314); - END_STATE(); - case 591: - if (lookahead == 'u') ADVANCE(508); - END_STATE(); - case 592: - if (lookahead == 'u') ADVANCE(548); - END_STATE(); - case 593: - if (lookahead == 'u') ADVANCE(236); - if (lookahead == 'y') ADVANCE(1448); - END_STATE(); - case 594: - if (lookahead == 'u') ADVANCE(243); - END_STATE(); - case 595: - if (lookahead == 'u') ADVANCE(564); - END_STATE(); - case 596: - if (lookahead == 'u') ADVANCE(202); - END_STATE(); - case 597: - if (lookahead == 'u') ADVANCE(513); - END_STATE(); - case 598: - if (lookahead == 'u') ADVANCE(525); - END_STATE(); - case 599: - if (lookahead == 'u') ADVANCE(357); - END_STATE(); - case 600: - if (lookahead == 'u') ADVANCE(586); - END_STATE(); - case 601: - if (lookahead == 'v') ADVANCE(171); - END_STATE(); - case 602: - if (lookahead == 'v') ADVANCE(174); - END_STATE(); - case 603: - if (lookahead == 'v') ADVANCE(277); - END_STATE(); - case 604: - if (lookahead == 'v') ADVANCE(284); - END_STATE(); - case 605: - if (lookahead == 'v') ADVANCE(180); - END_STATE(); - case 606: - if (lookahead == 'w') ADVANCE(1494); - END_STATE(); - case 607: - if (lookahead == 'w') ADVANCE(440); - END_STATE(); - case 608: - if (lookahead == 'x') ADVANCE(1557); - END_STATE(); - case 609: - if (lookahead == 'x') ADVANCE(1554); - END_STATE(); - case 610: - if (lookahead == 'x') ADVANCE(1560); - END_STATE(); - case 611: - if (lookahead == 'y') ADVANCE(481); - END_STATE(); - case 612: - if (lookahead == 'y') ADVANCE(1389); - END_STATE(); - case 613: - if (lookahead == 'y') ADVANCE(129); - END_STATE(); - case 614: - if (lookahead == 'y') ADVANCE(1574); - END_STATE(); - case 615: - if (lookahead == 'y') ADVANCE(1635); - END_STATE(); - case 616: - if (lookahead == 'y') ADVANCE(1552); - END_STATE(); - case 617: - if (lookahead == 'y') ADVANCE(427); - END_STATE(); - case 618: - if (lookahead == 'y') ADVANCE(487); - END_STATE(); - case 619: - if (lookahead == 'y') ADVANCE(483); - END_STATE(); - case 620: - if (lookahead == 'z') ADVANCE(614); - END_STATE(); - case 621: - if (lookahead == '{') ADVANCE(1417); - END_STATE(); - case 622: - if (lookahead == '}') ADVANCE(1363); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(622); - END_STATE(); - case 623: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(623); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(111); - END_STATE(); - case 624: - if (lookahead == '+' || - lookahead == '-') ADVANCE(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1307); - END_STATE(); - case 625: - if (lookahead == '0' || - lookahead == '1') ADVANCE(1314); - END_STATE(); - case 626: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1313); - END_STATE(); - case 627: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1296); - if (aux_sym_simple_identifier_token4_character_set_1(lookahead)) ADVANCE(1298); - END_STATE(); - case 628: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1306); - END_STATE(); - case 629: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1307); - END_STATE(); - case 630: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1312); - END_STATE(); - case 631: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(622); - END_STATE(); - case 632: - if (lookahead != 0 && - lookahead != '#' && - lookahead != '/') ADVANCE(112); - if (lookahead == '#') ADVANCE(1370); - if (lookahead == '/') ADVANCE(632); - END_STATE(); - case 633: - if (lookahead != 0 && - lookahead != '#') ADVANCE(33); - END_STATE(); - case 634: - if (lookahead != 0 && - lookahead != '/') ADVANCE(112); - if (lookahead == '/') ADVANCE(632); - END_STATE(); - case 635: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(1376); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(167); - if (lookahead == 'i') ADVANCE(403); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(453); - if (lookahead == 'o') ADVANCE(480); - if (lookahead == 'p') ADVANCE(452); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(543); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(261); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(645) - END_STATE(); - case 636: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(1375); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(119); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(120); - if (lookahead == '+') ADVANCE(121); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(122); - if (lookahead == '.') ADVANCE(1382); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '0') ADVANCE(1311); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '=') ADVANCE(1457); - if (lookahead == '>') ADVANCE(1401); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == 'P') ADVANCE(501); - if (lookahead == 'T') ADVANCE(611); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(621); - if (lookahead == '_') ADVANCE(406); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'd') ADVANCE(297); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(166); - if (lookahead == 'g') ADVANCE(286); - if (lookahead == 'i') ADVANCE(302); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(453); - if (lookahead == 'o') ADVANCE(478); - if (lookahead == 'p') ADVANCE(452); - if (lookahead == 'r') ADVANCE(254); - if (lookahead == 's') ADVANCE(287); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(262); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(648) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1311); - END_STATE(); - case 637: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(35); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1310); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == 'P') ADVANCE(501); - if (lookahead == 'T') ADVANCE(611); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1360); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '_') ADVANCE(1572); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(188); - if (lookahead == 'b') ADVANCE(504); - if (lookahead == 'c') ADVANCE(143); - if (lookahead == 'd') ADVANCE(227); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(138); - if (lookahead == 'g') ADVANCE(260); - if (lookahead == 'i') ADVANCE(301); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(327); - if (lookahead == 'o') ADVANCE(478); - if (lookahead == 'p') ADVANCE(146); - if (lookahead == 'r') ADVANCE(228); - if (lookahead == 's') ADVANCE(229); - if (lookahead == 't') ADVANCE(323); - if (lookahead == 'u') ADVANCE(1362); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(262); - if (lookahead == 'y') ADVANCE(332); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(637) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1311); - END_STATE(); - case 638: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(36); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(718); - if (lookahead == 'c') ADVANCE(839); - if (lookahead == 'd') ADVANCE(877); - if (lookahead == 'e') ADVANCE(863); - if (lookahead == 'f') ADVANCE(692); - if (lookahead == 'g') ADVANCE(967); - if (lookahead == 'i') ADVANCE(785); - if (lookahead == 'l') ADVANCE(694); - if (lookahead == 'm') ADVANCE(959); - if (lookahead == 'n') ADVANCE(803); - if (lookahead == 'o') ADVANCE(894); - if (lookahead == 'p') ADVANCE(879); - if (lookahead == 'r') ADVANCE(744); - if (lookahead == 's') ADVANCE(761); - if (lookahead == 't') ADVANCE(800); - if (lookahead == 'u') ADVANCE(853); - if (lookahead == 'v') ADVANCE(699); - if (lookahead == 'w') ADVANCE(765); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(638) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1293); - END_STATE(); - case 639: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1063); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(640) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1293); - END_STATE(); - case 640: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '"') ADVANCE(1322); - if (lookahead == '#') ADVANCE(108); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '/') ADVANCE(1474); - if (lookahead == '0') ADVANCE(1308); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == '\\') ADVANCE(1359); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1017); - if (lookahead == 'f') ADVANCE(1002); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == 'n') ADVANCE(1100); - if (lookahead == 's') ADVANCE(1063); - if (lookahead == 't') ADVANCE(1204); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '~') ADVANCE(1481); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(640) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1309); - if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1293); - END_STATE(); - case 641: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == '0') ADVANCE(1311); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(642) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1311); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 642: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(103); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == '0') ADVANCE(1311); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(642) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1311); - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 643: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(644) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 644: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '$') ADVANCE(627); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == '`') ADVANCE(137); - if (lookahead == 'a') ADVANCE(1020); - if (lookahead == 'i') ADVANCE(1225); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(644) - if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1293); - END_STATE(); - case 645: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(1478); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1473); - if (lookahead == '+') ADVANCE(1469); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1471); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1476); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(1458); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(167); - if (lookahead == 'i') ADVANCE(403); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(453); - if (lookahead == 'o') ADVANCE(480); - if (lookahead == 'p') ADVANCE(452); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(543); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(261); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(645) - END_STATE(); - case 646: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1386); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(167); - if (lookahead == 'i') ADVANCE(403); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(453); - if (lookahead == 'o') ADVANCE(480); - if (lookahead == 'p') ADVANCE(452); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(282); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(261); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(647) - END_STATE(); - case 647: - if (eof) ADVANCE(650); - if (lookahead == '!') ADVANCE(118); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(1477); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(1472); - if (lookahead == '+') ADVANCE(1468); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(1470); - if (lookahead == '.') ADVANCE(1381); - if (lookahead == '/') ADVANCE(1475); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1400); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(1402); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == '[') ADVANCE(1378); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(1484); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(167); - if (lookahead == 'i') ADVANCE(403); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(453); - if (lookahead == 'o') ADVANCE(480); - if (lookahead == 'p') ADVANCE(452); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(282); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(261); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '|') ADVANCE(1482); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(647) - END_STATE(); - case 648: - if (eof) ADVANCE(650); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '%') ADVANCE(119); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == '*') ADVANCE(120); - if (lookahead == '+') ADVANCE(121); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '-') ADVANCE(122); - if (lookahead == '.') ADVANCE(1382); - if (lookahead == '/') ADVANCE(114); - if (lookahead == '0') ADVANCE(1311); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == ';') ADVANCE(1541); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '=') ADVANCE(1457); - if (lookahead == '>') ADVANCE(1401); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == 'P') ADVANCE(501); - if (lookahead == 'T') ADVANCE(611); - if (lookahead == '\\') ADVANCE(98); - if (lookahead == ']') ADVANCE(1379); - if (lookahead == '^') ADVANCE(621); - if (lookahead == '_') ADVANCE(406); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'd') ADVANCE(297); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(166); - if (lookahead == 'g') ADVANCE(286); - if (lookahead == 'i') ADVANCE(302); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(453); - if (lookahead == 'o') ADVANCE(478); - if (lookahead == 'p') ADVANCE(452); - if (lookahead == 'r') ADVANCE(254); - if (lookahead == 's') ADVANCE(287); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(262); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(648) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1311); - END_STATE(); - case 649: - if (eof) ADVANCE(650); - if (lookahead == '#') ADVANCE(226); - if (lookahead == '&') ADVANCE(1391); - if (lookahead == '(') ADVANCE(1377); - if (lookahead == ')') ADVANCE(1365); - if (lookahead == ',') ADVANCE(1368); - if (lookahead == '.') ADVANCE(1380); - if (lookahead == '/') ADVANCE(113); - if (lookahead == ':') ADVANCE(1374); - if (lookahead == '<') ADVANCE(1399); - if (lookahead == '?') ADVANCE(1385); - if (lookahead == '@') ADVANCE(1571); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'c') ADVANCE(144); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(421); - if (lookahead == 'f') ADVANCE(167); - if (lookahead == 'i') ADVANCE(402); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'm') ADVANCE(588); - if (lookahead == 'n') ADVANCE(453); - if (lookahead == 'o') ADVANCE(480); - if (lookahead == 'p') ADVANCE(452); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(543); - if (lookahead == 't') ADVANCE(618); - if (lookahead == 'u') ADVANCE(423); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(261); - if (lookahead == '{') ADVANCE(1416); - if (lookahead == '}') ADVANCE(1418); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(649) - END_STATE(); - case 650: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 651: - ACCEPT_TOKEN(anon_sym_POUND_BANG); - END_STATE(); - case 652: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '#') ADVANCE(660); - if (lookahead == '/') ADVANCE(653); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(652); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 653: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == '/') ADVANCE(683); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 654: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'L') ADVANCE(673); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 655: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'a') ADVANCE(681); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 656: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'a') ADVANCE(677); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 657: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'c') ADVANCE(655); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 658: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'c') ADVANCE(662); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 659: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'd') ADVANCE(665); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 660: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'e') ADVANCE(668); - if (lookahead == 'i') ADVANCE(663); - if (lookahead == 's') ADVANCE(672); - if (lookahead == 'w') ADVANCE(656); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 661: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'e') ADVANCE(665); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 662: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'e') ADVANCE(654); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 663: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'f') ADVANCE(683); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 664: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'g') ADVANCE(683); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 665: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'i') ADVANCE(663); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 666: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'i') ADVANCE(670); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 667: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'i') ADVANCE(674); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 668: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'l') ADVANCE(680); - if (lookahead == 'n') ADVANCE(659); - if (lookahead == 'r') ADVANCE(679); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 669: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'n') ADVANCE(683); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 670: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'n') ADVANCE(664); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 671: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'n') ADVANCE(666); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 672: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'o') ADVANCE(682); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 673: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'o') ADVANCE(657); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 674: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'o') ADVANCE(669); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 675: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'o') ADVANCE(676); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 676: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'r') ADVANCE(683); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 677: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'r') ADVANCE(671); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 678: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'r') ADVANCE(658); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 679: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'r') ADVANCE(675); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 680: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 's') ADVANCE(661); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 681: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 't') ADVANCE(667); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 682: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead == 'u') ADVANCE(678); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 683: - ACCEPT_TOKEN(aux_sym_shebang_line_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(683); - END_STATE(); - case 684: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(33); - if (lookahead == '#') ADVANCE(689); - if (lookahead != 0) ADVANCE(685); - END_STATE(); - case 685: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0) ADVANCE(685); - END_STATE(); - case 686: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(1398); - if (lookahead == '/') ADVANCE(687); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(688); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(688); - END_STATE(); - case 687: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(1398); - if (lookahead == '/') ADVANCE(687); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(689); - END_STATE(); - case 688: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(689); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(688); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(688); - END_STATE(); - case 689: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(689); - END_STATE(); - case 690: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1396); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 691: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1397); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 692: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(841); - if (lookahead == 'i') ADVANCE(842); - if (lookahead == 'o') ADVANCE(904); - if (lookahead == 'u') ADVANCE(855); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 693: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(841); - if (lookahead == 'i') ADVANCE(867); - if (lookahead == 'o') ADVANCE(904); - if (lookahead == 'u') ADVANCE(855); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 694: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(982); - if (lookahead == 'e') ADVANCE(931); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 695: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 696: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(925); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 697: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(851); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 698: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(830); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 699: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(905); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 700: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(906); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 701: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(834); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 702: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(953); - if (lookahead == 'r') ADVANCE(960); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 703: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 704: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(835); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 705: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(836); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 706: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(936); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 707: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(838); - if (lookahead == 'i') ADVANCE(842); - if (lookahead == 'o') ADVANCE(904); - if (lookahead == 'u') ADVANCE(855); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 708: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 709: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(949); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 710: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(930); - if (lookahead == 'l') ADVANCE(696); - if (lookahead == 'o') ADVANCE(860); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 711: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(846); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 712: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(948); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 713: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(950); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 714: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(954); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 715: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(951); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 716: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'a') ADVANCE(952); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 717: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'b') ADVANCE(843); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 718: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(940); - if (lookahead == 's') ADVANCE(924); - if (lookahead == 'w') ADVANCE(708); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 719: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(940); - if (lookahead == 's') ADVANCE(980); - if (lookahead == 'w') ADVANCE(708); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 720: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(1530); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 721: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(1393); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 722: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(798); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 723: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(1590); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 724: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(1611); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 725: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(1614); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 726: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(759); - if (lookahead == 'f') ADVANCE(806); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 727: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(827); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 728: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(937); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 729: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(938); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 730: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(764); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 731: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(751); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 732: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'c') ADVANCE(891); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 733: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(1435); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 734: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(1631); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 735: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(1584); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 736: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(1587); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 737: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(1503); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 738: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(815); - if (lookahead == 'f') ADVANCE(802); - if (lookahead == 'i') ADVANCE(932); - if (lookahead == 'o') ADVANCE(964); - if (lookahead == 't') ADVANCE(774); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 739: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(815); - if (lookahead == 'i') ADVANCE(932); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 740: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(750); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 741: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(941); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 742: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(807); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 743: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(779); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 744: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(897); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 745: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(726); - if (lookahead == 'i') ADVANCE(970); - if (lookahead == 'o') ADVANCE(945); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 746: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1316); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 747: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1319); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 748: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1491); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 749: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1593); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1578); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 751: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1581); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 752: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1599); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 753: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1568); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 754: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(896); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 755: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1439); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 756: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(1499); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 757: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(898); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 758: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(832); - if (lookahead == 't') ADVANCE(909); - if (lookahead == 'u') ADVANCE(903); - if (lookahead == 'w') ADVANCE(814); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 759: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(743); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 760: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(931); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 761: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(833); - if (lookahead == 't') ADVANCE(702); - if (lookahead == 'u') ADVANCE(903); - if (lookahead == 'w') ADVANCE(814); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 762: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(833); - if (lookahead == 't') ADVANCE(909); - if (lookahead == 'u') ADVANCE(903); - if (lookahead == 'w') ADVANCE(814); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 763: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(734); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 764: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(797); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 765: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(695); - if (lookahead == 'h') ADVANCE(810); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 766: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(902); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(735); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 768: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(913); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(741); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 770: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(736); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 771: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(857); - if (lookahead == 't') ADVANCE(809); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 772: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(868); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 773: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(711); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 774: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(920); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(872); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(698); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(844); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 778: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(908); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 779: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(870); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 780: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(939); - if (lookahead == 'u') ADVANCE(700); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 781: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(792); - if (lookahead == 'i') ADVANCE(970); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 782: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(729); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 783: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(706); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 784: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'e') ADVANCE(874); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 785: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(1433); - if (lookahead == 'm') ADVANCE(900); - if (lookahead == 'n') ADVANCE(738); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 786: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(1433); - if (lookahead == 'n') ADVANCE(738); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 787: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(1433); - if (lookahead == 'n') ADVANCE(1420); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 788: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(1433); - if (lookahead == 'n') ADVANCE(739); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 789: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(1433); - if (lookahead == 'n') ADVANCE(1421); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 790: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(1427); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 791: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(979); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 792: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(806); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 793: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'f') ADVANCE(808); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 794: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'g') ADVANCE(1605); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 795: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'g') ADVANCE(1608); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 796: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'g') ADVANCE(799); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 797: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'g') ADVANCE(910); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 798: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'h') ADVANCE(1437); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 799: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'h') ADVANCE(1442); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 800: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'h') ADVANCE(919); - if (lookahead == 'r') ADVANCE(963); - if (lookahead == 'y') ADVANCE(901); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 801: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'h') ADVANCE(911); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 802: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(975); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 803: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(831); - if (lookahead == 'o') ADVANCE(856); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 804: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(831); - if (lookahead == 'o') ADVANCE(865); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 805: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(831); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 806: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(976); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 807: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(791); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 808: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(977); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 809: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(893); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 810: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(845); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 811: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(927); - if (lookahead == 'm') ADVANCE(969); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 812: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(892); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 813: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(723); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 814: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(946); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 815: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(912); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 816: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(724); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 817: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(933); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 818: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(725); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 819: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(703); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 820: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(858); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 821: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(862); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 822: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(869); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 823: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(777); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 824: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(740); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 825: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(916); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 826: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(784); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 827: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(713); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 828: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'i') ADVANCE(972); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 829: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'k') ADVANCE(1628); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 830: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'k') ADVANCE(1501); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 831: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(1304); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 832: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(790); - if (lookahead == 't') ADVANCE(1550); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 833: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(790); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 834: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(1620); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 835: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(1596); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 836: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(1617); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 837: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(1521); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 838: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(847); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 839: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(696); - if (lookahead == 'o') ADVANCE(854); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 840: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(696); - if (lookahead == 'o') ADVANCE(876); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 841: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(928); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 842: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(766); - if (lookahead == 'n') ADVANCE(701); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 843: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(813); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 844: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(737); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 845: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(748); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 846: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(819); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 847: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(943); - if (lookahead == 's') ADVANCE(747); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 848: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'l') ADVANCE(715); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 849: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'm') ADVANCE(1518); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 850: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'm') ADVANCE(889); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 851: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'm') ADVANCE(818); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 852: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'm') ADVANCE(969); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 853: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(881); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 854: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(971); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 855: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(720); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 856: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(811); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 857: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(1602); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 858: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(794); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 859: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(1533); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 860: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(955); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 861: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(1497); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 862: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(795); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 863: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(958); - if (lookahead == 'x') ADVANCE(944); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 864: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(721); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 865: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(852); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 866: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(697); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 867: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(701); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 868: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(929); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 869: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(966); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 870: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(730); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 871: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(763); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 872: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(826); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 873: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(704); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 874: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(731); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 875: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(705); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 876: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'n') ADVANCE(956); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 877: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(1445); - if (lookahead == 'y') ADVANCE(866); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 878: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(1445); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 879: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(926); - if (lookahead == 'r') ADVANCE(745); - if (lookahead == 'u') ADVANCE(717); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 880: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(926); - if (lookahead == 'r') ADVANCE(781); - if (lookahead == 'u') ADVANCE(717); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 881: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(974); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 882: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(727); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 883: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(973); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 884: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(962); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 885: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(907); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 886: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(732); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 887: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(848); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 888: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(915); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 889: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(742); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 890: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(961); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 891: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(837); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 892: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(859); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 893: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'o') ADVANCE(875); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 894: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(771); - if (lookahead == 'v') ADVANCE(768); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 895: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(1565); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 896: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(783); - if (lookahead == 'q') ADVANCE(968); - if (lookahead == 't') ADVANCE(965); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 897: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(783); - if (lookahead == 'q') ADVANCE(968); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 898: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(783); - if (lookahead == 't') ADVANCE(965); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 899: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(753); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 900: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(888); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 901: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(773); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 902: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(917); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 903: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'p') ADVANCE(778); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 904: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(1489); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 905: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(1527); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 906: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(733); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 907: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(1301); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 908: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(1430); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 909: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(960); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 910: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(884); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 911: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(890); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 912: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(782); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 913: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(914); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 914: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(824); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 915: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(935); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 916: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(767); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 917: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(828); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 918: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(861); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 919: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(883); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 920: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(873); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 921: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'r') ADVANCE(776); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 922: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(1515); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 923: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(1509); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 924: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(882); - if (lookahead == 'y') ADVANCE(864); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 925: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(922); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 926: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(942); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 927: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(887); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 928: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(747); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 929: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(812); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 930: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 's') ADVANCE(755); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 931: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1524); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 932: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1539); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 933: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1404); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 934: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1623); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 935: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1506); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 936: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1493); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 937: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1512); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 938: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1536); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 939: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(1547); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 940: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(885); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 941: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(981); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 942: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(793); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 943: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(801); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 944: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(772); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 945: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(886); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 946: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(722); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 947: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(712); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 948: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(820); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 949: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(749); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 950: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(769); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 951: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(770); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 952: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(752); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 953: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(816); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 954: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(821); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 955: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(822); - if (lookahead == 'v') ADVANCE(775); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 956: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(822); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 957: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 't') ADVANCE(714); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 958: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(849); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 959: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(947); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 960: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(728); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 961: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(796); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 962: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(895); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 963: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(746); - if (lookahead == 'y') ADVANCE(1447); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 964: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(934); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 965: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(918); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 966: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 967: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(700); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 968: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(825); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 969: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'u') ADVANCE(957); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 970: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'v') ADVANCE(709); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 971: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'v') ADVANCE(775); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 972: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'v') ADVANCE(716); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 973: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'w') ADVANCE(1495); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 974: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'w') ADVANCE(871); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 975: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'x') ADVANCE(1558); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 976: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'x') ADVANCE(1555); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 977: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'x') ADVANCE(1561); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 978: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'y') ADVANCE(1575); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 979: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'y') ADVANCE(1553); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 980: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'y') ADVANCE(864); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 981: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'y') ADVANCE(899); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 982: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'z') ADVANCE(978); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 983: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 984: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1228); - if (lookahead == 'l') ADVANCE(992); - if (lookahead == 'o') ADVANCE(1150); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 985: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1228); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 986: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1124); - if (lookahead == 'i') ADVANCE(1134); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 987: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1291); - if (lookahead == 'e') ADVANCE(1238); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 988: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1291); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 989: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1108); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 990: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1123); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 991: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1145); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 992: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1229); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 993: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1250); - if (lookahead == 'r') ADVANCE(1274); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 994: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1250); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 995: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1126); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 996: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1127); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 997: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1252); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 998: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1128); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 999: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1207); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1000: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1226); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1001: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1140); - if (lookahead == 'i') ADVANCE(1134); - if (lookahead == 'u') ADVANCE(1166); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1002: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1140); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1003: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1138); - if (lookahead == 'i') ADVANCE(1134); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1004: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1251); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1005: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1139); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1006: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1253); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1007: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1262); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1008: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1255); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1009: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'a') ADVANCE(1259); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1293); - END_STATE(); - case 1010: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1135); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1011: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1232); - if (lookahead == 'p') ADVANCE(1071); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1012: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'b') ADVANCE(1232); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1013: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 'n') ADVANCE(1286); - if (lookahead == 's') ADVANCE(1288); - if (lookahead == 'w') ADVANCE(989); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1014: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 'n') ADVANCE(1286); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1015: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 's') ADVANCE(1231); - if (lookahead == 'w') ADVANCE(989); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1016: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 's') ADVANCE(1231); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1017: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 's') ADVANCE(1288); - if (lookahead == 'w') ADVANCE(989); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1018: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 's') ADVANCE(1288); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1019: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 'w') ADVANCE(989); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1020: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1247); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1021: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1394); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1022: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1591); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1023: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1612); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1024: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1615); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1025: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1531); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1026: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1244); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1027: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1245); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1028: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1121); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1029: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1049); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1030: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1081); - if (lookahead == 'f') ADVANCE(1102); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1031: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1068); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1032: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1187); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1033: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'c') ADVANCE(1221); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1034: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1632); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1035: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1585); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1036: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1588); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1037: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1048); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1038: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1248); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1039: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1083); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1040: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'd') ADVANCE(1119); - if (lookahead == 'f') ADVANCE(1097); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1271); - if (lookahead == 't') ADVANCE(1066); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1041: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1202); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1042: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1087); - if (lookahead == 'i') ADVANCE(1278); - if (lookahead == 'o') ADVANCE(1261); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1043: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1087); - if (lookahead == 'i') ADVANCE(1278); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1044: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1440); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1045: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1317); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1046: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1320); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1047: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1594); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1048: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1579); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1049: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1582); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1050: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1600); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1051: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1388); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1052: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1196); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1053: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1030); - if (lookahead == 'i') ADVANCE(1278); - if (lookahead == 'o') ADVANCE(1261); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1054: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1569); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1055: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1212); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1056: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1201); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1057: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1034); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1058: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 'o') ADVANCE(1146); - if (lookahead == 'u') ADVANCE(1196); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1059: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 't') ADVANCE(993); - if (lookahead == 'u') ADVANCE(1011); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1060: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 't') ADVANCE(993); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1061: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 't') ADVANCE(994); - if (lookahead == 'u') ADVANCE(1196); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1062: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 't') ADVANCE(1211); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1063: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 'u') ADVANCE(1196); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1064: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1131); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1065: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1035); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1066: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1223); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1067: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1036); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1068: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1092); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1069: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(990); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1070: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1038); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1071: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1206); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1072: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1153); - if (lookahead == 't') ADVANCE(1103); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1073: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1172); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1074: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1238); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1075: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1208); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1076: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1263); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1077: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1163); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1078: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1209); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1079: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1005); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1080: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1169); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1081: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1039); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1082: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1027); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1083: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1174); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1084: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'e') ADVANCE(1116); - if (lookahead == 'y') ADVANCE(1164); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1085: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1428); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1086: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1097); - if (lookahead == 'o') ADVANCE(1271); - if (lookahead == 't') ADVANCE(1066); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1087: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1102); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1088: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'f') ADVANCE(1105); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1089: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1606); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1090: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1609); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1091: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1093); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1092: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'g') ADVANCE(1215); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1093: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1443); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1094: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'h') ADVANCE(1213); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1095: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1134); - if (lookahead == 'u') ADVANCE(1166); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1096: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1134); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1097: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1281); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1098: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1037); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1099: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1125); - if (lookahead == 'o') ADVANCE(1151); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1100: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1125); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1101: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1022); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1102: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1282); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1103: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1193); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1104: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1023); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1105: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1283); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1106: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1197); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1107: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1024); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1108: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1109: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1230); - if (lookahead == 'm') ADVANCE(1276); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1110: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1218); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1111: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1154); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1112: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1113: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1160); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1114: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1242); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1115: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1077); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1116: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1173); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1117: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1000); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1118: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1190); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1119: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1222); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1120: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1167); - if (lookahead == 'u') ADVANCE(1166); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1121: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1009); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1122: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'i') ADVANCE(1279); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1123: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'k') ADVANCE(1629); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1124: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1136); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1125: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1305); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1126: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1621); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1127: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1597); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1128: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1618); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1129: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1522); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1130: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1085); - if (lookahead == 't') ADVANCE(1257); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1131: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1085); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1132: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(992); - if (lookahead == 'o') ADVANCE(1150); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1133: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(992); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1134: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1056); - if (lookahead == 'n') ADVANCE(995); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1135: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1101); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1136: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1236); - if (lookahead == 's') ADVANCE(1046); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1137: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1236); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1138: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1137); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1139: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1117); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1140: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1233); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1141: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'l') ADVANCE(1006); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1142: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1519); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1143: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1200); - if (lookahead == 'n') ADVANCE(1040); - if (lookahead == 's') ADVANCE(1467); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1144: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1200); - if (lookahead == 'n') ADVANCE(1040); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1145: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1107); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1146: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'm') ADVANCE(1051); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1147: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1086); - if (lookahead == 's') ADVANCE(1467); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1148: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1086); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1149: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1176); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1150: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1277); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1151: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1109); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1152: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1021); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1153: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1603); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1154: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1089); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1155: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1534); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1156: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1425); - if (lookahead == 's') ADVANCE(1467); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1157: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1425); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1158: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1423); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1159: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1424); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1160: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1090); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1161: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1268); - if (lookahead == 'x') ADVANCE(1258); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1162: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1268); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1163: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1029); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1164: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(991); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1165: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1191); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1166: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1025); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1167: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(995); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1168: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(996); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1169: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1234); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1170: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(998); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1171: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1057); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1172: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1115); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1173: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1114); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1174: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1031); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1175: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'n') ADVANCE(1112); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1176: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1280); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1177: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1227); - if (lookahead == 'r') ADVANCE(1043); - if (lookahead == 'u') ADVANCE(1010); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1178: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1227); - if (lookahead == 'r') ADVANCE(1053); - if (lookahead == 'u') ADVANCE(1010); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1179: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1227); - if (lookahead == 'r') ADVANCE(1042); - if (lookahead == 'u') ADVANCE(1010); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1180: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1146); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1181: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1267); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1182: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1205); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1183: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1151); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1184: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1269); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1185: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1141); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1186: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1028); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1187: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1129); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1188: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1032); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1189: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1219); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1190: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1155); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1191: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1271); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1192: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1261); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1193: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'o') ADVANCE(1170); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1194: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1072); - if (lookahead == 'v') ADVANCE(1055); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1195: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1566); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1196: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1071); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1197: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1246); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1198: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1054); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1199: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1079); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1200: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1189); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1201: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'p') ADVANCE(1220); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1202: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'q') ADVANCE(1270); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1203: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1272); - if (lookahead == 'y') ADVANCE(1199); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1204: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1272); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1205: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1302); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1206: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1431); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1207: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1528); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1208: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1209: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(691); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1210: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1284); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1211: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1274); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1212: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1217); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1213: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1181); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1214: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1273); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1215: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1184); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1216: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1192); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1217: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1098); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1218: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1065); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1219: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1243); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1220: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1122); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1221: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1106); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1222: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1082); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1223: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'r') ADVANCE(1168); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1224: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1516); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1225: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1467); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1226: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1510); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1227: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1260); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1228: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1044); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1229: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1224); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1230: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1185); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1231: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1186); - if (lookahead == 'y') ADVANCE(1152); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1232: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1033); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1233: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1046); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1234: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 's') ADVANCE(1118); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1235: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1405); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1236: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1094); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1237: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1624); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1238: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1525); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1239: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(993); - if (lookahead == 'u') ADVANCE(1012); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1240: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(993); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1241: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1540); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1242: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1543); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1243: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1507); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1244: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1513); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1245: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1537); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1246: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1545); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1247: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1182); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1248: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1290); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1249: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(994); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1250: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1104); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1251: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1111); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1252: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1047); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1253: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1067); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1254: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1211); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1255: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1050); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1256: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1075); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1257: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1078); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1258: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1080); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1259: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1070); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1260: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1088); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1261: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1188); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1262: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1113); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1263: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1256); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1264: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1004); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1265: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 't') ADVANCE(1007); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1266: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1264); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1267: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1091); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1268: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1142); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1269: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1195); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1270: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1110); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1271: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1237); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1272: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1045); - if (lookahead == 'y') ADVANCE(1449); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1273: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1045); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1274: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1026); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1275: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1166); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1276: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'u') ADVANCE(1265); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1277: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'v') ADVANCE(1073); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1278: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'v') ADVANCE(997); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1279: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'v') ADVANCE(1008); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1280: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'w') ADVANCE(1171); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1281: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'x') ADVANCE(1559); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1282: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'x') ADVANCE(1556); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1283: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'x') ADVANCE(1562); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1284: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1449); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1285: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1576); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1286: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1390); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1287: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1164); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1288: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1152); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1289: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1199); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1290: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'y') ADVANCE(1198); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1291: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 'z') ADVANCE(1285); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1293); - END_STATE(); - case 1292: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 8419) ADVANCE(1294); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1293: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1294: - ACCEPT_TOKEN(aux_sym_simple_identifier_token1); - if (aux_sym_simple_identifier_token1_character_set_9(lookahead)) ADVANCE(1293); - END_STATE(); - case 1295: - ACCEPT_TOKEN(aux_sym_simple_identifier_token2); - END_STATE(); - case 1296: - ACCEPT_TOKEN(aux_sym_simple_identifier_token3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1296); - END_STATE(); - case 1297: - ACCEPT_TOKEN(aux_sym_simple_identifier_token4); - if (lookahead == 8419) ADVANCE(1299); - if (lookahead == 65039) ADVANCE(1297); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1298); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1298); - END_STATE(); - case 1298: - ACCEPT_TOKEN(aux_sym_simple_identifier_token4); - if (lookahead == 65039) ADVANCE(1297); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1298); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1298); - END_STATE(); - case 1299: - ACCEPT_TOKEN(aux_sym_simple_identifier_token4); - if (aux_sym_simple_identifier_token1_character_set_9(lookahead)) ADVANCE(1298); - END_STATE(); - case 1300: - ACCEPT_TOKEN(anon_sym_actor); - END_STATE(); - case 1301: - ACCEPT_TOKEN(anon_sym_actor); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1302: - ACCEPT_TOKEN(anon_sym_actor); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1303: - ACCEPT_TOKEN(anon_sym_nil); - END_STATE(); - case 1304: - ACCEPT_TOKEN(anon_sym_nil); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1305: - ACCEPT_TOKEN(anon_sym_nil); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1306: - ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(135); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1306); - END_STATE(); - case 1307: - ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1307); - END_STATE(); - case 1308: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(628); - if (lookahead == '_') ADVANCE(134); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(625); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(624); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(626); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1309); - END_STATE(); - case 1309: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(628); - if (lookahead == '_') ADVANCE(134); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(624); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1309); - END_STATE(); - case 1310: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '_') ADVANCE(130); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(625); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(626); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1311); - END_STATE(); - case 1311: - ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '_') ADVANCE(130); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1311); - END_STATE(); - case 1312: - ACCEPT_TOKEN(sym_hex_literal); - if (lookahead == '_') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1312); - END_STATE(); - case 1313: - ACCEPT_TOKEN(sym_oct_literal); - if (lookahead == '_') ADVANCE(132); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1313); - END_STATE(); - case 1314: - ACCEPT_TOKEN(sym_bin_literal); - if (lookahead == '_') ADVANCE(131); - if (lookahead == '0' || - lookahead == '1') ADVANCE(1314); - END_STATE(); - case 1315: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 1316: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1317: - ACCEPT_TOKEN(anon_sym_true); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1318: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 1319: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1320: - ACCEPT_TOKEN(anon_sym_false); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1321: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 1322: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead == '"') ADVANCE(71); - END_STATE(); - case 1323: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '\n') ADVANCE(1358); - if (lookahead == 'f') ADVANCE(1325); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1325); - END_STATE(); - case 1324: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '\n') ADVANCE(1358); - if (lookahead == 'i') ADVANCE(1323); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1325); - END_STATE(); - case 1325: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '\n') ADVANCE(1358); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1325); - END_STATE(); - case 1326: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '#') ADVANCE(1334); - if (lookahead == '/') ADVANCE(1327); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(1326); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1327: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '/') ADVANCE(1325); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1328: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'L') ADVANCE(1347); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1329: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'a') ADVANCE(1355); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1330: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'a') ADVANCE(1350); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1331: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'c') ADVANCE(1329); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1332: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'c') ADVANCE(1336); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1333: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'd') ADVANCE(1339); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1334: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'e') ADVANCE(1342); - if (lookahead == 'i') ADVANCE(1337); - if (lookahead == 's') ADVANCE(1346); - if (lookahead == 'w') ADVANCE(1330); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1335: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'e') ADVANCE(1324); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1336: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'e') ADVANCE(1328); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1337: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'f') ADVANCE(1325); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1338: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'g') ADVANCE(1357); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1339: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'i') ADVANCE(1337); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1340: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'i') ADVANCE(1344); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1341: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'i') ADVANCE(1348); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1342: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'l') ADVANCE(1354); - if (lookahead == 'n') ADVANCE(1333); - if (lookahead == 'r') ADVANCE(1353); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1343: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'n') ADVANCE(1357); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1344: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'n') ADVANCE(1338); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1345: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'n') ADVANCE(1340); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1346: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'o') ADVANCE(1356); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1347: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'o') ADVANCE(1331); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1348: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'o') ADVANCE(1343); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1349: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'o') ADVANCE(1352); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1350: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'r') ADVANCE(1345); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1351: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'r') ADVANCE(1332); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1352: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'r') ADVANCE(1357); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1353: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'r') ADVANCE(1349); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1354: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 's') ADVANCE(1335); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1355: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 't') ADVANCE(1341); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1356: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == 'u') ADVANCE(1351); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1357: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(1358); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1357); - END_STATE(); - case 1358: - ACCEPT_TOKEN(aux_sym_line_str_text_token1); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(1358); - END_STATE(); - case 1359: - ACCEPT_TOKEN(anon_sym_BSLASH); - END_STATE(); - case 1360: - ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '(') ADVANCE(1367); - if (lookahead == '\n' || - lookahead == '"' || - lookahead == '\'' || - lookahead == '0' || - lookahead == '\\' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(1369); - END_STATE(); - case 1361: - ACCEPT_TOKEN(anon_sym_u); - END_STATE(); - case 1362: - ACCEPT_TOKEN(anon_sym_u); - if (lookahead == 'n') ADVANCE(447); - END_STATE(); - case 1363: - ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); - END_STATE(); - case 1364: - ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); - END_STATE(); - case 1365: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 1366: - ACCEPT_TOKEN(sym_raw_str_interpolation_start); - END_STATE(); - case 1367: - ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); - END_STATE(); - case 1368: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 1369: - ACCEPT_TOKEN(sym__escaped_identifier); - END_STATE(); - case 1370: - ACCEPT_TOKEN(sym__extended_regex_literal); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(112); - END_STATE(); - case 1371: - ACCEPT_TOKEN(aux_sym__multiline_regex_literal_token1); - END_STATE(); - case 1372: - ACCEPT_TOKEN(aux_sym__multiline_regex_literal_token2); - END_STATE(); - case 1373: - ACCEPT_TOKEN(sym__oneline_regex_literal); - END_STATE(); - case 1374: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 1375: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 1376: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1459); - END_STATE(); - case 1377: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 1378: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 1379: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 1380: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 1381: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(106); - END_STATE(); - case 1382: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(105); - END_STATE(); - case 1383: - ACCEPT_TOKEN(anon_sym_Type); - END_STATE(); - case 1384: - ACCEPT_TOKEN(anon_sym_Protocol); - END_STATE(); - case 1385: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 1386: - ACCEPT_TOKEN(sym__immediate_quest); - END_STATE(); - case 1387: - ACCEPT_TOKEN(anon_sym_some); - END_STATE(); - case 1388: - ACCEPT_TOKEN(anon_sym_some); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1389: - ACCEPT_TOKEN(anon_sym_any); - END_STATE(); - case 1390: - ACCEPT_TOKEN(anon_sym_any); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1391: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 1392: - ACCEPT_TOKEN(anon_sym_async); - END_STATE(); - case 1393: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1394: - ACCEPT_TOKEN(anon_sym_async); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1395: - ACCEPT_TOKEN(anon_sym_POUNDselector); - END_STATE(); - case 1396: - ACCEPT_TOKEN(anon_sym_getter_COLON); - END_STATE(); - case 1397: - ACCEPT_TOKEN(anon_sym_setter_COLON); - END_STATE(); - case 1398: - ACCEPT_TOKEN(aux_sym_custom_operator_token1); - if (lookahead == '*') ADVANCE(1398); - END_STATE(); - case 1399: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 1400: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(1485); - if (lookahead == '=') ADVANCE(1462); - END_STATE(); - case 1401: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 1402: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1463); - if (lookahead == '>') ADVANCE(1486); - END_STATE(); - case 1403: - ACCEPT_TOKEN(anon_sym_await); - END_STATE(); - case 1404: - ACCEPT_TOKEN(anon_sym_await); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1405: - ACCEPT_TOKEN(anon_sym_await); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1406: - ACCEPT_TOKEN(anon_sym_POUNDfile); - if (lookahead == 'I') ADVANCE(125); - if (lookahead == 'L') ADVANCE(360); - if (lookahead == 'P') ADVANCE(169); - END_STATE(); - case 1407: - ACCEPT_TOKEN(anon_sym_POUNDfileID); - END_STATE(); - case 1408: - ACCEPT_TOKEN(anon_sym_POUNDfilePath); - END_STATE(); - case 1409: - ACCEPT_TOKEN(anon_sym_POUNDline); - END_STATE(); - case 1410: - ACCEPT_TOKEN(anon_sym_POUNDcolumn); - END_STATE(); - case 1411: - ACCEPT_TOKEN(anon_sym_POUNDfunction); - END_STATE(); - case 1412: - ACCEPT_TOKEN(anon_sym_POUNDdsohandle); - END_STATE(); - case 1413: - ACCEPT_TOKEN(anon_sym_POUNDcolorLiteral); - END_STATE(); - case 1414: - ACCEPT_TOKEN(anon_sym_POUNDfileLiteral); - END_STATE(); - case 1415: - ACCEPT_TOKEN(anon_sym_POUNDimageLiteral); - END_STATE(); - case 1416: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 1417: - ACCEPT_TOKEN(anon_sym_CARET_LBRACE); - END_STATE(); - case 1418: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 1419: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 1420: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(815); - if (lookahead == 'f') ADVANCE(802); - if (lookahead == 'i') ADVANCE(932); - if (lookahead == 'o') ADVANCE(964); - if (lookahead == 't') ADVANCE(774); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1421: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 'd') ADVANCE(815); - if (lookahead == 'i') ADVANCE(932); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1422: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'd') ADVANCE(353); - if (lookahead == 'f') ADVANCE(325); - if (lookahead == 'i') ADVANCE(546); - if (lookahead == 'o') ADVANCE(592); - if (lookahead == 't') ADVANCE(276); - END_STATE(); - case 1423: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'd') ADVANCE(1119); - if (lookahead == 'f') ADVANCE(1097); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 'o') ADVANCE(1271); - if (lookahead == 't') ADVANCE(1066); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1424: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'd') ADVANCE(1119); - if (lookahead == 'i') ADVANCE(1241); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1425: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1426: - ACCEPT_TOKEN(anon_sym_self); - END_STATE(); - case 1427: - ACCEPT_TOKEN(anon_sym_self); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1428: - ACCEPT_TOKEN(anon_sym_self); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1429: - ACCEPT_TOKEN(anon_sym_super); - END_STATE(); - case 1430: - ACCEPT_TOKEN(anon_sym_super); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1431: - ACCEPT_TOKEN(anon_sym_super); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1432: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 1433: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1434: - ACCEPT_TOKEN(anon_sym_guard); - END_STATE(); - case 1435: - ACCEPT_TOKEN(anon_sym_guard); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1436: - ACCEPT_TOKEN(anon_sym_switch); - END_STATE(); - case 1437: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1438: - ACCEPT_TOKEN(anon_sym_case); - END_STATE(); - case 1439: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1440: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1441: - ACCEPT_TOKEN(anon_sym_fallthrough); - END_STATE(); - case 1442: - ACCEPT_TOKEN(anon_sym_fallthrough); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1443: - ACCEPT_TOKEN(anon_sym_fallthrough); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1444: - ACCEPT_TOKEN(anon_sym_do); - END_STATE(); - case 1445: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1446: - ACCEPT_TOKEN(anon_sym_POUNDkeyPath); - END_STATE(); - case 1447: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '!') ADVANCE(1450); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == '?') ADVANCE(1451); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1448: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '!') ADVANCE(1450); - if (lookahead == '?') ADVANCE(1451); - END_STATE(); - case 1449: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == '!') ADVANCE(1450); - if (lookahead == '?') ADVANCE(1451); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1450: - ACCEPT_TOKEN(anon_sym_try_BANG); - END_STATE(); - case 1451: - ACCEPT_TOKEN(anon_sym_try_QMARK); - END_STATE(); - case 1452: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 1453: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 1454: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 1455: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 1456: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 1457: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 1458: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(124); - END_STATE(); - case 1459: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(1460); - END_STATE(); - case 1460: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 1461: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 1462: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 1463: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 1464: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 1465: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - END_STATE(); - case 1466: - ACCEPT_TOKEN(anon_sym_is); - END_STATE(); - case 1467: - ACCEPT_TOKEN(anon_sym_is); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1468: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1479); - END_STATE(); - case 1469: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1479); - if (lookahead == '=') ADVANCE(1452); - END_STATE(); - case 1470: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1480); - END_STATE(); - case 1471: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(1480); - if (lookahead == '=') ADVANCE(1453); - END_STATE(); - case 1472: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 1473: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(1454); - END_STATE(); - case 1474: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(1398); - if (lookahead == '/') ADVANCE(686); - if (lookahead == '=') ADVANCE(1455); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(623); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(111); - END_STATE(); - case 1475: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(1398); - if (lookahead == '/') ADVANCE(687); - END_STATE(); - case 1476: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(1398); - if (lookahead == '/') ADVANCE(687); - if (lookahead == '=') ADVANCE(1455); - END_STATE(); - case 1477: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 1478: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(1456); - END_STATE(); - case 1479: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 1480: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 1481: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 1482: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 1483: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 1484: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '{') ADVANCE(1417); - END_STATE(); - case 1485: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 1486: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 1487: - ACCEPT_TOKEN(sym_statement_label); - END_STATE(); - case 1488: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 1489: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1490: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 1491: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1492: - ACCEPT_TOKEN(anon_sym_repeat); - END_STATE(); - case 1493: - ACCEPT_TOKEN(anon_sym_repeat); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1494: - ACCEPT_TOKEN(sym_throw_keyword); - END_STATE(); - case 1495: - ACCEPT_TOKEN(sym_throw_keyword); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1496: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 1497: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1498: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 1499: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1500: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 1501: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1502: - ACCEPT_TOKEN(anon_sym_yield); - END_STATE(); - case 1503: - ACCEPT_TOKEN(anon_sym_yield); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1504: - ACCEPT_TOKEN(anon_sym_POUNDavailable); - END_STATE(); - case 1505: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 1506: - ACCEPT_TOKEN(anon_sym_import); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1507: - ACCEPT_TOKEN(anon_sym_import); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1508: - ACCEPT_TOKEN(anon_sym_typealias); - END_STATE(); - case 1509: - ACCEPT_TOKEN(anon_sym_typealias); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1510: - ACCEPT_TOKEN(anon_sym_typealias); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1511: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 1512: - ACCEPT_TOKEN(anon_sym_struct); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1513: - ACCEPT_TOKEN(anon_sym_struct); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1514: - ACCEPT_TOKEN(anon_sym_class); - END_STATE(); - case 1515: - ACCEPT_TOKEN(anon_sym_class); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1516: - ACCEPT_TOKEN(anon_sym_class); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1517: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 1518: - ACCEPT_TOKEN(anon_sym_enum); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1519: - ACCEPT_TOKEN(anon_sym_enum); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1520: - ACCEPT_TOKEN(anon_sym_protocol); - END_STATE(); - case 1521: - ACCEPT_TOKEN(anon_sym_protocol); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1522: - ACCEPT_TOKEN(anon_sym_protocol); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1523: - ACCEPT_TOKEN(anon_sym_let); - END_STATE(); - case 1524: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1525: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1526: - ACCEPT_TOKEN(anon_sym_var); - END_STATE(); - case 1527: - ACCEPT_TOKEN(anon_sym_var); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1528: - ACCEPT_TOKEN(anon_sym_var); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1529: - ACCEPT_TOKEN(anon_sym_func); - END_STATE(); - case 1530: - ACCEPT_TOKEN(anon_sym_func); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1531: - ACCEPT_TOKEN(anon_sym_func); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1532: - ACCEPT_TOKEN(anon_sym_extension); - END_STATE(); - case 1533: - ACCEPT_TOKEN(anon_sym_extension); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1534: - ACCEPT_TOKEN(anon_sym_extension); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1535: - ACCEPT_TOKEN(anon_sym_indirect); - END_STATE(); - case 1536: - ACCEPT_TOKEN(anon_sym_indirect); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1537: - ACCEPT_TOKEN(anon_sym_indirect); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1538: - ACCEPT_TOKEN(anon_sym_init); - END_STATE(); - case 1539: - ACCEPT_TOKEN(anon_sym_init); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1540: - ACCEPT_TOKEN(anon_sym_init); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1541: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 1542: - ACCEPT_TOKEN(anon_sym_deinit); - END_STATE(); - case 1543: - ACCEPT_TOKEN(anon_sym_deinit); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1544: - ACCEPT_TOKEN(anon_sym_subscript); - END_STATE(); - case 1545: - ACCEPT_TOKEN(anon_sym_subscript); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1546: - ACCEPT_TOKEN(anon_sym_get); - END_STATE(); - case 1547: - ACCEPT_TOKEN(anon_sym_get); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1548: - ACCEPT_TOKEN(anon_sym_get); - if (lookahead == 't') ADVANCE(280); - END_STATE(); - case 1549: - ACCEPT_TOKEN(anon_sym_set); - END_STATE(); - case 1550: - ACCEPT_TOKEN(anon_sym_set); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1551: - ACCEPT_TOKEN(anon_sym_set); - if (lookahead == 'p') ADVANCE(173); - if (lookahead == 't') ADVANCE(281); - END_STATE(); - case 1552: - ACCEPT_TOKEN(anon_sym__modify); - END_STATE(); - case 1553: - ACCEPT_TOKEN(anon_sym__modify); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1554: - ACCEPT_TOKEN(anon_sym_prefix); - END_STATE(); - case 1555: - ACCEPT_TOKEN(anon_sym_prefix); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1556: - ACCEPT_TOKEN(anon_sym_prefix); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1557: - ACCEPT_TOKEN(anon_sym_infix); - END_STATE(); - case 1558: - ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1559: - ACCEPT_TOKEN(anon_sym_infix); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1560: - ACCEPT_TOKEN(anon_sym_postfix); - END_STATE(); - case 1561: - ACCEPT_TOKEN(anon_sym_postfix); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1562: - ACCEPT_TOKEN(anon_sym_postfix); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1563: - ACCEPT_TOKEN(anon_sym_operator); - END_STATE(); - case 1564: - ACCEPT_TOKEN(anon_sym_precedencegroup); - END_STATE(); - case 1565: - ACCEPT_TOKEN(anon_sym_precedencegroup); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1566: - ACCEPT_TOKEN(anon_sym_precedencegroup); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1567: - ACCEPT_TOKEN(anon_sym_associatedtype); - END_STATE(); - case 1568: - ACCEPT_TOKEN(anon_sym_associatedtype); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1569: - ACCEPT_TOKEN(anon_sym_associatedtype); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1570: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 1571: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'a') ADVANCE(595); - if (lookahead == 'e') ADVANCE(528); - END_STATE(); - case 1572: - ACCEPT_TOKEN(sym_wildcard_pattern); - END_STATE(); - case 1573: - ACCEPT_TOKEN(sym_wildcard_pattern); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1574: - ACCEPT_TOKEN(sym_property_behavior_modifier); - END_STATE(); - case 1575: - ACCEPT_TOKEN(sym_property_behavior_modifier); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1576: - ACCEPT_TOKEN(sym_property_behavior_modifier); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1577: - ACCEPT_TOKEN(anon_sym_override); - END_STATE(); - case 1578: - ACCEPT_TOKEN(anon_sym_override); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1579: - ACCEPT_TOKEN(anon_sym_override); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1580: - ACCEPT_TOKEN(anon_sym_convenience); - END_STATE(); - case 1581: - ACCEPT_TOKEN(anon_sym_convenience); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1582: - ACCEPT_TOKEN(anon_sym_convenience); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1583: - ACCEPT_TOKEN(anon_sym_required); - END_STATE(); - case 1584: - ACCEPT_TOKEN(anon_sym_required); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1585: - ACCEPT_TOKEN(anon_sym_required); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1586: - ACCEPT_TOKEN(anon_sym_nonisolated); - END_STATE(); - case 1587: - ACCEPT_TOKEN(anon_sym_nonisolated); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1588: - ACCEPT_TOKEN(anon_sym_nonisolated); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1589: - ACCEPT_TOKEN(anon_sym_public); - END_STATE(); - case 1590: - ACCEPT_TOKEN(anon_sym_public); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1591: - ACCEPT_TOKEN(anon_sym_public); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1592: - ACCEPT_TOKEN(anon_sym_private); - END_STATE(); - case 1593: - ACCEPT_TOKEN(anon_sym_private); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1594: - ACCEPT_TOKEN(anon_sym_private); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1595: - ACCEPT_TOKEN(anon_sym_internal); - END_STATE(); - case 1596: - ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1597: - ACCEPT_TOKEN(anon_sym_internal); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1598: - ACCEPT_TOKEN(anon_sym_fileprivate); - END_STATE(); - case 1599: - ACCEPT_TOKEN(anon_sym_fileprivate); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1600: - ACCEPT_TOKEN(anon_sym_fileprivate); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1601: - ACCEPT_TOKEN(anon_sym_open); - END_STATE(); - case 1602: - ACCEPT_TOKEN(anon_sym_open); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1603: - ACCEPT_TOKEN(anon_sym_open); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1604: - ACCEPT_TOKEN(anon_sym_mutating); - END_STATE(); - case 1605: - ACCEPT_TOKEN(anon_sym_mutating); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1606: - ACCEPT_TOKEN(anon_sym_mutating); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1607: - ACCEPT_TOKEN(anon_sym_nonmutating); - END_STATE(); - case 1608: - ACCEPT_TOKEN(anon_sym_nonmutating); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1609: - ACCEPT_TOKEN(anon_sym_nonmutating); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1610: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 1611: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1612: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1613: - ACCEPT_TOKEN(anon_sym_dynamic); - END_STATE(); - case 1614: - ACCEPT_TOKEN(anon_sym_dynamic); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1615: - ACCEPT_TOKEN(anon_sym_dynamic); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1616: - ACCEPT_TOKEN(anon_sym_optional); - END_STATE(); - case 1617: - ACCEPT_TOKEN(anon_sym_optional); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1618: - ACCEPT_TOKEN(anon_sym_optional); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1619: - ACCEPT_TOKEN(anon_sym_final); - END_STATE(); - case 1620: - ACCEPT_TOKEN(anon_sym_final); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1621: - ACCEPT_TOKEN(anon_sym_final); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1622: - ACCEPT_TOKEN(anon_sym_inout); - END_STATE(); - case 1623: - ACCEPT_TOKEN(anon_sym_inout); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1624: - ACCEPT_TOKEN(anon_sym_inout); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1625: - ACCEPT_TOKEN(anon_sym_ATescaping); - END_STATE(); - case 1626: - ACCEPT_TOKEN(anon_sym_ATautoclosure); - END_STATE(); - case 1627: - ACCEPT_TOKEN(anon_sym_weak); - END_STATE(); - case 1628: - ACCEPT_TOKEN(anon_sym_weak); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1629: - ACCEPT_TOKEN(anon_sym_weak); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1630: - ACCEPT_TOKEN(anon_sym_unowned); - if (lookahead == '(') ADVANCE(539); - END_STATE(); - case 1631: - ACCEPT_TOKEN(anon_sym_unowned); - if (lookahead == '(') ADVANCE(539); - if (lookahead == ':') ADVANCE(1487); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(983); - if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1293); - END_STATE(); - case 1632: - ACCEPT_TOKEN(anon_sym_unowned); - if (lookahead == '(') ADVANCE(539); - if (lookahead == 65039) ADVANCE(1292); - if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1293); - if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1293); - END_STATE(); - case 1633: - ACCEPT_TOKEN(anon_sym_unowned_LPARENsafe_RPAREN); - END_STATE(); - case 1634: - ACCEPT_TOKEN(anon_sym_unowned_LPARENunsafe_RPAREN); - END_STATE(); - case 1635: - ACCEPT_TOKEN(anon_sym_property); - END_STATE(); - case 1636: - ACCEPT_TOKEN(anon_sym_receiver); - END_STATE(); - case 1637: - ACCEPT_TOKEN(anon_sym_param); - END_STATE(); - case 1638: - ACCEPT_TOKEN(anon_sym_setparam); - END_STATE(); - case 1639: - ACCEPT_TOKEN(anon_sym_delegate); - END_STATE(); - case 1640: - ACCEPT_TOKEN(sym_directive); - if (lookahead == '\n') ADVANCE(33); - if (lookahead == '#') ADVANCE(1649); - if (lookahead != 0) ADVANCE(1644); - END_STATE(); - case 1641: - ACCEPT_TOKEN(sym_directive); - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '\r') ADVANCE(33); - if (lookahead == '/') ADVANCE(1645); - if (lookahead != 0) ADVANCE(1641); - END_STATE(); - case 1642: - ACCEPT_TOKEN(sym_directive); - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(1640); - if (lookahead == 'f') ADVANCE(1644); - if (lookahead != 0) ADVANCE(1644); - END_STATE(); - case 1643: - ACCEPT_TOKEN(sym_directive); - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(1640); - if (lookahead == 'i') ADVANCE(1642); - if (lookahead != 0) ADVANCE(1644); - END_STATE(); - case 1644: - ACCEPT_TOKEN(sym_directive); - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '/') ADVANCE(1640); - if (lookahead != 0) ADVANCE(1644); - END_STATE(); - case 1645: - ACCEPT_TOKEN(sym_directive); - if (lookahead == '#') ADVANCE(1648); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(33); - if (lookahead != 0) ADVANCE(1641); - END_STATE(); - case 1646: - ACCEPT_TOKEN(sym_directive); - if (lookahead == 'f') ADVANCE(1649); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1649); - END_STATE(); - case 1647: - ACCEPT_TOKEN(sym_directive); - if (lookahead == 'i') ADVANCE(1646); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1649); - END_STATE(); - case 1648: - ACCEPT_TOKEN(sym_directive); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1648); - END_STATE(); - case 1649: - ACCEPT_TOKEN(sym_directive); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1649); - END_STATE(); - case 1650: - ACCEPT_TOKEN(sym_diagnostic); - if (lookahead == '\n') ADVANCE(34); - if (lookahead == '\r') ADVANCE(33); - if (lookahead == '/') ADVANCE(1651); - if (lookahead != 0) ADVANCE(1650); - END_STATE(); - case 1651: - ACCEPT_TOKEN(sym_diagnostic); - if (lookahead == '#') ADVANCE(1652); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(33); - if (lookahead != 0) ADVANCE(1650); - END_STATE(); - case 1652: - ACCEPT_TOKEN(sym_diagnostic); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1652); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 638, .external_lex_state = 2}, - [2] = {.lex_state = 48, .external_lex_state = 3}, - [3] = {.lex_state = 48, .external_lex_state = 3}, - [4] = {.lex_state = 638, .external_lex_state = 2}, - [5] = {.lex_state = 638, .external_lex_state = 2}, - [6] = {.lex_state = 638, .external_lex_state = 2}, - [7] = {.lex_state = 638, .external_lex_state = 2}, - [8] = {.lex_state = 638, .external_lex_state = 2}, - [9] = {.lex_state = 49, .external_lex_state = 3}, - [10] = {.lex_state = 49, .external_lex_state = 3}, - [11] = {.lex_state = 50, .external_lex_state = 2}, - [12] = {.lex_state = 50, .external_lex_state = 2}, - [13] = {.lex_state = 50, .external_lex_state = 2}, - [14] = {.lex_state = 50, .external_lex_state = 2}, - [15] = {.lex_state = 52, .external_lex_state = 2}, - [16] = {.lex_state = 52, .external_lex_state = 2}, - [17] = {.lex_state = 52, .external_lex_state = 2}, - [18] = {.lex_state = 52, .external_lex_state = 2}, - [19] = {.lex_state = 52, .external_lex_state = 2}, - [20] = {.lex_state = 52, .external_lex_state = 2}, - [21] = {.lex_state = 52, .external_lex_state = 2}, - [22] = {.lex_state = 52, .external_lex_state = 2}, - [23] = {.lex_state = 52, .external_lex_state = 2}, - [24] = {.lex_state = 52, .external_lex_state = 2}, - [25] = {.lex_state = 52, .external_lex_state = 2}, - [26] = {.lex_state = 52, .external_lex_state = 2}, - [27] = {.lex_state = 52, .external_lex_state = 2}, - [28] = {.lex_state = 52, .external_lex_state = 2}, - [29] = {.lex_state = 52, .external_lex_state = 2}, - [30] = {.lex_state = 52, .external_lex_state = 2}, - [31] = {.lex_state = 52, .external_lex_state = 2}, - [32] = {.lex_state = 52, .external_lex_state = 2}, - [33] = {.lex_state = 52, .external_lex_state = 2}, - [34] = {.lex_state = 52, .external_lex_state = 2}, - [35] = {.lex_state = 52, .external_lex_state = 2}, - [36] = {.lex_state = 52, .external_lex_state = 2}, - [37] = {.lex_state = 52, .external_lex_state = 2}, - [38] = {.lex_state = 52, .external_lex_state = 2}, - [39] = {.lex_state = 52, .external_lex_state = 2}, - [40] = {.lex_state = 52, .external_lex_state = 2}, - [41] = {.lex_state = 52, .external_lex_state = 2}, - [42] = {.lex_state = 52, .external_lex_state = 2}, - [43] = {.lex_state = 52, .external_lex_state = 2}, - [44] = {.lex_state = 52, .external_lex_state = 2}, - [45] = {.lex_state = 52, .external_lex_state = 2}, - [46] = {.lex_state = 52, .external_lex_state = 2}, - [47] = {.lex_state = 52, .external_lex_state = 2}, - [48] = {.lex_state = 51, .external_lex_state = 2}, - [49] = {.lex_state = 51, .external_lex_state = 2}, - [50] = {.lex_state = 51, .external_lex_state = 2}, - [51] = {.lex_state = 51, .external_lex_state = 2}, - [52] = {.lex_state = 51, .external_lex_state = 2}, - [53] = {.lex_state = 51, .external_lex_state = 2}, - [54] = {.lex_state = 51, .external_lex_state = 2}, - [55] = {.lex_state = 51, .external_lex_state = 2}, - [56] = {.lex_state = 51, .external_lex_state = 2}, - [57] = {.lex_state = 51, .external_lex_state = 2}, - [58] = {.lex_state = 51, .external_lex_state = 2}, - [59] = {.lex_state = 51, .external_lex_state = 2}, - [60] = {.lex_state = 51, .external_lex_state = 2}, - [61] = {.lex_state = 51, .external_lex_state = 2}, - [62] = {.lex_state = 51, .external_lex_state = 2}, - [63] = {.lex_state = 51, .external_lex_state = 2}, - [64] = {.lex_state = 51, .external_lex_state = 2}, - [65] = {.lex_state = 51, .external_lex_state = 2}, - [66] = {.lex_state = 51, .external_lex_state = 2}, - [67] = {.lex_state = 51, .external_lex_state = 2}, - [68] = {.lex_state = 51, .external_lex_state = 2}, - [69] = {.lex_state = 51, .external_lex_state = 2}, - [70] = {.lex_state = 51, .external_lex_state = 2}, - [71] = {.lex_state = 51, .external_lex_state = 2}, - [72] = {.lex_state = 51, .external_lex_state = 2}, - [73] = {.lex_state = 51, .external_lex_state = 2}, - [74] = {.lex_state = 51, .external_lex_state = 2}, - [75] = {.lex_state = 51, .external_lex_state = 2}, - [76] = {.lex_state = 51, .external_lex_state = 2}, - [77] = {.lex_state = 51, .external_lex_state = 2}, - [78] = {.lex_state = 51, .external_lex_state = 2}, - [79] = {.lex_state = 51, .external_lex_state = 2}, - [80] = {.lex_state = 51, .external_lex_state = 2}, - [81] = {.lex_state = 51, .external_lex_state = 2}, - [82] = {.lex_state = 51, .external_lex_state = 2}, - [83] = {.lex_state = 51, .external_lex_state = 2}, - [84] = {.lex_state = 51, .external_lex_state = 2}, - [85] = {.lex_state = 51, .external_lex_state = 2}, - [86] = {.lex_state = 51, .external_lex_state = 2}, - [87] = {.lex_state = 51, .external_lex_state = 2}, - [88] = {.lex_state = 51, .external_lex_state = 2}, - [89] = {.lex_state = 51, .external_lex_state = 2}, - [90] = {.lex_state = 51, .external_lex_state = 2}, - [91] = {.lex_state = 51, .external_lex_state = 2}, - [92] = {.lex_state = 51, .external_lex_state = 2}, - [93] = {.lex_state = 51, .external_lex_state = 2}, - [94] = {.lex_state = 51, .external_lex_state = 2}, - [95] = {.lex_state = 51, .external_lex_state = 2}, - [96] = {.lex_state = 51, .external_lex_state = 2}, - [97] = {.lex_state = 51, .external_lex_state = 2}, - [98] = {.lex_state = 51, .external_lex_state = 2}, - [99] = {.lex_state = 51, .external_lex_state = 2}, - [100] = {.lex_state = 51, .external_lex_state = 2}, - [101] = {.lex_state = 51, .external_lex_state = 2}, - [102] = {.lex_state = 51, .external_lex_state = 2}, - [103] = {.lex_state = 51, .external_lex_state = 2}, - [104] = {.lex_state = 46, .external_lex_state = 4}, - [105] = {.lex_state = 40, .external_lex_state = 2}, - [106] = {.lex_state = 39, .external_lex_state = 2}, - [107] = {.lex_state = 47, .external_lex_state = 2}, - [108] = {.lex_state = 41, .external_lex_state = 2}, - [109] = {.lex_state = 41, .external_lex_state = 2}, - [110] = {.lex_state = 41, .external_lex_state = 2}, - [111] = {.lex_state = 41, .external_lex_state = 2}, - [112] = {.lex_state = 41, .external_lex_state = 2}, - [113] = {.lex_state = 41, .external_lex_state = 2}, - [114] = {.lex_state = 41, .external_lex_state = 2}, - [115] = {.lex_state = 41, .external_lex_state = 2}, - [116] = {.lex_state = 41, .external_lex_state = 2}, - [117] = {.lex_state = 41, .external_lex_state = 2}, - [118] = {.lex_state = 53, .external_lex_state = 2}, - [119] = {.lex_state = 53, .external_lex_state = 2}, - [120] = {.lex_state = 53, .external_lex_state = 2}, - [121] = {.lex_state = 53, .external_lex_state = 2}, - [122] = {.lex_state = 53, .external_lex_state = 2}, - [123] = {.lex_state = 53, .external_lex_state = 2}, - [124] = {.lex_state = 53, .external_lex_state = 2}, - [125] = {.lex_state = 53, .external_lex_state = 2}, - [126] = {.lex_state = 53, .external_lex_state = 2}, - [127] = {.lex_state = 53, .external_lex_state = 2}, - [128] = {.lex_state = 53, .external_lex_state = 2}, - [129] = {.lex_state = 53, .external_lex_state = 2}, - [130] = {.lex_state = 53, .external_lex_state = 2}, - [131] = {.lex_state = 53, .external_lex_state = 2}, - [132] = {.lex_state = 53, .external_lex_state = 2}, - [133] = {.lex_state = 53, .external_lex_state = 2}, - [134] = {.lex_state = 55, .external_lex_state = 2}, - [135] = {.lex_state = 55, .external_lex_state = 2}, - [136] = {.lex_state = 55, .external_lex_state = 2}, - [137] = {.lex_state = 55, .external_lex_state = 2}, - [138] = {.lex_state = 55, .external_lex_state = 2}, - [139] = {.lex_state = 55, .external_lex_state = 2}, - [140] = {.lex_state = 55, .external_lex_state = 2}, - [141] = {.lex_state = 55, .external_lex_state = 2}, - [142] = {.lex_state = 55, .external_lex_state = 2}, - [143] = {.lex_state = 55, .external_lex_state = 2}, - [144] = {.lex_state = 55, .external_lex_state = 2}, - [145] = {.lex_state = 55, .external_lex_state = 2}, - [146] = {.lex_state = 55, .external_lex_state = 2}, - [147] = {.lex_state = 55, .external_lex_state = 2}, - [148] = {.lex_state = 38, .external_lex_state = 2}, - [149] = {.lex_state = 38, .external_lex_state = 2}, - [150] = {.lex_state = 38, .external_lex_state = 2}, - [151] = {.lex_state = 38, .external_lex_state = 2}, - [152] = {.lex_state = 38, .external_lex_state = 2}, - [153] = {.lex_state = 38, .external_lex_state = 2}, - [154] = {.lex_state = 38, .external_lex_state = 2}, - [155] = {.lex_state = 38, .external_lex_state = 2}, - [156] = {.lex_state = 38, .external_lex_state = 2}, - [157] = {.lex_state = 38, .external_lex_state = 2}, - [158] = {.lex_state = 38, .external_lex_state = 2}, - [159] = {.lex_state = 38, .external_lex_state = 2}, - [160] = {.lex_state = 38, .external_lex_state = 2}, - [161] = {.lex_state = 38, .external_lex_state = 2}, - [162] = {.lex_state = 38, .external_lex_state = 2}, - [163] = {.lex_state = 38, .external_lex_state = 2}, - [164] = {.lex_state = 38, .external_lex_state = 2}, - [165] = {.lex_state = 38, .external_lex_state = 2}, - [166] = {.lex_state = 38, .external_lex_state = 2}, - [167] = {.lex_state = 38, .external_lex_state = 2}, - [168] = {.lex_state = 38, .external_lex_state = 2}, - [169] = {.lex_state = 38, .external_lex_state = 2}, - [170] = {.lex_state = 38, .external_lex_state = 2}, - [171] = {.lex_state = 38, .external_lex_state = 2}, - [172] = {.lex_state = 38, .external_lex_state = 2}, - [173] = {.lex_state = 38, .external_lex_state = 2}, - [174] = {.lex_state = 38, .external_lex_state = 2}, - [175] = {.lex_state = 38, .external_lex_state = 2}, - [176] = {.lex_state = 38, .external_lex_state = 2}, - [177] = {.lex_state = 38, .external_lex_state = 2}, - [178] = {.lex_state = 38, .external_lex_state = 2}, - [179] = {.lex_state = 38, .external_lex_state = 2}, - [180] = {.lex_state = 38, .external_lex_state = 2}, - [181] = {.lex_state = 38, .external_lex_state = 2}, - [182] = {.lex_state = 38, .external_lex_state = 2}, - [183] = {.lex_state = 38, .external_lex_state = 2}, - [184] = {.lex_state = 38, .external_lex_state = 2}, - [185] = {.lex_state = 38, .external_lex_state = 2}, - [186] = {.lex_state = 38, .external_lex_state = 2}, - [187] = {.lex_state = 38, .external_lex_state = 2}, - [188] = {.lex_state = 38, .external_lex_state = 2}, - [189] = {.lex_state = 47, .external_lex_state = 2}, - [190] = {.lex_state = 38, .external_lex_state = 2}, - [191] = {.lex_state = 38, .external_lex_state = 2}, - [192] = {.lex_state = 38, .external_lex_state = 2}, - [193] = {.lex_state = 38, .external_lex_state = 2}, - [194] = {.lex_state = 38, .external_lex_state = 2}, - [195] = {.lex_state = 38, .external_lex_state = 2}, - [196] = {.lex_state = 38, .external_lex_state = 5}, - [197] = {.lex_state = 38, .external_lex_state = 2}, - [198] = {.lex_state = 38, .external_lex_state = 2}, - [199] = {.lex_state = 38, .external_lex_state = 2}, - [200] = {.lex_state = 38, .external_lex_state = 2}, - [201] = {.lex_state = 38, .external_lex_state = 2}, - [202] = {.lex_state = 38, .external_lex_state = 2}, - [203] = {.lex_state = 38, .external_lex_state = 2}, - [204] = {.lex_state = 38, .external_lex_state = 6}, - [205] = {.lex_state = 38, .external_lex_state = 2}, - [206] = {.lex_state = 38, .external_lex_state = 2}, - [207] = {.lex_state = 38, .external_lex_state = 2}, - [208] = {.lex_state = 38, .external_lex_state = 2}, - [209] = {.lex_state = 38, .external_lex_state = 2}, - [210] = {.lex_state = 38, .external_lex_state = 2}, - [211] = {.lex_state = 38, .external_lex_state = 2}, - [212] = {.lex_state = 38, .external_lex_state = 2}, - [213] = {.lex_state = 38, .external_lex_state = 2}, - [214] = {.lex_state = 38, .external_lex_state = 2}, - [215] = {.lex_state = 38, .external_lex_state = 2}, - [216] = {.lex_state = 38, .external_lex_state = 2}, - [217] = {.lex_state = 38, .external_lex_state = 2}, - [218] = {.lex_state = 38, .external_lex_state = 2}, - [219] = {.lex_state = 38, .external_lex_state = 2}, - [220] = {.lex_state = 38, .external_lex_state = 2}, - [221] = {.lex_state = 38, .external_lex_state = 2}, - [222] = {.lex_state = 38, .external_lex_state = 2}, - [223] = {.lex_state = 38, .external_lex_state = 2}, - [224] = {.lex_state = 38, .external_lex_state = 2}, - [225] = {.lex_state = 38, .external_lex_state = 2}, - [226] = {.lex_state = 38, .external_lex_state = 2}, - [227] = {.lex_state = 38, .external_lex_state = 2}, - [228] = {.lex_state = 38, .external_lex_state = 2}, - [229] = {.lex_state = 38, .external_lex_state = 2}, - [230] = {.lex_state = 38, .external_lex_state = 2}, - [231] = {.lex_state = 38, .external_lex_state = 2}, - [232] = {.lex_state = 38, .external_lex_state = 2}, - [233] = {.lex_state = 38, .external_lex_state = 2}, - [234] = {.lex_state = 38, .external_lex_state = 2}, - [235] = {.lex_state = 38, .external_lex_state = 2}, - [236] = {.lex_state = 38, .external_lex_state = 2}, - [237] = {.lex_state = 38, .external_lex_state = 2}, - [238] = {.lex_state = 38, .external_lex_state = 2}, - [239] = {.lex_state = 38, .external_lex_state = 2}, - [240] = {.lex_state = 38, .external_lex_state = 2}, - [241] = {.lex_state = 38, .external_lex_state = 2}, - [242] = {.lex_state = 38, .external_lex_state = 2}, - [243] = {.lex_state = 54, .external_lex_state = 2}, - [244] = {.lex_state = 38, .external_lex_state = 2}, - [245] = {.lex_state = 38, .external_lex_state = 2}, - [246] = {.lex_state = 38, .external_lex_state = 2}, - [247] = {.lex_state = 38, .external_lex_state = 2}, - [248] = {.lex_state = 38, .external_lex_state = 2}, - [249] = {.lex_state = 38, .external_lex_state = 2}, - [250] = {.lex_state = 38, .external_lex_state = 2}, - [251] = {.lex_state = 38, .external_lex_state = 2}, - [252] = {.lex_state = 54, .external_lex_state = 2}, - [253] = {.lex_state = 38, .external_lex_state = 2}, - [254] = {.lex_state = 38, .external_lex_state = 2}, - [255] = {.lex_state = 38, .external_lex_state = 2}, - [256] = {.lex_state = 38, .external_lex_state = 2}, - [257] = {.lex_state = 38, .external_lex_state = 2}, - [258] = {.lex_state = 38, .external_lex_state = 2}, - [259] = {.lex_state = 38, .external_lex_state = 2}, - [260] = {.lex_state = 38, .external_lex_state = 2}, - [261] = {.lex_state = 38, .external_lex_state = 2}, - [262] = {.lex_state = 38, .external_lex_state = 2}, - [263] = {.lex_state = 38, .external_lex_state = 2}, - [264] = {.lex_state = 38, .external_lex_state = 2}, - [265] = {.lex_state = 38, .external_lex_state = 2}, - [266] = {.lex_state = 54, .external_lex_state = 2}, - [267] = {.lex_state = 38, .external_lex_state = 2}, - [268] = {.lex_state = 38, .external_lex_state = 2}, - [269] = {.lex_state = 38, .external_lex_state = 2}, - [270] = {.lex_state = 38, .external_lex_state = 2}, - [271] = {.lex_state = 38, .external_lex_state = 2}, - [272] = {.lex_state = 38, .external_lex_state = 2}, - [273] = {.lex_state = 38, .external_lex_state = 2}, - [274] = {.lex_state = 38, .external_lex_state = 2}, - [275] = {.lex_state = 38, .external_lex_state = 2}, - [276] = {.lex_state = 38, .external_lex_state = 2}, - [277] = {.lex_state = 38, .external_lex_state = 2}, - [278] = {.lex_state = 38, .external_lex_state = 2}, - [279] = {.lex_state = 38, .external_lex_state = 2}, - [280] = {.lex_state = 54, .external_lex_state = 2}, - [281] = {.lex_state = 38, .external_lex_state = 2}, - [282] = {.lex_state = 38, .external_lex_state = 2}, - [283] = {.lex_state = 54, .external_lex_state = 2}, - [284] = {.lex_state = 38, .external_lex_state = 2}, - [285] = {.lex_state = 38, .external_lex_state = 2}, - [286] = {.lex_state = 38, .external_lex_state = 2}, - [287] = {.lex_state = 38, .external_lex_state = 2}, - [288] = {.lex_state = 38, .external_lex_state = 2}, - [289] = {.lex_state = 38, .external_lex_state = 2}, - [290] = {.lex_state = 38, .external_lex_state = 2}, - [291] = {.lex_state = 38, .external_lex_state = 2}, - [292] = {.lex_state = 38, .external_lex_state = 2}, - [293] = {.lex_state = 38, .external_lex_state = 2}, - [294] = {.lex_state = 54, .external_lex_state = 2}, - [295] = {.lex_state = 38, .external_lex_state = 2}, - [296] = {.lex_state = 38, .external_lex_state = 2}, - [297] = {.lex_state = 38, .external_lex_state = 2}, - [298] = {.lex_state = 38, .external_lex_state = 2}, - [299] = {.lex_state = 38, .external_lex_state = 2}, - [300] = {.lex_state = 54, .external_lex_state = 2}, - [301] = {.lex_state = 38, .external_lex_state = 2}, - [302] = {.lex_state = 38, .external_lex_state = 2}, - [303] = {.lex_state = 38, .external_lex_state = 2}, - [304] = {.lex_state = 38, .external_lex_state = 2}, - [305] = {.lex_state = 38, .external_lex_state = 2}, - [306] = {.lex_state = 38, .external_lex_state = 2}, - [307] = {.lex_state = 38, .external_lex_state = 2}, - [308] = {.lex_state = 38, .external_lex_state = 2}, - [309] = {.lex_state = 38, .external_lex_state = 2}, - [310] = {.lex_state = 38, .external_lex_state = 2}, - [311] = {.lex_state = 38, .external_lex_state = 2}, - [312] = {.lex_state = 38, .external_lex_state = 2}, - [313] = {.lex_state = 38, .external_lex_state = 2}, - [314] = {.lex_state = 38, .external_lex_state = 2}, - [315] = {.lex_state = 38, .external_lex_state = 2}, - [316] = {.lex_state = 38, .external_lex_state = 2}, - [317] = {.lex_state = 38, .external_lex_state = 2}, - [318] = {.lex_state = 38, .external_lex_state = 2}, - [319] = {.lex_state = 54, .external_lex_state = 2}, - [320] = {.lex_state = 38, .external_lex_state = 2}, - [321] = {.lex_state = 38, .external_lex_state = 2}, - [322] = {.lex_state = 38, .external_lex_state = 2}, - [323] = {.lex_state = 38, .external_lex_state = 2}, - [324] = {.lex_state = 38, .external_lex_state = 2}, - [325] = {.lex_state = 38, .external_lex_state = 2}, - [326] = {.lex_state = 38, .external_lex_state = 2}, - [327] = {.lex_state = 38, .external_lex_state = 2}, - [328] = {.lex_state = 38, .external_lex_state = 2}, - [329] = {.lex_state = 38, .external_lex_state = 2}, - [330] = {.lex_state = 38, .external_lex_state = 2}, - [331] = {.lex_state = 38, .external_lex_state = 2}, - [332] = {.lex_state = 38, .external_lex_state = 2}, - [333] = {.lex_state = 38, .external_lex_state = 2}, - [334] = {.lex_state = 38, .external_lex_state = 2}, - [335] = {.lex_state = 38, .external_lex_state = 2}, - [336] = {.lex_state = 38, .external_lex_state = 2}, - [337] = {.lex_state = 38, .external_lex_state = 2}, - [338] = {.lex_state = 54, .external_lex_state = 2}, - [339] = {.lex_state = 38, .external_lex_state = 2}, - [340] = {.lex_state = 38, .external_lex_state = 2}, - [341] = {.lex_state = 38, .external_lex_state = 2}, - [342] = {.lex_state = 38, .external_lex_state = 2}, - [343] = {.lex_state = 38, .external_lex_state = 2}, - [344] = {.lex_state = 38, .external_lex_state = 2}, - [345] = {.lex_state = 38, .external_lex_state = 2}, - [346] = {.lex_state = 38, .external_lex_state = 2}, - [347] = {.lex_state = 38, .external_lex_state = 2}, - [348] = {.lex_state = 38, .external_lex_state = 2}, - [349] = {.lex_state = 38, .external_lex_state = 2}, - [350] = {.lex_state = 38, .external_lex_state = 2}, - [351] = {.lex_state = 38, .external_lex_state = 2}, - [352] = {.lex_state = 38, .external_lex_state = 2}, - [353] = {.lex_state = 38, .external_lex_state = 2}, - [354] = {.lex_state = 38, .external_lex_state = 2}, - [355] = {.lex_state = 38, .external_lex_state = 2}, - [356] = {.lex_state = 38, .external_lex_state = 2}, - [357] = {.lex_state = 38, .external_lex_state = 2}, - [358] = {.lex_state = 38, .external_lex_state = 2}, - [359] = {.lex_state = 38, .external_lex_state = 2}, - [360] = {.lex_state = 38, .external_lex_state = 2}, - [361] = {.lex_state = 38, .external_lex_state = 2}, - [362] = {.lex_state = 38, .external_lex_state = 2}, - [363] = {.lex_state = 38, .external_lex_state = 2}, - [364] = {.lex_state = 38, .external_lex_state = 2}, - [365] = {.lex_state = 38, .external_lex_state = 2}, - [366] = {.lex_state = 38, .external_lex_state = 2}, - [367] = {.lex_state = 38, .external_lex_state = 2}, - [368] = {.lex_state = 38, .external_lex_state = 2}, - [369] = {.lex_state = 38, .external_lex_state = 2}, - [370] = {.lex_state = 38, .external_lex_state = 2}, - [371] = {.lex_state = 38, .external_lex_state = 2}, - [372] = {.lex_state = 38, .external_lex_state = 2}, - [373] = {.lex_state = 38, .external_lex_state = 2}, - [374] = {.lex_state = 38, .external_lex_state = 2}, - [375] = {.lex_state = 38, .external_lex_state = 2}, - [376] = {.lex_state = 38, .external_lex_state = 2}, - [377] = {.lex_state = 38, .external_lex_state = 2}, - [378] = {.lex_state = 38, .external_lex_state = 2}, - [379] = {.lex_state = 38, .external_lex_state = 2}, - [380] = {.lex_state = 38, .external_lex_state = 2}, - [381] = {.lex_state = 38, .external_lex_state = 2}, - [382] = {.lex_state = 38, .external_lex_state = 2}, - [383] = {.lex_state = 38, .external_lex_state = 2}, - [384] = {.lex_state = 38, .external_lex_state = 2}, - [385] = {.lex_state = 38, .external_lex_state = 2}, - [386] = {.lex_state = 38, .external_lex_state = 2}, - [387] = {.lex_state = 38, .external_lex_state = 2}, - [388] = {.lex_state = 38, .external_lex_state = 2}, - [389] = {.lex_state = 38, .external_lex_state = 2}, - [390] = {.lex_state = 38, .external_lex_state = 2}, - [391] = {.lex_state = 38, .external_lex_state = 2}, - [392] = {.lex_state = 38, .external_lex_state = 2}, - [393] = {.lex_state = 38, .external_lex_state = 2}, - [394] = {.lex_state = 38, .external_lex_state = 2}, - [395] = {.lex_state = 38, .external_lex_state = 2}, - [396] = {.lex_state = 38, .external_lex_state = 2}, - [397] = {.lex_state = 38, .external_lex_state = 2}, - [398] = {.lex_state = 38, .external_lex_state = 2}, - [399] = {.lex_state = 38, .external_lex_state = 2}, - [400] = {.lex_state = 38, .external_lex_state = 2}, - [401] = {.lex_state = 38, .external_lex_state = 2}, - [402] = {.lex_state = 38, .external_lex_state = 2}, - [403] = {.lex_state = 38, .external_lex_state = 2}, - [404] = {.lex_state = 38, .external_lex_state = 2}, - [405] = {.lex_state = 38, .external_lex_state = 2}, - [406] = {.lex_state = 38, .external_lex_state = 2}, - [407] = {.lex_state = 38, .external_lex_state = 2}, - [408] = {.lex_state = 38, .external_lex_state = 2}, - [409] = {.lex_state = 38, .external_lex_state = 2}, - [410] = {.lex_state = 38, .external_lex_state = 2}, - [411] = {.lex_state = 38, .external_lex_state = 2}, - [412] = {.lex_state = 38, .external_lex_state = 2}, - [413] = {.lex_state = 38, .external_lex_state = 2}, - [414] = {.lex_state = 38, .external_lex_state = 2}, - [415] = {.lex_state = 38, .external_lex_state = 2}, - [416] = {.lex_state = 38, .external_lex_state = 2}, - [417] = {.lex_state = 38, .external_lex_state = 2}, - [418] = {.lex_state = 38, .external_lex_state = 2}, - [419] = {.lex_state = 38, .external_lex_state = 2}, - [420] = {.lex_state = 38, .external_lex_state = 2}, - [421] = {.lex_state = 38, .external_lex_state = 2}, - [422] = {.lex_state = 38, .external_lex_state = 2}, - [423] = {.lex_state = 38, .external_lex_state = 2}, - [424] = {.lex_state = 38, .external_lex_state = 2}, - [425] = {.lex_state = 38, .external_lex_state = 2}, - [426] = {.lex_state = 38, .external_lex_state = 2}, - [427] = {.lex_state = 38, .external_lex_state = 2}, - [428] = {.lex_state = 38, .external_lex_state = 2}, - [429] = {.lex_state = 38, .external_lex_state = 2}, - [430] = {.lex_state = 38, .external_lex_state = 2}, - [431] = {.lex_state = 38, .external_lex_state = 2}, - [432] = {.lex_state = 38, .external_lex_state = 2}, - [433] = {.lex_state = 38, .external_lex_state = 2}, - [434] = {.lex_state = 38, .external_lex_state = 2}, - [435] = {.lex_state = 38, .external_lex_state = 2}, - [436] = {.lex_state = 38, .external_lex_state = 2}, - [437] = {.lex_state = 38, .external_lex_state = 2}, - [438] = {.lex_state = 38, .external_lex_state = 2}, - [439] = {.lex_state = 38, .external_lex_state = 2}, - [440] = {.lex_state = 38, .external_lex_state = 2}, - [441] = {.lex_state = 38, .external_lex_state = 2}, - [442] = {.lex_state = 38, .external_lex_state = 2}, - [443] = {.lex_state = 38, .external_lex_state = 2}, - [444] = {.lex_state = 38, .external_lex_state = 2}, - [445] = {.lex_state = 38, .external_lex_state = 2}, - [446] = {.lex_state = 38, .external_lex_state = 2}, - [447] = {.lex_state = 38, .external_lex_state = 2}, - [448] = {.lex_state = 38, .external_lex_state = 2}, - [449] = {.lex_state = 38, .external_lex_state = 2}, - [450] = {.lex_state = 38, .external_lex_state = 2}, - [451] = {.lex_state = 38, .external_lex_state = 2}, - [452] = {.lex_state = 38, .external_lex_state = 2}, - [453] = {.lex_state = 38, .external_lex_state = 2}, - [454] = {.lex_state = 38, .external_lex_state = 2}, - [455] = {.lex_state = 38, .external_lex_state = 2}, - [456] = {.lex_state = 38, .external_lex_state = 2}, - [457] = {.lex_state = 38, .external_lex_state = 2}, - [458] = {.lex_state = 38, .external_lex_state = 2}, - [459] = {.lex_state = 38, .external_lex_state = 2}, - [460] = {.lex_state = 38, .external_lex_state = 2}, - [461] = {.lex_state = 38, .external_lex_state = 2}, - [462] = {.lex_state = 38, .external_lex_state = 2}, - [463] = {.lex_state = 38, .external_lex_state = 2}, - [464] = {.lex_state = 38, .external_lex_state = 2}, - [465] = {.lex_state = 38, .external_lex_state = 2}, - [466] = {.lex_state = 38, .external_lex_state = 2}, - [467] = {.lex_state = 38, .external_lex_state = 2}, - [468] = {.lex_state = 38, .external_lex_state = 2}, - [469] = {.lex_state = 38, .external_lex_state = 2}, - [470] = {.lex_state = 38, .external_lex_state = 2}, - [471] = {.lex_state = 38, .external_lex_state = 2}, - [472] = {.lex_state = 38, .external_lex_state = 2}, - [473] = {.lex_state = 38, .external_lex_state = 2}, - [474] = {.lex_state = 38, .external_lex_state = 2}, - [475] = {.lex_state = 38, .external_lex_state = 2}, - [476] = {.lex_state = 38, .external_lex_state = 2}, - [477] = {.lex_state = 38, .external_lex_state = 2}, - [478] = {.lex_state = 38, .external_lex_state = 2}, - [479] = {.lex_state = 38, .external_lex_state = 2}, - [480] = {.lex_state = 38, .external_lex_state = 2}, - [481] = {.lex_state = 38, .external_lex_state = 2}, - [482] = {.lex_state = 38, .external_lex_state = 2}, - [483] = {.lex_state = 38, .external_lex_state = 2}, - [484] = {.lex_state = 38, .external_lex_state = 2}, - [485] = {.lex_state = 38, .external_lex_state = 2}, - [486] = {.lex_state = 38, .external_lex_state = 2}, - [487] = {.lex_state = 38, .external_lex_state = 2}, - [488] = {.lex_state = 38, .external_lex_state = 2}, - [489] = {.lex_state = 38, .external_lex_state = 2}, - [490] = {.lex_state = 38, .external_lex_state = 2}, - [491] = {.lex_state = 38, .external_lex_state = 2}, - [492] = {.lex_state = 38, .external_lex_state = 2}, - [493] = {.lex_state = 38, .external_lex_state = 2}, - [494] = {.lex_state = 38, .external_lex_state = 2}, - [495] = {.lex_state = 38, .external_lex_state = 2}, - [496] = {.lex_state = 38, .external_lex_state = 2}, - [497] = {.lex_state = 38, .external_lex_state = 2}, - [498] = {.lex_state = 38, .external_lex_state = 2}, - [499] = {.lex_state = 38, .external_lex_state = 2}, - [500] = {.lex_state = 38, .external_lex_state = 2}, - [501] = {.lex_state = 38, .external_lex_state = 2}, - [502] = {.lex_state = 38, .external_lex_state = 2}, - [503] = {.lex_state = 38, .external_lex_state = 2}, - [504] = {.lex_state = 38, .external_lex_state = 2}, - [505] = {.lex_state = 38, .external_lex_state = 2}, - [506] = {.lex_state = 38, .external_lex_state = 2}, - [507] = {.lex_state = 38, .external_lex_state = 2}, - [508] = {.lex_state = 38, .external_lex_state = 2}, - [509] = {.lex_state = 38, .external_lex_state = 2}, - [510] = {.lex_state = 38, .external_lex_state = 2}, - [511] = {.lex_state = 38, .external_lex_state = 2}, - [512] = {.lex_state = 38, .external_lex_state = 2}, - [513] = {.lex_state = 38, .external_lex_state = 2}, - [514] = {.lex_state = 38, .external_lex_state = 2}, - [515] = {.lex_state = 38, .external_lex_state = 2}, - [516] = {.lex_state = 38, .external_lex_state = 2}, - [517] = {.lex_state = 38, .external_lex_state = 2}, - [518] = {.lex_state = 38, .external_lex_state = 2}, - [519] = {.lex_state = 38, .external_lex_state = 2}, - [520] = {.lex_state = 38, .external_lex_state = 2}, - [521] = {.lex_state = 38, .external_lex_state = 2}, - [522] = {.lex_state = 38, .external_lex_state = 2}, - [523] = {.lex_state = 38, .external_lex_state = 2}, - [524] = {.lex_state = 38, .external_lex_state = 2}, - [525] = {.lex_state = 38, .external_lex_state = 2}, - [526] = {.lex_state = 38, .external_lex_state = 2}, - [527] = {.lex_state = 38, .external_lex_state = 2}, - [528] = {.lex_state = 38, .external_lex_state = 2}, - [529] = {.lex_state = 38, .external_lex_state = 2}, - [530] = {.lex_state = 38, .external_lex_state = 2}, - [531] = {.lex_state = 38, .external_lex_state = 2}, - [532] = {.lex_state = 38, .external_lex_state = 2}, - [533] = {.lex_state = 38, .external_lex_state = 2}, - [534] = {.lex_state = 38, .external_lex_state = 2}, - [535] = {.lex_state = 38, .external_lex_state = 2}, - [536] = {.lex_state = 38, .external_lex_state = 2}, - [537] = {.lex_state = 38, .external_lex_state = 2}, - [538] = {.lex_state = 38, .external_lex_state = 2}, - [539] = {.lex_state = 38, .external_lex_state = 2}, - [540] = {.lex_state = 38, .external_lex_state = 2}, - [541] = {.lex_state = 38, .external_lex_state = 2}, - [542] = {.lex_state = 38, .external_lex_state = 2}, - [543] = {.lex_state = 38, .external_lex_state = 2}, - [544] = {.lex_state = 38, .external_lex_state = 2}, - [545] = {.lex_state = 38, .external_lex_state = 2}, - [546] = {.lex_state = 38, .external_lex_state = 2}, - [547] = {.lex_state = 38, .external_lex_state = 2}, - [548] = {.lex_state = 38, .external_lex_state = 2}, - [549] = {.lex_state = 38, .external_lex_state = 2}, - [550] = {.lex_state = 38, .external_lex_state = 2}, - [551] = {.lex_state = 38, .external_lex_state = 2}, - [552] = {.lex_state = 38, .external_lex_state = 2}, - [553] = {.lex_state = 38, .external_lex_state = 2}, - [554] = {.lex_state = 38, .external_lex_state = 2}, - [555] = {.lex_state = 38, .external_lex_state = 2}, - [556] = {.lex_state = 38, .external_lex_state = 2}, - [557] = {.lex_state = 38, .external_lex_state = 2}, - [558] = {.lex_state = 38, .external_lex_state = 2}, - [559] = {.lex_state = 38, .external_lex_state = 2}, - [560] = {.lex_state = 38, .external_lex_state = 2}, - [561] = {.lex_state = 38, .external_lex_state = 2}, - [562] = {.lex_state = 38, .external_lex_state = 2}, - [563] = {.lex_state = 38, .external_lex_state = 2}, - [564] = {.lex_state = 38, .external_lex_state = 2}, - [565] = {.lex_state = 38, .external_lex_state = 2}, - [566] = {.lex_state = 38, .external_lex_state = 2}, - [567] = {.lex_state = 38, .external_lex_state = 2}, - [568] = {.lex_state = 42, .external_lex_state = 7}, - [569] = {.lex_state = 42, .external_lex_state = 7}, - [570] = {.lex_state = 42, .external_lex_state = 7}, - [571] = {.lex_state = 42, .external_lex_state = 7}, - [572] = {.lex_state = 42, .external_lex_state = 7}, - [573] = {.lex_state = 42, .external_lex_state = 7}, - [574] = {.lex_state = 638, .external_lex_state = 2}, - [575] = {.lex_state = 44, .external_lex_state = 8}, - [576] = {.lex_state = 44, .external_lex_state = 8}, - [577] = {.lex_state = 44, .external_lex_state = 8}, - [578] = {.lex_state = 44, .external_lex_state = 8}, - [579] = {.lex_state = 44, .external_lex_state = 8}, - [580] = {.lex_state = 44, .external_lex_state = 8}, - [581] = {.lex_state = 44, .external_lex_state = 9}, - [582] = {.lex_state = 44, .external_lex_state = 9}, - [583] = {.lex_state = 44, .external_lex_state = 9}, - [584] = {.lex_state = 44, .external_lex_state = 9}, - [585] = {.lex_state = 44, .external_lex_state = 9}, - [586] = {.lex_state = 44, .external_lex_state = 9}, - [587] = {.lex_state = 646, .external_lex_state = 10}, - [588] = {.lex_state = 646, .external_lex_state = 10}, - [589] = {.lex_state = 646, .external_lex_state = 10}, - [590] = {.lex_state = 646, .external_lex_state = 10}, - [591] = {.lex_state = 646, .external_lex_state = 10}, - [592] = {.lex_state = 646, .external_lex_state = 10}, - [593] = {.lex_state = 646, .external_lex_state = 10}, - [594] = {.lex_state = 646, .external_lex_state = 10}, - [595] = {.lex_state = 646, .external_lex_state = 10}, - [596] = {.lex_state = 646, .external_lex_state = 10}, - [597] = {.lex_state = 646, .external_lex_state = 10}, - [598] = {.lex_state = 646, .external_lex_state = 10}, - [599] = {.lex_state = 646, .external_lex_state = 10}, - [600] = {.lex_state = 51, .external_lex_state = 2}, - [601] = {.lex_state = 51, .external_lex_state = 2}, - [602] = {.lex_state = 51, .external_lex_state = 2}, - [603] = {.lex_state = 51, .external_lex_state = 2}, - [604] = {.lex_state = 51, .external_lex_state = 2}, - [605] = {.lex_state = 51, .external_lex_state = 2}, - [606] = {.lex_state = 51, .external_lex_state = 2}, - [607] = {.lex_state = 646, .external_lex_state = 11}, - [608] = {.lex_state = 646, .external_lex_state = 11}, - [609] = {.lex_state = 646, .external_lex_state = 11}, - [610] = {.lex_state = 646, .external_lex_state = 11}, - [611] = {.lex_state = 646, .external_lex_state = 11}, - [612] = {.lex_state = 646, .external_lex_state = 11}, - [613] = {.lex_state = 646, .external_lex_state = 11}, - [614] = {.lex_state = 646, .external_lex_state = 12}, - [615] = {.lex_state = 646, .external_lex_state = 11}, - [616] = {.lex_state = 646, .external_lex_state = 11}, - [617] = {.lex_state = 646, .external_lex_state = 13}, - [618] = {.lex_state = 646, .external_lex_state = 12}, - [619] = {.lex_state = 646, .external_lex_state = 12}, - [620] = {.lex_state = 646, .external_lex_state = 12}, - [621] = {.lex_state = 646, .external_lex_state = 13}, - [622] = {.lex_state = 58, .external_lex_state = 10}, - [623] = {.lex_state = 646, .external_lex_state = 12}, - [624] = {.lex_state = 646, .external_lex_state = 12}, - [625] = {.lex_state = 646, .external_lex_state = 12}, - [626] = {.lex_state = 646, .external_lex_state = 13}, - [627] = {.lex_state = 646, .external_lex_state = 12}, - [628] = {.lex_state = 646, .external_lex_state = 12}, - [629] = {.lex_state = 646, .external_lex_state = 13}, - [630] = {.lex_state = 646, .external_lex_state = 12}, - [631] = {.lex_state = 646, .external_lex_state = 13}, - [632] = {.lex_state = 646, .external_lex_state = 12}, - [633] = {.lex_state = 646, .external_lex_state = 12}, - [634] = {.lex_state = 646, .external_lex_state = 13}, - [635] = {.lex_state = 58, .external_lex_state = 10}, - [636] = {.lex_state = 58, .external_lex_state = 10}, - [637] = {.lex_state = 646, .external_lex_state = 12}, - [638] = {.lex_state = 646, .external_lex_state = 12}, - [639] = {.lex_state = 646, .external_lex_state = 12}, - [640] = {.lex_state = 646, .external_lex_state = 12}, - [641] = {.lex_state = 646, .external_lex_state = 12}, - [642] = {.lex_state = 646, .external_lex_state = 13}, - [643] = {.lex_state = 58, .external_lex_state = 10}, - [644] = {.lex_state = 646, .external_lex_state = 13}, - [645] = {.lex_state = 58, .external_lex_state = 10}, - [646] = {.lex_state = 58, .external_lex_state = 10}, - [647] = {.lex_state = 63, .external_lex_state = 10}, - [648] = {.lex_state = 58, .external_lex_state = 10}, - [649] = {.lex_state = 635, .external_lex_state = 10}, - [650] = {.lex_state = 58, .external_lex_state = 10}, - [651] = {.lex_state = 646, .external_lex_state = 13}, - [652] = {.lex_state = 646, .external_lex_state = 13}, - [653] = {.lex_state = 635, .external_lex_state = 10}, - [654] = {.lex_state = 635, .external_lex_state = 10}, - [655] = {.lex_state = 635, .external_lex_state = 10}, - [656] = {.lex_state = 635, .external_lex_state = 10}, - [657] = {.lex_state = 635, .external_lex_state = 10}, - [658] = {.lex_state = 635, .external_lex_state = 10}, - [659] = {.lex_state = 635, .external_lex_state = 10}, - [660] = {.lex_state = 635, .external_lex_state = 10}, - [661] = {.lex_state = 635, .external_lex_state = 10}, - [662] = {.lex_state = 646, .external_lex_state = 13}, - [663] = {.lex_state = 635, .external_lex_state = 10}, - [664] = {.lex_state = 635, .external_lex_state = 10}, - [665] = {.lex_state = 646, .external_lex_state = 13}, - [666] = {.lex_state = 635, .external_lex_state = 10}, - [667] = {.lex_state = 635, .external_lex_state = 10}, - [668] = {.lex_state = 646, .external_lex_state = 13}, - [669] = {.lex_state = 646, .external_lex_state = 13}, - [670] = {.lex_state = 635, .external_lex_state = 10}, - [671] = {.lex_state = 635, .external_lex_state = 10}, - [672] = {.lex_state = 635, .external_lex_state = 10}, - [673] = {.lex_state = 635, .external_lex_state = 10}, - [674] = {.lex_state = 635, .external_lex_state = 10}, - [675] = {.lex_state = 646, .external_lex_state = 13}, - [676] = {.lex_state = 635, .external_lex_state = 10}, - [677] = {.lex_state = 635, .external_lex_state = 10}, - [678] = {.lex_state = 646, .external_lex_state = 13}, - [679] = {.lex_state = 646, .external_lex_state = 13}, - [680] = {.lex_state = 646, .external_lex_state = 13}, - [681] = {.lex_state = 635, .external_lex_state = 10}, - [682] = {.lex_state = 646, .external_lex_state = 13}, - [683] = {.lex_state = 646, .external_lex_state = 13}, - [684] = {.lex_state = 646, .external_lex_state = 13}, - [685] = {.lex_state = 646, .external_lex_state = 13}, - [686] = {.lex_state = 646, .external_lex_state = 13}, - [687] = {.lex_state = 646, .external_lex_state = 13}, - [688] = {.lex_state = 646, .external_lex_state = 13}, - [689] = {.lex_state = 646, .external_lex_state = 13}, - [690] = {.lex_state = 646, .external_lex_state = 13}, - [691] = {.lex_state = 646, .external_lex_state = 13}, - [692] = {.lex_state = 646, .external_lex_state = 13}, - [693] = {.lex_state = 646, .external_lex_state = 10}, - [694] = {.lex_state = 646, .external_lex_state = 10}, - [695] = {.lex_state = 646, .external_lex_state = 10}, - [696] = {.lex_state = 646, .external_lex_state = 10}, - [697] = {.lex_state = 63, .external_lex_state = 10}, - [698] = {.lex_state = 63, .external_lex_state = 10}, - [699] = {.lex_state = 63, .external_lex_state = 10}, - [700] = {.lex_state = 646, .external_lex_state = 10}, - [701] = {.lex_state = 646, .external_lex_state = 10}, - [702] = {.lex_state = 646, .external_lex_state = 10}, - [703] = {.lex_state = 646, .external_lex_state = 10}, - [704] = {.lex_state = 646, .external_lex_state = 10}, - [705] = {.lex_state = 646, .external_lex_state = 10}, - [706] = {.lex_state = 646, .external_lex_state = 10}, - [707] = {.lex_state = 646, .external_lex_state = 10}, - [708] = {.lex_state = 646, .external_lex_state = 10}, - [709] = {.lex_state = 646, .external_lex_state = 10}, - [710] = {.lex_state = 646, .external_lex_state = 10}, - [711] = {.lex_state = 639, .external_lex_state = 14}, - [712] = {.lex_state = 63, .external_lex_state = 10}, - [713] = {.lex_state = 646, .external_lex_state = 10}, - [714] = {.lex_state = 639, .external_lex_state = 14}, - [715] = {.lex_state = 63, .external_lex_state = 10}, - [716] = {.lex_state = 63, .external_lex_state = 10}, - [717] = {.lex_state = 639, .external_lex_state = 14}, - [718] = {.lex_state = 646, .external_lex_state = 10}, - [719] = {.lex_state = 639, .external_lex_state = 14}, - [720] = {.lex_state = 63, .external_lex_state = 10}, - [721] = {.lex_state = 646, .external_lex_state = 10}, - [722] = {.lex_state = 63, .external_lex_state = 10}, - [723] = {.lex_state = 646, .external_lex_state = 10}, - [724] = {.lex_state = 639, .external_lex_state = 14}, - [725] = {.lex_state = 639, .external_lex_state = 14}, - [726] = {.lex_state = 646, .external_lex_state = 10}, - [727] = {.lex_state = 646, .external_lex_state = 10}, - [728] = {.lex_state = 646, .external_lex_state = 10}, - [729] = {.lex_state = 639, .external_lex_state = 15}, - [730] = {.lex_state = 646, .external_lex_state = 10}, - [731] = {.lex_state = 646, .external_lex_state = 10}, - [732] = {.lex_state = 639, .external_lex_state = 15}, - [733] = {.lex_state = 639, .external_lex_state = 15}, - [734] = {.lex_state = 646, .external_lex_state = 10}, - [735] = {.lex_state = 639, .external_lex_state = 15}, - [736] = {.lex_state = 646, .external_lex_state = 10}, - [737] = {.lex_state = 646, .external_lex_state = 10}, - [738] = {.lex_state = 639, .external_lex_state = 15}, - [739] = {.lex_state = 646, .external_lex_state = 10}, - [740] = {.lex_state = 646, .external_lex_state = 10}, - [741] = {.lex_state = 646, .external_lex_state = 10}, - [742] = {.lex_state = 646, .external_lex_state = 10}, - [743] = {.lex_state = 646, .external_lex_state = 10}, - [744] = {.lex_state = 646, .external_lex_state = 10}, - [745] = {.lex_state = 646, .external_lex_state = 10}, - [746] = {.lex_state = 646, .external_lex_state = 10}, - [747] = {.lex_state = 646, .external_lex_state = 10}, - [748] = {.lex_state = 646, .external_lex_state = 10}, - [749] = {.lex_state = 646, .external_lex_state = 10}, - [750] = {.lex_state = 646, .external_lex_state = 10}, - [751] = {.lex_state = 646, .external_lex_state = 10}, - [752] = {.lex_state = 646, .external_lex_state = 10}, - [753] = {.lex_state = 646, .external_lex_state = 10}, - [754] = {.lex_state = 646, .external_lex_state = 10}, - [755] = {.lex_state = 646, .external_lex_state = 10}, - [756] = {.lex_state = 646, .external_lex_state = 10}, - [757] = {.lex_state = 646, .external_lex_state = 10}, - [758] = {.lex_state = 646, .external_lex_state = 10}, - [759] = {.lex_state = 646, .external_lex_state = 10}, - [760] = {.lex_state = 646, .external_lex_state = 10}, - [761] = {.lex_state = 646, .external_lex_state = 10}, - [762] = {.lex_state = 646, .external_lex_state = 10}, - [763] = {.lex_state = 646, .external_lex_state = 10}, - [764] = {.lex_state = 646, .external_lex_state = 10}, - [765] = {.lex_state = 646, .external_lex_state = 10}, - [766] = {.lex_state = 646, .external_lex_state = 10}, - [767] = {.lex_state = 646, .external_lex_state = 10}, - [768] = {.lex_state = 646, .external_lex_state = 10}, - [769] = {.lex_state = 646, .external_lex_state = 10}, - [770] = {.lex_state = 646, .external_lex_state = 10}, - [771] = {.lex_state = 639, .external_lex_state = 15}, - [772] = {.lex_state = 646, .external_lex_state = 10}, - [773] = {.lex_state = 646, .external_lex_state = 10}, - [774] = {.lex_state = 646, .external_lex_state = 10}, - [775] = {.lex_state = 646, .external_lex_state = 10}, - [776] = {.lex_state = 646, .external_lex_state = 10}, - [777] = {.lex_state = 646, .external_lex_state = 10}, - [778] = {.lex_state = 646, .external_lex_state = 10}, - [779] = {.lex_state = 646, .external_lex_state = 10}, - [780] = {.lex_state = 646, .external_lex_state = 10}, - [781] = {.lex_state = 646, .external_lex_state = 10}, - [782] = {.lex_state = 646, .external_lex_state = 10}, - [783] = {.lex_state = 646, .external_lex_state = 10}, - [784] = {.lex_state = 646, .external_lex_state = 10}, - [785] = {.lex_state = 646, .external_lex_state = 10}, - [786] = {.lex_state = 639, .external_lex_state = 7}, - [787] = {.lex_state = 639, .external_lex_state = 7}, - [788] = {.lex_state = 639, .external_lex_state = 7}, - [789] = {.lex_state = 646, .external_lex_state = 10}, - [790] = {.lex_state = 639, .external_lex_state = 15}, - [791] = {.lex_state = 639, .external_lex_state = 15}, - [792] = {.lex_state = 639, .external_lex_state = 15}, - [793] = {.lex_state = 639, .external_lex_state = 7}, - [794] = {.lex_state = 639, .external_lex_state = 15}, - [795] = {.lex_state = 639, .external_lex_state = 15}, - [796] = {.lex_state = 639, .external_lex_state = 15}, - [797] = {.lex_state = 639, .external_lex_state = 7}, - [798] = {.lex_state = 639, .external_lex_state = 7}, - [799] = {.lex_state = 639, .external_lex_state = 16}, - [800] = {.lex_state = 639, .external_lex_state = 16}, - [801] = {.lex_state = 639, .external_lex_state = 16}, - [802] = {.lex_state = 639, .external_lex_state = 17}, - [803] = {.lex_state = 639, .external_lex_state = 16}, - [804] = {.lex_state = 639, .external_lex_state = 16}, - [805] = {.lex_state = 639, .external_lex_state = 16}, - [806] = {.lex_state = 639, .external_lex_state = 17}, - [807] = {.lex_state = 639, .external_lex_state = 17}, - [808] = {.lex_state = 639, .external_lex_state = 17}, - [809] = {.lex_state = 639, .external_lex_state = 17}, - [810] = {.lex_state = 639, .external_lex_state = 17}, - [811] = {.lex_state = 639, .external_lex_state = 18}, - [812] = {.lex_state = 639, .external_lex_state = 18}, - [813] = {.lex_state = 639, .external_lex_state = 18}, - [814] = {.lex_state = 639, .external_lex_state = 18}, - [815] = {.lex_state = 60, .external_lex_state = 11}, - [816] = {.lex_state = 60, .external_lex_state = 11}, - [817] = {.lex_state = 60, .external_lex_state = 11}, - [818] = {.lex_state = 639, .external_lex_state = 18}, - [819] = {.lex_state = 639, .external_lex_state = 18}, - [820] = {.lex_state = 60, .external_lex_state = 12}, - [821] = {.lex_state = 60, .external_lex_state = 12}, - [822] = {.lex_state = 60, .external_lex_state = 12}, - [823] = {.lex_state = 60, .external_lex_state = 11}, - [824] = {.lex_state = 65, .external_lex_state = 11}, - [825] = {.lex_state = 60, .external_lex_state = 11}, - [826] = {.lex_state = 60, .external_lex_state = 11}, - [827] = {.lex_state = 60, .external_lex_state = 11}, - [828] = {.lex_state = 60, .external_lex_state = 11}, - [829] = {.lex_state = 60, .external_lex_state = 12}, - [830] = {.lex_state = 60, .external_lex_state = 12}, - [831] = {.lex_state = 65, .external_lex_state = 12}, - [832] = {.lex_state = 60, .external_lex_state = 12}, - [833] = {.lex_state = 60, .external_lex_state = 12}, - [834] = {.lex_state = 60, .external_lex_state = 12}, - [835] = {.lex_state = 60, .external_lex_state = 11}, - [836] = {.lex_state = 60, .external_lex_state = 12}, - [837] = {.lex_state = 60, .external_lex_state = 11}, - [838] = {.lex_state = 646, .external_lex_state = 19}, - [839] = {.lex_state = 60, .external_lex_state = 12}, - [840] = {.lex_state = 646, .external_lex_state = 19}, - [841] = {.lex_state = 646, .external_lex_state = 19}, - [842] = {.lex_state = 646, .external_lex_state = 19}, - [843] = {.lex_state = 646, .external_lex_state = 19}, - [844] = {.lex_state = 646, .external_lex_state = 19}, - [845] = {.lex_state = 636, .external_lex_state = 20}, - [846] = {.lex_state = 636, .external_lex_state = 20}, - [847] = {.lex_state = 636, .external_lex_state = 20}, - [848] = {.lex_state = 646, .external_lex_state = 21}, - [849] = {.lex_state = 646, .external_lex_state = 21}, - [850] = {.lex_state = 636, .external_lex_state = 20}, - [851] = {.lex_state = 636, .external_lex_state = 20}, - [852] = {.lex_state = 646, .external_lex_state = 21}, - [853] = {.lex_state = 646, .external_lex_state = 21}, - [854] = {.lex_state = 636, .external_lex_state = 20}, - [855] = {.lex_state = 635, .external_lex_state = 11}, - [856] = {.lex_state = 636, .external_lex_state = 20}, - [857] = {.lex_state = 646, .external_lex_state = 21}, - [858] = {.lex_state = 636, .external_lex_state = 20}, - [859] = {.lex_state = 635, .external_lex_state = 11}, - [860] = {.lex_state = 646, .external_lex_state = 21}, - [861] = {.lex_state = 636, .external_lex_state = 20}, - [862] = {.lex_state = 635, .external_lex_state = 12}, - [863] = {.lex_state = 646, .external_lex_state = 19}, - [864] = {.lex_state = 635, .external_lex_state = 11}, - [865] = {.lex_state = 635, .external_lex_state = 12}, - [866] = {.lex_state = 65, .external_lex_state = 11}, - [867] = {.lex_state = 646, .external_lex_state = 19}, - [868] = {.lex_state = 65, .external_lex_state = 11}, - [869] = {.lex_state = 646, .external_lex_state = 19}, - [870] = {.lex_state = 65, .external_lex_state = 11}, - [871] = {.lex_state = 635, .external_lex_state = 11}, - [872] = {.lex_state = 646, .external_lex_state = 19}, - [873] = {.lex_state = 635, .external_lex_state = 11}, - [874] = {.lex_state = 65, .external_lex_state = 12}, - [875] = {.lex_state = 636, .external_lex_state = 20}, - [876] = {.lex_state = 65, .external_lex_state = 12}, - [877] = {.lex_state = 635, .external_lex_state = 11}, - [878] = {.lex_state = 635, .external_lex_state = 11}, - [879] = {.lex_state = 65, .external_lex_state = 12}, - [880] = {.lex_state = 635, .external_lex_state = 11}, - [881] = {.lex_state = 635, .external_lex_state = 11}, - [882] = {.lex_state = 635, .external_lex_state = 11}, - [883] = {.lex_state = 635, .external_lex_state = 11}, - [884] = {.lex_state = 635, .external_lex_state = 11}, - [885] = {.lex_state = 636, .external_lex_state = 20}, - [886] = {.lex_state = 635, .external_lex_state = 11}, - [887] = {.lex_state = 635, .external_lex_state = 11}, - [888] = {.lex_state = 646, .external_lex_state = 19}, - [889] = {.lex_state = 646, .external_lex_state = 19}, - [890] = {.lex_state = 636, .external_lex_state = 20}, - [891] = {.lex_state = 635, .external_lex_state = 11}, - [892] = {.lex_state = 635, .external_lex_state = 11}, - [893] = {.lex_state = 636, .external_lex_state = 20}, - [894] = {.lex_state = 646, .external_lex_state = 21}, - [895] = {.lex_state = 646, .external_lex_state = 21}, - [896] = {.lex_state = 635, .external_lex_state = 11}, - [897] = {.lex_state = 646, .external_lex_state = 21}, - [898] = {.lex_state = 646, .external_lex_state = 19}, - [899] = {.lex_state = 635, .external_lex_state = 11}, - [900] = {.lex_state = 635, .external_lex_state = 11}, - [901] = {.lex_state = 646, .external_lex_state = 19}, - [902] = {.lex_state = 635, .external_lex_state = 11}, - [903] = {.lex_state = 646, .external_lex_state = 19}, - [904] = {.lex_state = 635, .external_lex_state = 11}, - [905] = {.lex_state = 635, .external_lex_state = 12}, - [906] = {.lex_state = 635, .external_lex_state = 11}, - [907] = {.lex_state = 646, .external_lex_state = 19}, - [908] = {.lex_state = 38, .external_lex_state = 2}, - [909] = {.lex_state = 635, .external_lex_state = 12}, - [910] = {.lex_state = 635, .external_lex_state = 12}, - [911] = {.lex_state = 646, .external_lex_state = 19}, - [912] = {.lex_state = 635, .external_lex_state = 12}, - [913] = {.lex_state = 646, .external_lex_state = 19}, - [914] = {.lex_state = 636, .external_lex_state = 20}, - [915] = {.lex_state = 635, .external_lex_state = 12}, - [916] = {.lex_state = 635, .external_lex_state = 12}, - [917] = {.lex_state = 65, .external_lex_state = 11}, - [918] = {.lex_state = 646, .external_lex_state = 19}, - [919] = {.lex_state = 646, .external_lex_state = 21}, - [920] = {.lex_state = 636, .external_lex_state = 20}, - [921] = {.lex_state = 635, .external_lex_state = 12}, - [922] = {.lex_state = 646, .external_lex_state = 21}, - [923] = {.lex_state = 65, .external_lex_state = 11}, - [924] = {.lex_state = 646, .external_lex_state = 21}, - [925] = {.lex_state = 635, .external_lex_state = 12}, - [926] = {.lex_state = 635, .external_lex_state = 12}, - [927] = {.lex_state = 646, .external_lex_state = 21}, - [928] = {.lex_state = 635, .external_lex_state = 12}, - [929] = {.lex_state = 635, .external_lex_state = 12}, - [930] = {.lex_state = 635, .external_lex_state = 12}, - [931] = {.lex_state = 646, .external_lex_state = 19}, - [932] = {.lex_state = 646, .external_lex_state = 21}, - [933] = {.lex_state = 646, .external_lex_state = 19}, - [934] = {.lex_state = 646, .external_lex_state = 19}, - [935] = {.lex_state = 635, .external_lex_state = 12}, - [936] = {.lex_state = 646, .external_lex_state = 19}, - [937] = {.lex_state = 646, .external_lex_state = 19}, - [938] = {.lex_state = 635, .external_lex_state = 12}, - [939] = {.lex_state = 646, .external_lex_state = 19}, - [940] = {.lex_state = 65, .external_lex_state = 11}, - [941] = {.lex_state = 65, .external_lex_state = 11}, - [942] = {.lex_state = 646, .external_lex_state = 19}, - [943] = {.lex_state = 38, .external_lex_state = 2}, - [944] = {.lex_state = 646, .external_lex_state = 19}, - [945] = {.lex_state = 65, .external_lex_state = 11}, - [946] = {.lex_state = 38, .external_lex_state = 2}, - [947] = {.lex_state = 38, .external_lex_state = 2}, - [948] = {.lex_state = 635, .external_lex_state = 12}, - [949] = {.lex_state = 646, .external_lex_state = 19}, - [950] = {.lex_state = 646, .external_lex_state = 21}, - [951] = {.lex_state = 646, .external_lex_state = 19}, - [952] = {.lex_state = 635, .external_lex_state = 12}, - [953] = {.lex_state = 635, .external_lex_state = 12}, - [954] = {.lex_state = 635, .external_lex_state = 12}, - [955] = {.lex_state = 38, .external_lex_state = 2}, - [956] = {.lex_state = 635, .external_lex_state = 12}, - [957] = {.lex_state = 635, .external_lex_state = 12}, - [958] = {.lex_state = 646, .external_lex_state = 21}, - [959] = {.lex_state = 38, .external_lex_state = 2}, - [960] = {.lex_state = 65, .external_lex_state = 12}, - [961] = {.lex_state = 646, .external_lex_state = 11}, - [962] = {.lex_state = 646, .external_lex_state = 11}, - [963] = {.lex_state = 65, .external_lex_state = 12}, - [964] = {.lex_state = 646, .external_lex_state = 11}, - [965] = {.lex_state = 65, .external_lex_state = 12}, - [966] = {.lex_state = 65, .external_lex_state = 12}, - [967] = {.lex_state = 646, .external_lex_state = 21}, - [968] = {.lex_state = 646, .external_lex_state = 21}, - [969] = {.lex_state = 646, .external_lex_state = 21}, - [970] = {.lex_state = 646, .external_lex_state = 21}, - [971] = {.lex_state = 636, .external_lex_state = 20}, - [972] = {.lex_state = 646, .external_lex_state = 21}, - [973] = {.lex_state = 646, .external_lex_state = 11}, - [974] = {.lex_state = 646, .external_lex_state = 21}, - [975] = {.lex_state = 646, .external_lex_state = 21}, - [976] = {.lex_state = 646, .external_lex_state = 21}, - [977] = {.lex_state = 65, .external_lex_state = 12}, - [978] = {.lex_state = 646, .external_lex_state = 21}, - [979] = {.lex_state = 646, .external_lex_state = 21}, - [980] = {.lex_state = 646, .external_lex_state = 21}, - [981] = {.lex_state = 646, .external_lex_state = 21}, - [982] = {.lex_state = 646, .external_lex_state = 21}, - [983] = {.lex_state = 38, .external_lex_state = 2}, - [984] = {.lex_state = 38, .external_lex_state = 2}, - [985] = {.lex_state = 38, .external_lex_state = 2}, - [986] = {.lex_state = 38, .external_lex_state = 2}, - [987] = {.lex_state = 38, .external_lex_state = 2}, - [988] = {.lex_state = 38, .external_lex_state = 2}, - [989] = {.lex_state = 38, .external_lex_state = 2}, - [990] = {.lex_state = 646, .external_lex_state = 12}, - [991] = {.lex_state = 38, .external_lex_state = 2}, - [992] = {.lex_state = 646, .external_lex_state = 12}, - [993] = {.lex_state = 38, .external_lex_state = 2}, - [994] = {.lex_state = 646, .external_lex_state = 12}, - [995] = {.lex_state = 646, .external_lex_state = 12}, - [996] = {.lex_state = 38, .external_lex_state = 2}, - [997] = {.lex_state = 646, .external_lex_state = 11}, - [998] = {.lex_state = 646, .external_lex_state = 11}, - [999] = {.lex_state = 646, .external_lex_state = 11}, - [1000] = {.lex_state = 646, .external_lex_state = 11}, - [1001] = {.lex_state = 646, .external_lex_state = 11}, - [1002] = {.lex_state = 646, .external_lex_state = 11}, - [1003] = {.lex_state = 646, .external_lex_state = 11}, - [1004] = {.lex_state = 38, .external_lex_state = 2}, - [1005] = {.lex_state = 646, .external_lex_state = 11}, - [1006] = {.lex_state = 646, .external_lex_state = 11}, - [1007] = {.lex_state = 646, .external_lex_state = 11}, - [1008] = {.lex_state = 646, .external_lex_state = 12}, - [1009] = {.lex_state = 646, .external_lex_state = 12}, - [1010] = {.lex_state = 646, .external_lex_state = 12}, - [1011] = {.lex_state = 646, .external_lex_state = 12}, - [1012] = {.lex_state = 646, .external_lex_state = 12}, - [1013] = {.lex_state = 646, .external_lex_state = 12}, - [1014] = {.lex_state = 646, .external_lex_state = 12}, - [1015] = {.lex_state = 646, .external_lex_state = 11}, - [1016] = {.lex_state = 646, .external_lex_state = 11}, - [1017] = {.lex_state = 646, .external_lex_state = 12}, - [1018] = {.lex_state = 646, .external_lex_state = 12}, - [1019] = {.lex_state = 646, .external_lex_state = 11}, - [1020] = {.lex_state = 646, .external_lex_state = 11}, - [1021] = {.lex_state = 646, .external_lex_state = 12}, - [1022] = {.lex_state = 646, .external_lex_state = 12}, - [1023] = {.lex_state = 646, .external_lex_state = 11}, - [1024] = {.lex_state = 646, .external_lex_state = 11}, - [1025] = {.lex_state = 646, .external_lex_state = 11}, - [1026] = {.lex_state = 646, .external_lex_state = 11}, - [1027] = {.lex_state = 646, .external_lex_state = 11}, - [1028] = {.lex_state = 646, .external_lex_state = 11}, - [1029] = {.lex_state = 646, .external_lex_state = 11}, - [1030] = {.lex_state = 646, .external_lex_state = 11}, - [1031] = {.lex_state = 646, .external_lex_state = 11}, - [1032] = {.lex_state = 646, .external_lex_state = 11}, - [1033] = {.lex_state = 646, .external_lex_state = 11}, - [1034] = {.lex_state = 646, .external_lex_state = 11}, - [1035] = {.lex_state = 646, .external_lex_state = 11}, - [1036] = {.lex_state = 646, .external_lex_state = 11}, - [1037] = {.lex_state = 646, .external_lex_state = 11}, - [1038] = {.lex_state = 646, .external_lex_state = 11}, - [1039] = {.lex_state = 646, .external_lex_state = 11}, - [1040] = {.lex_state = 646, .external_lex_state = 11}, - [1041] = {.lex_state = 646, .external_lex_state = 11}, - [1042] = {.lex_state = 646, .external_lex_state = 12}, - [1043] = {.lex_state = 646, .external_lex_state = 11}, - [1044] = {.lex_state = 646, .external_lex_state = 11}, - [1045] = {.lex_state = 646, .external_lex_state = 11}, - [1046] = {.lex_state = 646, .external_lex_state = 11}, - [1047] = {.lex_state = 646, .external_lex_state = 11}, - [1048] = {.lex_state = 646, .external_lex_state = 11}, - [1049] = {.lex_state = 646, .external_lex_state = 11}, - [1050] = {.lex_state = 646, .external_lex_state = 11}, - [1051] = {.lex_state = 646, .external_lex_state = 11}, - [1052] = {.lex_state = 646, .external_lex_state = 11}, - [1053] = {.lex_state = 646, .external_lex_state = 11}, - [1054] = {.lex_state = 646, .external_lex_state = 11}, - [1055] = {.lex_state = 646, .external_lex_state = 11}, - [1056] = {.lex_state = 646, .external_lex_state = 11}, - [1057] = {.lex_state = 646, .external_lex_state = 12}, - [1058] = {.lex_state = 646, .external_lex_state = 11}, - [1059] = {.lex_state = 646, .external_lex_state = 11}, - [1060] = {.lex_state = 646, .external_lex_state = 12}, - [1061] = {.lex_state = 646, .external_lex_state = 11}, - [1062] = {.lex_state = 646, .external_lex_state = 11}, - [1063] = {.lex_state = 646, .external_lex_state = 11}, - [1064] = {.lex_state = 646, .external_lex_state = 11}, - [1065] = {.lex_state = 646, .external_lex_state = 11}, - [1066] = {.lex_state = 646, .external_lex_state = 11}, - [1067] = {.lex_state = 646, .external_lex_state = 11}, - [1068] = {.lex_state = 646, .external_lex_state = 11}, - [1069] = {.lex_state = 646, .external_lex_state = 11}, - [1070] = {.lex_state = 646, .external_lex_state = 11}, - [1071] = {.lex_state = 646, .external_lex_state = 11}, - [1072] = {.lex_state = 646, .external_lex_state = 11}, - [1073] = {.lex_state = 646, .external_lex_state = 11}, - [1074] = {.lex_state = 646, .external_lex_state = 11}, - [1075] = {.lex_state = 646, .external_lex_state = 12}, - [1076] = {.lex_state = 646, .external_lex_state = 11}, - [1077] = {.lex_state = 646, .external_lex_state = 12}, - [1078] = {.lex_state = 646, .external_lex_state = 11}, - [1079] = {.lex_state = 646, .external_lex_state = 11}, - [1080] = {.lex_state = 646, .external_lex_state = 11}, - [1081] = {.lex_state = 646, .external_lex_state = 11}, - [1082] = {.lex_state = 646, .external_lex_state = 12}, - [1083] = {.lex_state = 646, .external_lex_state = 11}, - [1084] = {.lex_state = 646, .external_lex_state = 11}, - [1085] = {.lex_state = 646, .external_lex_state = 12}, - [1086] = {.lex_state = 646, .external_lex_state = 12}, - [1087] = {.lex_state = 646, .external_lex_state = 12}, - [1088] = {.lex_state = 646, .external_lex_state = 12}, - [1089] = {.lex_state = 646, .external_lex_state = 12}, - [1090] = {.lex_state = 646, .external_lex_state = 12}, - [1091] = {.lex_state = 646, .external_lex_state = 12}, - [1092] = {.lex_state = 646, .external_lex_state = 12}, - [1093] = {.lex_state = 646, .external_lex_state = 12}, - [1094] = {.lex_state = 646, .external_lex_state = 12}, - [1095] = {.lex_state = 646, .external_lex_state = 12}, - [1096] = {.lex_state = 646, .external_lex_state = 12}, - [1097] = {.lex_state = 646, .external_lex_state = 12}, - [1098] = {.lex_state = 646, .external_lex_state = 12}, - [1099] = {.lex_state = 646, .external_lex_state = 12}, - [1100] = {.lex_state = 646, .external_lex_state = 12}, - [1101] = {.lex_state = 646, .external_lex_state = 12}, - [1102] = {.lex_state = 646, .external_lex_state = 12}, - [1103] = {.lex_state = 646, .external_lex_state = 12}, - [1104] = {.lex_state = 646, .external_lex_state = 12}, - [1105] = {.lex_state = 646, .external_lex_state = 12}, - [1106] = {.lex_state = 646, .external_lex_state = 12}, - [1107] = {.lex_state = 646, .external_lex_state = 12}, - [1108] = {.lex_state = 646, .external_lex_state = 12}, - [1109] = {.lex_state = 646, .external_lex_state = 12}, - [1110] = {.lex_state = 646, .external_lex_state = 12}, - [1111] = {.lex_state = 646, .external_lex_state = 12}, - [1112] = {.lex_state = 646, .external_lex_state = 12}, - [1113] = {.lex_state = 646, .external_lex_state = 12}, - [1114] = {.lex_state = 646, .external_lex_state = 12}, - [1115] = {.lex_state = 646, .external_lex_state = 12}, - [1116] = {.lex_state = 646, .external_lex_state = 12}, - [1117] = {.lex_state = 646, .external_lex_state = 12}, - [1118] = {.lex_state = 646, .external_lex_state = 12}, - [1119] = {.lex_state = 646, .external_lex_state = 12}, - [1120] = {.lex_state = 646, .external_lex_state = 12}, - [1121] = {.lex_state = 646, .external_lex_state = 12}, - [1122] = {.lex_state = 646, .external_lex_state = 12}, - [1123] = {.lex_state = 646, .external_lex_state = 12}, - [1124] = {.lex_state = 646, .external_lex_state = 12}, - [1125] = {.lex_state = 646, .external_lex_state = 12}, - [1126] = {.lex_state = 646, .external_lex_state = 12}, - [1127] = {.lex_state = 646, .external_lex_state = 12}, - [1128] = {.lex_state = 646, .external_lex_state = 12}, - [1129] = {.lex_state = 646, .external_lex_state = 12}, - [1130] = {.lex_state = 646, .external_lex_state = 12}, - [1131] = {.lex_state = 646, .external_lex_state = 12}, - [1132] = {.lex_state = 646, .external_lex_state = 12}, - [1133] = {.lex_state = 646, .external_lex_state = 12}, - [1134] = {.lex_state = 646, .external_lex_state = 12}, - [1135] = {.lex_state = 646, .external_lex_state = 12}, - [1136] = {.lex_state = 646, .external_lex_state = 12}, - [1137] = {.lex_state = 646, .external_lex_state = 12}, - [1138] = {.lex_state = 646, .external_lex_state = 12}, - [1139] = {.lex_state = 646, .external_lex_state = 22}, - [1140] = {.lex_state = 646, .external_lex_state = 22}, - [1141] = {.lex_state = 646, .external_lex_state = 22}, - [1142] = {.lex_state = 646, .external_lex_state = 22}, - [1143] = {.lex_state = 646, .external_lex_state = 22}, - [1144] = {.lex_state = 646, .external_lex_state = 23}, - [1145] = {.lex_state = 646, .external_lex_state = 22}, - [1146] = {.lex_state = 646, .external_lex_state = 22}, - [1147] = {.lex_state = 646, .external_lex_state = 22}, - [1148] = {.lex_state = 646, .external_lex_state = 22}, - [1149] = {.lex_state = 646, .external_lex_state = 23}, - [1150] = {.lex_state = 646, .external_lex_state = 23}, - [1151] = {.lex_state = 646, .external_lex_state = 10}, - [1152] = {.lex_state = 646, .external_lex_state = 23}, - [1153] = {.lex_state = 646, .external_lex_state = 23}, - [1154] = {.lex_state = 646, .external_lex_state = 23}, - [1155] = {.lex_state = 646, .external_lex_state = 23}, - [1156] = {.lex_state = 646, .external_lex_state = 23}, - [1157] = {.lex_state = 646, .external_lex_state = 23}, - [1158] = {.lex_state = 646, .external_lex_state = 23}, - [1159] = {.lex_state = 646, .external_lex_state = 23}, - [1160] = {.lex_state = 646, .external_lex_state = 23}, - [1161] = {.lex_state = 646, .external_lex_state = 23}, - [1162] = {.lex_state = 646, .external_lex_state = 23}, - [1163] = {.lex_state = 646, .external_lex_state = 23}, - [1164] = {.lex_state = 646, .external_lex_state = 10}, - [1165] = {.lex_state = 646, .external_lex_state = 10}, - [1166] = {.lex_state = 646, .external_lex_state = 23}, - [1167] = {.lex_state = 646, .external_lex_state = 24}, - [1168] = {.lex_state = 646, .external_lex_state = 10}, - [1169] = {.lex_state = 646, .external_lex_state = 23}, - [1170] = {.lex_state = 646, .external_lex_state = 10}, - [1171] = {.lex_state = 646, .external_lex_state = 23}, - [1172] = {.lex_state = 646, .external_lex_state = 10}, - [1173] = {.lex_state = 646, .external_lex_state = 10}, - [1174] = {.lex_state = 646, .external_lex_state = 10}, - [1175] = {.lex_state = 646, .external_lex_state = 10}, - [1176] = {.lex_state = 646, .external_lex_state = 25}, - [1177] = {.lex_state = 646, .external_lex_state = 23}, - [1178] = {.lex_state = 646, .external_lex_state = 10}, - [1179] = {.lex_state = 646, .external_lex_state = 23}, - [1180] = {.lex_state = 646, .external_lex_state = 10}, - [1181] = {.lex_state = 646, .external_lex_state = 10}, - [1182] = {.lex_state = 646, .external_lex_state = 10}, - [1183] = {.lex_state = 646, .external_lex_state = 10}, - [1184] = {.lex_state = 646, .external_lex_state = 23}, - [1185] = {.lex_state = 646, .external_lex_state = 10}, - [1186] = {.lex_state = 646, .external_lex_state = 10}, - [1187] = {.lex_state = 646, .external_lex_state = 23}, - [1188] = {.lex_state = 646, .external_lex_state = 23}, - [1189] = {.lex_state = 646, .external_lex_state = 23}, - [1190] = {.lex_state = 646, .external_lex_state = 23}, - [1191] = {.lex_state = 646, .external_lex_state = 23}, - [1192] = {.lex_state = 646, .external_lex_state = 23}, - [1193] = {.lex_state = 646, .external_lex_state = 24}, - [1194] = {.lex_state = 646, .external_lex_state = 10}, - [1195] = {.lex_state = 646, .external_lex_state = 24}, - [1196] = {.lex_state = 646, .external_lex_state = 10}, - [1197] = {.lex_state = 646, .external_lex_state = 25}, - [1198] = {.lex_state = 646, .external_lex_state = 10}, - [1199] = {.lex_state = 646, .external_lex_state = 10}, - [1200] = {.lex_state = 646, .external_lex_state = 25}, - [1201] = {.lex_state = 646, .external_lex_state = 10}, - [1202] = {.lex_state = 646, .external_lex_state = 10}, - [1203] = {.lex_state = 646, .external_lex_state = 23}, - [1204] = {.lex_state = 646, .external_lex_state = 10}, - [1205] = {.lex_state = 646, .external_lex_state = 10}, - [1206] = {.lex_state = 646, .external_lex_state = 10}, - [1207] = {.lex_state = 646, .external_lex_state = 10}, - [1208] = {.lex_state = 646, .external_lex_state = 25}, - [1209] = {.lex_state = 646, .external_lex_state = 10}, - [1210] = {.lex_state = 646, .external_lex_state = 23}, - [1211] = {.lex_state = 646, .external_lex_state = 10}, - [1212] = {.lex_state = 646, .external_lex_state = 10}, - [1213] = {.lex_state = 646, .external_lex_state = 10}, - [1214] = {.lex_state = 646, .external_lex_state = 25}, - [1215] = {.lex_state = 646, .external_lex_state = 10}, - [1216] = {.lex_state = 646, .external_lex_state = 25}, - [1217] = {.lex_state = 646, .external_lex_state = 25}, - [1218] = {.lex_state = 646, .external_lex_state = 10}, - [1219] = {.lex_state = 646, .external_lex_state = 10}, - [1220] = {.lex_state = 646, .external_lex_state = 10}, - [1221] = {.lex_state = 646, .external_lex_state = 10}, - [1222] = {.lex_state = 646, .external_lex_state = 10}, - [1223] = {.lex_state = 646, .external_lex_state = 10}, - [1224] = {.lex_state = 646, .external_lex_state = 10}, - [1225] = {.lex_state = 646, .external_lex_state = 10}, - [1226] = {.lex_state = 646, .external_lex_state = 10}, - [1227] = {.lex_state = 646, .external_lex_state = 25}, - [1228] = {.lex_state = 646, .external_lex_state = 10}, - [1229] = {.lex_state = 646, .external_lex_state = 10}, - [1230] = {.lex_state = 646, .external_lex_state = 10}, - [1231] = {.lex_state = 646, .external_lex_state = 26}, - [1232] = {.lex_state = 646, .external_lex_state = 25}, - [1233] = {.lex_state = 646, .external_lex_state = 10}, - [1234] = {.lex_state = 646, .external_lex_state = 25}, - [1235] = {.lex_state = 646, .external_lex_state = 10}, - [1236] = {.lex_state = 646, .external_lex_state = 25}, - [1237] = {.lex_state = 646, .external_lex_state = 10}, - [1238] = {.lex_state = 646, .external_lex_state = 10}, - [1239] = {.lex_state = 646, .external_lex_state = 10}, - [1240] = {.lex_state = 646, .external_lex_state = 25}, - [1241] = {.lex_state = 646, .external_lex_state = 24}, - [1242] = {.lex_state = 646, .external_lex_state = 24}, - [1243] = {.lex_state = 646, .external_lex_state = 24}, - [1244] = {.lex_state = 646, .external_lex_state = 25}, - [1245] = {.lex_state = 646, .external_lex_state = 25}, - [1246] = {.lex_state = 646, .external_lex_state = 25}, - [1247] = {.lex_state = 646, .external_lex_state = 10}, - [1248] = {.lex_state = 646, .external_lex_state = 24}, - [1249] = {.lex_state = 646, .external_lex_state = 24}, - [1250] = {.lex_state = 646, .external_lex_state = 24}, - [1251] = {.lex_state = 646, .external_lex_state = 10}, - [1252] = {.lex_state = 646, .external_lex_state = 25}, - [1253] = {.lex_state = 646, .external_lex_state = 10}, - [1254] = {.lex_state = 646, .external_lex_state = 10}, - [1255] = {.lex_state = 646, .external_lex_state = 10}, - [1256] = {.lex_state = 646, .external_lex_state = 25}, - [1257] = {.lex_state = 646, .external_lex_state = 25}, - [1258] = {.lex_state = 646, .external_lex_state = 25}, - [1259] = {.lex_state = 646, .external_lex_state = 25}, - [1260] = {.lex_state = 646, .external_lex_state = 25}, - [1261] = {.lex_state = 646, .external_lex_state = 10}, - [1262] = {.lex_state = 646, .external_lex_state = 25}, - [1263] = {.lex_state = 646, .external_lex_state = 25}, - [1264] = {.lex_state = 646, .external_lex_state = 23}, - [1265] = {.lex_state = 646, .external_lex_state = 10}, - [1266] = {.lex_state = 646, .external_lex_state = 10}, - [1267] = {.lex_state = 646, .external_lex_state = 10}, - [1268] = {.lex_state = 646, .external_lex_state = 10}, - [1269] = {.lex_state = 646, .external_lex_state = 25}, - [1270] = {.lex_state = 646, .external_lex_state = 25}, - [1271] = {.lex_state = 646, .external_lex_state = 10}, - [1272] = {.lex_state = 646, .external_lex_state = 25}, - [1273] = {.lex_state = 646, .external_lex_state = 10}, - [1274] = {.lex_state = 646, .external_lex_state = 10}, - [1275] = {.lex_state = 646, .external_lex_state = 10}, - [1276] = {.lex_state = 646, .external_lex_state = 26}, - [1277] = {.lex_state = 646, .external_lex_state = 26}, - [1278] = {.lex_state = 646, .external_lex_state = 26}, - [1279] = {.lex_state = 646, .external_lex_state = 26}, - [1280] = {.lex_state = 646, .external_lex_state = 26}, - [1281] = {.lex_state = 646, .external_lex_state = 10}, - [1282] = {.lex_state = 646, .external_lex_state = 10}, - [1283] = {.lex_state = 646, .external_lex_state = 10}, - [1284] = {.lex_state = 646, .external_lex_state = 10}, - [1285] = {.lex_state = 646, .external_lex_state = 26}, - [1286] = {.lex_state = 646, .external_lex_state = 25}, - [1287] = {.lex_state = 646, .external_lex_state = 10}, - [1288] = {.lex_state = 646, .external_lex_state = 26}, - [1289] = {.lex_state = 646, .external_lex_state = 10}, - [1290] = {.lex_state = 646, .external_lex_state = 10}, - [1291] = {.lex_state = 646, .external_lex_state = 10}, - [1292] = {.lex_state = 646, .external_lex_state = 10}, - [1293] = {.lex_state = 646, .external_lex_state = 26}, - [1294] = {.lex_state = 646, .external_lex_state = 10}, - [1295] = {.lex_state = 646, .external_lex_state = 10}, - [1296] = {.lex_state = 646, .external_lex_state = 26}, - [1297] = {.lex_state = 646, .external_lex_state = 10}, - [1298] = {.lex_state = 646, .external_lex_state = 10}, - [1299] = {.lex_state = 646, .external_lex_state = 10}, - [1300] = {.lex_state = 646, .external_lex_state = 10}, - [1301] = {.lex_state = 646, .external_lex_state = 10}, - [1302] = {.lex_state = 646, .external_lex_state = 25}, - [1303] = {.lex_state = 646, .external_lex_state = 10}, - [1304] = {.lex_state = 646, .external_lex_state = 10}, - [1305] = {.lex_state = 646, .external_lex_state = 10}, - [1306] = {.lex_state = 646, .external_lex_state = 10}, - [1307] = {.lex_state = 646, .external_lex_state = 10}, - [1308] = {.lex_state = 646, .external_lex_state = 25}, - [1309] = {.lex_state = 646, .external_lex_state = 10}, - [1310] = {.lex_state = 646, .external_lex_state = 10}, - [1311] = {.lex_state = 646, .external_lex_state = 25}, - [1312] = {.lex_state = 646, .external_lex_state = 10}, - [1313] = {.lex_state = 646, .external_lex_state = 10}, - [1314] = {.lex_state = 646, .external_lex_state = 10}, - [1315] = {.lex_state = 646, .external_lex_state = 10}, - [1316] = {.lex_state = 646, .external_lex_state = 10}, - [1317] = {.lex_state = 646, .external_lex_state = 10}, - [1318] = {.lex_state = 646, .external_lex_state = 25}, - [1319] = {.lex_state = 646, .external_lex_state = 10}, - [1320] = {.lex_state = 646, .external_lex_state = 10}, - [1321] = {.lex_state = 646, .external_lex_state = 25}, - [1322] = {.lex_state = 646, .external_lex_state = 10}, - [1323] = {.lex_state = 646, .external_lex_state = 10}, - [1324] = {.lex_state = 646, .external_lex_state = 10}, - [1325] = {.lex_state = 646, .external_lex_state = 10}, - [1326] = {.lex_state = 636, .external_lex_state = 20}, - [1327] = {.lex_state = 646, .external_lex_state = 10}, - [1328] = {.lex_state = 646, .external_lex_state = 10}, - [1329] = {.lex_state = 646, .external_lex_state = 25}, - [1330] = {.lex_state = 636, .external_lex_state = 20}, - [1331] = {.lex_state = 646, .external_lex_state = 10}, - [1332] = {.lex_state = 646, .external_lex_state = 10}, - [1333] = {.lex_state = 646, .external_lex_state = 10}, - [1334] = {.lex_state = 646, .external_lex_state = 10}, - [1335] = {.lex_state = 646, .external_lex_state = 10}, - [1336] = {.lex_state = 646, .external_lex_state = 10}, - [1337] = {.lex_state = 646, .external_lex_state = 10}, - [1338] = {.lex_state = 646, .external_lex_state = 25}, - [1339] = {.lex_state = 646, .external_lex_state = 10}, - [1340] = {.lex_state = 646, .external_lex_state = 10}, - [1341] = {.lex_state = 646, .external_lex_state = 10}, - [1342] = {.lex_state = 646, .external_lex_state = 10}, - [1343] = {.lex_state = 646, .external_lex_state = 10}, - [1344] = {.lex_state = 646, .external_lex_state = 10}, - [1345] = {.lex_state = 646, .external_lex_state = 10}, - [1346] = {.lex_state = 646, .external_lex_state = 10}, - [1347] = {.lex_state = 646, .external_lex_state = 10}, - [1348] = {.lex_state = 646, .external_lex_state = 10}, - [1349] = {.lex_state = 646, .external_lex_state = 10}, - [1350] = {.lex_state = 636, .external_lex_state = 20}, - [1351] = {.lex_state = 646, .external_lex_state = 10}, - [1352] = {.lex_state = 646, .external_lex_state = 10}, - [1353] = {.lex_state = 646, .external_lex_state = 10}, - [1354] = {.lex_state = 646, .external_lex_state = 10}, - [1355] = {.lex_state = 636, .external_lex_state = 20}, - [1356] = {.lex_state = 646, .external_lex_state = 10}, - [1357] = {.lex_state = 646, .external_lex_state = 10}, - [1358] = {.lex_state = 646, .external_lex_state = 10}, - [1359] = {.lex_state = 646, .external_lex_state = 10}, - [1360] = {.lex_state = 646, .external_lex_state = 10}, - [1361] = {.lex_state = 646, .external_lex_state = 10}, - [1362] = {.lex_state = 636, .external_lex_state = 20}, - [1363] = {.lex_state = 636, .external_lex_state = 20}, - [1364] = {.lex_state = 636, .external_lex_state = 27}, - [1365] = {.lex_state = 56, .external_lex_state = 28}, - [1366] = {.lex_state = 649, .external_lex_state = 27}, - [1367] = {.lex_state = 636, .external_lex_state = 29}, - [1368] = {.lex_state = 649, .external_lex_state = 27}, - [1369] = {.lex_state = 636, .external_lex_state = 30}, - [1370] = {.lex_state = 649, .external_lex_state = 27}, - [1371] = {.lex_state = 636, .external_lex_state = 30}, - [1372] = {.lex_state = 649, .external_lex_state = 27}, - [1373] = {.lex_state = 649, .external_lex_state = 27}, - [1374] = {.lex_state = 636, .external_lex_state = 30}, - [1375] = {.lex_state = 636, .external_lex_state = 30}, - [1376] = {.lex_state = 636, .external_lex_state = 31}, - [1377] = {.lex_state = 636, .external_lex_state = 29}, - [1378] = {.lex_state = 636, .external_lex_state = 32}, - [1379] = {.lex_state = 636, .external_lex_state = 32}, - [1380] = {.lex_state = 636, .external_lex_state = 32}, - [1381] = {.lex_state = 636, .external_lex_state = 29}, - [1382] = {.lex_state = 56, .external_lex_state = 28}, - [1383] = {.lex_state = 636, .external_lex_state = 29}, - [1384] = {.lex_state = 636, .external_lex_state = 29}, - [1385] = {.lex_state = 636, .external_lex_state = 32}, - [1386] = {.lex_state = 636, .external_lex_state = 30}, - [1387] = {.lex_state = 636, .external_lex_state = 32}, - [1388] = {.lex_state = 636, .external_lex_state = 29}, - [1389] = {.lex_state = 636, .external_lex_state = 30}, - [1390] = {.lex_state = 636, .external_lex_state = 30}, - [1391] = {.lex_state = 636, .external_lex_state = 30}, - [1392] = {.lex_state = 636, .external_lex_state = 30}, - [1393] = {.lex_state = 636, .external_lex_state = 27}, - [1394] = {.lex_state = 636, .external_lex_state = 31}, - [1395] = {.lex_state = 636, .external_lex_state = 33}, - [1396] = {.lex_state = 636, .external_lex_state = 33}, - [1397] = {.lex_state = 636, .external_lex_state = 27}, - [1398] = {.lex_state = 636, .external_lex_state = 33}, - [1399] = {.lex_state = 636, .external_lex_state = 33}, - [1400] = {.lex_state = 636, .external_lex_state = 27}, - [1401] = {.lex_state = 636, .external_lex_state = 31}, - [1402] = {.lex_state = 56, .external_lex_state = 28}, - [1403] = {.lex_state = 636, .external_lex_state = 31}, - [1404] = {.lex_state = 636, .external_lex_state = 31}, - [1405] = {.lex_state = 636, .external_lex_state = 31}, - [1406] = {.lex_state = 649, .external_lex_state = 27}, - [1407] = {.lex_state = 636, .external_lex_state = 29}, - [1408] = {.lex_state = 636, .external_lex_state = 27}, - [1409] = {.lex_state = 636, .external_lex_state = 32}, - [1410] = {.lex_state = 636, .external_lex_state = 27}, - [1411] = {.lex_state = 636, .external_lex_state = 32}, - [1412] = {.lex_state = 636, .external_lex_state = 29}, - [1413] = {.lex_state = 636, .external_lex_state = 27}, - [1414] = {.lex_state = 636, .external_lex_state = 32}, - [1415] = {.lex_state = 636, .external_lex_state = 27}, - [1416] = {.lex_state = 649, .external_lex_state = 27}, - [1417] = {.lex_state = 636, .external_lex_state = 29}, - [1418] = {.lex_state = 636, .external_lex_state = 27}, - [1419] = {.lex_state = 636, .external_lex_state = 32}, - [1420] = {.lex_state = 636, .external_lex_state = 33}, - [1421] = {.lex_state = 636, .external_lex_state = 29}, - [1422] = {.lex_state = 636, .external_lex_state = 33}, - [1423] = {.lex_state = 636, .external_lex_state = 29}, - [1424] = {.lex_state = 636, .external_lex_state = 31}, - [1425] = {.lex_state = 636, .external_lex_state = 33}, - [1426] = {.lex_state = 636, .external_lex_state = 31}, - [1427] = {.lex_state = 641, .external_lex_state = 22}, - [1428] = {.lex_state = 641, .external_lex_state = 22}, - [1429] = {.lex_state = 636, .external_lex_state = 33}, - [1430] = {.lex_state = 636, .external_lex_state = 29}, - [1431] = {.lex_state = 649, .external_lex_state = 27}, - [1432] = {.lex_state = 649, .external_lex_state = 27}, - [1433] = {.lex_state = 636, .external_lex_state = 29}, - [1434] = {.lex_state = 636, .external_lex_state = 31}, - [1435] = {.lex_state = 636, .external_lex_state = 33}, - [1436] = {.lex_state = 649, .external_lex_state = 27}, - [1437] = {.lex_state = 636, .external_lex_state = 29}, - [1438] = {.lex_state = 636, .external_lex_state = 29}, - [1439] = {.lex_state = 636, .external_lex_state = 29}, - [1440] = {.lex_state = 649, .external_lex_state = 27}, - [1441] = {.lex_state = 641, .external_lex_state = 22}, - [1442] = {.lex_state = 636, .external_lex_state = 29}, - [1443] = {.lex_state = 641, .external_lex_state = 23}, - [1444] = {.lex_state = 636, .external_lex_state = 29}, - [1445] = {.lex_state = 636, .external_lex_state = 31}, - [1446] = {.lex_state = 636, .external_lex_state = 31}, - [1447] = {.lex_state = 636, .external_lex_state = 31}, - [1448] = {.lex_state = 641, .external_lex_state = 23}, - [1449] = {.lex_state = 636, .external_lex_state = 31}, - [1450] = {.lex_state = 636, .external_lex_state = 29}, - [1451] = {.lex_state = 636, .external_lex_state = 29}, - [1452] = {.lex_state = 636, .external_lex_state = 31}, - [1453] = {.lex_state = 636, .external_lex_state = 31}, - [1454] = {.lex_state = 636, .external_lex_state = 31}, - [1455] = {.lex_state = 641, .external_lex_state = 23}, - [1456] = {.lex_state = 636, .external_lex_state = 20}, - [1457] = {.lex_state = 641, .external_lex_state = 22}, - [1458] = {.lex_state = 641, .external_lex_state = 10}, - [1459] = {.lex_state = 635, .external_lex_state = 34}, - [1460] = {.lex_state = 636, .external_lex_state = 31}, - [1461] = {.lex_state = 636, .external_lex_state = 31}, - [1462] = {.lex_state = 636, .external_lex_state = 31}, - [1463] = {.lex_state = 636, .external_lex_state = 31}, - [1464] = {.lex_state = 636, .external_lex_state = 20}, - [1465] = {.lex_state = 636, .external_lex_state = 35}, - [1466] = {.lex_state = 641, .external_lex_state = 23}, - [1467] = {.lex_state = 641, .external_lex_state = 22}, - [1468] = {.lex_state = 641, .external_lex_state = 23}, - [1469] = {.lex_state = 641, .external_lex_state = 10}, - [1470] = {.lex_state = 641, .external_lex_state = 22}, - [1471] = {.lex_state = 641, .external_lex_state = 22}, - [1472] = {.lex_state = 641, .external_lex_state = 23}, - [1473] = {.lex_state = 641, .external_lex_state = 22}, - [1474] = {.lex_state = 641, .external_lex_state = 10}, - [1475] = {.lex_state = 643, .external_lex_state = 22}, - [1476] = {.lex_state = 641, .external_lex_state = 22}, - [1477] = {.lex_state = 636, .external_lex_state = 35}, - [1478] = {.lex_state = 641, .external_lex_state = 10}, - [1479] = {.lex_state = 636, .external_lex_state = 35}, - [1480] = {.lex_state = 641, .external_lex_state = 25}, - [1481] = {.lex_state = 636, .external_lex_state = 35}, - [1482] = {.lex_state = 643, .external_lex_state = 23}, - [1483] = {.lex_state = 641, .external_lex_state = 23}, - [1484] = {.lex_state = 641, .external_lex_state = 24}, - [1485] = {.lex_state = 635, .external_lex_state = 13}, - [1486] = {.lex_state = 641, .external_lex_state = 23}, - [1487] = {.lex_state = 641, .external_lex_state = 23}, - [1488] = {.lex_state = 636, .external_lex_state = 35}, - [1489] = {.lex_state = 641, .external_lex_state = 25}, - [1490] = {.lex_state = 649, .external_lex_state = 36}, - [1491] = {.lex_state = 641, .external_lex_state = 25}, - [1492] = {.lex_state = 641, .external_lex_state = 23}, - [1493] = {.lex_state = 641, .external_lex_state = 24}, - [1494] = {.lex_state = 641, .external_lex_state = 23}, - [1495] = {.lex_state = 641, .external_lex_state = 23}, - [1496] = {.lex_state = 641, .external_lex_state = 10}, - [1497] = {.lex_state = 636, .external_lex_state = 37}, - [1498] = {.lex_state = 636, .external_lex_state = 37}, - [1499] = {.lex_state = 641, .external_lex_state = 24}, - [1500] = {.lex_state = 636, .external_lex_state = 35}, - [1501] = {.lex_state = 636, .external_lex_state = 37}, - [1502] = {.lex_state = 641, .external_lex_state = 22}, - [1503] = {.lex_state = 636, .external_lex_state = 37}, - [1504] = {.lex_state = 646, .external_lex_state = 38}, - [1505] = {.lex_state = 635, .external_lex_state = 13}, - [1506] = {.lex_state = 636, .external_lex_state = 39}, - [1507] = {.lex_state = 635, .external_lex_state = 34}, - [1508] = {.lex_state = 641, .external_lex_state = 10}, - [1509] = {.lex_state = 649, .external_lex_state = 40}, - [1510] = {.lex_state = 646, .external_lex_state = 38}, - [1511] = {.lex_state = 641, .external_lex_state = 10}, - [1512] = {.lex_state = 641, .external_lex_state = 23}, - [1513] = {.lex_state = 641, .external_lex_state = 26}, - [1514] = {.lex_state = 641, .external_lex_state = 23}, - [1515] = {.lex_state = 635, .external_lex_state = 13}, - [1516] = {.lex_state = 649, .external_lex_state = 40}, - [1517] = {.lex_state = 67, .external_lex_state = 28}, - [1518] = {.lex_state = 641, .external_lex_state = 10}, - [1519] = {.lex_state = 641, .external_lex_state = 23}, - [1520] = {.lex_state = 641, .external_lex_state = 23}, - [1521] = {.lex_state = 641, .external_lex_state = 23}, - [1522] = {.lex_state = 646, .external_lex_state = 38}, - [1523] = {.lex_state = 646, .external_lex_state = 38}, - [1524] = {.lex_state = 646, .external_lex_state = 38}, - [1525] = {.lex_state = 643, .external_lex_state = 10}, - [1526] = {.lex_state = 641, .external_lex_state = 10}, - [1527] = {.lex_state = 646, .external_lex_state = 38}, - [1528] = {.lex_state = 649, .external_lex_state = 40}, - [1529] = {.lex_state = 649, .external_lex_state = 36}, - [1530] = {.lex_state = 67, .external_lex_state = 28}, - [1531] = {.lex_state = 641, .external_lex_state = 26}, - [1532] = {.lex_state = 641, .external_lex_state = 26}, - [1533] = {.lex_state = 641, .external_lex_state = 23}, - [1534] = {.lex_state = 643, .external_lex_state = 23}, - [1535] = {.lex_state = 641, .external_lex_state = 10}, - [1536] = {.lex_state = 636, .external_lex_state = 37}, - [1537] = {.lex_state = 641, .external_lex_state = 10}, - [1538] = {.lex_state = 635, .external_lex_state = 13}, - [1539] = {.lex_state = 636, .external_lex_state = 41}, - [1540] = {.lex_state = 649, .external_lex_state = 40}, - [1541] = {.lex_state = 641, .external_lex_state = 25}, - [1542] = {.lex_state = 641, .external_lex_state = 25}, - [1543] = {.lex_state = 641, .external_lex_state = 25}, - [1544] = {.lex_state = 636, .external_lex_state = 37}, - [1545] = {.lex_state = 636, .external_lex_state = 35}, - [1546] = {.lex_state = 646, .external_lex_state = 28}, - [1547] = {.lex_state = 641, .external_lex_state = 24}, - [1548] = {.lex_state = 636, .external_lex_state = 35}, - [1549] = {.lex_state = 641, .external_lex_state = 24}, - [1550] = {.lex_state = 636, .external_lex_state = 42}, - [1551] = {.lex_state = 636, .external_lex_state = 37}, - [1552] = {.lex_state = 636, .external_lex_state = 37}, - [1553] = {.lex_state = 636, .external_lex_state = 37}, - [1554] = {.lex_state = 641, .external_lex_state = 25}, - [1555] = {.lex_state = 635, .external_lex_state = 22}, - [1556] = {.lex_state = 641, .external_lex_state = 25}, - [1557] = {.lex_state = 641, .external_lex_state = 24}, - [1558] = {.lex_state = 641, .external_lex_state = 24}, - [1559] = {.lex_state = 649, .external_lex_state = 40}, - [1560] = {.lex_state = 636, .external_lex_state = 42}, - [1561] = {.lex_state = 646, .external_lex_state = 28}, - [1562] = {.lex_state = 646, .external_lex_state = 28}, - [1563] = {.lex_state = 641, .external_lex_state = 25}, - [1564] = {.lex_state = 641, .external_lex_state = 24}, - [1565] = {.lex_state = 636, .external_lex_state = 42}, - [1566] = {.lex_state = 643, .external_lex_state = 25}, - [1567] = {.lex_state = 649, .external_lex_state = 40}, - [1568] = {.lex_state = 641, .external_lex_state = 25}, - [1569] = {.lex_state = 646, .external_lex_state = 28}, - [1570] = {.lex_state = 643, .external_lex_state = 24}, - [1571] = {.lex_state = 646, .external_lex_state = 28}, - [1572] = {.lex_state = 646, .external_lex_state = 28}, - [1573] = {.lex_state = 636, .external_lex_state = 35}, - [1574] = {.lex_state = 641, .external_lex_state = 25}, - [1575] = {.lex_state = 635, .external_lex_state = 22}, - [1576] = {.lex_state = 636, .external_lex_state = 35}, - [1577] = {.lex_state = 636, .external_lex_state = 35}, - [1578] = {.lex_state = 643, .external_lex_state = 22}, - [1579] = {.lex_state = 649, .external_lex_state = 40}, - [1580] = {.lex_state = 635, .external_lex_state = 22}, - [1581] = {.lex_state = 649, .external_lex_state = 40}, - [1582] = {.lex_state = 649, .external_lex_state = 40}, - [1583] = {.lex_state = 643, .external_lex_state = 26}, - [1584] = {.lex_state = 646, .external_lex_state = 38}, - [1585] = {.lex_state = 636, .external_lex_state = 35}, - [1586] = {.lex_state = 649, .external_lex_state = 40}, - [1587] = {.lex_state = 646, .external_lex_state = 38}, - [1588] = {.lex_state = 646, .external_lex_state = 28}, - [1589] = {.lex_state = 641, .external_lex_state = 26}, - [1590] = {.lex_state = 641, .external_lex_state = 26}, - [1591] = {.lex_state = 646, .external_lex_state = 38}, - [1592] = {.lex_state = 641, .external_lex_state = 26}, - [1593] = {.lex_state = 641, .external_lex_state = 26}, - [1594] = {.lex_state = 636, .external_lex_state = 42}, - [1595] = {.lex_state = 641, .external_lex_state = 10}, - [1596] = {.lex_state = 649, .external_lex_state = 40}, - [1597] = {.lex_state = 643, .external_lex_state = 22}, - [1598] = {.lex_state = 646, .external_lex_state = 28}, - [1599] = {.lex_state = 636, .external_lex_state = 35}, - [1600] = {.lex_state = 641, .external_lex_state = 10}, - [1601] = {.lex_state = 646, .external_lex_state = 28}, - [1602] = {.lex_state = 646, .external_lex_state = 28}, - [1603] = {.lex_state = 636, .external_lex_state = 35}, - [1604] = {.lex_state = 636, .external_lex_state = 39}, - [1605] = {.lex_state = 649, .external_lex_state = 40}, - [1606] = {.lex_state = 641, .external_lex_state = 10}, - [1607] = {.lex_state = 641, .external_lex_state = 26}, - [1608] = {.lex_state = 643, .external_lex_state = 22}, - [1609] = {.lex_state = 646, .external_lex_state = 28}, - [1610] = {.lex_state = 635, .external_lex_state = 23}, - [1611] = {.lex_state = 636, .external_lex_state = 35}, - [1612] = {.lex_state = 636, .external_lex_state = 35}, - [1613] = {.lex_state = 646, .external_lex_state = 28}, - [1614] = {.lex_state = 649, .external_lex_state = 40}, - [1615] = {.lex_state = 635, .external_lex_state = 23}, - [1616] = {.lex_state = 649, .external_lex_state = 40}, - [1617] = {.lex_state = 646, .external_lex_state = 43}, - [1618] = {.lex_state = 646, .external_lex_state = 44}, - [1619] = {.lex_state = 646, .external_lex_state = 28}, - [1620] = {.lex_state = 646, .external_lex_state = 44}, - [1621] = {.lex_state = 646, .external_lex_state = 44}, - [1622] = {.lex_state = 643, .external_lex_state = 23}, - [1623] = {.lex_state = 646, .external_lex_state = 44}, - [1624] = {.lex_state = 635, .external_lex_state = 22}, - [1625] = {.lex_state = 646, .external_lex_state = 38}, - [1626] = {.lex_state = 635, .external_lex_state = 23}, - [1627] = {.lex_state = 646, .external_lex_state = 43}, - [1628] = {.lex_state = 646, .external_lex_state = 44}, - [1629] = {.lex_state = 646, .external_lex_state = 43}, - [1630] = {.lex_state = 641, .external_lex_state = 25}, - [1631] = {.lex_state = 636, .external_lex_state = 35}, - [1632] = {.lex_state = 635, .external_lex_state = 22}, - [1633] = {.lex_state = 643, .external_lex_state = 23}, - [1634] = {.lex_state = 646, .external_lex_state = 28}, - [1635] = {.lex_state = 636, .external_lex_state = 45}, - [1636] = {.lex_state = 635, .external_lex_state = 22}, - [1637] = {.lex_state = 646, .external_lex_state = 43}, - [1638] = {.lex_state = 646, .external_lex_state = 38}, - [1639] = {.lex_state = 646, .external_lex_state = 43}, - [1640] = {.lex_state = 643, .external_lex_state = 23}, - [1641] = {.lex_state = 636, .external_lex_state = 42}, - [1642] = {.lex_state = 646, .external_lex_state = 43}, - [1643] = {.lex_state = 635, .external_lex_state = 23}, - [1644] = {.lex_state = 646, .external_lex_state = 38}, - [1645] = {.lex_state = 646, .external_lex_state = 38}, - [1646] = {.lex_state = 635, .external_lex_state = 10}, - [1647] = {.lex_state = 646, .external_lex_state = 28}, - [1648] = {.lex_state = 635, .external_lex_state = 22}, - [1649] = {.lex_state = 635, .external_lex_state = 22}, - [1650] = {.lex_state = 635, .external_lex_state = 22}, - [1651] = {.lex_state = 641, .external_lex_state = 25}, - [1652] = {.lex_state = 646, .external_lex_state = 44}, - [1653] = {.lex_state = 636, .external_lex_state = 40}, - [1654] = {.lex_state = 635, .external_lex_state = 22}, - [1655] = {.lex_state = 635, .external_lex_state = 22}, - [1656] = {.lex_state = 636, .external_lex_state = 40}, - [1657] = {.lex_state = 635, .external_lex_state = 10}, - [1658] = {.lex_state = 646, .external_lex_state = 38}, - [1659] = {.lex_state = 635, .external_lex_state = 22}, - [1660] = {.lex_state = 635, .external_lex_state = 22}, - [1661] = {.lex_state = 635, .external_lex_state = 22}, - [1662] = {.lex_state = 646, .external_lex_state = 38}, - [1663] = {.lex_state = 636, .external_lex_state = 42}, - [1664] = {.lex_state = 635, .external_lex_state = 22}, - [1665] = {.lex_state = 86, .external_lex_state = 20}, - [1666] = {.lex_state = 635, .external_lex_state = 22}, - [1667] = {.lex_state = 635, .external_lex_state = 22}, - [1668] = {.lex_state = 636, .external_lex_state = 35}, - [1669] = {.lex_state = 636, .external_lex_state = 35}, - [1670] = {.lex_state = 635, .external_lex_state = 22}, - [1671] = {.lex_state = 636, .external_lex_state = 35}, - [1672] = {.lex_state = 635, .external_lex_state = 22}, - [1673] = {.lex_state = 635, .external_lex_state = 22}, - [1674] = {.lex_state = 635, .external_lex_state = 23}, - [1675] = {.lex_state = 635, .external_lex_state = 22}, - [1676] = {.lex_state = 635, .external_lex_state = 22}, - [1677] = {.lex_state = 76, .external_lex_state = 46}, - [1678] = {.lex_state = 635, .external_lex_state = 23}, - [1679] = {.lex_state = 636, .external_lex_state = 39}, - [1680] = {.lex_state = 635, .external_lex_state = 23}, - [1681] = {.lex_state = 646, .external_lex_state = 28}, - [1682] = {.lex_state = 643, .external_lex_state = 10}, - [1683] = {.lex_state = 646, .external_lex_state = 28}, - [1684] = {.lex_state = 646, .external_lex_state = 38}, - [1685] = {.lex_state = 636, .external_lex_state = 42}, - [1686] = {.lex_state = 635, .external_lex_state = 25}, - [1687] = {.lex_state = 646, .external_lex_state = 38}, - [1688] = {.lex_state = 646, .external_lex_state = 28}, - [1689] = {.lex_state = 646, .external_lex_state = 28}, - [1690] = {.lex_state = 646, .external_lex_state = 28}, - [1691] = {.lex_state = 635, .external_lex_state = 24}, - [1692] = {.lex_state = 635, .external_lex_state = 23}, - [1693] = {.lex_state = 635, .external_lex_state = 23}, - [1694] = {.lex_state = 88, .external_lex_state = 20}, - [1695] = {.lex_state = 635, .external_lex_state = 23}, - [1696] = {.lex_state = 635, .external_lex_state = 23}, - [1697] = {.lex_state = 646, .external_lex_state = 28}, - [1698] = {.lex_state = 635, .external_lex_state = 23}, - [1699] = {.lex_state = 646, .external_lex_state = 28}, - [1700] = {.lex_state = 646, .external_lex_state = 38}, - [1701] = {.lex_state = 643, .external_lex_state = 10}, - [1702] = {.lex_state = 646, .external_lex_state = 28}, - [1703] = {.lex_state = 635, .external_lex_state = 25}, - [1704] = {.lex_state = 646, .external_lex_state = 38}, - [1705] = {.lex_state = 635, .external_lex_state = 23}, - [1706] = {.lex_state = 646, .external_lex_state = 38}, - [1707] = {.lex_state = 641, .external_lex_state = 10}, - [1708] = {.lex_state = 635, .external_lex_state = 23}, - [1709] = {.lex_state = 646, .external_lex_state = 38}, - [1710] = {.lex_state = 646, .external_lex_state = 47}, - [1711] = {.lex_state = 635, .external_lex_state = 23}, - [1712] = {.lex_state = 635, .external_lex_state = 23}, - [1713] = {.lex_state = 635, .external_lex_state = 10}, - [1714] = {.lex_state = 646, .external_lex_state = 38}, - [1715] = {.lex_state = 643, .external_lex_state = 23}, - [1716] = {.lex_state = 646, .external_lex_state = 47}, - [1717] = {.lex_state = 646, .external_lex_state = 38}, - [1718] = {.lex_state = 646, .external_lex_state = 38}, - [1719] = {.lex_state = 635, .external_lex_state = 24}, - [1720] = {.lex_state = 635, .external_lex_state = 23}, - [1721] = {.lex_state = 646, .external_lex_state = 38}, - [1722] = {.lex_state = 646, .external_lex_state = 38}, - [1723] = {.lex_state = 636, .external_lex_state = 42}, - [1724] = {.lex_state = 646, .external_lex_state = 38}, - [1725] = {.lex_state = 636, .external_lex_state = 39}, - [1726] = {.lex_state = 76, .external_lex_state = 46}, - [1727] = {.lex_state = 635, .external_lex_state = 23}, - [1728] = {.lex_state = 643, .external_lex_state = 23}, - [1729] = {.lex_state = 643, .external_lex_state = 22}, - [1730] = {.lex_state = 646, .external_lex_state = 38}, - [1731] = {.lex_state = 643, .external_lex_state = 22}, - [1732] = {.lex_state = 636, .external_lex_state = 39}, - [1733] = {.lex_state = 76, .external_lex_state = 46}, - [1734] = {.lex_state = 635, .external_lex_state = 23}, - [1735] = {.lex_state = 643, .external_lex_state = 23}, - [1736] = {.lex_state = 635, .external_lex_state = 23}, - [1737] = {.lex_state = 643, .external_lex_state = 22}, - [1738] = {.lex_state = 76, .external_lex_state = 46}, - [1739] = {.lex_state = 646, .external_lex_state = 38}, - [1740] = {.lex_state = 646, .external_lex_state = 28}, - [1741] = {.lex_state = 646, .external_lex_state = 47}, - [1742] = {.lex_state = 635, .external_lex_state = 23}, - [1743] = {.lex_state = 643, .external_lex_state = 22}, - [1744] = {.lex_state = 643, .external_lex_state = 22}, - [1745] = {.lex_state = 635, .external_lex_state = 23}, - [1746] = {.lex_state = 635, .external_lex_state = 10}, - [1747] = {.lex_state = 635, .external_lex_state = 23}, - [1748] = {.lex_state = 643, .external_lex_state = 10}, - [1749] = {.lex_state = 636, .external_lex_state = 48}, - [1750] = {.lex_state = 636, .external_lex_state = 42}, - [1751] = {.lex_state = 646, .external_lex_state = 47}, - [1752] = {.lex_state = 646, .external_lex_state = 47}, - [1753] = {.lex_state = 635, .external_lex_state = 23}, - [1754] = {.lex_state = 646, .external_lex_state = 47}, - [1755] = {.lex_state = 641, .external_lex_state = 10}, - [1756] = {.lex_state = 635, .external_lex_state = 23}, - [1757] = {.lex_state = 649, .external_lex_state = 48}, - [1758] = {.lex_state = 635, .external_lex_state = 10}, - [1759] = {.lex_state = 649, .external_lex_state = 48}, - [1760] = {.lex_state = 649, .external_lex_state = 48}, - [1761] = {.lex_state = 649, .external_lex_state = 48}, - [1762] = {.lex_state = 646, .external_lex_state = 28}, - [1763] = {.lex_state = 646, .external_lex_state = 44}, - [1764] = {.lex_state = 636, .external_lex_state = 39}, - [1765] = {.lex_state = 76, .external_lex_state = 46}, - [1766] = {.lex_state = 635, .external_lex_state = 26}, - [1767] = {.lex_state = 649, .external_lex_state = 48}, - [1768] = {.lex_state = 636, .external_lex_state = 39}, - [1769] = {.lex_state = 636, .external_lex_state = 45}, - [1770] = {.lex_state = 643, .external_lex_state = 24}, - [1771] = {.lex_state = 635, .external_lex_state = 10}, - [1772] = {.lex_state = 635, .external_lex_state = 23}, - [1773] = {.lex_state = 635, .external_lex_state = 10}, - [1774] = {.lex_state = 635, .external_lex_state = 23}, - [1775] = {.lex_state = 636, .external_lex_state = 39}, - [1776] = {.lex_state = 646, .external_lex_state = 44}, - [1777] = {.lex_state = 635, .external_lex_state = 10}, - [1778] = {.lex_state = 646, .external_lex_state = 28}, - [1779] = {.lex_state = 635, .external_lex_state = 24}, - [1780] = {.lex_state = 636, .external_lex_state = 39}, - [1781] = {.lex_state = 646, .external_lex_state = 28}, - [1782] = {.lex_state = 636, .external_lex_state = 49}, - [1783] = {.lex_state = 635, .external_lex_state = 10}, - [1784] = {.lex_state = 635, .external_lex_state = 10}, - [1785] = {.lex_state = 635, .external_lex_state = 10}, - [1786] = {.lex_state = 643, .external_lex_state = 24}, - [1787] = {.lex_state = 635, .external_lex_state = 10}, - [1788] = {.lex_state = 646, .external_lex_state = 28}, - [1789] = {.lex_state = 635, .external_lex_state = 10}, - [1790] = {.lex_state = 643, .external_lex_state = 24}, - [1791] = {.lex_state = 635, .external_lex_state = 10}, - [1792] = {.lex_state = 635, .external_lex_state = 25}, - [1793] = {.lex_state = 646, .external_lex_state = 28}, - [1794] = {.lex_state = 646, .external_lex_state = 28}, - [1795] = {.lex_state = 646, .external_lex_state = 28}, - [1796] = {.lex_state = 646, .external_lex_state = 28}, - [1797] = {.lex_state = 635, .external_lex_state = 23}, - [1798] = {.lex_state = 646, .external_lex_state = 28}, - [1799] = {.lex_state = 635, .external_lex_state = 23}, - [1800] = {.lex_state = 636, .external_lex_state = 42}, - [1801] = {.lex_state = 646, .external_lex_state = 28}, - [1802] = {.lex_state = 635, .external_lex_state = 10}, - [1803] = {.lex_state = 636, .external_lex_state = 49}, - [1804] = {.lex_state = 643, .external_lex_state = 25}, - [1805] = {.lex_state = 636, .external_lex_state = 45}, - [1806] = {.lex_state = 635, .external_lex_state = 23}, - [1807] = {.lex_state = 635, .external_lex_state = 10}, - [1808] = {.lex_state = 635, .external_lex_state = 23}, - [1809] = {.lex_state = 646, .external_lex_state = 28}, - [1810] = {.lex_state = 635, .external_lex_state = 23}, - [1811] = {.lex_state = 646, .external_lex_state = 28}, - [1812] = {.lex_state = 636, .external_lex_state = 42}, - [1813] = {.lex_state = 635, .external_lex_state = 10}, - [1814] = {.lex_state = 635, .external_lex_state = 23}, - [1815] = {.lex_state = 635, .external_lex_state = 23}, - [1816] = {.lex_state = 635, .external_lex_state = 23}, - [1817] = {.lex_state = 635, .external_lex_state = 25}, - [1818] = {.lex_state = 636, .external_lex_state = 49}, - [1819] = {.lex_state = 643, .external_lex_state = 23}, - [1820] = {.lex_state = 636, .external_lex_state = 20}, - [1821] = {.lex_state = 636, .external_lex_state = 45}, - [1822] = {.lex_state = 646, .external_lex_state = 28}, - [1823] = {.lex_state = 646, .external_lex_state = 43}, - [1824] = {.lex_state = 646, .external_lex_state = 28}, - [1825] = {.lex_state = 635, .external_lex_state = 23}, - [1826] = {.lex_state = 646, .external_lex_state = 28}, - [1827] = {.lex_state = 643, .external_lex_state = 23}, - [1828] = {.lex_state = 643, .external_lex_state = 25}, - [1829] = {.lex_state = 636, .external_lex_state = 42}, - [1830] = {.lex_state = 635, .external_lex_state = 23}, - [1831] = {.lex_state = 635, .external_lex_state = 23}, - [1832] = {.lex_state = 646, .external_lex_state = 28}, - [1833] = {.lex_state = 643, .external_lex_state = 23}, - [1834] = {.lex_state = 635, .external_lex_state = 23}, - [1835] = {.lex_state = 646, .external_lex_state = 28}, - [1836] = {.lex_state = 635, .external_lex_state = 23}, - [1837] = {.lex_state = 643, .external_lex_state = 25}, - [1838] = {.lex_state = 636, .external_lex_state = 49}, - [1839] = {.lex_state = 635, .external_lex_state = 23}, - [1840] = {.lex_state = 635, .external_lex_state = 23}, - [1841] = {.lex_state = 643, .external_lex_state = 23}, - [1842] = {.lex_state = 646, .external_lex_state = 44}, - [1843] = {.lex_state = 643, .external_lex_state = 23}, - [1844] = {.lex_state = 646, .external_lex_state = 43}, - [1845] = {.lex_state = 635, .external_lex_state = 26}, - [1846] = {.lex_state = 646, .external_lex_state = 43}, - [1847] = {.lex_state = 635, .external_lex_state = 10}, - [1848] = {.lex_state = 636, .external_lex_state = 45}, - [1849] = {.lex_state = 635, .external_lex_state = 23}, - [1850] = {.lex_state = 635, .external_lex_state = 23}, - [1851] = {.lex_state = 646, .external_lex_state = 28}, - [1852] = {.lex_state = 646, .external_lex_state = 28}, - [1853] = {.lex_state = 636, .external_lex_state = 45}, - [1854] = {.lex_state = 646, .external_lex_state = 22}, - [1855] = {.lex_state = 646, .external_lex_state = 22}, - [1856] = {.lex_state = 646, .external_lex_state = 22}, - [1857] = {.lex_state = 646, .external_lex_state = 22}, - [1858] = {.lex_state = 646, .external_lex_state = 28}, - [1859] = {.lex_state = 646, .external_lex_state = 28}, - [1860] = {.lex_state = 635, .external_lex_state = 25}, - [1861] = {.lex_state = 636, .external_lex_state = 42}, - [1862] = {.lex_state = 636, .external_lex_state = 42}, - [1863] = {.lex_state = 635, .external_lex_state = 25}, - [1864] = {.lex_state = 636, .external_lex_state = 20}, - [1865] = {.lex_state = 636, .external_lex_state = 42}, - [1866] = {.lex_state = 636, .external_lex_state = 42}, - [1867] = {.lex_state = 636, .external_lex_state = 42}, - [1868] = {.lex_state = 635, .external_lex_state = 25}, - [1869] = {.lex_state = 646, .external_lex_state = 43}, - [1870] = {.lex_state = 643, .external_lex_state = 10}, - [1871] = {.lex_state = 646, .external_lex_state = 28}, - [1872] = {.lex_state = 76, .external_lex_state = 46}, - [1873] = {.lex_state = 646, .external_lex_state = 28}, - [1874] = {.lex_state = 643, .external_lex_state = 26}, - [1875] = {.lex_state = 643, .external_lex_state = 23}, - [1876] = {.lex_state = 635, .external_lex_state = 24}, - [1877] = {.lex_state = 635, .external_lex_state = 24}, - [1878] = {.lex_state = 636, .external_lex_state = 39}, - [1879] = {.lex_state = 643, .external_lex_state = 23}, - [1880] = {.lex_state = 643, .external_lex_state = 23}, - [1881] = {.lex_state = 76, .external_lex_state = 46}, - [1882] = {.lex_state = 643, .external_lex_state = 10}, - [1883] = {.lex_state = 76, .external_lex_state = 46}, - [1884] = {.lex_state = 635, .external_lex_state = 25}, - [1885] = {.lex_state = 646, .external_lex_state = 23}, - [1886] = {.lex_state = 636, .external_lex_state = 49}, - [1887] = {.lex_state = 646, .external_lex_state = 44}, - [1888] = {.lex_state = 646, .external_lex_state = 28}, - [1889] = {.lex_state = 646, .external_lex_state = 44}, - [1890] = {.lex_state = 635, .external_lex_state = 24}, - [1891] = {.lex_state = 646, .external_lex_state = 28}, - [1892] = {.lex_state = 646, .external_lex_state = 28}, - [1893] = {.lex_state = 643, .external_lex_state = 23}, - [1894] = {.lex_state = 636, .external_lex_state = 20}, - [1895] = {.lex_state = 635, .external_lex_state = 25}, - [1896] = {.lex_state = 635, .external_lex_state = 24}, - [1897] = {.lex_state = 635, .external_lex_state = 24}, - [1898] = {.lex_state = 635, .external_lex_state = 25}, - [1899] = {.lex_state = 636, .external_lex_state = 20}, - [1900] = {.lex_state = 636, .external_lex_state = 20}, - [1901] = {.lex_state = 636, .external_lex_state = 20}, - [1902] = {.lex_state = 636, .external_lex_state = 20}, - [1903] = {.lex_state = 87, .external_lex_state = 20}, - [1904] = {.lex_state = 646, .external_lex_state = 28}, - [1905] = {.lex_state = 635, .external_lex_state = 24}, - [1906] = {.lex_state = 646, .external_lex_state = 47}, - [1907] = {.lex_state = 635, .external_lex_state = 24}, - [1908] = {.lex_state = 646, .external_lex_state = 44}, - [1909] = {.lex_state = 646, .external_lex_state = 44}, - [1910] = {.lex_state = 646, .external_lex_state = 28}, - [1911] = {.lex_state = 643, .external_lex_state = 26}, - [1912] = {.lex_state = 636, .external_lex_state = 20}, - [1913] = {.lex_state = 646, .external_lex_state = 28}, - [1914] = {.lex_state = 646, .external_lex_state = 47}, - [1915] = {.lex_state = 635, .external_lex_state = 24}, - [1916] = {.lex_state = 635, .external_lex_state = 26}, - [1917] = {.lex_state = 76, .external_lex_state = 46}, - [1918] = {.lex_state = 635, .external_lex_state = 25}, - [1919] = {.lex_state = 635, .external_lex_state = 24}, - [1920] = {.lex_state = 646, .external_lex_state = 44}, - [1921] = {.lex_state = 646, .external_lex_state = 28}, - [1922] = {.lex_state = 646, .external_lex_state = 47}, - [1923] = {.lex_state = 643, .external_lex_state = 10}, - [1924] = {.lex_state = 643, .external_lex_state = 10}, - [1925] = {.lex_state = 635, .external_lex_state = 24}, - [1926] = {.lex_state = 635, .external_lex_state = 24}, - [1927] = {.lex_state = 635, .external_lex_state = 25}, - [1928] = {.lex_state = 635, .external_lex_state = 25}, - [1929] = {.lex_state = 635, .external_lex_state = 25}, - [1930] = {.lex_state = 646, .external_lex_state = 23}, - [1931] = {.lex_state = 635, .external_lex_state = 24}, - [1932] = {.lex_state = 636, .external_lex_state = 20}, - [1933] = {.lex_state = 635, .external_lex_state = 24}, - [1934] = {.lex_state = 635, .external_lex_state = 25}, - [1935] = {.lex_state = 635, .external_lex_state = 25}, - [1936] = {.lex_state = 635, .external_lex_state = 25}, - [1937] = {.lex_state = 635, .external_lex_state = 10}, - [1938] = {.lex_state = 646, .external_lex_state = 43}, - [1939] = {.lex_state = 646, .external_lex_state = 43}, - [1940] = {.lex_state = 646, .external_lex_state = 23}, - [1941] = {.lex_state = 646, .external_lex_state = 23}, - [1942] = {.lex_state = 636, .external_lex_state = 20}, - [1943] = {.lex_state = 635, .external_lex_state = 25}, - [1944] = {.lex_state = 635, .external_lex_state = 25}, - [1945] = {.lex_state = 635, .external_lex_state = 25}, - [1946] = {.lex_state = 635, .external_lex_state = 25}, - [1947] = {.lex_state = 636, .external_lex_state = 42}, - [1948] = {.lex_state = 643, .external_lex_state = 10}, - [1949] = {.lex_state = 646, .external_lex_state = 43}, - [1950] = {.lex_state = 635, .external_lex_state = 25}, - [1951] = {.lex_state = 635, .external_lex_state = 24}, - [1952] = {.lex_state = 646, .external_lex_state = 43}, - [1953] = {.lex_state = 635, .external_lex_state = 25}, - [1954] = {.lex_state = 646, .external_lex_state = 28}, - [1955] = {.lex_state = 635, .external_lex_state = 25}, - [1956] = {.lex_state = 643, .external_lex_state = 26}, - [1957] = {.lex_state = 635, .external_lex_state = 24}, - [1958] = {.lex_state = 646, .external_lex_state = 28}, - [1959] = {.lex_state = 646, .external_lex_state = 43}, - [1960] = {.lex_state = 635, .external_lex_state = 24}, - [1961] = {.lex_state = 646, .external_lex_state = 44}, - [1962] = {.lex_state = 636, .external_lex_state = 20}, - [1963] = {.lex_state = 635, .external_lex_state = 24}, - [1964] = {.lex_state = 635, .external_lex_state = 24}, - [1965] = {.lex_state = 636, .external_lex_state = 50}, - [1966] = {.lex_state = 635, .external_lex_state = 25}, - [1967] = {.lex_state = 646, .external_lex_state = 28}, - [1968] = {.lex_state = 646, .external_lex_state = 28}, - [1969] = {.lex_state = 643, .external_lex_state = 23}, - [1970] = {.lex_state = 635, .external_lex_state = 24}, - [1971] = {.lex_state = 636, .external_lex_state = 20}, - [1972] = {.lex_state = 636, .external_lex_state = 20}, - [1973] = {.lex_state = 636, .external_lex_state = 20}, - [1974] = {.lex_state = 635, .external_lex_state = 26}, - [1975] = {.lex_state = 636, .external_lex_state = 20}, - [1976] = {.lex_state = 636, .external_lex_state = 20}, - [1977] = {.lex_state = 646, .external_lex_state = 23}, - [1978] = {.lex_state = 646, .external_lex_state = 23}, - [1979] = {.lex_state = 646, .external_lex_state = 47}, - [1980] = {.lex_state = 636, .external_lex_state = 20}, - [1981] = {.lex_state = 646, .external_lex_state = 22}, - [1982] = {.lex_state = 646, .external_lex_state = 22}, - [1983] = {.lex_state = 646, .external_lex_state = 47}, - [1984] = {.lex_state = 636, .external_lex_state = 20}, - [1985] = {.lex_state = 636, .external_lex_state = 20}, - [1986] = {.lex_state = 646, .external_lex_state = 23}, - [1987] = {.lex_state = 646, .external_lex_state = 22}, - [1988] = {.lex_state = 636, .external_lex_state = 50}, - [1989] = {.lex_state = 646, .external_lex_state = 47}, - [1990] = {.lex_state = 646, .external_lex_state = 47}, - [1991] = {.lex_state = 646, .external_lex_state = 23}, - [1992] = {.lex_state = 636, .external_lex_state = 20}, - [1993] = {.lex_state = 636, .external_lex_state = 20}, - [1994] = {.lex_state = 635, .external_lex_state = 26}, - [1995] = {.lex_state = 646, .external_lex_state = 43}, - [1996] = {.lex_state = 646, .external_lex_state = 47}, - [1997] = {.lex_state = 636, .external_lex_state = 45}, - [1998] = {.lex_state = 635, .external_lex_state = 26}, - [1999] = {.lex_state = 636, .external_lex_state = 49}, - [2000] = {.lex_state = 636, .external_lex_state = 49}, - [2001] = {.lex_state = 636, .external_lex_state = 20}, - [2002] = {.lex_state = 636, .external_lex_state = 20}, - [2003] = {.lex_state = 643, .external_lex_state = 24}, - [2004] = {.lex_state = 646, .external_lex_state = 43}, - [2005] = {.lex_state = 646, .external_lex_state = 43}, - [2006] = {.lex_state = 646, .external_lex_state = 43}, - [2007] = {.lex_state = 646, .external_lex_state = 43}, - [2008] = {.lex_state = 636, .external_lex_state = 42}, - [2009] = {.lex_state = 635, .external_lex_state = 26}, - [2010] = {.lex_state = 636, .external_lex_state = 48}, - [2011] = {.lex_state = 646, .external_lex_state = 43}, - [2012] = {.lex_state = 646, .external_lex_state = 43}, - [2013] = {.lex_state = 636, .external_lex_state = 49}, - [2014] = {.lex_state = 635, .external_lex_state = 26}, - [2015] = {.lex_state = 646, .external_lex_state = 44}, - [2016] = {.lex_state = 635, .external_lex_state = 10}, - [2017] = {.lex_state = 636, .external_lex_state = 20}, - [2018] = {.lex_state = 635, .external_lex_state = 26}, - [2019] = {.lex_state = 636, .external_lex_state = 48}, - [2020] = {.lex_state = 635, .external_lex_state = 26}, - [2021] = {.lex_state = 636, .external_lex_state = 20}, - [2022] = {.lex_state = 636, .external_lex_state = 45}, - [2023] = {.lex_state = 635, .external_lex_state = 26}, - [2024] = {.lex_state = 636, .external_lex_state = 50}, - [2025] = {.lex_state = 636, .external_lex_state = 50}, - [2026] = {.lex_state = 635, .external_lex_state = 26}, - [2027] = {.lex_state = 646, .external_lex_state = 43}, - [2028] = {.lex_state = 636, .external_lex_state = 50}, - [2029] = {.lex_state = 635, .external_lex_state = 26}, - [2030] = {.lex_state = 636, .external_lex_state = 20}, - [2031] = {.lex_state = 646, .external_lex_state = 43}, - [2032] = {.lex_state = 646, .external_lex_state = 22}, - [2033] = {.lex_state = 636, .external_lex_state = 20}, - [2034] = {.lex_state = 76, .external_lex_state = 41}, - [2035] = {.lex_state = 646, .external_lex_state = 43}, - [2036] = {.lex_state = 636, .external_lex_state = 48}, - [2037] = {.lex_state = 646, .external_lex_state = 43}, - [2038] = {.lex_state = 646, .external_lex_state = 44}, - [2039] = {.lex_state = 636, .external_lex_state = 45}, - [2040] = {.lex_state = 636, .external_lex_state = 49}, - [2041] = {.lex_state = 636, .external_lex_state = 20}, - [2042] = {.lex_state = 646, .external_lex_state = 43}, - [2043] = {.lex_state = 643, .external_lex_state = 25}, - [2044] = {.lex_state = 635, .external_lex_state = 10}, - [2045] = {.lex_state = 643, .external_lex_state = 25}, - [2046] = {.lex_state = 635, .external_lex_state = 26}, - [2047] = {.lex_state = 646, .external_lex_state = 44}, - [2048] = {.lex_state = 635, .external_lex_state = 26}, - [2049] = {.lex_state = 646, .external_lex_state = 22}, - [2050] = {.lex_state = 646, .external_lex_state = 44}, - [2051] = {.lex_state = 643, .external_lex_state = 25}, - [2052] = {.lex_state = 636, .external_lex_state = 51}, - [2053] = {.lex_state = 643, .external_lex_state = 25}, - [2054] = {.lex_state = 646, .external_lex_state = 44}, - [2055] = {.lex_state = 643, .external_lex_state = 25}, - [2056] = {.lex_state = 635, .external_lex_state = 10}, - [2057] = {.lex_state = 646, .external_lex_state = 22}, - [2058] = {.lex_state = 636, .external_lex_state = 50}, - [2059] = {.lex_state = 636, .external_lex_state = 45}, - [2060] = {.lex_state = 635, .external_lex_state = 26}, - [2061] = {.lex_state = 646, .external_lex_state = 22}, - [2062] = {.lex_state = 76, .external_lex_state = 41}, - [2063] = {.lex_state = 646, .external_lex_state = 44}, - [2064] = {.lex_state = 636, .external_lex_state = 42}, - [2065] = {.lex_state = 643, .external_lex_state = 24}, - [2066] = {.lex_state = 646, .external_lex_state = 44}, - [2067] = {.lex_state = 646, .external_lex_state = 43}, - [2068] = {.lex_state = 646, .external_lex_state = 22}, - [2069] = {.lex_state = 646, .external_lex_state = 44}, - [2070] = {.lex_state = 635, .external_lex_state = 26}, - [2071] = {.lex_state = 636, .external_lex_state = 51}, - [2072] = {.lex_state = 635, .external_lex_state = 26}, - [2073] = {.lex_state = 646, .external_lex_state = 44}, - [2074] = {.lex_state = 636, .external_lex_state = 51}, - [2075] = {.lex_state = 635, .external_lex_state = 26}, - [2076] = {.lex_state = 636, .external_lex_state = 45}, - [2077] = {.lex_state = 76, .external_lex_state = 41}, - [2078] = {.lex_state = 636, .external_lex_state = 20}, - [2079] = {.lex_state = 646, .external_lex_state = 44}, - [2080] = {.lex_state = 635, .external_lex_state = 26}, - [2081] = {.lex_state = 646, .external_lex_state = 44}, - [2082] = {.lex_state = 636, .external_lex_state = 52}, - [2083] = {.lex_state = 646, .external_lex_state = 22}, - [2084] = {.lex_state = 636, .external_lex_state = 42}, - [2085] = {.lex_state = 636, .external_lex_state = 20}, - [2086] = {.lex_state = 646, .external_lex_state = 43}, - [2087] = {.lex_state = 646, .external_lex_state = 44}, - [2088] = {.lex_state = 636, .external_lex_state = 45}, - [2089] = {.lex_state = 646, .external_lex_state = 47}, - [2090] = {.lex_state = 636, .external_lex_state = 20}, - [2091] = {.lex_state = 635, .external_lex_state = 26}, - [2092] = {.lex_state = 636, .external_lex_state = 51}, - [2093] = {.lex_state = 646, .external_lex_state = 44}, - [2094] = {.lex_state = 76, .external_lex_state = 41}, - [2095] = {.lex_state = 636, .external_lex_state = 45}, - [2096] = {.lex_state = 636, .external_lex_state = 20}, - [2097] = {.lex_state = 635, .external_lex_state = 26}, - [2098] = {.lex_state = 636, .external_lex_state = 20}, - [2099] = {.lex_state = 643, .external_lex_state = 24}, - [2100] = {.lex_state = 646, .external_lex_state = 22}, - [2101] = {.lex_state = 636, .external_lex_state = 42}, - [2102] = {.lex_state = 646, .external_lex_state = 44}, - [2103] = {.lex_state = 643, .external_lex_state = 24}, - [2104] = {.lex_state = 643, .external_lex_state = 24}, - [2105] = {.lex_state = 646, .external_lex_state = 47}, - [2106] = {.lex_state = 636, .external_lex_state = 51}, - [2107] = {.lex_state = 636, .external_lex_state = 20}, - [2108] = {.lex_state = 643, .external_lex_state = 26}, - [2109] = {.lex_state = 636, .external_lex_state = 20}, - [2110] = {.lex_state = 636, .external_lex_state = 20}, - [2111] = {.lex_state = 646, .external_lex_state = 23}, - [2112] = {.lex_state = 636, .external_lex_state = 52}, - [2113] = {.lex_state = 636, .external_lex_state = 52}, - [2114] = {.lex_state = 636, .external_lex_state = 53}, - [2115] = {.lex_state = 636, .external_lex_state = 52}, - [2116] = {.lex_state = 636, .external_lex_state = 52}, - [2117] = {.lex_state = 646, .external_lex_state = 23}, - [2118] = {.lex_state = 646, .external_lex_state = 25}, - [2119] = {.lex_state = 646, .external_lex_state = 25}, - [2120] = {.lex_state = 636, .external_lex_state = 52}, - [2121] = {.lex_state = 643, .external_lex_state = 26}, - [2122] = {.lex_state = 643, .external_lex_state = 26}, - [2123] = {.lex_state = 646, .external_lex_state = 23}, - [2124] = {.lex_state = 646, .external_lex_state = 23}, - [2125] = {.lex_state = 646, .external_lex_state = 23}, - [2126] = {.lex_state = 646, .external_lex_state = 47}, - [2127] = {.lex_state = 646, .external_lex_state = 47}, - [2128] = {.lex_state = 646, .external_lex_state = 47}, - [2129] = {.lex_state = 646, .external_lex_state = 22}, - [2130] = {.lex_state = 646, .external_lex_state = 22}, - [2131] = {.lex_state = 636, .external_lex_state = 53}, - [2132] = {.lex_state = 646, .external_lex_state = 25}, - [2133] = {.lex_state = 646, .external_lex_state = 47}, - [2134] = {.lex_state = 646, .external_lex_state = 25}, - [2135] = {.lex_state = 646, .external_lex_state = 22}, - [2136] = {.lex_state = 646, .external_lex_state = 23}, - [2137] = {.lex_state = 646, .external_lex_state = 47}, - [2138] = {.lex_state = 646, .external_lex_state = 47}, - [2139] = {.lex_state = 646, .external_lex_state = 23}, - [2140] = {.lex_state = 646, .external_lex_state = 47}, - [2141] = {.lex_state = 636, .external_lex_state = 20}, - [2142] = {.lex_state = 646, .external_lex_state = 24}, - [2143] = {.lex_state = 636, .external_lex_state = 48}, - [2144] = {.lex_state = 646, .external_lex_state = 24}, - [2145] = {.lex_state = 649, .external_lex_state = 48}, - [2146] = {.lex_state = 636, .external_lex_state = 20}, - [2147] = {.lex_state = 646, .external_lex_state = 23}, - [2148] = {.lex_state = 636, .external_lex_state = 20}, - [2149] = {.lex_state = 636, .external_lex_state = 48}, - [2150] = {.lex_state = 636, .external_lex_state = 53}, - [2151] = {.lex_state = 649, .external_lex_state = 48}, - [2152] = {.lex_state = 646, .external_lex_state = 47}, - [2153] = {.lex_state = 636, .external_lex_state = 48}, - [2154] = {.lex_state = 646, .external_lex_state = 23}, - [2155] = {.lex_state = 636, .external_lex_state = 20}, - [2156] = {.lex_state = 646, .external_lex_state = 47}, - [2157] = {.lex_state = 636, .external_lex_state = 20}, - [2158] = {.lex_state = 646, .external_lex_state = 22}, - [2159] = {.lex_state = 646, .external_lex_state = 22}, - [2160] = {.lex_state = 636, .external_lex_state = 48}, - [2161] = {.lex_state = 636, .external_lex_state = 48}, - [2162] = {.lex_state = 646, .external_lex_state = 22}, - [2163] = {.lex_state = 636, .external_lex_state = 20}, - [2164] = {.lex_state = 646, .external_lex_state = 24}, - [2165] = {.lex_state = 646, .external_lex_state = 47}, - [2166] = {.lex_state = 643, .external_lex_state = 26}, - [2167] = {.lex_state = 646, .external_lex_state = 23}, - [2168] = {.lex_state = 646, .external_lex_state = 47}, - [2169] = {.lex_state = 643, .external_lex_state = 26}, - [2170] = {.lex_state = 636, .external_lex_state = 53}, - [2171] = {.lex_state = 646, .external_lex_state = 47}, - [2172] = {.lex_state = 646, .external_lex_state = 23}, - [2173] = {.lex_state = 646, .external_lex_state = 47}, - [2174] = {.lex_state = 646, .external_lex_state = 24}, - [2175] = {.lex_state = 646, .external_lex_state = 22}, - [2176] = {.lex_state = 646, .external_lex_state = 23}, - [2177] = {.lex_state = 636, .external_lex_state = 51}, - [2178] = {.lex_state = 636, .external_lex_state = 20}, - [2179] = {.lex_state = 646, .external_lex_state = 23}, - [2180] = {.lex_state = 646, .external_lex_state = 22}, - [2181] = {.lex_state = 646, .external_lex_state = 22}, - [2182] = {.lex_state = 646, .external_lex_state = 22}, - [2183] = {.lex_state = 636, .external_lex_state = 20}, - [2184] = {.lex_state = 636, .external_lex_state = 20}, - [2185] = {.lex_state = 636, .external_lex_state = 20}, - [2186] = {.lex_state = 636, .external_lex_state = 20}, - [2187] = {.lex_state = 636, .external_lex_state = 20}, - [2188] = {.lex_state = 636, .external_lex_state = 20}, - [2189] = {.lex_state = 636, .external_lex_state = 20}, - [2190] = {.lex_state = 636, .external_lex_state = 20}, - [2191] = {.lex_state = 636, .external_lex_state = 20}, - [2192] = {.lex_state = 636, .external_lex_state = 20}, - [2193] = {.lex_state = 636, .external_lex_state = 53}, - [2194] = {.lex_state = 646, .external_lex_state = 22}, - [2195] = {.lex_state = 636, .external_lex_state = 50}, - [2196] = {.lex_state = 646, .external_lex_state = 22}, - [2197] = {.lex_state = 636, .external_lex_state = 20}, - [2198] = {.lex_state = 636, .external_lex_state = 20}, - [2199] = {.lex_state = 636, .external_lex_state = 20}, - [2200] = {.lex_state = 636, .external_lex_state = 20}, - [2201] = {.lex_state = 636, .external_lex_state = 20}, - [2202] = {.lex_state = 636, .external_lex_state = 20}, - [2203] = {.lex_state = 636, .external_lex_state = 20}, - [2204] = {.lex_state = 636, .external_lex_state = 20}, - [2205] = {.lex_state = 636, .external_lex_state = 20}, - [2206] = {.lex_state = 636, .external_lex_state = 20}, - [2207] = {.lex_state = 636, .external_lex_state = 20}, - [2208] = {.lex_state = 636, .external_lex_state = 20}, - [2209] = {.lex_state = 646, .external_lex_state = 23}, - [2210] = {.lex_state = 646, .external_lex_state = 22}, - [2211] = {.lex_state = 636, .external_lex_state = 20}, - [2212] = {.lex_state = 646, .external_lex_state = 22}, - [2213] = {.lex_state = 636, .external_lex_state = 20}, - [2214] = {.lex_state = 646, .external_lex_state = 22}, - [2215] = {.lex_state = 646, .external_lex_state = 22}, - [2216] = {.lex_state = 636, .external_lex_state = 20}, - [2217] = {.lex_state = 646, .external_lex_state = 22}, - [2218] = {.lex_state = 646, .external_lex_state = 22}, - [2219] = {.lex_state = 636, .external_lex_state = 20}, - [2220] = {.lex_state = 646, .external_lex_state = 26}, - [2221] = {.lex_state = 646, .external_lex_state = 26}, - [2222] = {.lex_state = 636, .external_lex_state = 20}, - [2223] = {.lex_state = 636, .external_lex_state = 50}, - [2224] = {.lex_state = 636, .external_lex_state = 20}, - [2225] = {.lex_state = 636, .external_lex_state = 20}, - [2226] = {.lex_state = 636, .external_lex_state = 20}, - [2227] = {.lex_state = 636, .external_lex_state = 20}, - [2228] = {.lex_state = 646, .external_lex_state = 23}, - [2229] = {.lex_state = 636, .external_lex_state = 20}, - [2230] = {.lex_state = 636, .external_lex_state = 20}, - [2231] = {.lex_state = 646, .external_lex_state = 22}, - [2232] = {.lex_state = 646, .external_lex_state = 10}, - [2233] = {.lex_state = 636, .external_lex_state = 20}, - [2234] = {.lex_state = 646, .external_lex_state = 22}, - [2235] = {.lex_state = 646, .external_lex_state = 22}, - [2236] = {.lex_state = 646, .external_lex_state = 22}, - [2237] = {.lex_state = 646, .external_lex_state = 22}, - [2238] = {.lex_state = 646, .external_lex_state = 22}, - [2239] = {.lex_state = 646, .external_lex_state = 23}, - [2240] = {.lex_state = 646, .external_lex_state = 22}, - [2241] = {.lex_state = 636, .external_lex_state = 20}, - [2242] = {.lex_state = 646, .external_lex_state = 23}, - [2243] = {.lex_state = 646, .external_lex_state = 22}, - [2244] = {.lex_state = 636, .external_lex_state = 20}, - [2245] = {.lex_state = 646, .external_lex_state = 22}, - [2246] = {.lex_state = 646, .external_lex_state = 22}, - [2247] = {.lex_state = 646, .external_lex_state = 22}, - [2248] = {.lex_state = 646, .external_lex_state = 22}, - [2249] = {.lex_state = 636, .external_lex_state = 20}, - [2250] = {.lex_state = 646, .external_lex_state = 22}, - [2251] = {.lex_state = 636, .external_lex_state = 20}, - [2252] = {.lex_state = 636, .external_lex_state = 20}, - [2253] = {.lex_state = 646, .external_lex_state = 22}, - [2254] = {.lex_state = 646, .external_lex_state = 22}, - [2255] = {.lex_state = 636, .external_lex_state = 20}, - [2256] = {.lex_state = 646, .external_lex_state = 22}, - [2257] = {.lex_state = 636, .external_lex_state = 20}, - [2258] = {.lex_state = 636, .external_lex_state = 20}, - [2259] = {.lex_state = 636, .external_lex_state = 20}, - [2260] = {.lex_state = 646, .external_lex_state = 22}, - [2261] = {.lex_state = 646, .external_lex_state = 22}, - [2262] = {.lex_state = 636, .external_lex_state = 20}, - [2263] = {.lex_state = 636, .external_lex_state = 20}, - [2264] = {.lex_state = 649, .external_lex_state = 48}, - [2265] = {.lex_state = 636, .external_lex_state = 20}, - [2266] = {.lex_state = 646, .external_lex_state = 22}, - [2267] = {.lex_state = 649, .external_lex_state = 48}, - [2268] = {.lex_state = 636, .external_lex_state = 20}, - [2269] = {.lex_state = 636, .external_lex_state = 20}, - [2270] = {.lex_state = 636, .external_lex_state = 20}, - [2271] = {.lex_state = 646, .external_lex_state = 22}, - [2272] = {.lex_state = 636, .external_lex_state = 20}, - [2273] = {.lex_state = 636, .external_lex_state = 41}, - [2274] = {.lex_state = 636, .external_lex_state = 20}, - [2275] = {.lex_state = 649, .external_lex_state = 48}, - [2276] = {.lex_state = 646, .external_lex_state = 22}, - [2277] = {.lex_state = 636, .external_lex_state = 20}, - [2278] = {.lex_state = 636, .external_lex_state = 20}, - [2279] = {.lex_state = 636, .external_lex_state = 20}, - [2280] = {.lex_state = 646, .external_lex_state = 22}, - [2281] = {.lex_state = 636, .external_lex_state = 20}, - [2282] = {.lex_state = 636, .external_lex_state = 20}, - [2283] = {.lex_state = 649, .external_lex_state = 48}, - [2284] = {.lex_state = 636, .external_lex_state = 20}, - [2285] = {.lex_state = 636, .external_lex_state = 20}, - [2286] = {.lex_state = 646, .external_lex_state = 23}, - [2287] = {.lex_state = 636, .external_lex_state = 20}, - [2288] = {.lex_state = 646, .external_lex_state = 23}, - [2289] = {.lex_state = 636, .external_lex_state = 20}, - [2290] = {.lex_state = 636, .external_lex_state = 20}, - [2291] = {.lex_state = 636, .external_lex_state = 20}, - [2292] = {.lex_state = 636, .external_lex_state = 20}, - [2293] = {.lex_state = 636, .external_lex_state = 20}, - [2294] = {.lex_state = 636, .external_lex_state = 20}, - [2295] = {.lex_state = 636, .external_lex_state = 20}, - [2296] = {.lex_state = 646, .external_lex_state = 22}, - [2297] = {.lex_state = 646, .external_lex_state = 23}, - [2298] = {.lex_state = 636, .external_lex_state = 20}, - [2299] = {.lex_state = 636, .external_lex_state = 41}, - [2300] = {.lex_state = 636, .external_lex_state = 20}, - [2301] = {.lex_state = 636, .external_lex_state = 20}, - [2302] = {.lex_state = 636, .external_lex_state = 51}, - [2303] = {.lex_state = 636, .external_lex_state = 20}, - [2304] = {.lex_state = 636, .external_lex_state = 51}, - [2305] = {.lex_state = 636, .external_lex_state = 20}, - [2306] = {.lex_state = 636, .external_lex_state = 20}, - [2307] = {.lex_state = 646, .external_lex_state = 23}, - [2308] = {.lex_state = 636, .external_lex_state = 20}, - [2309] = {.lex_state = 636, .external_lex_state = 20}, - [2310] = {.lex_state = 646, .external_lex_state = 23}, - [2311] = {.lex_state = 646, .external_lex_state = 22}, - [2312] = {.lex_state = 646, .external_lex_state = 26}, - [2313] = {.lex_state = 636, .external_lex_state = 20}, - [2314] = {.lex_state = 646, .external_lex_state = 23}, - [2315] = {.lex_state = 646, .external_lex_state = 26}, - [2316] = {.lex_state = 636, .external_lex_state = 20}, - [2317] = {.lex_state = 636, .external_lex_state = 20}, - [2318] = {.lex_state = 646, .external_lex_state = 23}, - [2319] = {.lex_state = 636, .external_lex_state = 20}, - [2320] = {.lex_state = 646, .external_lex_state = 23}, - [2321] = {.lex_state = 636, .external_lex_state = 20}, - [2322] = {.lex_state = 636, .external_lex_state = 20}, - [2323] = {.lex_state = 636, .external_lex_state = 41}, - [2324] = {.lex_state = 636, .external_lex_state = 20}, - [2325] = {.lex_state = 646, .external_lex_state = 22}, - [2326] = {.lex_state = 646, .external_lex_state = 22}, - [2327] = {.lex_state = 646, .external_lex_state = 22}, - [2328] = {.lex_state = 646, .external_lex_state = 22}, - [2329] = {.lex_state = 636, .external_lex_state = 20}, - [2330] = {.lex_state = 636, .external_lex_state = 20}, - [2331] = {.lex_state = 646, .external_lex_state = 22}, - [2332] = {.lex_state = 646, .external_lex_state = 22}, - [2333] = {.lex_state = 636, .external_lex_state = 20}, - [2334] = {.lex_state = 646, .external_lex_state = 22}, - [2335] = {.lex_state = 646, .external_lex_state = 22}, - [2336] = {.lex_state = 636, .external_lex_state = 20}, - [2337] = {.lex_state = 636, .external_lex_state = 20}, - [2338] = {.lex_state = 646, .external_lex_state = 23}, - [2339] = {.lex_state = 636, .external_lex_state = 20}, - [2340] = {.lex_state = 646, .external_lex_state = 22}, - [2341] = {.lex_state = 646, .external_lex_state = 23}, - [2342] = {.lex_state = 636, .external_lex_state = 51}, - [2343] = {.lex_state = 636, .external_lex_state = 50}, - [2344] = {.lex_state = 646, .external_lex_state = 22}, - [2345] = {.lex_state = 636, .external_lex_state = 20}, - [2346] = {.lex_state = 646, .external_lex_state = 22}, - [2347] = {.lex_state = 636, .external_lex_state = 20}, - [2348] = {.lex_state = 646, .external_lex_state = 22}, - [2349] = {.lex_state = 646, .external_lex_state = 22}, - [2350] = {.lex_state = 646, .external_lex_state = 22}, - [2351] = {.lex_state = 646, .external_lex_state = 22}, - [2352] = {.lex_state = 646, .external_lex_state = 22}, - [2353] = {.lex_state = 646, .external_lex_state = 22}, - [2354] = {.lex_state = 646, .external_lex_state = 22}, - [2355] = {.lex_state = 646, .external_lex_state = 23}, - [2356] = {.lex_state = 646, .external_lex_state = 23}, - [2357] = {.lex_state = 646, .external_lex_state = 23}, - [2358] = {.lex_state = 646, .external_lex_state = 23}, - [2359] = {.lex_state = 646, .external_lex_state = 24}, - [2360] = {.lex_state = 646, .external_lex_state = 25}, - [2361] = {.lex_state = 646, .external_lex_state = 23}, - [2362] = {.lex_state = 646, .external_lex_state = 23}, - [2363] = {.lex_state = 646, .external_lex_state = 23}, - [2364] = {.lex_state = 646, .external_lex_state = 23}, - [2365] = {.lex_state = 636, .external_lex_state = 20}, - [2366] = {.lex_state = 646, .external_lex_state = 24}, - [2367] = {.lex_state = 646, .external_lex_state = 23}, - [2368] = {.lex_state = 646, .external_lex_state = 24}, - [2369] = {.lex_state = 646, .external_lex_state = 23}, - [2370] = {.lex_state = 646, .external_lex_state = 23}, - [2371] = {.lex_state = 646, .external_lex_state = 23}, - [2372] = {.lex_state = 646, .external_lex_state = 23}, - [2373] = {.lex_state = 646, .external_lex_state = 24}, - [2374] = {.lex_state = 646, .external_lex_state = 23}, - [2375] = {.lex_state = 646, .external_lex_state = 23}, - [2376] = {.lex_state = 646, .external_lex_state = 23}, - [2377] = {.lex_state = 646, .external_lex_state = 23}, - [2378] = {.lex_state = 636, .external_lex_state = 41}, - [2379] = {.lex_state = 646, .external_lex_state = 23}, - [2380] = {.lex_state = 636, .external_lex_state = 52}, - [2381] = {.lex_state = 646, .external_lex_state = 23}, - [2382] = {.lex_state = 646, .external_lex_state = 24}, - [2383] = {.lex_state = 646, .external_lex_state = 23}, - [2384] = {.lex_state = 646, .external_lex_state = 23}, - [2385] = {.lex_state = 646, .external_lex_state = 23}, - [2386] = {.lex_state = 646, .external_lex_state = 23}, - [2387] = {.lex_state = 636, .external_lex_state = 50}, - [2388] = {.lex_state = 646, .external_lex_state = 23}, - [2389] = {.lex_state = 636, .external_lex_state = 50}, - [2390] = {.lex_state = 636, .external_lex_state = 50}, - [2391] = {.lex_state = 646, .external_lex_state = 23}, - [2392] = {.lex_state = 646, .external_lex_state = 23}, - [2393] = {.lex_state = 646, .external_lex_state = 25}, - [2394] = {.lex_state = 646, .external_lex_state = 25}, - [2395] = {.lex_state = 646, .external_lex_state = 23}, - [2396] = {.lex_state = 646, .external_lex_state = 23}, - [2397] = {.lex_state = 646, .external_lex_state = 23}, - [2398] = {.lex_state = 636, .external_lex_state = 20}, - [2399] = {.lex_state = 646, .external_lex_state = 23}, - [2400] = {.lex_state = 646, .external_lex_state = 23}, - [2401] = {.lex_state = 646, .external_lex_state = 23}, - [2402] = {.lex_state = 646, .external_lex_state = 24}, - [2403] = {.lex_state = 646, .external_lex_state = 23}, - [2404] = {.lex_state = 646, .external_lex_state = 25}, - [2405] = {.lex_state = 646, .external_lex_state = 23}, - [2406] = {.lex_state = 646, .external_lex_state = 23}, - [2407] = {.lex_state = 636, .external_lex_state = 50}, - [2408] = {.lex_state = 646, .external_lex_state = 23}, - [2409] = {.lex_state = 646, .external_lex_state = 24}, - [2410] = {.lex_state = 636, .external_lex_state = 50}, - [2411] = {.lex_state = 646, .external_lex_state = 25}, - [2412] = {.lex_state = 646, .external_lex_state = 25}, - [2413] = {.lex_state = 636, .external_lex_state = 52}, - [2414] = {.lex_state = 646, .external_lex_state = 23}, - [2415] = {.lex_state = 646, .external_lex_state = 23}, - [2416] = {.lex_state = 636, .external_lex_state = 50}, - [2417] = {.lex_state = 646, .external_lex_state = 23}, - [2418] = {.lex_state = 646, .external_lex_state = 23}, - [2419] = {.lex_state = 646, .external_lex_state = 23}, - [2420] = {.lex_state = 646, .external_lex_state = 23}, - [2421] = {.lex_state = 646, .external_lex_state = 23}, - [2422] = {.lex_state = 636, .external_lex_state = 20}, - [2423] = {.lex_state = 646, .external_lex_state = 23}, - [2424] = {.lex_state = 646, .external_lex_state = 23}, - [2425] = {.lex_state = 646, .external_lex_state = 23}, - [2426] = {.lex_state = 646, .external_lex_state = 23}, - [2427] = {.lex_state = 646, .external_lex_state = 23}, - [2428] = {.lex_state = 636, .external_lex_state = 53}, - [2429] = {.lex_state = 636, .external_lex_state = 53}, - [2430] = {.lex_state = 646, .external_lex_state = 25}, - [2431] = {.lex_state = 646, .external_lex_state = 23}, - [2432] = {.lex_state = 646, .external_lex_state = 25}, - [2433] = {.lex_state = 646, .external_lex_state = 25}, - [2434] = {.lex_state = 646, .external_lex_state = 23}, - [2435] = {.lex_state = 636, .external_lex_state = 53}, - [2436] = {.lex_state = 646, .external_lex_state = 24}, - [2437] = {.lex_state = 646, .external_lex_state = 23}, - [2438] = {.lex_state = 636, .external_lex_state = 53}, - [2439] = {.lex_state = 646, .external_lex_state = 23}, - [2440] = {.lex_state = 646, .external_lex_state = 25}, - [2441] = {.lex_state = 646, .external_lex_state = 23}, - [2442] = {.lex_state = 636, .external_lex_state = 52}, - [2443] = {.lex_state = 646, .external_lex_state = 23}, - [2444] = {.lex_state = 646, .external_lex_state = 23}, - [2445] = {.lex_state = 636, .external_lex_state = 50}, - [2446] = {.lex_state = 646, .external_lex_state = 23}, - [2447] = {.lex_state = 646, .external_lex_state = 24}, - [2448] = {.lex_state = 646, .external_lex_state = 23}, - [2449] = {.lex_state = 646, .external_lex_state = 23}, - [2450] = {.lex_state = 646, .external_lex_state = 24}, - [2451] = {.lex_state = 646, .external_lex_state = 23}, - [2452] = {.lex_state = 646, .external_lex_state = 23}, - [2453] = {.lex_state = 646, .external_lex_state = 24}, - [2454] = {.lex_state = 646, .external_lex_state = 23}, - [2455] = {.lex_state = 646, .external_lex_state = 23}, - [2456] = {.lex_state = 646, .external_lex_state = 26}, - [2457] = {.lex_state = 636, .external_lex_state = 20}, - [2458] = {.lex_state = 636, .external_lex_state = 52}, - [2459] = {.lex_state = 646, .external_lex_state = 26}, - [2460] = {.lex_state = 646, .external_lex_state = 23}, - [2461] = {.lex_state = 646, .external_lex_state = 26}, - [2462] = {.lex_state = 646, .external_lex_state = 10}, - [2463] = {.lex_state = 646, .external_lex_state = 25}, - [2464] = {.lex_state = 646, .external_lex_state = 23}, - [2465] = {.lex_state = 636, .external_lex_state = 52}, - [2466] = {.lex_state = 646, .external_lex_state = 23}, - [2467] = {.lex_state = 646, .external_lex_state = 26}, - [2468] = {.lex_state = 646, .external_lex_state = 23}, - [2469] = {.lex_state = 636, .external_lex_state = 52}, - [2470] = {.lex_state = 646, .external_lex_state = 23}, - [2471] = {.lex_state = 636, .external_lex_state = 20}, - [2472] = {.lex_state = 646, .external_lex_state = 25}, - [2473] = {.lex_state = 636, .external_lex_state = 52}, - [2474] = {.lex_state = 646, .external_lex_state = 23}, - [2475] = {.lex_state = 646, .external_lex_state = 23}, - [2476] = {.lex_state = 646, .external_lex_state = 23}, - [2477] = {.lex_state = 646, .external_lex_state = 23}, - [2478] = {.lex_state = 646, .external_lex_state = 23}, - [2479] = {.lex_state = 646, .external_lex_state = 26}, - [2480] = {.lex_state = 646, .external_lex_state = 26}, - [2481] = {.lex_state = 646, .external_lex_state = 23}, - [2482] = {.lex_state = 646, .external_lex_state = 23}, - [2483] = {.lex_state = 646, .external_lex_state = 23}, - [2484] = {.lex_state = 646, .external_lex_state = 23}, - [2485] = {.lex_state = 646, .external_lex_state = 23}, - [2486] = {.lex_state = 636, .external_lex_state = 20}, - [2487] = {.lex_state = 646, .external_lex_state = 23}, - [2488] = {.lex_state = 646, .external_lex_state = 23}, - [2489] = {.lex_state = 646, .external_lex_state = 23}, - [2490] = {.lex_state = 646, .external_lex_state = 23}, - [2491] = {.lex_state = 646, .external_lex_state = 23}, - [2492] = {.lex_state = 646, .external_lex_state = 23}, - [2493] = {.lex_state = 636, .external_lex_state = 20}, - [2494] = {.lex_state = 646, .external_lex_state = 23}, - [2495] = {.lex_state = 646, .external_lex_state = 10}, - [2496] = {.lex_state = 646, .external_lex_state = 23}, - [2497] = {.lex_state = 646, .external_lex_state = 23}, - [2498] = {.lex_state = 646, .external_lex_state = 23}, - [2499] = {.lex_state = 646, .external_lex_state = 23}, - [2500] = {.lex_state = 636, .external_lex_state = 52}, - [2501] = {.lex_state = 646, .external_lex_state = 23}, - [2502] = {.lex_state = 646, .external_lex_state = 23}, - [2503] = {.lex_state = 646, .external_lex_state = 23}, - [2504] = {.lex_state = 646, .external_lex_state = 25}, - [2505] = {.lex_state = 646, .external_lex_state = 23}, - [2506] = {.lex_state = 636, .external_lex_state = 52}, - [2507] = {.lex_state = 646, .external_lex_state = 23}, - [2508] = {.lex_state = 646, .external_lex_state = 23}, - [2509] = {.lex_state = 646, .external_lex_state = 23}, - [2510] = {.lex_state = 636, .external_lex_state = 52}, - [2511] = {.lex_state = 646, .external_lex_state = 25}, - [2512] = {.lex_state = 646, .external_lex_state = 23}, - [2513] = {.lex_state = 636, .external_lex_state = 54}, - [2514] = {.lex_state = 646, .external_lex_state = 23}, - [2515] = {.lex_state = 646, .external_lex_state = 23}, - [2516] = {.lex_state = 646, .external_lex_state = 25}, - [2517] = {.lex_state = 646, .external_lex_state = 23}, - [2518] = {.lex_state = 646, .external_lex_state = 23}, - [2519] = {.lex_state = 646, .external_lex_state = 23}, - [2520] = {.lex_state = 646, .external_lex_state = 23}, - [2521] = {.lex_state = 646, .external_lex_state = 23}, - [2522] = {.lex_state = 646, .external_lex_state = 24}, - [2523] = {.lex_state = 646, .external_lex_state = 23}, - [2524] = {.lex_state = 646, .external_lex_state = 23}, - [2525] = {.lex_state = 646, .external_lex_state = 23}, - [2526] = {.lex_state = 646, .external_lex_state = 25}, - [2527] = {.lex_state = 646, .external_lex_state = 26}, - [2528] = {.lex_state = 646, .external_lex_state = 24}, - [2529] = {.lex_state = 646, .external_lex_state = 23}, - [2530] = {.lex_state = 636, .external_lex_state = 50}, - [2531] = {.lex_state = 636, .external_lex_state = 50}, - [2532] = {.lex_state = 646, .external_lex_state = 23}, - [2533] = {.lex_state = 646, .external_lex_state = 24}, - [2534] = {.lex_state = 646, .external_lex_state = 24}, - [2535] = {.lex_state = 646, .external_lex_state = 26}, - [2536] = {.lex_state = 636, .external_lex_state = 50}, - [2537] = {.lex_state = 636, .external_lex_state = 50}, - [2538] = {.lex_state = 646, .external_lex_state = 23}, - [2539] = {.lex_state = 636, .external_lex_state = 20}, - [2540] = {.lex_state = 646, .external_lex_state = 24}, - [2541] = {.lex_state = 636, .external_lex_state = 46}, - [2542] = {.lex_state = 636, .external_lex_state = 20}, - [2543] = {.lex_state = 636, .external_lex_state = 20}, - [2544] = {.lex_state = 646, .external_lex_state = 23}, - [2545] = {.lex_state = 646, .external_lex_state = 23}, - [2546] = {.lex_state = 646, .external_lex_state = 26}, - [2547] = {.lex_state = 636, .external_lex_state = 46}, - [2548] = {.lex_state = 636, .external_lex_state = 20}, - [2549] = {.lex_state = 636, .external_lex_state = 46}, - [2550] = {.lex_state = 646, .external_lex_state = 23}, - [2551] = {.lex_state = 646, .external_lex_state = 26}, - [2552] = {.lex_state = 636, .external_lex_state = 46}, - [2553] = {.lex_state = 62, .external_lex_state = 55}, - [2554] = {.lex_state = 646, .external_lex_state = 23}, - [2555] = {.lex_state = 646, .external_lex_state = 23}, - [2556] = {.lex_state = 646, .external_lex_state = 26}, - [2557] = {.lex_state = 636, .external_lex_state = 20}, - [2558] = {.lex_state = 636, .external_lex_state = 20}, - [2559] = {.lex_state = 646, .external_lex_state = 25}, - [2560] = {.lex_state = 646, .external_lex_state = 25}, - [2561] = {.lex_state = 646, .external_lex_state = 25}, - [2562] = {.lex_state = 646, .external_lex_state = 25}, - [2563] = {.lex_state = 646, .external_lex_state = 25}, - [2564] = {.lex_state = 646, .external_lex_state = 24}, - [2565] = {.lex_state = 646, .external_lex_state = 26}, - [2566] = {.lex_state = 646, .external_lex_state = 25}, - [2567] = {.lex_state = 636, .external_lex_state = 54}, - [2568] = {.lex_state = 646, .external_lex_state = 24}, - [2569] = {.lex_state = 646, .external_lex_state = 24}, - [2570] = {.lex_state = 646, .external_lex_state = 25}, - [2571] = {.lex_state = 646, .external_lex_state = 25}, - [2572] = {.lex_state = 646, .external_lex_state = 25}, - [2573] = {.lex_state = 646, .external_lex_state = 25}, - [2574] = {.lex_state = 646, .external_lex_state = 24}, - [2575] = {.lex_state = 646, .external_lex_state = 24}, - [2576] = {.lex_state = 646, .external_lex_state = 24}, - [2577] = {.lex_state = 646, .external_lex_state = 25}, - [2578] = {.lex_state = 646, .external_lex_state = 24}, - [2579] = {.lex_state = 646, .external_lex_state = 24}, - [2580] = {.lex_state = 646, .external_lex_state = 24}, - [2581] = {.lex_state = 646, .external_lex_state = 24}, - [2582] = {.lex_state = 636, .external_lex_state = 56}, - [2583] = {.lex_state = 646, .external_lex_state = 24}, - [2584] = {.lex_state = 646, .external_lex_state = 25}, - [2585] = {.lex_state = 646, .external_lex_state = 26}, - [2586] = {.lex_state = 646, .external_lex_state = 24}, - [2587] = {.lex_state = 646, .external_lex_state = 24}, - [2588] = {.lex_state = 646, .external_lex_state = 24}, - [2589] = {.lex_state = 636, .external_lex_state = 54}, - [2590] = {.lex_state = 646, .external_lex_state = 25}, - [2591] = {.lex_state = 646, .external_lex_state = 25}, - [2592] = {.lex_state = 646, .external_lex_state = 24}, - [2593] = {.lex_state = 646, .external_lex_state = 25}, - [2594] = {.lex_state = 646, .external_lex_state = 24}, - [2595] = {.lex_state = 646, .external_lex_state = 25}, - [2596] = {.lex_state = 646, .external_lex_state = 25}, - [2597] = {.lex_state = 636, .external_lex_state = 54}, - [2598] = {.lex_state = 646, .external_lex_state = 24}, - [2599] = {.lex_state = 636, .external_lex_state = 56}, - [2600] = {.lex_state = 646, .external_lex_state = 24}, - [2601] = {.lex_state = 646, .external_lex_state = 25}, - [2602] = {.lex_state = 636, .external_lex_state = 46}, - [2603] = {.lex_state = 646, .external_lex_state = 24}, - [2604] = {.lex_state = 636, .external_lex_state = 56}, - [2605] = {.lex_state = 646, .external_lex_state = 24}, - [2606] = {.lex_state = 646, .external_lex_state = 24}, - [2607] = {.lex_state = 646, .external_lex_state = 24}, - [2608] = {.lex_state = 646, .external_lex_state = 24}, - [2609] = {.lex_state = 646, .external_lex_state = 24}, - [2610] = {.lex_state = 646, .external_lex_state = 24}, - [2611] = {.lex_state = 649, .external_lex_state = 57}, - [2612] = {.lex_state = 646, .external_lex_state = 24}, - [2613] = {.lex_state = 636, .external_lex_state = 54}, - [2614] = {.lex_state = 646, .external_lex_state = 24}, - [2615] = {.lex_state = 646, .external_lex_state = 24}, - [2616] = {.lex_state = 646, .external_lex_state = 24}, - [2617] = {.lex_state = 646, .external_lex_state = 24}, - [2618] = {.lex_state = 646, .external_lex_state = 25}, - [2619] = {.lex_state = 646, .external_lex_state = 25}, - [2620] = {.lex_state = 646, .external_lex_state = 25}, - [2621] = {.lex_state = 646, .external_lex_state = 24}, - [2622] = {.lex_state = 646, .external_lex_state = 25}, - [2623] = {.lex_state = 646, .external_lex_state = 24}, - [2624] = {.lex_state = 646, .external_lex_state = 25}, - [2625] = {.lex_state = 646, .external_lex_state = 25}, - [2626] = {.lex_state = 646, .external_lex_state = 24}, - [2627] = {.lex_state = 646, .external_lex_state = 24}, - [2628] = {.lex_state = 646, .external_lex_state = 24}, - [2629] = {.lex_state = 646, .external_lex_state = 25}, - [2630] = {.lex_state = 646, .external_lex_state = 25}, - [2631] = {.lex_state = 636, .external_lex_state = 52}, - [2632] = {.lex_state = 646, .external_lex_state = 25}, - [2633] = {.lex_state = 646, .external_lex_state = 24}, - [2634] = {.lex_state = 646, .external_lex_state = 24}, - [2635] = {.lex_state = 646, .external_lex_state = 24}, - [2636] = {.lex_state = 646, .external_lex_state = 24}, - [2637] = {.lex_state = 646, .external_lex_state = 25}, - [2638] = {.lex_state = 646, .external_lex_state = 24}, - [2639] = {.lex_state = 646, .external_lex_state = 25}, - [2640] = {.lex_state = 646, .external_lex_state = 26}, - [2641] = {.lex_state = 646, .external_lex_state = 25}, - [2642] = {.lex_state = 646, .external_lex_state = 24}, - [2643] = {.lex_state = 646, .external_lex_state = 25}, - [2644] = {.lex_state = 646, .external_lex_state = 25}, - [2645] = {.lex_state = 646, .external_lex_state = 24}, - [2646] = {.lex_state = 646, .external_lex_state = 25}, - [2647] = {.lex_state = 646, .external_lex_state = 24}, - [2648] = {.lex_state = 646, .external_lex_state = 25}, - [2649] = {.lex_state = 636, .external_lex_state = 54}, - [2650] = {.lex_state = 636, .external_lex_state = 56}, - [2651] = {.lex_state = 646, .external_lex_state = 25}, - [2652] = {.lex_state = 646, .external_lex_state = 25}, - [2653] = {.lex_state = 646, .external_lex_state = 24}, - [2654] = {.lex_state = 646, .external_lex_state = 25}, - [2655] = {.lex_state = 646, .external_lex_state = 26}, - [2656] = {.lex_state = 646, .external_lex_state = 24}, - [2657] = {.lex_state = 646, .external_lex_state = 10}, - [2658] = {.lex_state = 646, .external_lex_state = 24}, - [2659] = {.lex_state = 646, .external_lex_state = 24}, - [2660] = {.lex_state = 646, .external_lex_state = 24}, - [2661] = {.lex_state = 646, .external_lex_state = 24}, - [2662] = {.lex_state = 646, .external_lex_state = 25}, - [2663] = {.lex_state = 646, .external_lex_state = 25}, - [2664] = {.lex_state = 646, .external_lex_state = 25}, - [2665] = {.lex_state = 646, .external_lex_state = 25}, - [2666] = {.lex_state = 646, .external_lex_state = 24}, - [2667] = {.lex_state = 636, .external_lex_state = 52}, - [2668] = {.lex_state = 646, .external_lex_state = 26}, - [2669] = {.lex_state = 646, .external_lex_state = 25}, - [2670] = {.lex_state = 646, .external_lex_state = 25}, - [2671] = {.lex_state = 646, .external_lex_state = 25}, - [2672] = {.lex_state = 646, .external_lex_state = 25}, - [2673] = {.lex_state = 646, .external_lex_state = 24}, - [2674] = {.lex_state = 646, .external_lex_state = 25}, - [2675] = {.lex_state = 646, .external_lex_state = 25}, - [2676] = {.lex_state = 646, .external_lex_state = 25}, - [2677] = {.lex_state = 646, .external_lex_state = 25}, - [2678] = {.lex_state = 646, .external_lex_state = 25}, - [2679] = {.lex_state = 636, .external_lex_state = 52}, - [2680] = {.lex_state = 636, .external_lex_state = 52}, - [2681] = {.lex_state = 646, .external_lex_state = 25}, - [2682] = {.lex_state = 646, .external_lex_state = 24}, - [2683] = {.lex_state = 646, .external_lex_state = 25}, - [2684] = {.lex_state = 646, .external_lex_state = 24}, - [2685] = {.lex_state = 646, .external_lex_state = 25}, - [2686] = {.lex_state = 646, .external_lex_state = 24}, - [2687] = {.lex_state = 646, .external_lex_state = 25}, - [2688] = {.lex_state = 646, .external_lex_state = 26}, - [2689] = {.lex_state = 646, .external_lex_state = 26}, - [2690] = {.lex_state = 646, .external_lex_state = 26}, - [2691] = {.lex_state = 646, .external_lex_state = 26}, - [2692] = {.lex_state = 646, .external_lex_state = 26}, - [2693] = {.lex_state = 646, .external_lex_state = 26}, - [2694] = {.lex_state = 636, .external_lex_state = 20}, - [2695] = {.lex_state = 646, .external_lex_state = 26}, - [2696] = {.lex_state = 649, .external_lex_state = 58}, - [2697] = {.lex_state = 646, .external_lex_state = 26}, - [2698] = {.lex_state = 646, .external_lex_state = 26}, - [2699] = {.lex_state = 636, .external_lex_state = 46}, - [2700] = {.lex_state = 646, .external_lex_state = 26}, - [2701] = {.lex_state = 646, .external_lex_state = 26}, - [2702] = {.lex_state = 646, .external_lex_state = 26}, - [2703] = {.lex_state = 636, .external_lex_state = 41}, - [2704] = {.lex_state = 646, .external_lex_state = 26}, - [2705] = {.lex_state = 646, .external_lex_state = 26}, - [2706] = {.lex_state = 636, .external_lex_state = 46}, - [2707] = {.lex_state = 636, .external_lex_state = 56}, - [2708] = {.lex_state = 646, .external_lex_state = 26}, - [2709] = {.lex_state = 646, .external_lex_state = 26}, - [2710] = {.lex_state = 646, .external_lex_state = 26}, - [2711] = {.lex_state = 646, .external_lex_state = 26}, - [2712] = {.lex_state = 646, .external_lex_state = 26}, - [2713] = {.lex_state = 646, .external_lex_state = 26}, - [2714] = {.lex_state = 646, .external_lex_state = 26}, - [2715] = {.lex_state = 646, .external_lex_state = 26}, - [2716] = {.lex_state = 646, .external_lex_state = 26}, - [2717] = {.lex_state = 646, .external_lex_state = 26}, - [2718] = {.lex_state = 646, .external_lex_state = 26}, - [2719] = {.lex_state = 646, .external_lex_state = 26}, - [2720] = {.lex_state = 649, .external_lex_state = 58}, - [2721] = {.lex_state = 646, .external_lex_state = 26}, - [2722] = {.lex_state = 646, .external_lex_state = 26}, - [2723] = {.lex_state = 649, .external_lex_state = 58}, - [2724] = {.lex_state = 646, .external_lex_state = 26}, - [2725] = {.lex_state = 646, .external_lex_state = 26}, - [2726] = {.lex_state = 646, .external_lex_state = 26}, - [2727] = {.lex_state = 646, .external_lex_state = 26}, - [2728] = {.lex_state = 649, .external_lex_state = 57}, - [2729] = {.lex_state = 646, .external_lex_state = 26}, - [2730] = {.lex_state = 646, .external_lex_state = 26}, - [2731] = {.lex_state = 646, .external_lex_state = 26}, - [2732] = {.lex_state = 646, .external_lex_state = 26}, - [2733] = {.lex_state = 646, .external_lex_state = 26}, - [2734] = {.lex_state = 646, .external_lex_state = 26}, - [2735] = {.lex_state = 646, .external_lex_state = 26}, - [2736] = {.lex_state = 636, .external_lex_state = 46}, - [2737] = {.lex_state = 646, .external_lex_state = 26}, - [2738] = {.lex_state = 646, .external_lex_state = 26}, - [2739] = {.lex_state = 646, .external_lex_state = 26}, - [2740] = {.lex_state = 646, .external_lex_state = 26}, - [2741] = {.lex_state = 646, .external_lex_state = 26}, - [2742] = {.lex_state = 646, .external_lex_state = 26}, - [2743] = {.lex_state = 646, .external_lex_state = 26}, - [2744] = {.lex_state = 646, .external_lex_state = 26}, - [2745] = {.lex_state = 646, .external_lex_state = 26}, - [2746] = {.lex_state = 646, .external_lex_state = 26}, - [2747] = {.lex_state = 636, .external_lex_state = 41}, - [2748] = {.lex_state = 646, .external_lex_state = 26}, - [2749] = {.lex_state = 646, .external_lex_state = 26}, - [2750] = {.lex_state = 646, .external_lex_state = 26}, - [2751] = {.lex_state = 636, .external_lex_state = 59}, - [2752] = {.lex_state = 646, .external_lex_state = 26}, - [2753] = {.lex_state = 646, .external_lex_state = 26}, - [2754] = {.lex_state = 646, .external_lex_state = 26}, - [2755] = {.lex_state = 636, .external_lex_state = 46}, - [2756] = {.lex_state = 649, .external_lex_state = 58}, - [2757] = {.lex_state = 636, .external_lex_state = 54}, - [2758] = {.lex_state = 636, .external_lex_state = 56}, - [2759] = {.lex_state = 636, .external_lex_state = 41}, - [2760] = {.lex_state = 636, .external_lex_state = 54}, - [2761] = {.lex_state = 636, .external_lex_state = 56}, - [2762] = {.lex_state = 636, .external_lex_state = 56}, - [2763] = {.lex_state = 636, .external_lex_state = 54}, - [2764] = {.lex_state = 649, .external_lex_state = 58}, - [2765] = {.lex_state = 649, .external_lex_state = 58}, - [2766] = {.lex_state = 636, .external_lex_state = 56}, - [2767] = {.lex_state = 636, .external_lex_state = 41}, - [2768] = {.lex_state = 649, .external_lex_state = 58}, - [2769] = {.lex_state = 649, .external_lex_state = 58}, - [2770] = {.lex_state = 649, .external_lex_state = 58}, - [2771] = {.lex_state = 636, .external_lex_state = 41}, - [2772] = {.lex_state = 636, .external_lex_state = 59}, - [2773] = {.lex_state = 649, .external_lex_state = 58}, - [2774] = {.lex_state = 636, .external_lex_state = 58}, - [2775] = {.lex_state = 649, .external_lex_state = 58}, - [2776] = {.lex_state = 636, .external_lex_state = 54}, - [2777] = {.lex_state = 636, .external_lex_state = 41}, - [2778] = {.lex_state = 636, .external_lex_state = 54}, - [2779] = {.lex_state = 649, .external_lex_state = 58}, - [2780] = {.lex_state = 649, .external_lex_state = 58}, - [2781] = {.lex_state = 636, .external_lex_state = 41}, - [2782] = {.lex_state = 649, .external_lex_state = 58}, - [2783] = {.lex_state = 636, .external_lex_state = 54}, - [2784] = {.lex_state = 649, .external_lex_state = 58}, - [2785] = {.lex_state = 636, .external_lex_state = 54}, - [2786] = {.lex_state = 636, .external_lex_state = 54}, - [2787] = {.lex_state = 649, .external_lex_state = 58}, - [2788] = {.lex_state = 649, .external_lex_state = 58}, - [2789] = {.lex_state = 649, .external_lex_state = 58}, - [2790] = {.lex_state = 636, .external_lex_state = 54}, - [2791] = {.lex_state = 636, .external_lex_state = 54}, - [2792] = {.lex_state = 649, .external_lex_state = 58}, - [2793] = {.lex_state = 636, .external_lex_state = 54}, - [2794] = {.lex_state = 649, .external_lex_state = 58}, - [2795] = {.lex_state = 636, .external_lex_state = 54}, - [2796] = {.lex_state = 636, .external_lex_state = 54}, - [2797] = {.lex_state = 649, .external_lex_state = 58}, - [2798] = {.lex_state = 636, .external_lex_state = 58}, - [2799] = {.lex_state = 636, .external_lex_state = 54}, - [2800] = {.lex_state = 649, .external_lex_state = 58}, - [2801] = {.lex_state = 636, .external_lex_state = 58}, - [2802] = {.lex_state = 649, .external_lex_state = 58}, - [2803] = {.lex_state = 636, .external_lex_state = 20}, - [2804] = {.lex_state = 636, .external_lex_state = 60}, - [2805] = {.lex_state = 636, .external_lex_state = 58}, - [2806] = {.lex_state = 62, .external_lex_state = 55}, - [2807] = {.lex_state = 62, .external_lex_state = 55}, - [2808] = {.lex_state = 636, .external_lex_state = 59}, - [2809] = {.lex_state = 636, .external_lex_state = 59}, - [2810] = {.lex_state = 636, .external_lex_state = 60}, - [2811] = {.lex_state = 62, .external_lex_state = 55}, - [2812] = {.lex_state = 636, .external_lex_state = 58}, - [2813] = {.lex_state = 636, .external_lex_state = 58}, - [2814] = {.lex_state = 636, .external_lex_state = 59}, - [2815] = {.lex_state = 636, .external_lex_state = 59}, - [2816] = {.lex_state = 636, .external_lex_state = 60}, - [2817] = {.lex_state = 636, .external_lex_state = 60}, - [2818] = {.lex_state = 636, .external_lex_state = 59}, - [2819] = {.lex_state = 636, .external_lex_state = 60}, - [2820] = {.lex_state = 636, .external_lex_state = 60}, - [2821] = {.lex_state = 636, .external_lex_state = 59}, - [2822] = {.lex_state = 636, .external_lex_state = 60}, - [2823] = {.lex_state = 74, .external_lex_state = 20}, - [2824] = {.lex_state = 74, .external_lex_state = 20}, - [2825] = {.lex_state = 74, .external_lex_state = 20}, - [2826] = {.lex_state = 74, .external_lex_state = 20}, - [2827] = {.lex_state = 74, .external_lex_state = 20}, - [2828] = {.lex_state = 74, .external_lex_state = 20}, - [2829] = {.lex_state = 74, .external_lex_state = 20}, - [2830] = {.lex_state = 74, .external_lex_state = 20}, - [2831] = {.lex_state = 74, .external_lex_state = 20}, - [2832] = {.lex_state = 74, .external_lex_state = 20}, - [2833] = {.lex_state = 74, .external_lex_state = 20}, - [2834] = {.lex_state = 74, .external_lex_state = 20}, - [2835] = {.lex_state = 74, .external_lex_state = 20}, - [2836] = {.lex_state = 74, .external_lex_state = 20}, - [2837] = {.lex_state = 636, .external_lex_state = 61}, - [2838] = {.lex_state = 74, .external_lex_state = 20}, - [2839] = {.lex_state = 74, .external_lex_state = 20}, - [2840] = {.lex_state = 74, .external_lex_state = 20}, - [2841] = {.lex_state = 636, .external_lex_state = 59}, - [2842] = {.lex_state = 74, .external_lex_state = 20}, - [2843] = {.lex_state = 74, .external_lex_state = 20}, - [2844] = {.lex_state = 74, .external_lex_state = 20}, - [2845] = {.lex_state = 636, .external_lex_state = 60}, - [2846] = {.lex_state = 636, .external_lex_state = 60}, - [2847] = {.lex_state = 636, .external_lex_state = 60}, - [2848] = {.lex_state = 74, .external_lex_state = 20}, - [2849] = {.lex_state = 74, .external_lex_state = 20}, - [2850] = {.lex_state = 636, .external_lex_state = 61}, - [2851] = {.lex_state = 74, .external_lex_state = 20}, - [2852] = {.lex_state = 636, .external_lex_state = 61}, - [2853] = {.lex_state = 636, .external_lex_state = 59}, - [2854] = {.lex_state = 636, .external_lex_state = 60}, - [2855] = {.lex_state = 636, .external_lex_state = 60}, - [2856] = {.lex_state = 74, .external_lex_state = 20}, - [2857] = {.lex_state = 74, .external_lex_state = 20}, - [2858] = {.lex_state = 74, .external_lex_state = 20}, - [2859] = {.lex_state = 636, .external_lex_state = 60}, - [2860] = {.lex_state = 74, .external_lex_state = 20}, - [2861] = {.lex_state = 74, .external_lex_state = 20}, - [2862] = {.lex_state = 74, .external_lex_state = 20}, - [2863] = {.lex_state = 74, .external_lex_state = 20}, - [2864] = {.lex_state = 74, .external_lex_state = 20}, - [2865] = {.lex_state = 74, .external_lex_state = 20}, - [2866] = {.lex_state = 636, .external_lex_state = 62}, - [2867] = {.lex_state = 636, .external_lex_state = 62}, - [2868] = {.lex_state = 636, .external_lex_state = 62}, - [2869] = {.lex_state = 636, .external_lex_state = 62}, - [2870] = {.lex_state = 636, .external_lex_state = 62}, - [2871] = {.lex_state = 636, .external_lex_state = 62}, - [2872] = {.lex_state = 89, .external_lex_state = 41}, - [2873] = {.lex_state = 74, .external_lex_state = 20}, - [2874] = {.lex_state = 636, .external_lex_state = 62}, - [2875] = {.lex_state = 636, .external_lex_state = 62}, - [2876] = {.lex_state = 636, .external_lex_state = 62}, - [2877] = {.lex_state = 636, .external_lex_state = 62}, - [2878] = {.lex_state = 636, .external_lex_state = 62}, - [2879] = {.lex_state = 636, .external_lex_state = 61}, - [2880] = {.lex_state = 636, .external_lex_state = 62}, - [2881] = {.lex_state = 636, .external_lex_state = 62}, - [2882] = {.lex_state = 636, .external_lex_state = 63}, - [2883] = {.lex_state = 636, .external_lex_state = 63}, - [2884] = {.lex_state = 636, .external_lex_state = 61}, - [2885] = {.lex_state = 636, .external_lex_state = 62}, - [2886] = {.lex_state = 636, .external_lex_state = 62}, - [2887] = {.lex_state = 636, .external_lex_state = 61}, - [2888] = {.lex_state = 636, .external_lex_state = 61}, - [2889] = {.lex_state = 636, .external_lex_state = 62}, - [2890] = {.lex_state = 636, .external_lex_state = 62}, - [2891] = {.lex_state = 636, .external_lex_state = 62}, - [2892] = {.lex_state = 636, .external_lex_state = 63}, - [2893] = {.lex_state = 636, .external_lex_state = 62}, - [2894] = {.lex_state = 636, .external_lex_state = 61}, - [2895] = {.lex_state = 636, .external_lex_state = 62}, - [2896] = {.lex_state = 636, .external_lex_state = 62}, - [2897] = {.lex_state = 636, .external_lex_state = 62}, - [2898] = {.lex_state = 636, .external_lex_state = 62}, - [2899] = {.lex_state = 636, .external_lex_state = 63}, - [2900] = {.lex_state = 636, .external_lex_state = 61}, - [2901] = {.lex_state = 636, .external_lex_state = 62}, - [2902] = {.lex_state = 636, .external_lex_state = 41}, - [2903] = {.lex_state = 636, .external_lex_state = 62}, - [2904] = {.lex_state = 636, .external_lex_state = 62}, - [2905] = {.lex_state = 636, .external_lex_state = 62}, - [2906] = {.lex_state = 636, .external_lex_state = 62}, - [2907] = {.lex_state = 636, .external_lex_state = 62}, - [2908] = {.lex_state = 636, .external_lex_state = 62}, - [2909] = {.lex_state = 80, .external_lex_state = 20}, - [2910] = {.lex_state = 636, .external_lex_state = 62}, - [2911] = {.lex_state = 636, .external_lex_state = 62}, - [2912] = {.lex_state = 636, .external_lex_state = 62}, - [2913] = {.lex_state = 636, .external_lex_state = 62}, - [2914] = {.lex_state = 636, .external_lex_state = 62}, - [2915] = {.lex_state = 636, .external_lex_state = 62}, - [2916] = {.lex_state = 636, .external_lex_state = 62}, - [2917] = {.lex_state = 636, .external_lex_state = 62}, - [2918] = {.lex_state = 636, .external_lex_state = 62}, - [2919] = {.lex_state = 80, .external_lex_state = 20}, - [2920] = {.lex_state = 636, .external_lex_state = 62}, - [2921] = {.lex_state = 636, .external_lex_state = 62}, - [2922] = {.lex_state = 636, .external_lex_state = 62}, - [2923] = {.lex_state = 636, .external_lex_state = 62}, - [2924] = {.lex_state = 636, .external_lex_state = 62}, - [2925] = {.lex_state = 636, .external_lex_state = 62}, - [2926] = {.lex_state = 636, .external_lex_state = 62}, - [2927] = {.lex_state = 636, .external_lex_state = 62}, - [2928] = {.lex_state = 636, .external_lex_state = 62}, - [2929] = {.lex_state = 636, .external_lex_state = 62}, - [2930] = {.lex_state = 636, .external_lex_state = 62}, - [2931] = {.lex_state = 636, .external_lex_state = 62}, - [2932] = {.lex_state = 636, .external_lex_state = 62}, - [2933] = {.lex_state = 636, .external_lex_state = 62}, - [2934] = {.lex_state = 636, .external_lex_state = 62}, - [2935] = {.lex_state = 636, .external_lex_state = 62}, - [2936] = {.lex_state = 636, .external_lex_state = 62}, - [2937] = {.lex_state = 636, .external_lex_state = 62}, - [2938] = {.lex_state = 636, .external_lex_state = 62}, - [2939] = {.lex_state = 636, .external_lex_state = 62}, - [2940] = {.lex_state = 636, .external_lex_state = 62}, - [2941] = {.lex_state = 636, .external_lex_state = 62}, - [2942] = {.lex_state = 636, .external_lex_state = 62}, - [2943] = {.lex_state = 636, .external_lex_state = 62}, - [2944] = {.lex_state = 636, .external_lex_state = 62}, - [2945] = {.lex_state = 636, .external_lex_state = 62}, - [2946] = {.lex_state = 636, .external_lex_state = 62}, - [2947] = {.lex_state = 636, .external_lex_state = 62}, - [2948] = {.lex_state = 636, .external_lex_state = 62}, - [2949] = {.lex_state = 636, .external_lex_state = 62}, - [2950] = {.lex_state = 636, .external_lex_state = 62}, - [2951] = {.lex_state = 80, .external_lex_state = 20}, - [2952] = {.lex_state = 636, .external_lex_state = 62}, - [2953] = {.lex_state = 636, .external_lex_state = 62}, - [2954] = {.lex_state = 636, .external_lex_state = 62}, - [2955] = {.lex_state = 80, .external_lex_state = 20}, - [2956] = {.lex_state = 636, .external_lex_state = 62}, - [2957] = {.lex_state = 636, .external_lex_state = 62}, - [2958] = {.lex_state = 636, .external_lex_state = 62}, - [2959] = {.lex_state = 80, .external_lex_state = 20}, - [2960] = {.lex_state = 636, .external_lex_state = 62}, - [2961] = {.lex_state = 636, .external_lex_state = 62}, - [2962] = {.lex_state = 636, .external_lex_state = 62}, - [2963] = {.lex_state = 636, .external_lex_state = 62}, - [2964] = {.lex_state = 636, .external_lex_state = 62}, - [2965] = {.lex_state = 636, .external_lex_state = 62}, - [2966] = {.lex_state = 636, .external_lex_state = 62}, - [2967] = {.lex_state = 80, .external_lex_state = 20}, - [2968] = {.lex_state = 636, .external_lex_state = 62}, - [2969] = {.lex_state = 636, .external_lex_state = 62}, - [2970] = {.lex_state = 636, .external_lex_state = 62}, - [2971] = {.lex_state = 636, .external_lex_state = 62}, - [2972] = {.lex_state = 636, .external_lex_state = 62}, - [2973] = {.lex_state = 636, .external_lex_state = 62}, - [2974] = {.lex_state = 80, .external_lex_state = 20}, - [2975] = {.lex_state = 97, .external_lex_state = 20}, - [2976] = {.lex_state = 97, .external_lex_state = 20}, - [2977] = {.lex_state = 636, .external_lex_state = 41}, - [2978] = {.lex_state = 69, .external_lex_state = 64}, - [2979] = {.lex_state = 69, .external_lex_state = 64}, - [2980] = {.lex_state = 69, .external_lex_state = 64}, - [2981] = {.lex_state = 69, .external_lex_state = 64}, - [2982] = {.lex_state = 636, .external_lex_state = 41}, - [2983] = {.lex_state = 636, .external_lex_state = 41}, - [2984] = {.lex_state = 636, .external_lex_state = 41}, - [2985] = {.lex_state = 69, .external_lex_state = 64}, - [2986] = {.lex_state = 69, .external_lex_state = 64}, - [2987] = {.lex_state = 636, .external_lex_state = 41}, - [2988] = {.lex_state = 69, .external_lex_state = 64}, - [2989] = {.lex_state = 636, .external_lex_state = 41}, - [2990] = {.lex_state = 636, .external_lex_state = 41}, - [2991] = {.lex_state = 636, .external_lex_state = 41}, - [2992] = {.lex_state = 636, .external_lex_state = 41}, - [2993] = {.lex_state = 636, .external_lex_state = 41}, - [2994] = {.lex_state = 636, .external_lex_state = 41}, - [2995] = {.lex_state = 636, .external_lex_state = 41}, - [2996] = {.lex_state = 636, .external_lex_state = 41}, - [2997] = {.lex_state = 636, .external_lex_state = 41}, - [2998] = {.lex_state = 636, .external_lex_state = 41}, - [2999] = {.lex_state = 81, .external_lex_state = 45}, - [3000] = {.lex_state = 636, .external_lex_state = 41}, - [3001] = {.lex_state = 636, .external_lex_state = 41}, - [3002] = {.lex_state = 636, .external_lex_state = 41}, - [3003] = {.lex_state = 636, .external_lex_state = 41}, - [3004] = {.lex_state = 81, .external_lex_state = 45}, - [3005] = {.lex_state = 78, .external_lex_state = 45}, - [3006] = {.lex_state = 78, .external_lex_state = 45}, - [3007] = {.lex_state = 75, .external_lex_state = 20}, - [3008] = {.lex_state = 78, .external_lex_state = 45}, - [3009] = {.lex_state = 78, .external_lex_state = 45}, - [3010] = {.lex_state = 77, .external_lex_state = 20}, - [3011] = {.lex_state = 77, .external_lex_state = 20}, - [3012] = {.lex_state = 77, .external_lex_state = 20}, - [3013] = {.lex_state = 77, .external_lex_state = 20}, - [3014] = {.lex_state = 77, .external_lex_state = 20}, - [3015] = {.lex_state = 77, .external_lex_state = 20}, - [3016] = {.lex_state = 77, .external_lex_state = 20}, - [3017] = {.lex_state = 77, .external_lex_state = 20}, - [3018] = {.lex_state = 77, .external_lex_state = 20}, - [3019] = {.lex_state = 77, .external_lex_state = 20}, - [3020] = {.lex_state = 77, .external_lex_state = 20}, - [3021] = {.lex_state = 77, .external_lex_state = 20}, - [3022] = {.lex_state = 83, .external_lex_state = 65}, - [3023] = {.lex_state = 77, .external_lex_state = 20}, - [3024] = {.lex_state = 77, .external_lex_state = 20}, - [3025] = {.lex_state = 77, .external_lex_state = 20}, - [3026] = {.lex_state = 77, .external_lex_state = 20}, - [3027] = {.lex_state = 77, .external_lex_state = 20}, - [3028] = {.lex_state = 77, .external_lex_state = 20}, - [3029] = {.lex_state = 77, .external_lex_state = 20}, - [3030] = {.lex_state = 77, .external_lex_state = 20}, - [3031] = {.lex_state = 77, .external_lex_state = 20}, - [3032] = {.lex_state = 77, .external_lex_state = 20}, - [3033] = {.lex_state = 77, .external_lex_state = 20}, - [3034] = {.lex_state = 77, .external_lex_state = 20}, - [3035] = {.lex_state = 77, .external_lex_state = 20}, - [3036] = {.lex_state = 77, .external_lex_state = 20}, - [3037] = {.lex_state = 77, .external_lex_state = 20}, - [3038] = {.lex_state = 77, .external_lex_state = 20}, - [3039] = {.lex_state = 77, .external_lex_state = 20}, - [3040] = {.lex_state = 77, .external_lex_state = 20}, - [3041] = {.lex_state = 77, .external_lex_state = 20}, - [3042] = {.lex_state = 77, .external_lex_state = 20}, - [3043] = {.lex_state = 77, .external_lex_state = 20}, - [3044] = {.lex_state = 77, .external_lex_state = 20}, - [3045] = {.lex_state = 77, .external_lex_state = 20}, - [3046] = {.lex_state = 77, .external_lex_state = 20}, - [3047] = {.lex_state = 77, .external_lex_state = 20}, - [3048] = {.lex_state = 77, .external_lex_state = 20}, - [3049] = {.lex_state = 77, .external_lex_state = 20}, - [3050] = {.lex_state = 77, .external_lex_state = 20}, - [3051] = {.lex_state = 77, .external_lex_state = 20}, - [3052] = {.lex_state = 77, .external_lex_state = 20}, - [3053] = {.lex_state = 77, .external_lex_state = 20}, - [3054] = {.lex_state = 77, .external_lex_state = 20}, - [3055] = {.lex_state = 77, .external_lex_state = 20}, - [3056] = {.lex_state = 77, .external_lex_state = 20}, - [3057] = {.lex_state = 77, .external_lex_state = 20}, - [3058] = {.lex_state = 77, .external_lex_state = 20}, - [3059] = {.lex_state = 77, .external_lex_state = 20}, - [3060] = {.lex_state = 83, .external_lex_state = 65}, - [3061] = {.lex_state = 77, .external_lex_state = 20}, - [3062] = {.lex_state = 77, .external_lex_state = 20}, - [3063] = {.lex_state = 77, .external_lex_state = 20}, - [3064] = {.lex_state = 77, .external_lex_state = 20}, - [3065] = {.lex_state = 77, .external_lex_state = 20}, - [3066] = {.lex_state = 77, .external_lex_state = 20}, - [3067] = {.lex_state = 78, .external_lex_state = 45}, - [3068] = {.lex_state = 77, .external_lex_state = 20}, - [3069] = {.lex_state = 77, .external_lex_state = 20}, - [3070] = {.lex_state = 77, .external_lex_state = 20}, - [3071] = {.lex_state = 77, .external_lex_state = 20}, - [3072] = {.lex_state = 77, .external_lex_state = 20}, - [3073] = {.lex_state = 77, .external_lex_state = 20}, - [3074] = {.lex_state = 77, .external_lex_state = 20}, - [3075] = {.lex_state = 77, .external_lex_state = 20}, - [3076] = {.lex_state = 77, .external_lex_state = 20}, - [3077] = {.lex_state = 77, .external_lex_state = 20}, - [3078] = {.lex_state = 77, .external_lex_state = 20}, - [3079] = {.lex_state = 77, .external_lex_state = 20}, - [3080] = {.lex_state = 77, .external_lex_state = 20}, - [3081] = {.lex_state = 77, .external_lex_state = 20}, - [3082] = {.lex_state = 77, .external_lex_state = 20}, - [3083] = {.lex_state = 77, .external_lex_state = 20}, - [3084] = {.lex_state = 77, .external_lex_state = 20}, - [3085] = {.lex_state = 77, .external_lex_state = 20}, - [3086] = {.lex_state = 77, .external_lex_state = 20}, - [3087] = {.lex_state = 77, .external_lex_state = 20}, - [3088] = {.lex_state = 77, .external_lex_state = 20}, - [3089] = {.lex_state = 77, .external_lex_state = 20}, - [3090] = {.lex_state = 77, .external_lex_state = 20}, - [3091] = {.lex_state = 77, .external_lex_state = 20}, - [3092] = {.lex_state = 77, .external_lex_state = 20}, - [3093] = {.lex_state = 77, .external_lex_state = 20}, - [3094] = {.lex_state = 77, .external_lex_state = 20}, - [3095] = {.lex_state = 77, .external_lex_state = 20}, - [3096] = {.lex_state = 77, .external_lex_state = 20}, - [3097] = {.lex_state = 77, .external_lex_state = 20}, - [3098] = {.lex_state = 77, .external_lex_state = 20}, - [3099] = {.lex_state = 77, .external_lex_state = 20}, - [3100] = {.lex_state = 77, .external_lex_state = 20}, - [3101] = {.lex_state = 77, .external_lex_state = 20}, - [3102] = {.lex_state = 77, .external_lex_state = 20}, - [3103] = {.lex_state = 77, .external_lex_state = 20}, - [3104] = {.lex_state = 77, .external_lex_state = 20}, - [3105] = {.lex_state = 77, .external_lex_state = 20}, - [3106] = {.lex_state = 77, .external_lex_state = 20}, - [3107] = {.lex_state = 77, .external_lex_state = 20}, - [3108] = {.lex_state = 77, .external_lex_state = 20}, - [3109] = {.lex_state = 77, .external_lex_state = 20}, - [3110] = {.lex_state = 77, .external_lex_state = 20}, - [3111] = {.lex_state = 77, .external_lex_state = 20}, - [3112] = {.lex_state = 77, .external_lex_state = 20}, - [3113] = {.lex_state = 77, .external_lex_state = 20}, - [3114] = {.lex_state = 77, .external_lex_state = 20}, - [3115] = {.lex_state = 77, .external_lex_state = 20}, - [3116] = {.lex_state = 77, .external_lex_state = 20}, - [3117] = {.lex_state = 77, .external_lex_state = 20}, - [3118] = {.lex_state = 77, .external_lex_state = 20}, - [3119] = {.lex_state = 77, .external_lex_state = 20}, - [3120] = {.lex_state = 77, .external_lex_state = 20}, - [3121] = {.lex_state = 77, .external_lex_state = 20}, - [3122] = {.lex_state = 77, .external_lex_state = 20}, - [3123] = {.lex_state = 75, .external_lex_state = 20}, - [3124] = {.lex_state = 77, .external_lex_state = 20}, - [3125] = {.lex_state = 77, .external_lex_state = 20}, - [3126] = {.lex_state = 77, .external_lex_state = 20}, - [3127] = {.lex_state = 77, .external_lex_state = 20}, - [3128] = {.lex_state = 77, .external_lex_state = 20}, - [3129] = {.lex_state = 77, .external_lex_state = 20}, - [3130] = {.lex_state = 77, .external_lex_state = 20}, - [3131] = {.lex_state = 77, .external_lex_state = 20}, - [3132] = {.lex_state = 77, .external_lex_state = 20}, - [3133] = {.lex_state = 77, .external_lex_state = 20}, - [3134] = {.lex_state = 77, .external_lex_state = 20}, - [3135] = {.lex_state = 77, .external_lex_state = 20}, - [3136] = {.lex_state = 77, .external_lex_state = 20}, - [3137] = {.lex_state = 77, .external_lex_state = 20}, - [3138] = {.lex_state = 77, .external_lex_state = 20}, - [3139] = {.lex_state = 77, .external_lex_state = 20}, - [3140] = {.lex_state = 77, .external_lex_state = 20}, - [3141] = {.lex_state = 77, .external_lex_state = 20}, - [3142] = {.lex_state = 77, .external_lex_state = 20}, - [3143] = {.lex_state = 77, .external_lex_state = 20}, - [3144] = {.lex_state = 77, .external_lex_state = 20}, - [3145] = {.lex_state = 77, .external_lex_state = 20}, - [3146] = {.lex_state = 77, .external_lex_state = 20}, - [3147] = {.lex_state = 77, .external_lex_state = 20}, - [3148] = {.lex_state = 77, .external_lex_state = 20}, - [3149] = {.lex_state = 77, .external_lex_state = 20}, - [3150] = {.lex_state = 77, .external_lex_state = 20}, - [3151] = {.lex_state = 77, .external_lex_state = 20}, - [3152] = {.lex_state = 77, .external_lex_state = 20}, - [3153] = {.lex_state = 77, .external_lex_state = 20}, - [3154] = {.lex_state = 77, .external_lex_state = 20}, - [3155] = {.lex_state = 77, .external_lex_state = 20}, - [3156] = {.lex_state = 77, .external_lex_state = 20}, - [3157] = {.lex_state = 77, .external_lex_state = 20}, - [3158] = {.lex_state = 77, .external_lex_state = 20}, - [3159] = {.lex_state = 77, .external_lex_state = 20}, - [3160] = {.lex_state = 77, .external_lex_state = 20}, - [3161] = {.lex_state = 77, .external_lex_state = 20}, - [3162] = {.lex_state = 77, .external_lex_state = 20}, - [3163] = {.lex_state = 77, .external_lex_state = 20}, - [3164] = {.lex_state = 77, .external_lex_state = 20}, - [3165] = {.lex_state = 77, .external_lex_state = 20}, - [3166] = {.lex_state = 77, .external_lex_state = 20}, - [3167] = {.lex_state = 77, .external_lex_state = 20}, - [3168] = {.lex_state = 77, .external_lex_state = 20}, - [3169] = {.lex_state = 77, .external_lex_state = 20}, - [3170] = {.lex_state = 77, .external_lex_state = 20}, - [3171] = {.lex_state = 77, .external_lex_state = 20}, - [3172] = {.lex_state = 77, .external_lex_state = 20}, - [3173] = {.lex_state = 77, .external_lex_state = 20}, - [3174] = {.lex_state = 77, .external_lex_state = 20}, - [3175] = {.lex_state = 77, .external_lex_state = 20}, - [3176] = {.lex_state = 77, .external_lex_state = 20}, - [3177] = {.lex_state = 77, .external_lex_state = 20}, - [3178] = {.lex_state = 77, .external_lex_state = 20}, - [3179] = {.lex_state = 77, .external_lex_state = 20}, - [3180] = {.lex_state = 77, .external_lex_state = 20}, - [3181] = {.lex_state = 77, .external_lex_state = 20}, - [3182] = {.lex_state = 77, .external_lex_state = 20}, - [3183] = {.lex_state = 77, .external_lex_state = 20}, - [3184] = {.lex_state = 77, .external_lex_state = 20}, - [3185] = {.lex_state = 77, .external_lex_state = 20}, - [3186] = {.lex_state = 77, .external_lex_state = 20}, - [3187] = {.lex_state = 77, .external_lex_state = 20}, - [3188] = {.lex_state = 77, .external_lex_state = 20}, - [3189] = {.lex_state = 77, .external_lex_state = 20}, - [3190] = {.lex_state = 77, .external_lex_state = 20}, - [3191] = {.lex_state = 77, .external_lex_state = 20}, - [3192] = {.lex_state = 77, .external_lex_state = 20}, - [3193] = {.lex_state = 77, .external_lex_state = 20}, - [3194] = {.lex_state = 77, .external_lex_state = 20}, - [3195] = {.lex_state = 77, .external_lex_state = 20}, - [3196] = {.lex_state = 77, .external_lex_state = 20}, - [3197] = {.lex_state = 77, .external_lex_state = 20}, - [3198] = {.lex_state = 77, .external_lex_state = 20}, - [3199] = {.lex_state = 77, .external_lex_state = 20}, - [3200] = {.lex_state = 77, .external_lex_state = 20}, - [3201] = {.lex_state = 77, .external_lex_state = 20}, - [3202] = {.lex_state = 77, .external_lex_state = 20}, - [3203] = {.lex_state = 77, .external_lex_state = 20}, - [3204] = {.lex_state = 77, .external_lex_state = 20}, - [3205] = {.lex_state = 77, .external_lex_state = 20}, - [3206] = {.lex_state = 77, .external_lex_state = 20}, - [3207] = {.lex_state = 77, .external_lex_state = 20}, - [3208] = {.lex_state = 77, .external_lex_state = 20}, - [3209] = {.lex_state = 77, .external_lex_state = 20}, - [3210] = {.lex_state = 77, .external_lex_state = 20}, - [3211] = {.lex_state = 77, .external_lex_state = 20}, - [3212] = {.lex_state = 77, .external_lex_state = 20}, - [3213] = {.lex_state = 77, .external_lex_state = 20}, - [3214] = {.lex_state = 77, .external_lex_state = 20}, - [3215] = {.lex_state = 77, .external_lex_state = 20}, - [3216] = {.lex_state = 77, .external_lex_state = 20}, - [3217] = {.lex_state = 77, .external_lex_state = 20}, - [3218] = {.lex_state = 77, .external_lex_state = 20}, - [3219] = {.lex_state = 77, .external_lex_state = 20}, - [3220] = {.lex_state = 77, .external_lex_state = 20}, - [3221] = {.lex_state = 77, .external_lex_state = 20}, - [3222] = {.lex_state = 77, .external_lex_state = 20}, - [3223] = {.lex_state = 77, .external_lex_state = 20}, - [3224] = {.lex_state = 77, .external_lex_state = 20}, - [3225] = {.lex_state = 77, .external_lex_state = 20}, - [3226] = {.lex_state = 77, .external_lex_state = 20}, - [3227] = {.lex_state = 77, .external_lex_state = 20}, - [3228] = {.lex_state = 77, .external_lex_state = 20}, - [3229] = {.lex_state = 77, .external_lex_state = 20}, - [3230] = {.lex_state = 77, .external_lex_state = 20}, - [3231] = {.lex_state = 77, .external_lex_state = 20}, - [3232] = {.lex_state = 77, .external_lex_state = 20}, - [3233] = {.lex_state = 77, .external_lex_state = 20}, - [3234] = {.lex_state = 77, .external_lex_state = 20}, - [3235] = {.lex_state = 77, .external_lex_state = 20}, - [3236] = {.lex_state = 77, .external_lex_state = 20}, - [3237] = {.lex_state = 77, .external_lex_state = 20}, - [3238] = {.lex_state = 77, .external_lex_state = 20}, - [3239] = {.lex_state = 77, .external_lex_state = 20}, - [3240] = {.lex_state = 77, .external_lex_state = 20}, - [3241] = {.lex_state = 77, .external_lex_state = 20}, - [3242] = {.lex_state = 77, .external_lex_state = 20}, - [3243] = {.lex_state = 77, .external_lex_state = 20}, - [3244] = {.lex_state = 77, .external_lex_state = 20}, - [3245] = {.lex_state = 77, .external_lex_state = 20}, - [3246] = {.lex_state = 77, .external_lex_state = 20}, - [3247] = {.lex_state = 77, .external_lex_state = 20}, - [3248] = {.lex_state = 77, .external_lex_state = 20}, - [3249] = {.lex_state = 77, .external_lex_state = 20}, - [3250] = {.lex_state = 636, .external_lex_state = 20}, - [3251] = {.lex_state = 77, .external_lex_state = 20}, - [3252] = {.lex_state = 77, .external_lex_state = 20}, - [3253] = {.lex_state = 77, .external_lex_state = 20}, - [3254] = {.lex_state = 77, .external_lex_state = 20}, - [3255] = {.lex_state = 77, .external_lex_state = 20}, - [3256] = {.lex_state = 77, .external_lex_state = 20}, - [3257] = {.lex_state = 77, .external_lex_state = 20}, - [3258] = {.lex_state = 77, .external_lex_state = 20}, - [3259] = {.lex_state = 77, .external_lex_state = 20}, - [3260] = {.lex_state = 77, .external_lex_state = 20}, - [3261] = {.lex_state = 77, .external_lex_state = 20}, - [3262] = {.lex_state = 77, .external_lex_state = 20}, - [3263] = {.lex_state = 77, .external_lex_state = 20}, - [3264] = {.lex_state = 77, .external_lex_state = 20}, - [3265] = {.lex_state = 77, .external_lex_state = 20}, - [3266] = {.lex_state = 77, .external_lex_state = 20}, - [3267] = {.lex_state = 77, .external_lex_state = 20}, - [3268] = {.lex_state = 77, .external_lex_state = 20}, - [3269] = {.lex_state = 77, .external_lex_state = 20}, - [3270] = {.lex_state = 77, .external_lex_state = 20}, - [3271] = {.lex_state = 77, .external_lex_state = 20}, - [3272] = {.lex_state = 77, .external_lex_state = 20}, - [3273] = {.lex_state = 77, .external_lex_state = 20}, - [3274] = {.lex_state = 77, .external_lex_state = 20}, - [3275] = {.lex_state = 77, .external_lex_state = 20}, - [3276] = {.lex_state = 77, .external_lex_state = 20}, - [3277] = {.lex_state = 77, .external_lex_state = 20}, - [3278] = {.lex_state = 77, .external_lex_state = 20}, - [3279] = {.lex_state = 77, .external_lex_state = 20}, - [3280] = {.lex_state = 77, .external_lex_state = 20}, - [3281] = {.lex_state = 77, .external_lex_state = 20}, - [3282] = {.lex_state = 77, .external_lex_state = 20}, - [3283] = {.lex_state = 78, .external_lex_state = 45}, - [3284] = {.lex_state = 77, .external_lex_state = 20}, - [3285] = {.lex_state = 77, .external_lex_state = 20}, - [3286] = {.lex_state = 97, .external_lex_state = 45}, - [3287] = {.lex_state = 77, .external_lex_state = 20}, - [3288] = {.lex_state = 77, .external_lex_state = 20}, - [3289] = {.lex_state = 77, .external_lex_state = 20}, - [3290] = {.lex_state = 77, .external_lex_state = 20}, - [3291] = {.lex_state = 77, .external_lex_state = 20}, - [3292] = {.lex_state = 77, .external_lex_state = 20}, - [3293] = {.lex_state = 77, .external_lex_state = 20}, - [3294] = {.lex_state = 77, .external_lex_state = 20}, - [3295] = {.lex_state = 77, .external_lex_state = 20}, - [3296] = {.lex_state = 77, .external_lex_state = 20}, - [3297] = {.lex_state = 77, .external_lex_state = 20}, - [3298] = {.lex_state = 77, .external_lex_state = 20}, - [3299] = {.lex_state = 77, .external_lex_state = 20}, - [3300] = {.lex_state = 77, .external_lex_state = 20}, - [3301] = {.lex_state = 77, .external_lex_state = 20}, - [3302] = {.lex_state = 77, .external_lex_state = 20}, - [3303] = {.lex_state = 77, .external_lex_state = 20}, - [3304] = {.lex_state = 77, .external_lex_state = 20}, - [3305] = {.lex_state = 77, .external_lex_state = 20}, - [3306] = {.lex_state = 77, .external_lex_state = 20}, - [3307] = {.lex_state = 77, .external_lex_state = 20}, - [3308] = {.lex_state = 77, .external_lex_state = 20}, - [3309] = {.lex_state = 77, .external_lex_state = 20}, - [3310] = {.lex_state = 77, .external_lex_state = 20}, - [3311] = {.lex_state = 77, .external_lex_state = 20}, - [3312] = {.lex_state = 77, .external_lex_state = 20}, - [3313] = {.lex_state = 77, .external_lex_state = 20}, - [3314] = {.lex_state = 77, .external_lex_state = 20}, - [3315] = {.lex_state = 77, .external_lex_state = 20}, - [3316] = {.lex_state = 77, .external_lex_state = 20}, - [3317] = {.lex_state = 78, .external_lex_state = 45}, - [3318] = {.lex_state = 77, .external_lex_state = 20}, - [3319] = {.lex_state = 77, .external_lex_state = 20}, - [3320] = {.lex_state = 77, .external_lex_state = 20}, - [3321] = {.lex_state = 78, .external_lex_state = 45}, - [3322] = {.lex_state = 77, .external_lex_state = 20}, - [3323] = {.lex_state = 77, .external_lex_state = 20}, - [3324] = {.lex_state = 77, .external_lex_state = 20}, - [3325] = {.lex_state = 77, .external_lex_state = 20}, - [3326] = {.lex_state = 77, .external_lex_state = 20}, - [3327] = {.lex_state = 77, .external_lex_state = 20}, - [3328] = {.lex_state = 77, .external_lex_state = 20}, - [3329] = {.lex_state = 77, .external_lex_state = 20}, - [3330] = {.lex_state = 77, .external_lex_state = 20}, - [3331] = {.lex_state = 77, .external_lex_state = 20}, - [3332] = {.lex_state = 77, .external_lex_state = 20}, - [3333] = {.lex_state = 77, .external_lex_state = 20}, - [3334] = {.lex_state = 77, .external_lex_state = 20}, - [3335] = {.lex_state = 77, .external_lex_state = 20}, - [3336] = {.lex_state = 77, .external_lex_state = 20}, - [3337] = {.lex_state = 77, .external_lex_state = 20}, - [3338] = {.lex_state = 77, .external_lex_state = 20}, - [3339] = {.lex_state = 77, .external_lex_state = 20}, - [3340] = {.lex_state = 77, .external_lex_state = 20}, - [3341] = {.lex_state = 77, .external_lex_state = 20}, - [3342] = {.lex_state = 77, .external_lex_state = 20}, - [3343] = {.lex_state = 77, .external_lex_state = 20}, - [3344] = {.lex_state = 77, .external_lex_state = 20}, - [3345] = {.lex_state = 77, .external_lex_state = 20}, - [3346] = {.lex_state = 77, .external_lex_state = 20}, - [3347] = {.lex_state = 77, .external_lex_state = 20}, - [3348] = {.lex_state = 77, .external_lex_state = 20}, - [3349] = {.lex_state = 77, .external_lex_state = 20}, - [3350] = {.lex_state = 77, .external_lex_state = 20}, - [3351] = {.lex_state = 77, .external_lex_state = 20}, - [3352] = {.lex_state = 97, .external_lex_state = 45}, - [3353] = {.lex_state = 77, .external_lex_state = 20}, - [3354] = {.lex_state = 77, .external_lex_state = 20}, - [3355] = {.lex_state = 77, .external_lex_state = 20}, - [3356] = {.lex_state = 77, .external_lex_state = 20}, - [3357] = {.lex_state = 77, .external_lex_state = 20}, - [3358] = {.lex_state = 77, .external_lex_state = 20}, - [3359] = {.lex_state = 77, .external_lex_state = 20}, - [3360] = {.lex_state = 77, .external_lex_state = 20}, - [3361] = {.lex_state = 77, .external_lex_state = 20}, - [3362] = {.lex_state = 77, .external_lex_state = 20}, - [3363] = {.lex_state = 77, .external_lex_state = 20}, - [3364] = {.lex_state = 77, .external_lex_state = 20}, - [3365] = {.lex_state = 77, .external_lex_state = 20}, - [3366] = {.lex_state = 77, .external_lex_state = 20}, - [3367] = {.lex_state = 77, .external_lex_state = 20}, - [3368] = {.lex_state = 77, .external_lex_state = 20}, - [3369] = {.lex_state = 77, .external_lex_state = 20}, - [3370] = {.lex_state = 77, .external_lex_state = 20}, - [3371] = {.lex_state = 77, .external_lex_state = 20}, - [3372] = {.lex_state = 77, .external_lex_state = 20}, - [3373] = {.lex_state = 77, .external_lex_state = 20}, - [3374] = {.lex_state = 77, .external_lex_state = 20}, - [3375] = {.lex_state = 77, .external_lex_state = 20}, - [3376] = {.lex_state = 77, .external_lex_state = 20}, - [3377] = {.lex_state = 77, .external_lex_state = 20}, - [3378] = {.lex_state = 77, .external_lex_state = 20}, - [3379] = {.lex_state = 77, .external_lex_state = 20}, - [3380] = {.lex_state = 77, .external_lex_state = 20}, - [3381] = {.lex_state = 77, .external_lex_state = 20}, - [3382] = {.lex_state = 77, .external_lex_state = 20}, - [3383] = {.lex_state = 77, .external_lex_state = 20}, - [3384] = {.lex_state = 77, .external_lex_state = 20}, - [3385] = {.lex_state = 77, .external_lex_state = 20}, - [3386] = {.lex_state = 77, .external_lex_state = 20}, - [3387] = {.lex_state = 77, .external_lex_state = 20}, - [3388] = {.lex_state = 77, .external_lex_state = 20}, - [3389] = {.lex_state = 77, .external_lex_state = 20}, - [3390] = {.lex_state = 77, .external_lex_state = 20}, - [3391] = {.lex_state = 77, .external_lex_state = 20}, - [3392] = {.lex_state = 77, .external_lex_state = 20}, - [3393] = {.lex_state = 78, .external_lex_state = 45}, - [3394] = {.lex_state = 77, .external_lex_state = 20}, - [3395] = {.lex_state = 77, .external_lex_state = 20}, - [3396] = {.lex_state = 77, .external_lex_state = 20}, - [3397] = {.lex_state = 77, .external_lex_state = 20}, - [3398] = {.lex_state = 97, .external_lex_state = 45}, - [3399] = {.lex_state = 77, .external_lex_state = 20}, - [3400] = {.lex_state = 77, .external_lex_state = 20}, - [3401] = {.lex_state = 77, .external_lex_state = 20}, - [3402] = {.lex_state = 77, .external_lex_state = 20}, - [3403] = {.lex_state = 77, .external_lex_state = 20}, - [3404] = {.lex_state = 77, .external_lex_state = 20}, - [3405] = {.lex_state = 77, .external_lex_state = 20}, - [3406] = {.lex_state = 77, .external_lex_state = 20}, - [3407] = {.lex_state = 77, .external_lex_state = 20}, - [3408] = {.lex_state = 77, .external_lex_state = 20}, - [3409] = {.lex_state = 77, .external_lex_state = 20}, - [3410] = {.lex_state = 77, .external_lex_state = 20}, - [3411] = {.lex_state = 77, .external_lex_state = 20}, - [3412] = {.lex_state = 77, .external_lex_state = 20}, - [3413] = {.lex_state = 77, .external_lex_state = 20}, - [3414] = {.lex_state = 77, .external_lex_state = 20}, - [3415] = {.lex_state = 77, .external_lex_state = 20}, - [3416] = {.lex_state = 77, .external_lex_state = 20}, - [3417] = {.lex_state = 77, .external_lex_state = 20}, - [3418] = {.lex_state = 77, .external_lex_state = 20}, - [3419] = {.lex_state = 77, .external_lex_state = 20}, - [3420] = {.lex_state = 77, .external_lex_state = 20}, - [3421] = {.lex_state = 77, .external_lex_state = 20}, - [3422] = {.lex_state = 77, .external_lex_state = 20}, - [3423] = {.lex_state = 77, .external_lex_state = 20}, - [3424] = {.lex_state = 77, .external_lex_state = 20}, - [3425] = {.lex_state = 77, .external_lex_state = 20}, - [3426] = {.lex_state = 77, .external_lex_state = 20}, - [3427] = {.lex_state = 77, .external_lex_state = 20}, - [3428] = {.lex_state = 77, .external_lex_state = 20}, - [3429] = {.lex_state = 77, .external_lex_state = 20}, - [3430] = {.lex_state = 77, .external_lex_state = 20}, - [3431] = {.lex_state = 77, .external_lex_state = 20}, - [3432] = {.lex_state = 77, .external_lex_state = 20}, - [3433] = {.lex_state = 77, .external_lex_state = 20}, - [3434] = {.lex_state = 77, .external_lex_state = 20}, - [3435] = {.lex_state = 77, .external_lex_state = 20}, - [3436] = {.lex_state = 77, .external_lex_state = 20}, - [3437] = {.lex_state = 77, .external_lex_state = 20}, - [3438] = {.lex_state = 77, .external_lex_state = 20}, - [3439] = {.lex_state = 77, .external_lex_state = 20}, - [3440] = {.lex_state = 77, .external_lex_state = 20}, - [3441] = {.lex_state = 77, .external_lex_state = 20}, - [3442] = {.lex_state = 77, .external_lex_state = 20}, - [3443] = {.lex_state = 77, .external_lex_state = 20}, - [3444] = {.lex_state = 77, .external_lex_state = 20}, - [3445] = {.lex_state = 77, .external_lex_state = 20}, - [3446] = {.lex_state = 77, .external_lex_state = 20}, - [3447] = {.lex_state = 77, .external_lex_state = 20}, - [3448] = {.lex_state = 77, .external_lex_state = 20}, - [3449] = {.lex_state = 77, .external_lex_state = 20}, - [3450] = {.lex_state = 77, .external_lex_state = 20}, - [3451] = {.lex_state = 77, .external_lex_state = 20}, - [3452] = {.lex_state = 77, .external_lex_state = 20}, - [3453] = {.lex_state = 77, .external_lex_state = 20}, - [3454] = {.lex_state = 77, .external_lex_state = 20}, - [3455] = {.lex_state = 77, .external_lex_state = 20}, - [3456] = {.lex_state = 77, .external_lex_state = 20}, - [3457] = {.lex_state = 77, .external_lex_state = 20}, - [3458] = {.lex_state = 77, .external_lex_state = 20}, - [3459] = {.lex_state = 97, .external_lex_state = 45}, - [3460] = {.lex_state = 77, .external_lex_state = 20}, - [3461] = {.lex_state = 77, .external_lex_state = 20}, - [3462] = {.lex_state = 77, .external_lex_state = 20}, - [3463] = {.lex_state = 83, .external_lex_state = 45}, - [3464] = {.lex_state = 97, .external_lex_state = 45}, - [3465] = {.lex_state = 636, .external_lex_state = 20}, - [3466] = {.lex_state = 83, .external_lex_state = 45}, - [3467] = {.lex_state = 83, .external_lex_state = 45}, - [3468] = {.lex_state = 83, .external_lex_state = 45}, - [3469] = {.lex_state = 82, .external_lex_state = 45}, - [3470] = {.lex_state = 83, .external_lex_state = 45}, - [3471] = {.lex_state = 83, .external_lex_state = 45}, - [3472] = {.lex_state = 78, .external_lex_state = 20}, - [3473] = {.lex_state = 82, .external_lex_state = 45}, - [3474] = {.lex_state = 78, .external_lex_state = 20}, - [3475] = {.lex_state = 78, .external_lex_state = 20}, - [3476] = {.lex_state = 77, .external_lex_state = 20}, - [3477] = {.lex_state = 83, .external_lex_state = 45}, - [3478] = {.lex_state = 78, .external_lex_state = 20}, - [3479] = {.lex_state = 83, .external_lex_state = 45}, - [3480] = {.lex_state = 83, .external_lex_state = 45}, - [3481] = {.lex_state = 83, .external_lex_state = 45}, - [3482] = {.lex_state = 97, .external_lex_state = 45}, - [3483] = {.lex_state = 83, .external_lex_state = 45}, - [3484] = {.lex_state = 97, .external_lex_state = 45}, - [3485] = {.lex_state = 83, .external_lex_state = 45}, - [3486] = {.lex_state = 83, .external_lex_state = 45}, - [3487] = {.lex_state = 83, .external_lex_state = 45}, - [3488] = {.lex_state = 83, .external_lex_state = 45}, - [3489] = {.lex_state = 83, .external_lex_state = 45}, - [3490] = {.lex_state = 83, .external_lex_state = 45}, - [3491] = {.lex_state = 83, .external_lex_state = 45}, - [3492] = {.lex_state = 83, .external_lex_state = 45}, - [3493] = {.lex_state = 83, .external_lex_state = 45}, - [3494] = {.lex_state = 97, .external_lex_state = 45}, - [3495] = {.lex_state = 83, .external_lex_state = 45}, - [3496] = {.lex_state = 97, .external_lex_state = 45}, - [3497] = {.lex_state = 83, .external_lex_state = 45}, - [3498] = {.lex_state = 83, .external_lex_state = 45}, - [3499] = {.lex_state = 83, .external_lex_state = 45}, - [3500] = {.lex_state = 83, .external_lex_state = 45}, - [3501] = {.lex_state = 83, .external_lex_state = 45}, - [3502] = {.lex_state = 636, .external_lex_state = 20}, - [3503] = {.lex_state = 83, .external_lex_state = 45}, - [3504] = {.lex_state = 97, .external_lex_state = 20}, - [3505] = {.lex_state = 83, .external_lex_state = 45}, - [3506] = {.lex_state = 83, .external_lex_state = 45}, - [3507] = {.lex_state = 83, .external_lex_state = 45}, - [3508] = {.lex_state = 83, .external_lex_state = 45}, - [3509] = {.lex_state = 83, .external_lex_state = 45}, - [3510] = {.lex_state = 83, .external_lex_state = 45}, - [3511] = {.lex_state = 97, .external_lex_state = 20}, - [3512] = {.lex_state = 97, .external_lex_state = 20}, - [3513] = {.lex_state = 97, .external_lex_state = 20}, - [3514] = {.lex_state = 97, .external_lex_state = 20}, - [3515] = {.lex_state = 77, .external_lex_state = 20}, - [3516] = {.lex_state = 77, .external_lex_state = 20}, - [3517] = {.lex_state = 77, .external_lex_state = 20}, - [3518] = {.lex_state = 77, .external_lex_state = 20}, - [3519] = {.lex_state = 77, .external_lex_state = 20}, - [3520] = {.lex_state = 77, .external_lex_state = 20}, - [3521] = {.lex_state = 77, .external_lex_state = 20}, - [3522] = {.lex_state = 77, .external_lex_state = 20}, - [3523] = {.lex_state = 77, .external_lex_state = 20}, - [3524] = {.lex_state = 77, .external_lex_state = 20}, - [3525] = {.lex_state = 77, .external_lex_state = 20}, - [3526] = {.lex_state = 77, .external_lex_state = 20}, - [3527] = {.lex_state = 77, .external_lex_state = 20}, - [3528] = {.lex_state = 77, .external_lex_state = 20}, - [3529] = {.lex_state = 77, .external_lex_state = 20}, - [3530] = {.lex_state = 77, .external_lex_state = 20}, - [3531] = {.lex_state = 77, .external_lex_state = 20}, - [3532] = {.lex_state = 77, .external_lex_state = 20}, - [3533] = {.lex_state = 77, .external_lex_state = 20}, - [3534] = {.lex_state = 77, .external_lex_state = 20}, - [3535] = {.lex_state = 77, .external_lex_state = 20}, - [3536] = {.lex_state = 77, .external_lex_state = 20}, - [3537] = {.lex_state = 77, .external_lex_state = 20}, - [3538] = {.lex_state = 77, .external_lex_state = 20}, - [3539] = {.lex_state = 77, .external_lex_state = 20}, - [3540] = {.lex_state = 77, .external_lex_state = 20}, - [3541] = {.lex_state = 77, .external_lex_state = 20}, - [3542] = {.lex_state = 77, .external_lex_state = 20}, - [3543] = {.lex_state = 77, .external_lex_state = 20}, - [3544] = {.lex_state = 77, .external_lex_state = 20}, - [3545] = {.lex_state = 77, .external_lex_state = 20}, - [3546] = {.lex_state = 77, .external_lex_state = 20}, - [3547] = {.lex_state = 77, .external_lex_state = 20}, - [3548] = {.lex_state = 77, .external_lex_state = 20}, - [3549] = {.lex_state = 77, .external_lex_state = 20}, - [3550] = {.lex_state = 77, .external_lex_state = 20}, - [3551] = {.lex_state = 77, .external_lex_state = 20}, - [3552] = {.lex_state = 77, .external_lex_state = 20}, - [3553] = {.lex_state = 77, .external_lex_state = 20}, - [3554] = {.lex_state = 77, .external_lex_state = 20}, - [3555] = {.lex_state = 77, .external_lex_state = 20}, - [3556] = {.lex_state = 77, .external_lex_state = 20}, - [3557] = {.lex_state = 77, .external_lex_state = 20}, - [3558] = {.lex_state = 77, .external_lex_state = 20}, - [3559] = {.lex_state = 77, .external_lex_state = 20}, - [3560] = {.lex_state = 77, .external_lex_state = 20}, - [3561] = {.lex_state = 77, .external_lex_state = 20}, - [3562] = {.lex_state = 77, .external_lex_state = 20}, - [3563] = {.lex_state = 77, .external_lex_state = 20}, - [3564] = {.lex_state = 77, .external_lex_state = 20}, - [3565] = {.lex_state = 77, .external_lex_state = 20}, - [3566] = {.lex_state = 77, .external_lex_state = 20}, - [3567] = {.lex_state = 77, .external_lex_state = 20}, - [3568] = {.lex_state = 77, .external_lex_state = 20}, - [3569] = {.lex_state = 77, .external_lex_state = 20}, - [3570] = {.lex_state = 77, .external_lex_state = 20}, - [3571] = {.lex_state = 77, .external_lex_state = 20}, - [3572] = {.lex_state = 77, .external_lex_state = 20}, - [3573] = {.lex_state = 77, .external_lex_state = 20}, - [3574] = {.lex_state = 77, .external_lex_state = 20}, - [3575] = {.lex_state = 77, .external_lex_state = 20}, - [3576] = {.lex_state = 77, .external_lex_state = 20}, - [3577] = {.lex_state = 77, .external_lex_state = 20}, - [3578] = {.lex_state = 77, .external_lex_state = 20}, - [3579] = {.lex_state = 77, .external_lex_state = 20}, - [3580] = {.lex_state = 77, .external_lex_state = 20}, - [3581] = {.lex_state = 77, .external_lex_state = 20}, - [3582] = {.lex_state = 77, .external_lex_state = 20}, - [3583] = {.lex_state = 77, .external_lex_state = 20}, - [3584] = {.lex_state = 77, .external_lex_state = 20}, - [3585] = {.lex_state = 77, .external_lex_state = 20}, - [3586] = {.lex_state = 77, .external_lex_state = 20}, - [3587] = {.lex_state = 77, .external_lex_state = 20}, - [3588] = {.lex_state = 77, .external_lex_state = 20}, - [3589] = {.lex_state = 77, .external_lex_state = 20}, - [3590] = {.lex_state = 77, .external_lex_state = 20}, - [3591] = {.lex_state = 77, .external_lex_state = 20}, - [3592] = {.lex_state = 77, .external_lex_state = 20}, - [3593] = {.lex_state = 77, .external_lex_state = 20}, - [3594] = {.lex_state = 77, .external_lex_state = 20}, - [3595] = {.lex_state = 77, .external_lex_state = 20}, - [3596] = {.lex_state = 77, .external_lex_state = 20}, - [3597] = {.lex_state = 77, .external_lex_state = 20}, - [3598] = {.lex_state = 77, .external_lex_state = 20}, - [3599] = {.lex_state = 77, .external_lex_state = 20}, - [3600] = {.lex_state = 77, .external_lex_state = 20}, - [3601] = {.lex_state = 77, .external_lex_state = 20}, - [3602] = {.lex_state = 77, .external_lex_state = 20}, - [3603] = {.lex_state = 77, .external_lex_state = 20}, - [3604] = {.lex_state = 77, .external_lex_state = 20}, - [3605] = {.lex_state = 77, .external_lex_state = 20}, - [3606] = {.lex_state = 77, .external_lex_state = 20}, - [3607] = {.lex_state = 77, .external_lex_state = 20}, - [3608] = {.lex_state = 636, .external_lex_state = 66}, - [3609] = {.lex_state = 77, .external_lex_state = 20}, - [3610] = {.lex_state = 77, .external_lex_state = 20}, - [3611] = {.lex_state = 77, .external_lex_state = 20}, - [3612] = {.lex_state = 77, .external_lex_state = 20}, - [3613] = {.lex_state = 77, .external_lex_state = 20}, - [3614] = {.lex_state = 77, .external_lex_state = 20}, - [3615] = {.lex_state = 77, .external_lex_state = 20}, - [3616] = {.lex_state = 77, .external_lex_state = 20}, - [3617] = {.lex_state = 77, .external_lex_state = 20}, - [3618] = {.lex_state = 77, .external_lex_state = 20}, - [3619] = {.lex_state = 77, .external_lex_state = 20}, - [3620] = {.lex_state = 77, .external_lex_state = 20}, - [3621] = {.lex_state = 77, .external_lex_state = 20}, - [3622] = {.lex_state = 77, .external_lex_state = 20}, - [3623] = {.lex_state = 77, .external_lex_state = 20}, - [3624] = {.lex_state = 77, .external_lex_state = 20}, - [3625] = {.lex_state = 77, .external_lex_state = 20}, - [3626] = {.lex_state = 77, .external_lex_state = 20}, - [3627] = {.lex_state = 77, .external_lex_state = 20}, - [3628] = {.lex_state = 77, .external_lex_state = 20}, - [3629] = {.lex_state = 77, .external_lex_state = 20}, - [3630] = {.lex_state = 77, .external_lex_state = 20}, - [3631] = {.lex_state = 77, .external_lex_state = 20}, - [3632] = {.lex_state = 77, .external_lex_state = 20}, - [3633] = {.lex_state = 77, .external_lex_state = 20}, - [3634] = {.lex_state = 77, .external_lex_state = 20}, - [3635] = {.lex_state = 77, .external_lex_state = 20}, - [3636] = {.lex_state = 77, .external_lex_state = 20}, - [3637] = {.lex_state = 77, .external_lex_state = 20}, - [3638] = {.lex_state = 77, .external_lex_state = 20}, - [3639] = {.lex_state = 77, .external_lex_state = 20}, - [3640] = {.lex_state = 77, .external_lex_state = 20}, - [3641] = {.lex_state = 77, .external_lex_state = 20}, - [3642] = {.lex_state = 77, .external_lex_state = 20}, - [3643] = {.lex_state = 77, .external_lex_state = 20}, - [3644] = {.lex_state = 77, .external_lex_state = 20}, - [3645] = {.lex_state = 77, .external_lex_state = 20}, - [3646] = {.lex_state = 77, .external_lex_state = 20}, - [3647] = {.lex_state = 77, .external_lex_state = 20}, - [3648] = {.lex_state = 69, .external_lex_state = 64}, - [3649] = {.lex_state = 69, .external_lex_state = 64}, - [3650] = {.lex_state = 636, .external_lex_state = 66}, - [3651] = {.lex_state = 69, .external_lex_state = 64}, - [3652] = {.lex_state = 69, .external_lex_state = 64}, - [3653] = {.lex_state = 649, .external_lex_state = 66}, - [3654] = {.lex_state = 69, .external_lex_state = 64}, - [3655] = {.lex_state = 69, .external_lex_state = 64}, - [3656] = {.lex_state = 649, .external_lex_state = 66}, - [3657] = {.lex_state = 636, .external_lex_state = 67}, - [3658] = {.lex_state = 69, .external_lex_state = 64}, - [3659] = {.lex_state = 69, .external_lex_state = 64}, - [3660] = {.lex_state = 69, .external_lex_state = 64}, - [3661] = {.lex_state = 649, .external_lex_state = 66}, - [3662] = {.lex_state = 636, .external_lex_state = 67}, - [3663] = {.lex_state = 69, .external_lex_state = 64}, - [3664] = {.lex_state = 649, .external_lex_state = 66}, - [3665] = {.lex_state = 649, .external_lex_state = 66}, - [3666] = {.lex_state = 636, .external_lex_state = 67}, - [3667] = {.lex_state = 636, .external_lex_state = 67}, - [3668] = {.lex_state = 636, .external_lex_state = 37}, - [3669] = {.lex_state = 636, .external_lex_state = 68}, - [3670] = {.lex_state = 649, .external_lex_state = 66}, - [3671] = {.lex_state = 649, .external_lex_state = 66}, - [3672] = {.lex_state = 37, .external_lex_state = 37}, - [3673] = {.lex_state = 636, .external_lex_state = 67}, - [3674] = {.lex_state = 37, .external_lex_state = 37}, - [3675] = {.lex_state = 636, .external_lex_state = 67}, - [3676] = {.lex_state = 636, .external_lex_state = 67}, - [3677] = {.lex_state = 649, .external_lex_state = 66}, - [3678] = {.lex_state = 649, .external_lex_state = 66}, - [3679] = {.lex_state = 649, .external_lex_state = 66}, - [3680] = {.lex_state = 636, .external_lex_state = 67}, - [3681] = {.lex_state = 636, .external_lex_state = 67}, - [3682] = {.lex_state = 636, .external_lex_state = 67}, - [3683] = {.lex_state = 636, .external_lex_state = 68}, - [3684] = {.lex_state = 636, .external_lex_state = 69}, - [3685] = {.lex_state = 636, .external_lex_state = 67}, - [3686] = {.lex_state = 636, .external_lex_state = 67}, - [3687] = {.lex_state = 636, .external_lex_state = 68}, - [3688] = {.lex_state = 636, .external_lex_state = 66}, - [3689] = {.lex_state = 636, .external_lex_state = 69}, - [3690] = {.lex_state = 636, .external_lex_state = 69}, - [3691] = {.lex_state = 636, .external_lex_state = 69}, - [3692] = {.lex_state = 636, .external_lex_state = 68}, - [3693] = {.lex_state = 636, .external_lex_state = 66}, - [3694] = {.lex_state = 636, .external_lex_state = 67}, - [3695] = {.lex_state = 636, .external_lex_state = 66}, - [3696] = {.lex_state = 636, .external_lex_state = 70}, - [3697] = {.lex_state = 37, .external_lex_state = 35}, - [3698] = {.lex_state = 636, .external_lex_state = 68}, - [3699] = {.lex_state = 636, .external_lex_state = 67}, - [3700] = {.lex_state = 37, .external_lex_state = 37}, - [3701] = {.lex_state = 636, .external_lex_state = 68}, - [3702] = {.lex_state = 636, .external_lex_state = 68}, - [3703] = {.lex_state = 636, .external_lex_state = 69}, - [3704] = {.lex_state = 636, .external_lex_state = 71}, - [3705] = {.lex_state = 37, .external_lex_state = 37}, - [3706] = {.lex_state = 37, .external_lex_state = 37}, - [3707] = {.lex_state = 636, .external_lex_state = 68}, - [3708] = {.lex_state = 636, .external_lex_state = 66}, - [3709] = {.lex_state = 636, .external_lex_state = 68}, - [3710] = {.lex_state = 636, .external_lex_state = 68}, - [3711] = {.lex_state = 636, .external_lex_state = 68}, - [3712] = {.lex_state = 636, .external_lex_state = 70}, - [3713] = {.lex_state = 37, .external_lex_state = 37}, - [3714] = {.lex_state = 636, .external_lex_state = 70}, - [3715] = {.lex_state = 649, .external_lex_state = 66}, - [3716] = {.lex_state = 636, .external_lex_state = 67}, - [3717] = {.lex_state = 636, .external_lex_state = 70}, - [3718] = {.lex_state = 37, .external_lex_state = 35}, - [3719] = {.lex_state = 97, .external_lex_state = 20}, - [3720] = {.lex_state = 636, .external_lex_state = 70}, - [3721] = {.lex_state = 636, .external_lex_state = 20}, - [3722] = {.lex_state = 97, .external_lex_state = 20}, - [3723] = {.lex_state = 37, .external_lex_state = 37}, - [3724] = {.lex_state = 37, .external_lex_state = 35}, - [3725] = {.lex_state = 636, .external_lex_state = 37}, - [3726] = {.lex_state = 636, .external_lex_state = 66}, - [3727] = {.lex_state = 37, .external_lex_state = 35}, - [3728] = {.lex_state = 649, .external_lex_state = 66}, - [3729] = {.lex_state = 636, .external_lex_state = 69}, - [3730] = {.lex_state = 636, .external_lex_state = 66}, - [3731] = {.lex_state = 636, .external_lex_state = 70}, - [3732] = {.lex_state = 636, .external_lex_state = 66}, - [3733] = {.lex_state = 636, .external_lex_state = 67}, - [3734] = {.lex_state = 636, .external_lex_state = 68}, - [3735] = {.lex_state = 636, .external_lex_state = 66}, - [3736] = {.lex_state = 636, .external_lex_state = 67}, - [3737] = {.lex_state = 636, .external_lex_state = 71}, - [3738] = {.lex_state = 636, .external_lex_state = 72}, - [3739] = {.lex_state = 636, .external_lex_state = 66}, - [3740] = {.lex_state = 636, .external_lex_state = 69}, - [3741] = {.lex_state = 636, .external_lex_state = 71}, - [3742] = {.lex_state = 37, .external_lex_state = 37}, - [3743] = {.lex_state = 636, .external_lex_state = 69}, - [3744] = {.lex_state = 636, .external_lex_state = 73}, - [3745] = {.lex_state = 636, .external_lex_state = 67}, - [3746] = {.lex_state = 37, .external_lex_state = 35}, - [3747] = {.lex_state = 636, .external_lex_state = 66}, - [3748] = {.lex_state = 37, .external_lex_state = 35}, - [3749] = {.lex_state = 79, .external_lex_state = 20}, - [3750] = {.lex_state = 37, .external_lex_state = 37}, - [3751] = {.lex_state = 636, .external_lex_state = 69}, - [3752] = {.lex_state = 636, .external_lex_state = 70}, - [3753] = {.lex_state = 636, .external_lex_state = 37}, - [3754] = {.lex_state = 636, .external_lex_state = 74}, - [3755] = {.lex_state = 636, .external_lex_state = 71}, - [3756] = {.lex_state = 636, .external_lex_state = 66}, - [3757] = {.lex_state = 636, .external_lex_state = 72}, - [3758] = {.lex_state = 636, .external_lex_state = 72}, - [3759] = {.lex_state = 649, .external_lex_state = 73}, - [3760] = {.lex_state = 636, .external_lex_state = 69}, - [3761] = {.lex_state = 636, .external_lex_state = 74}, - [3762] = {.lex_state = 636, .external_lex_state = 69}, - [3763] = {.lex_state = 649, .external_lex_state = 73}, - [3764] = {.lex_state = 636, .external_lex_state = 70}, - [3765] = {.lex_state = 636, .external_lex_state = 69}, - [3766] = {.lex_state = 636, .external_lex_state = 74}, - [3767] = {.lex_state = 636, .external_lex_state = 70}, - [3768] = {.lex_state = 636, .external_lex_state = 75}, - [3769] = {.lex_state = 636, .external_lex_state = 69}, - [3770] = {.lex_state = 636, .external_lex_state = 70}, - [3771] = {.lex_state = 636, .external_lex_state = 75}, - [3772] = {.lex_state = 649, .external_lex_state = 73}, - [3773] = {.lex_state = 636, .external_lex_state = 70}, - [3774] = {.lex_state = 636, .external_lex_state = 70}, - [3775] = {.lex_state = 97, .external_lex_state = 20}, - [3776] = {.lex_state = 636, .external_lex_state = 71}, - [3777] = {.lex_state = 649, .external_lex_state = 73}, - [3778] = {.lex_state = 636, .external_lex_state = 75}, - [3779] = {.lex_state = 636, .external_lex_state = 72}, - [3780] = {.lex_state = 636, .external_lex_state = 74}, - [3781] = {.lex_state = 636, .external_lex_state = 66}, - [3782] = {.lex_state = 636, .external_lex_state = 72}, - [3783] = {.lex_state = 636, .external_lex_state = 74}, - [3784] = {.lex_state = 649, .external_lex_state = 73}, - [3785] = {.lex_state = 636, .external_lex_state = 75}, - [3786] = {.lex_state = 636, .external_lex_state = 72}, - [3787] = {.lex_state = 636, .external_lex_state = 74}, - [3788] = {.lex_state = 649, .external_lex_state = 66}, - [3789] = {.lex_state = 649, .external_lex_state = 66}, - [3790] = {.lex_state = 636, .external_lex_state = 72}, - [3791] = {.lex_state = 636, .external_lex_state = 66}, - [3792] = {.lex_state = 636, .external_lex_state = 66}, - [3793] = {.lex_state = 636, .external_lex_state = 68}, - [3794] = {.lex_state = 636, .external_lex_state = 68}, - [3795] = {.lex_state = 636, .external_lex_state = 76}, - [3796] = {.lex_state = 649, .external_lex_state = 66}, - [3797] = {.lex_state = 649, .external_lex_state = 66}, - [3798] = {.lex_state = 97, .external_lex_state = 20}, - [3799] = {.lex_state = 649, .external_lex_state = 66}, - [3800] = {.lex_state = 636, .external_lex_state = 71}, - [3801] = {.lex_state = 97, .external_lex_state = 20}, - [3802] = {.lex_state = 636, .external_lex_state = 71}, - [3803] = {.lex_state = 636, .external_lex_state = 76}, - [3804] = {.lex_state = 636, .external_lex_state = 68}, - [3805] = {.lex_state = 97, .external_lex_state = 20}, - [3806] = {.lex_state = 636, .external_lex_state = 77}, - [3807] = {.lex_state = 636, .external_lex_state = 66}, - [3808] = {.lex_state = 636, .external_lex_state = 72}, - [3809] = {.lex_state = 97, .external_lex_state = 20}, - [3810] = {.lex_state = 636, .external_lex_state = 78}, - [3811] = {.lex_state = 649, .external_lex_state = 66}, - [3812] = {.lex_state = 636, .external_lex_state = 76}, - [3813] = {.lex_state = 636, .external_lex_state = 66}, - [3814] = {.lex_state = 636, .external_lex_state = 72}, - [3815] = {.lex_state = 636, .external_lex_state = 69}, - [3816] = {.lex_state = 636, .external_lex_state = 79}, - [3817] = {.lex_state = 37, .external_lex_state = 80}, - [3818] = {.lex_state = 636, .external_lex_state = 79}, - [3819] = {.lex_state = 636, .external_lex_state = 79}, - [3820] = {.lex_state = 636, .external_lex_state = 71}, - [3821] = {.lex_state = 636, .external_lex_state = 71}, - [3822] = {.lex_state = 636, .external_lex_state = 72}, - [3823] = {.lex_state = 636, .external_lex_state = 76}, - [3824] = {.lex_state = 96, .external_lex_state = 80}, - [3825] = {.lex_state = 649, .external_lex_state = 66}, - [3826] = {.lex_state = 636, .external_lex_state = 68}, - [3827] = {.lex_state = 636, .external_lex_state = 69}, - [3828] = {.lex_state = 636, .external_lex_state = 70}, - [3829] = {.lex_state = 96, .external_lex_state = 80}, - [3830] = {.lex_state = 96, .external_lex_state = 80}, - [3831] = {.lex_state = 636, .external_lex_state = 37}, - [3832] = {.lex_state = 636, .external_lex_state = 81}, - [3833] = {.lex_state = 636, .external_lex_state = 82}, - [3834] = {.lex_state = 636, .external_lex_state = 68}, - [3835] = {.lex_state = 90, .external_lex_state = 20}, - [3836] = {.lex_state = 96, .external_lex_state = 80}, - [3837] = {.lex_state = 37, .external_lex_state = 83}, - [3838] = {.lex_state = 636, .external_lex_state = 70}, - [3839] = {.lex_state = 649, .external_lex_state = 77}, - [3840] = {.lex_state = 636, .external_lex_state = 68}, - [3841] = {.lex_state = 649, .external_lex_state = 77}, - [3842] = {.lex_state = 636, .external_lex_state = 84}, - [3843] = {.lex_state = 636, .external_lex_state = 84}, - [3844] = {.lex_state = 96, .external_lex_state = 80}, - [3845] = {.lex_state = 636, .external_lex_state = 82}, - [3846] = {.lex_state = 636, .external_lex_state = 68}, - [3847] = {.lex_state = 90, .external_lex_state = 20}, - [3848] = {.lex_state = 636, .external_lex_state = 84}, - [3849] = {.lex_state = 37, .external_lex_state = 83}, - [3850] = {.lex_state = 636, .external_lex_state = 82}, - [3851] = {.lex_state = 636, .external_lex_state = 70}, - [3852] = {.lex_state = 90, .external_lex_state = 20}, - [3853] = {.lex_state = 649, .external_lex_state = 77}, - [3854] = {.lex_state = 636, .external_lex_state = 82}, - [3855] = {.lex_state = 649, .external_lex_state = 66}, - [3856] = {.lex_state = 636, .external_lex_state = 68}, - [3857] = {.lex_state = 649, .external_lex_state = 77}, - [3858] = {.lex_state = 636, .external_lex_state = 37}, - [3859] = {.lex_state = 37, .external_lex_state = 83}, - [3860] = {.lex_state = 37, .external_lex_state = 35}, - [3861] = {.lex_state = 636, .external_lex_state = 84}, - [3862] = {.lex_state = 636, .external_lex_state = 79}, - [3863] = {.lex_state = 90, .external_lex_state = 20}, - [3864] = {.lex_state = 636, .external_lex_state = 71}, - [3865] = {.lex_state = 636, .external_lex_state = 71}, - [3866] = {.lex_state = 649, .external_lex_state = 66}, - [3867] = {.lex_state = 636, .external_lex_state = 78}, - [3868] = {.lex_state = 636, .external_lex_state = 71}, - [3869] = {.lex_state = 90, .external_lex_state = 20}, - [3870] = {.lex_state = 636, .external_lex_state = 75}, - [3871] = {.lex_state = 636, .external_lex_state = 71}, - [3872] = {.lex_state = 37, .external_lex_state = 35}, - [3873] = {.lex_state = 636, .external_lex_state = 76}, - [3874] = {.lex_state = 636, .external_lex_state = 78}, - [3875] = {.lex_state = 636, .external_lex_state = 78}, - [3876] = {.lex_state = 649, .external_lex_state = 77}, - [3877] = {.lex_state = 636, .external_lex_state = 69}, - [3878] = {.lex_state = 636, .external_lex_state = 69}, - [3879] = {.lex_state = 636, .external_lex_state = 78}, - [3880] = {.lex_state = 90, .external_lex_state = 20}, - [3881] = {.lex_state = 37, .external_lex_state = 83}, - [3882] = {.lex_state = 636, .external_lex_state = 68}, - [3883] = {.lex_state = 636, .external_lex_state = 68}, - [3884] = {.lex_state = 636, .external_lex_state = 68}, - [3885] = {.lex_state = 636, .external_lex_state = 71}, - [3886] = {.lex_state = 636, .external_lex_state = 78}, - [3887] = {.lex_state = 636, .external_lex_state = 69}, - [3888] = {.lex_state = 636, .external_lex_state = 68}, - [3889] = {.lex_state = 649, .external_lex_state = 66}, - [3890] = {.lex_state = 37, .external_lex_state = 35}, - [3891] = {.lex_state = 636, .external_lex_state = 68}, - [3892] = {.lex_state = 636, .external_lex_state = 78}, - [3893] = {.lex_state = 636, .external_lex_state = 85}, - [3894] = {.lex_state = 636, .external_lex_state = 78}, - [3895] = {.lex_state = 37, .external_lex_state = 35}, - [3896] = {.lex_state = 80, .external_lex_state = 20}, - [3897] = {.lex_state = 636, .external_lex_state = 70}, - [3898] = {.lex_state = 636, .external_lex_state = 68}, - [3899] = {.lex_state = 37, .external_lex_state = 35}, - [3900] = {.lex_state = 636, .external_lex_state = 79}, - [3901] = {.lex_state = 636, .external_lex_state = 85}, - [3902] = {.lex_state = 636, .external_lex_state = 71}, - [3903] = {.lex_state = 636, .external_lex_state = 79}, - [3904] = {.lex_state = 636, .external_lex_state = 85}, - [3905] = {.lex_state = 636, .external_lex_state = 76}, - [3906] = {.lex_state = 636, .external_lex_state = 68}, - [3907] = {.lex_state = 636, .external_lex_state = 68}, - [3908] = {.lex_state = 636, .external_lex_state = 68}, - [3909] = {.lex_state = 636, .external_lex_state = 72}, - [3910] = {.lex_state = 37, .external_lex_state = 35}, - [3911] = {.lex_state = 37, .external_lex_state = 35}, - [3912] = {.lex_state = 636, .external_lex_state = 79}, - [3913] = {.lex_state = 636, .external_lex_state = 75}, - [3914] = {.lex_state = 636, .external_lex_state = 74}, - [3915] = {.lex_state = 80, .external_lex_state = 20}, - [3916] = {.lex_state = 636, .external_lex_state = 68}, - [3917] = {.lex_state = 37, .external_lex_state = 35}, - [3918] = {.lex_state = 636, .external_lex_state = 70}, - [3919] = {.lex_state = 636, .external_lex_state = 73}, - [3920] = {.lex_state = 636, .external_lex_state = 68}, - [3921] = {.lex_state = 636, .external_lex_state = 72}, - [3922] = {.lex_state = 636, .external_lex_state = 70}, - [3923] = {.lex_state = 636, .external_lex_state = 74}, - [3924] = {.lex_state = 636, .external_lex_state = 68}, - [3925] = {.lex_state = 636, .external_lex_state = 68}, - [3926] = {.lex_state = 636, .external_lex_state = 68}, - [3927] = {.lex_state = 37, .external_lex_state = 35}, - [3928] = {.lex_state = 37, .external_lex_state = 35}, - [3929] = {.lex_state = 636, .external_lex_state = 74}, - [3930] = {.lex_state = 636, .external_lex_state = 84}, - [3931] = {.lex_state = 636, .external_lex_state = 78}, - [3932] = {.lex_state = 636, .external_lex_state = 79}, - [3933] = {.lex_state = 636, .external_lex_state = 70}, - [3934] = {.lex_state = 636, .external_lex_state = 70}, - [3935] = {.lex_state = 636, .external_lex_state = 76}, - [3936] = {.lex_state = 636, .external_lex_state = 68}, - [3937] = {.lex_state = 636, .external_lex_state = 70}, - [3938] = {.lex_state = 636, .external_lex_state = 82}, - [3939] = {.lex_state = 636, .external_lex_state = 68}, - [3940] = {.lex_state = 636, .external_lex_state = 81}, - [3941] = {.lex_state = 636, .external_lex_state = 81}, - [3942] = {.lex_state = 636, .external_lex_state = 81}, - [3943] = {.lex_state = 636, .external_lex_state = 76}, - [3944] = {.lex_state = 636, .external_lex_state = 70}, - [3945] = {.lex_state = 37, .external_lex_state = 83}, - [3946] = {.lex_state = 636, .external_lex_state = 79}, - [3947] = {.lex_state = 636, .external_lex_state = 75}, - [3948] = {.lex_state = 636, .external_lex_state = 70}, - [3949] = {.lex_state = 636, .external_lex_state = 76}, - [3950] = {.lex_state = 636, .external_lex_state = 75}, - [3951] = {.lex_state = 636, .external_lex_state = 70}, - [3952] = {.lex_state = 636, .external_lex_state = 72}, - [3953] = {.lex_state = 636, .external_lex_state = 73}, - [3954] = {.lex_state = 636, .external_lex_state = 81}, - [3955] = {.lex_state = 636, .external_lex_state = 81}, - [3956] = {.lex_state = 636, .external_lex_state = 70}, - [3957] = {.lex_state = 636, .external_lex_state = 85}, - [3958] = {.lex_state = 636, .external_lex_state = 73}, - [3959] = {.lex_state = 636, .external_lex_state = 75}, - [3960] = {.lex_state = 636, .external_lex_state = 71}, - [3961] = {.lex_state = 636, .external_lex_state = 71}, - [3962] = {.lex_state = 636, .external_lex_state = 71}, - [3963] = {.lex_state = 636, .external_lex_state = 78}, - [3964] = {.lex_state = 636, .external_lex_state = 72}, - [3965] = {.lex_state = 37, .external_lex_state = 83}, - [3966] = {.lex_state = 636, .external_lex_state = 84}, - [3967] = {.lex_state = 636, .external_lex_state = 74}, - [3968] = {.lex_state = 636, .external_lex_state = 20}, - [3969] = {.lex_state = 636, .external_lex_state = 70}, - [3970] = {.lex_state = 636, .external_lex_state = 70}, - [3971] = {.lex_state = 636, .external_lex_state = 70}, - [3972] = {.lex_state = 636, .external_lex_state = 72}, - [3973] = {.lex_state = 636, .external_lex_state = 70}, - [3974] = {.lex_state = 636, .external_lex_state = 85}, - [3975] = {.lex_state = 636, .external_lex_state = 73}, - [3976] = {.lex_state = 636, .external_lex_state = 74}, - [3977] = {.lex_state = 636, .external_lex_state = 72}, - [3978] = {.lex_state = 94, .external_lex_state = 20}, - [3979] = {.lex_state = 636, .external_lex_state = 72}, - [3980] = {.lex_state = 37, .external_lex_state = 80}, - [3981] = {.lex_state = 636, .external_lex_state = 74}, - [3982] = {.lex_state = 37, .external_lex_state = 80}, - [3983] = {.lex_state = 636, .external_lex_state = 73}, - [3984] = {.lex_state = 636, .external_lex_state = 70}, - [3985] = {.lex_state = 636, .external_lex_state = 77}, - [3986] = {.lex_state = 636, .external_lex_state = 70}, - [3987] = {.lex_state = 636, .external_lex_state = 72}, - [3988] = {.lex_state = 636, .external_lex_state = 70}, - [3989] = {.lex_state = 636, .external_lex_state = 70}, - [3990] = {.lex_state = 37, .external_lex_state = 80}, - [3991] = {.lex_state = 649, .external_lex_state = 73}, - [3992] = {.lex_state = 636, .external_lex_state = 77}, - [3993] = {.lex_state = 636, .external_lex_state = 70}, - [3994] = {.lex_state = 636, .external_lex_state = 73}, - [3995] = {.lex_state = 636, .external_lex_state = 68}, - [3996] = {.lex_state = 636, .external_lex_state = 70}, - [3997] = {.lex_state = 636, .external_lex_state = 68}, - [3998] = {.lex_state = 636, .external_lex_state = 73}, - [3999] = {.lex_state = 636, .external_lex_state = 70}, - [4000] = {.lex_state = 636, .external_lex_state = 82}, - [4001] = {.lex_state = 636, .external_lex_state = 82}, - [4002] = {.lex_state = 636, .external_lex_state = 68}, - [4003] = {.lex_state = 649, .external_lex_state = 86}, - [4004] = {.lex_state = 649, .external_lex_state = 73}, - [4005] = {.lex_state = 636, .external_lex_state = 73}, - [4006] = {.lex_state = 636, .external_lex_state = 82}, - [4007] = {.lex_state = 37, .external_lex_state = 35}, - [4008] = {.lex_state = 636, .external_lex_state = 68}, - [4009] = {.lex_state = 636, .external_lex_state = 20}, - [4010] = {.lex_state = 636, .external_lex_state = 77}, - [4011] = {.lex_state = 37, .external_lex_state = 35}, - [4012] = {.lex_state = 636, .external_lex_state = 84}, - [4013] = {.lex_state = 37, .external_lex_state = 35}, - [4014] = {.lex_state = 636, .external_lex_state = 82}, - [4015] = {.lex_state = 636, .external_lex_state = 72}, - [4016] = {.lex_state = 94, .external_lex_state = 20}, - [4017] = {.lex_state = 37, .external_lex_state = 83}, - [4018] = {.lex_state = 636, .external_lex_state = 32}, - [4019] = {.lex_state = 636, .external_lex_state = 72}, - [4020] = {.lex_state = 636, .external_lex_state = 84}, - [4021] = {.lex_state = 636, .external_lex_state = 84}, - [4022] = {.lex_state = 97, .external_lex_state = 87}, - [4023] = {.lex_state = 636, .external_lex_state = 78}, - [4024] = {.lex_state = 636, .external_lex_state = 74}, - [4025] = {.lex_state = 636, .external_lex_state = 74}, - [4026] = {.lex_state = 636, .external_lex_state = 78}, - [4027] = {.lex_state = 97, .external_lex_state = 87}, - [4028] = {.lex_state = 37, .external_lex_state = 35}, - [4029] = {.lex_state = 97, .external_lex_state = 87}, - [4030] = {.lex_state = 97, .external_lex_state = 87}, - [4031] = {.lex_state = 636, .external_lex_state = 74}, - [4032] = {.lex_state = 37, .external_lex_state = 83}, - [4033] = {.lex_state = 636, .external_lex_state = 74}, - [4034] = {.lex_state = 37, .external_lex_state = 83}, - [4035] = {.lex_state = 97, .external_lex_state = 87}, - [4036] = {.lex_state = 636, .external_lex_state = 78}, - [4037] = {.lex_state = 636, .external_lex_state = 74}, - [4038] = {.lex_state = 636, .external_lex_state = 32}, - [4039] = {.lex_state = 93, .external_lex_state = 45}, - [4040] = {.lex_state = 79, .external_lex_state = 20}, - [4041] = {.lex_state = 93, .external_lex_state = 45}, - [4042] = {.lex_state = 649, .external_lex_state = 88}, - [4043] = {.lex_state = 93, .external_lex_state = 45}, - [4044] = {.lex_state = 79, .external_lex_state = 20}, - [4045] = {.lex_state = 84, .external_lex_state = 89}, - [4046] = {.lex_state = 636, .external_lex_state = 85}, - [4047] = {.lex_state = 636, .external_lex_state = 72}, - [4048] = {.lex_state = 93, .external_lex_state = 45}, - [4049] = {.lex_state = 636, .external_lex_state = 76}, - [4050] = {.lex_state = 73, .external_lex_state = 20}, - [4051] = {.lex_state = 636, .external_lex_state = 72}, - [4052] = {.lex_state = 636, .external_lex_state = 85}, - [4053] = {.lex_state = 649, .external_lex_state = 86}, - [4054] = {.lex_state = 636, .external_lex_state = 90}, - [4055] = {.lex_state = 636, .external_lex_state = 74}, - [4056] = {.lex_state = 73, .external_lex_state = 20}, - [4057] = {.lex_state = 649, .external_lex_state = 88}, - [4058] = {.lex_state = 636, .external_lex_state = 74}, - [4059] = {.lex_state = 636, .external_lex_state = 74}, - [4060] = {.lex_state = 85, .external_lex_state = 35}, - [4061] = {.lex_state = 84, .external_lex_state = 89}, - [4062] = {.lex_state = 636, .external_lex_state = 72}, - [4063] = {.lex_state = 84, .external_lex_state = 89}, - [4064] = {.lex_state = 636, .external_lex_state = 74}, - [4065] = {.lex_state = 636, .external_lex_state = 72}, - [4066] = {.lex_state = 636, .external_lex_state = 81}, - [4067] = {.lex_state = 73, .external_lex_state = 20}, - [4068] = {.lex_state = 93, .external_lex_state = 45}, - [4069] = {.lex_state = 77, .external_lex_state = 45}, - [4070] = {.lex_state = 636, .external_lex_state = 85}, - [4071] = {.lex_state = 79, .external_lex_state = 45}, - [4072] = {.lex_state = 93, .external_lex_state = 45}, - [4073] = {.lex_state = 636, .external_lex_state = 74}, - [4074] = {.lex_state = 77, .external_lex_state = 45}, - [4075] = {.lex_state = 77, .external_lex_state = 45}, - [4076] = {.lex_state = 636, .external_lex_state = 37}, - [4077] = {.lex_state = 73, .external_lex_state = 20}, - [4078] = {.lex_state = 636, .external_lex_state = 74}, - [4079] = {.lex_state = 636, .external_lex_state = 74}, - [4080] = {.lex_state = 93, .external_lex_state = 45}, - [4081] = {.lex_state = 649, .external_lex_state = 88}, - [4082] = {.lex_state = 73, .external_lex_state = 20}, - [4083] = {.lex_state = 73, .external_lex_state = 20}, - [4084] = {.lex_state = 37, .external_lex_state = 80}, - [4085] = {.lex_state = 93, .external_lex_state = 45}, - [4086] = {.lex_state = 79, .external_lex_state = 45}, - [4087] = {.lex_state = 649, .external_lex_state = 86}, - [4088] = {.lex_state = 84, .external_lex_state = 89}, - [4089] = {.lex_state = 636, .external_lex_state = 74}, - [4090] = {.lex_state = 96, .external_lex_state = 80}, - [4091] = {.lex_state = 636, .external_lex_state = 74}, - [4092] = {.lex_state = 636, .external_lex_state = 81}, - [4093] = {.lex_state = 84, .external_lex_state = 89}, - [4094] = {.lex_state = 77, .external_lex_state = 45}, - [4095] = {.lex_state = 84, .external_lex_state = 89}, - [4096] = {.lex_state = 649, .external_lex_state = 73}, - [4097] = {.lex_state = 73, .external_lex_state = 20}, - [4098] = {.lex_state = 80, .external_lex_state = 20}, - [4099] = {.lex_state = 636, .external_lex_state = 77}, - [4100] = {.lex_state = 636, .external_lex_state = 85}, - [4101] = {.lex_state = 649, .external_lex_state = 77}, - [4102] = {.lex_state = 649, .external_lex_state = 73}, - [4103] = {.lex_state = 73, .external_lex_state = 20}, - [4104] = {.lex_state = 73, .external_lex_state = 20}, - [4105] = {.lex_state = 73, .external_lex_state = 20}, - [4106] = {.lex_state = 636, .external_lex_state = 77}, - [4107] = {.lex_state = 636, .external_lex_state = 77}, - [4108] = {.lex_state = 96, .external_lex_state = 80}, - [4109] = {.lex_state = 636, .external_lex_state = 76}, - [4110] = {.lex_state = 649, .external_lex_state = 73}, - [4111] = {.lex_state = 93, .external_lex_state = 45}, - [4112] = {.lex_state = 636, .external_lex_state = 70}, - [4113] = {.lex_state = 649, .external_lex_state = 77}, - [4114] = {.lex_state = 636, .external_lex_state = 78}, - [4115] = {.lex_state = 636, .external_lex_state = 70}, - [4116] = {.lex_state = 649, .external_lex_state = 73}, - [4117] = {.lex_state = 636, .external_lex_state = 77}, - [4118] = {.lex_state = 37, .external_lex_state = 80}, - [4119] = {.lex_state = 636, .external_lex_state = 70}, - [4120] = {.lex_state = 636, .external_lex_state = 77}, - [4121] = {.lex_state = 73, .external_lex_state = 20}, - [4122] = {.lex_state = 84, .external_lex_state = 89}, - [4123] = {.lex_state = 636, .external_lex_state = 70}, - [4124] = {.lex_state = 37, .external_lex_state = 80}, - [4125] = {.lex_state = 37, .external_lex_state = 80}, - [4126] = {.lex_state = 93, .external_lex_state = 45}, - [4127] = {.lex_state = 79, .external_lex_state = 45}, - [4128] = {.lex_state = 80, .external_lex_state = 20}, - [4129] = {.lex_state = 636, .external_lex_state = 81}, - [4130] = {.lex_state = 84, .external_lex_state = 89}, - [4131] = {.lex_state = 636, .external_lex_state = 78}, - [4132] = {.lex_state = 636, .external_lex_state = 78}, - [4133] = {.lex_state = 636, .external_lex_state = 78}, - [4134] = {.lex_state = 636, .external_lex_state = 76}, - [4135] = {.lex_state = 73, .external_lex_state = 20}, - [4136] = {.lex_state = 636, .external_lex_state = 76}, - [4137] = {.lex_state = 80, .external_lex_state = 20}, - [4138] = {.lex_state = 73, .external_lex_state = 20}, - [4139] = {.lex_state = 636, .external_lex_state = 78}, - [4140] = {.lex_state = 93, .external_lex_state = 45}, - [4141] = {.lex_state = 93, .external_lex_state = 45}, - [4142] = {.lex_state = 79, .external_lex_state = 45}, - [4143] = {.lex_state = 636, .external_lex_state = 78}, - [4144] = {.lex_state = 636, .external_lex_state = 78}, - [4145] = {.lex_state = 84, .external_lex_state = 89}, - [4146] = {.lex_state = 37, .external_lex_state = 80}, - [4147] = {.lex_state = 96, .external_lex_state = 80}, - [4148] = {.lex_state = 649, .external_lex_state = 88}, - [4149] = {.lex_state = 70, .external_lex_state = 20}, - [4150] = {.lex_state = 70, .external_lex_state = 20}, - [4151] = {.lex_state = 70, .external_lex_state = 20}, - [4152] = {.lex_state = 636, .external_lex_state = 81}, - [4153] = {.lex_state = 83, .external_lex_state = 45}, - [4154] = {.lex_state = 70, .external_lex_state = 20}, - [4155] = {.lex_state = 636, .external_lex_state = 78}, - [4156] = {.lex_state = 70, .external_lex_state = 20}, - [4157] = {.lex_state = 70, .external_lex_state = 20}, - [4158] = {.lex_state = 77, .external_lex_state = 45}, - [4159] = {.lex_state = 70, .external_lex_state = 20}, - [4160] = {.lex_state = 70, .external_lex_state = 20}, - [4161] = {.lex_state = 636, .external_lex_state = 81}, - [4162] = {.lex_state = 636, .external_lex_state = 76}, - [4163] = {.lex_state = 70, .external_lex_state = 20}, - [4164] = {.lex_state = 636, .external_lex_state = 78}, - [4165] = {.lex_state = 70, .external_lex_state = 20}, - [4166] = {.lex_state = 649, .external_lex_state = 77}, - [4167] = {.lex_state = 77, .external_lex_state = 20}, - [4168] = {.lex_state = 636, .external_lex_state = 81}, - [4169] = {.lex_state = 70, .external_lex_state = 20}, - [4170] = {.lex_state = 70, .external_lex_state = 20}, - [4171] = {.lex_state = 70, .external_lex_state = 20}, - [4172] = {.lex_state = 70, .external_lex_state = 20}, - [4173] = {.lex_state = 649, .external_lex_state = 77}, - [4174] = {.lex_state = 636, .external_lex_state = 81}, - [4175] = {.lex_state = 649, .external_lex_state = 88}, - [4176] = {.lex_state = 79, .external_lex_state = 20}, - [4177] = {.lex_state = 636, .external_lex_state = 81}, - [4178] = {.lex_state = 70, .external_lex_state = 20}, - [4179] = {.lex_state = 70, .external_lex_state = 20}, - [4180] = {.lex_state = 649, .external_lex_state = 86}, - [4181] = {.lex_state = 70, .external_lex_state = 20}, - [4182] = {.lex_state = 85, .external_lex_state = 35}, - [4183] = {.lex_state = 70, .external_lex_state = 20}, - [4184] = {.lex_state = 636, .external_lex_state = 81}, - [4185] = {.lex_state = 649, .external_lex_state = 77}, - [4186] = {.lex_state = 636, .external_lex_state = 78}, - [4187] = {.lex_state = 79, .external_lex_state = 45}, - [4188] = {.lex_state = 636, .external_lex_state = 72}, - [4189] = {.lex_state = 649, .external_lex_state = 77}, - [4190] = {.lex_state = 636, .external_lex_state = 72}, - [4191] = {.lex_state = 70, .external_lex_state = 20}, - [4192] = {.lex_state = 96, .external_lex_state = 80}, - [4193] = {.lex_state = 96, .external_lex_state = 80}, - [4194] = {.lex_state = 83, .external_lex_state = 45}, - [4195] = {.lex_state = 649, .external_lex_state = 88}, - [4196] = {.lex_state = 70, .external_lex_state = 20}, - [4197] = {.lex_state = 636, .external_lex_state = 81}, - [4198] = {.lex_state = 70, .external_lex_state = 20}, - [4199] = {.lex_state = 96, .external_lex_state = 80}, - [4200] = {.lex_state = 636, .external_lex_state = 72}, - [4201] = {.lex_state = 636, .external_lex_state = 72}, - [4202] = {.lex_state = 83, .external_lex_state = 45}, - [4203] = {.lex_state = 97, .external_lex_state = 20}, - [4204] = {.lex_state = 636, .external_lex_state = 90}, - [4205] = {.lex_state = 636, .external_lex_state = 78}, - [4206] = {.lex_state = 649, .external_lex_state = 88}, - [4207] = {.lex_state = 649, .external_lex_state = 88}, - [4208] = {.lex_state = 77, .external_lex_state = 20}, - [4209] = {.lex_state = 649, .external_lex_state = 88}, - [4210] = {.lex_state = 636, .external_lex_state = 76}, - [4211] = {.lex_state = 636, .external_lex_state = 74}, - [4212] = {.lex_state = 77, .external_lex_state = 45}, - [4213] = {.lex_state = 649, .external_lex_state = 88}, - [4214] = {.lex_state = 77, .external_lex_state = 45}, - [4215] = {.lex_state = 91, .external_lex_state = 20}, - [4216] = {.lex_state = 649, .external_lex_state = 88}, - [4217] = {.lex_state = 72, .external_lex_state = 20}, - [4218] = {.lex_state = 73, .external_lex_state = 20}, - [4219] = {.lex_state = 72, .external_lex_state = 20}, - [4220] = {.lex_state = 72, .external_lex_state = 20}, - [4221] = {.lex_state = 636, .external_lex_state = 76}, - [4222] = {.lex_state = 77, .external_lex_state = 45}, - [4223] = {.lex_state = 636, .external_lex_state = 90}, - [4224] = {.lex_state = 636, .external_lex_state = 91}, - [4225] = {.lex_state = 649, .external_lex_state = 88}, - [4226] = {.lex_state = 649, .external_lex_state = 88}, - [4227] = {.lex_state = 73, .external_lex_state = 20}, - [4228] = {.lex_state = 91, .external_lex_state = 20}, - [4229] = {.lex_state = 636, .external_lex_state = 91}, - [4230] = {.lex_state = 73, .external_lex_state = 20}, - [4231] = {.lex_state = 72, .external_lex_state = 20}, - [4232] = {.lex_state = 73, .external_lex_state = 20}, - [4233] = {.lex_state = 79, .external_lex_state = 45}, - [4234] = {.lex_state = 636, .external_lex_state = 76}, - [4235] = {.lex_state = 79, .external_lex_state = 45}, - [4236] = {.lex_state = 73, .external_lex_state = 20}, - [4237] = {.lex_state = 79, .external_lex_state = 45}, - [4238] = {.lex_state = 72, .external_lex_state = 20}, - [4239] = {.lex_state = 636, .external_lex_state = 78}, - [4240] = {.lex_state = 649, .external_lex_state = 88}, - [4241] = {.lex_state = 91, .external_lex_state = 20}, - [4242] = {.lex_state = 636, .external_lex_state = 76}, - [4243] = {.lex_state = 649, .external_lex_state = 88}, - [4244] = {.lex_state = 73, .external_lex_state = 20}, - [4245] = {.lex_state = 636, .external_lex_state = 81}, - [4246] = {.lex_state = 649, .external_lex_state = 88}, - [4247] = {.lex_state = 636, .external_lex_state = 72}, - [4248] = {.lex_state = 649, .external_lex_state = 88}, - [4249] = {.lex_state = 649, .external_lex_state = 88}, - [4250] = {.lex_state = 72, .external_lex_state = 20}, - [4251] = {.lex_state = 649, .external_lex_state = 88}, - [4252] = {.lex_state = 72, .external_lex_state = 20}, - [4253] = {.lex_state = 72, .external_lex_state = 20}, - [4254] = {.lex_state = 77, .external_lex_state = 45}, - [4255] = {.lex_state = 72, .external_lex_state = 20}, - [4256] = {.lex_state = 72, .external_lex_state = 20}, - [4257] = {.lex_state = 636, .external_lex_state = 88}, - [4258] = {.lex_state = 72, .external_lex_state = 20}, - [4259] = {.lex_state = 72, .external_lex_state = 20}, - [4260] = {.lex_state = 97, .external_lex_state = 87}, - [4261] = {.lex_state = 636, .external_lex_state = 81}, - [4262] = {.lex_state = 649, .external_lex_state = 88}, - [4263] = {.lex_state = 649, .external_lex_state = 88}, - [4264] = {.lex_state = 649, .external_lex_state = 88}, - [4265] = {.lex_state = 84, .external_lex_state = 20}, - [4266] = {.lex_state = 636, .external_lex_state = 81}, - [4267] = {.lex_state = 636, .external_lex_state = 74}, - [4268] = {.lex_state = 72, .external_lex_state = 20}, - [4269] = {.lex_state = 72, .external_lex_state = 20}, - [4270] = {.lex_state = 73, .external_lex_state = 20}, - [4271] = {.lex_state = 72, .external_lex_state = 20}, - [4272] = {.lex_state = 649, .external_lex_state = 88}, - [4273] = {.lex_state = 72, .external_lex_state = 20}, - [4274] = {.lex_state = 72, .external_lex_state = 20}, - [4275] = {.lex_state = 649, .external_lex_state = 88}, - [4276] = {.lex_state = 636, .external_lex_state = 91}, - [4277] = {.lex_state = 79, .external_lex_state = 45}, - [4278] = {.lex_state = 636, .external_lex_state = 35}, - [4279] = {.lex_state = 636, .external_lex_state = 91}, - [4280] = {.lex_state = 72, .external_lex_state = 20}, - [4281] = {.lex_state = 636, .external_lex_state = 81}, - [4282] = {.lex_state = 72, .external_lex_state = 20}, - [4283] = {.lex_state = 72, .external_lex_state = 20}, - [4284] = {.lex_state = 72, .external_lex_state = 20}, - [4285] = {.lex_state = 649, .external_lex_state = 88}, - [4286] = {.lex_state = 636, .external_lex_state = 74}, - [4287] = {.lex_state = 636, .external_lex_state = 74}, - [4288] = {.lex_state = 649, .external_lex_state = 88}, - [4289] = {.lex_state = 77, .external_lex_state = 20}, - [4290] = {.lex_state = 79, .external_lex_state = 20}, - [4291] = {.lex_state = 73, .external_lex_state = 45}, - [4292] = {.lex_state = 73, .external_lex_state = 20}, - [4293] = {.lex_state = 636, .external_lex_state = 90}, - [4294] = {.lex_state = 73, .external_lex_state = 45}, - [4295] = {.lex_state = 73, .external_lex_state = 20}, - [4296] = {.lex_state = 649, .external_lex_state = 92}, - [4297] = {.lex_state = 73, .external_lex_state = 20}, - [4298] = {.lex_state = 649, .external_lex_state = 88}, - [4299] = {.lex_state = 73, .external_lex_state = 45}, - [4300] = {.lex_state = 649, .external_lex_state = 88}, - [4301] = {.lex_state = 73, .external_lex_state = 20}, - [4302] = {.lex_state = 636, .external_lex_state = 74}, - [4303] = {.lex_state = 636, .external_lex_state = 74}, - [4304] = {.lex_state = 649, .external_lex_state = 88}, - [4305] = {.lex_state = 636, .external_lex_state = 74}, - [4306] = {.lex_state = 73, .external_lex_state = 20}, - [4307] = {.lex_state = 79, .external_lex_state = 20}, - [4308] = {.lex_state = 636, .external_lex_state = 74}, - [4309] = {.lex_state = 73, .external_lex_state = 20}, - [4310] = {.lex_state = 649, .external_lex_state = 88}, - [4311] = {.lex_state = 636, .external_lex_state = 35}, - [4312] = {.lex_state = 73, .external_lex_state = 20}, - [4313] = {.lex_state = 79, .external_lex_state = 20}, - [4314] = {.lex_state = 636, .external_lex_state = 74}, - [4315] = {.lex_state = 73, .external_lex_state = 20}, - [4316] = {.lex_state = 636, .external_lex_state = 74}, - [4317] = {.lex_state = 649, .external_lex_state = 88}, - [4318] = {.lex_state = 77, .external_lex_state = 20}, - [4319] = {.lex_state = 649, .external_lex_state = 88}, - [4320] = {.lex_state = 649, .external_lex_state = 88}, - [4321] = {.lex_state = 97, .external_lex_state = 20}, - [4322] = {.lex_state = 73, .external_lex_state = 45}, - [4323] = {.lex_state = 636, .external_lex_state = 78}, - [4324] = {.lex_state = 73, .external_lex_state = 20}, - [4325] = {.lex_state = 73, .external_lex_state = 20}, - [4326] = {.lex_state = 77, .external_lex_state = 20}, - [4327] = {.lex_state = 73, .external_lex_state = 20}, - [4328] = {.lex_state = 73, .external_lex_state = 20}, - [4329] = {.lex_state = 77, .external_lex_state = 20}, - [4330] = {.lex_state = 649, .external_lex_state = 88}, - [4331] = {.lex_state = 636, .external_lex_state = 88}, - [4332] = {.lex_state = 636, .external_lex_state = 78}, - [4333] = {.lex_state = 636, .external_lex_state = 88}, - [4334] = {.lex_state = 649, .external_lex_state = 88}, - [4335] = {.lex_state = 649, .external_lex_state = 88}, - [4336] = {.lex_state = 73, .external_lex_state = 20}, - [4337] = {.lex_state = 649, .external_lex_state = 88}, - [4338] = {.lex_state = 636, .external_lex_state = 78}, - [4339] = {.lex_state = 97, .external_lex_state = 20}, - [4340] = {.lex_state = 97, .external_lex_state = 20}, - [4341] = {.lex_state = 97, .external_lex_state = 20}, - [4342] = {.lex_state = 97, .external_lex_state = 20}, - [4343] = {.lex_state = 636, .external_lex_state = 88}, - [4344] = {.lex_state = 636, .external_lex_state = 45}, - [4345] = {.lex_state = 636, .external_lex_state = 88}, - [4346] = {.lex_state = 636, .external_lex_state = 88}, - [4347] = {.lex_state = 636, .external_lex_state = 20}, - [4348] = {.lex_state = 84, .external_lex_state = 20}, - [4349] = {.lex_state = 73, .external_lex_state = 20}, - [4350] = {.lex_state = 636, .external_lex_state = 93}, - [4351] = {.lex_state = 649, .external_lex_state = 94}, - [4352] = {.lex_state = 73, .external_lex_state = 45}, - [4353] = {.lex_state = 636, .external_lex_state = 88}, - [4354] = {.lex_state = 636, .external_lex_state = 90}, - [4355] = {.lex_state = 97, .external_lex_state = 20}, - [4356] = {.lex_state = 636, .external_lex_state = 93}, - [4357] = {.lex_state = 636, .external_lex_state = 74}, - [4358] = {.lex_state = 73, .external_lex_state = 20}, - [4359] = {.lex_state = 649, .external_lex_state = 92}, - [4360] = {.lex_state = 73, .external_lex_state = 20}, - [4361] = {.lex_state = 636, .external_lex_state = 20}, - [4362] = {.lex_state = 636, .external_lex_state = 90}, - [4363] = {.lex_state = 636, .external_lex_state = 74}, - [4364] = {.lex_state = 636, .external_lex_state = 90}, - [4365] = {.lex_state = 84, .external_lex_state = 20}, - [4366] = {.lex_state = 649, .external_lex_state = 95}, - [4367] = {.lex_state = 636, .external_lex_state = 90}, - [4368] = {.lex_state = 636, .external_lex_state = 90}, - [4369] = {.lex_state = 73, .external_lex_state = 20}, - [4370] = {.lex_state = 97, .external_lex_state = 20}, - [4371] = {.lex_state = 92, .external_lex_state = 20}, - [4372] = {.lex_state = 636, .external_lex_state = 20}, - [4373] = {.lex_state = 73, .external_lex_state = 20}, - [4374] = {.lex_state = 636, .external_lex_state = 72}, - [4375] = {.lex_state = 636, .external_lex_state = 45}, - [4376] = {.lex_state = 636, .external_lex_state = 74}, - [4377] = {.lex_state = 649, .external_lex_state = 95}, - [4378] = {.lex_state = 73, .external_lex_state = 20}, - [4379] = {.lex_state = 73, .external_lex_state = 20}, - [4380] = {.lex_state = 96, .external_lex_state = 96}, - [4381] = {.lex_state = 73, .external_lex_state = 20}, - [4382] = {.lex_state = 97, .external_lex_state = 20}, - [4383] = {.lex_state = 97, .external_lex_state = 20}, - [4384] = {.lex_state = 73, .external_lex_state = 20}, - [4385] = {.lex_state = 73, .external_lex_state = 20}, - [4386] = {.lex_state = 649, .external_lex_state = 95}, - [4387] = {.lex_state = 636, .external_lex_state = 74}, - [4388] = {.lex_state = 636, .external_lex_state = 88}, - [4389] = {.lex_state = 97, .external_lex_state = 20}, - [4390] = {.lex_state = 636, .external_lex_state = 97}, - [4391] = {.lex_state = 636, .external_lex_state = 98}, - [4392] = {.lex_state = 636, .external_lex_state = 97}, - [4393] = {.lex_state = 73, .external_lex_state = 20}, - [4394] = {.lex_state = 649, .external_lex_state = 99}, - [4395] = {.lex_state = 97, .external_lex_state = 20}, - [4396] = {.lex_state = 649, .external_lex_state = 40}, - [4397] = {.lex_state = 636, .external_lex_state = 98}, - [4398] = {.lex_state = 649, .external_lex_state = 40}, - [4399] = {.lex_state = 97, .external_lex_state = 20}, - [4400] = {.lex_state = 636, .external_lex_state = 100}, - [4401] = {.lex_state = 636, .external_lex_state = 100}, - [4402] = {.lex_state = 73, .external_lex_state = 20}, - [4403] = {.lex_state = 79, .external_lex_state = 20}, - [4404] = {.lex_state = 649, .external_lex_state = 99}, - [4405] = {.lex_state = 636, .external_lex_state = 98}, - [4406] = {.lex_state = 636, .external_lex_state = 90}, - [4407] = {.lex_state = 73, .external_lex_state = 20}, - [4408] = {.lex_state = 636, .external_lex_state = 45}, - [4409] = {.lex_state = 636, .external_lex_state = 90}, - [4410] = {.lex_state = 96, .external_lex_state = 101}, - [4411] = {.lex_state = 636, .external_lex_state = 45}, - [4412] = {.lex_state = 73, .external_lex_state = 20}, - [4413] = {.lex_state = 649, .external_lex_state = 99}, - [4414] = {.lex_state = 73, .external_lex_state = 45}, - [4415] = {.lex_state = 96, .external_lex_state = 101}, - [4416] = {.lex_state = 636, .external_lex_state = 97}, - [4417] = {.lex_state = 73, .external_lex_state = 20}, - [4418] = {.lex_state = 636, .external_lex_state = 45}, - [4419] = {.lex_state = 636, .external_lex_state = 97}, - [4420] = {.lex_state = 636, .external_lex_state = 97}, - [4421] = {.lex_state = 636, .external_lex_state = 90}, - [4422] = {.lex_state = 79, .external_lex_state = 20}, - [4423] = {.lex_state = 73, .external_lex_state = 20}, - [4424] = {.lex_state = 37, .external_lex_state = 35}, - [4425] = {.lex_state = 636, .external_lex_state = 90}, - [4426] = {.lex_state = 73, .external_lex_state = 20}, - [4427] = {.lex_state = 636, .external_lex_state = 97}, - [4428] = {.lex_state = 636, .external_lex_state = 98}, - [4429] = {.lex_state = 649, .external_lex_state = 40}, - [4430] = {.lex_state = 649, .external_lex_state = 40}, - [4431] = {.lex_state = 649, .external_lex_state = 40}, - [4432] = {.lex_state = 636, .external_lex_state = 90}, - [4433] = {.lex_state = 73, .external_lex_state = 20}, - [4434] = {.lex_state = 636, .external_lex_state = 45}, - [4435] = {.lex_state = 636, .external_lex_state = 100}, - [4436] = {.lex_state = 636, .external_lex_state = 100}, - [4437] = {.lex_state = 636, .external_lex_state = 45}, - [4438] = {.lex_state = 636, .external_lex_state = 72}, - [4439] = {.lex_state = 73, .external_lex_state = 20}, - [4440] = {.lex_state = 649, .external_lex_state = 95}, - [4441] = {.lex_state = 73, .external_lex_state = 20}, - [4442] = {.lex_state = 636, .external_lex_state = 45}, - [4443] = {.lex_state = 73, .external_lex_state = 20}, - [4444] = {.lex_state = 649, .external_lex_state = 95}, - [4445] = {.lex_state = 636, .external_lex_state = 93}, - [4446] = {.lex_state = 649, .external_lex_state = 95}, - [4447] = {.lex_state = 649, .external_lex_state = 95}, - [4448] = {.lex_state = 636, .external_lex_state = 95}, - [4449] = {.lex_state = 73, .external_lex_state = 20}, - [4450] = {.lex_state = 636, .external_lex_state = 45}, - [4451] = {.lex_state = 649, .external_lex_state = 95}, - [4452] = {.lex_state = 649, .external_lex_state = 95}, - [4453] = {.lex_state = 636, .external_lex_state = 45}, - [4454] = {.lex_state = 649, .external_lex_state = 95}, - [4455] = {.lex_state = 636, .external_lex_state = 97}, - [4456] = {.lex_state = 96, .external_lex_state = 101}, - [4457] = {.lex_state = 636, .external_lex_state = 97}, - [4458] = {.lex_state = 636, .external_lex_state = 93}, - [4459] = {.lex_state = 636, .external_lex_state = 97}, - [4460] = {.lex_state = 636, .external_lex_state = 98}, - [4461] = {.lex_state = 636, .external_lex_state = 90}, - [4462] = {.lex_state = 97, .external_lex_state = 20}, - [4463] = {.lex_state = 636, .external_lex_state = 98}, - [4464] = {.lex_state = 636, .external_lex_state = 93}, - [4465] = {.lex_state = 73, .external_lex_state = 45}, - [4466] = {.lex_state = 73, .external_lex_state = 45}, - [4467] = {.lex_state = 636, .external_lex_state = 90}, - [4468] = {.lex_state = 73, .external_lex_state = 45}, - [4469] = {.lex_state = 73, .external_lex_state = 20}, - [4470] = {.lex_state = 636, .external_lex_state = 93}, - [4471] = {.lex_state = 96, .external_lex_state = 96}, - [4472] = {.lex_state = 636, .external_lex_state = 97}, - [4473] = {.lex_state = 636, .external_lex_state = 40}, - [4474] = {.lex_state = 636, .external_lex_state = 98}, - [4475] = {.lex_state = 649, .external_lex_state = 95}, - [4476] = {.lex_state = 37, .external_lex_state = 35}, - [4477] = {.lex_state = 636, .external_lex_state = 90}, - [4478] = {.lex_state = 636, .external_lex_state = 93}, - [4479] = {.lex_state = 636, .external_lex_state = 45}, - [4480] = {.lex_state = 636, .external_lex_state = 45}, - [4481] = {.lex_state = 636, .external_lex_state = 98}, - [4482] = {.lex_state = 73, .external_lex_state = 20}, - [4483] = {.lex_state = 37, .external_lex_state = 35}, - [4484] = {.lex_state = 636, .external_lex_state = 97}, - [4485] = {.lex_state = 636, .external_lex_state = 97}, - [4486] = {.lex_state = 649, .external_lex_state = 94}, - [4487] = {.lex_state = 636, .external_lex_state = 93}, - [4488] = {.lex_state = 649, .external_lex_state = 95}, - [4489] = {.lex_state = 73, .external_lex_state = 20}, - [4490] = {.lex_state = 636, .external_lex_state = 93}, - [4491] = {.lex_state = 636, .external_lex_state = 93}, - [4492] = {.lex_state = 73, .external_lex_state = 20}, - [4493] = {.lex_state = 649, .external_lex_state = 40}, - [4494] = {.lex_state = 649, .external_lex_state = 40}, - [4495] = {.lex_state = 73, .external_lex_state = 20}, - [4496] = {.lex_state = 649, .external_lex_state = 95}, - [4497] = {.lex_state = 636, .external_lex_state = 93}, - [4498] = {.lex_state = 73, .external_lex_state = 20}, - [4499] = {.lex_state = 636, .external_lex_state = 72}, - [4500] = {.lex_state = 73, .external_lex_state = 20}, - [4501] = {.lex_state = 73, .external_lex_state = 20}, - [4502] = {.lex_state = 73, .external_lex_state = 20}, - [4503] = {.lex_state = 636, .external_lex_state = 102}, - [4504] = {.lex_state = 649, .external_lex_state = 95}, - [4505] = {.lex_state = 73, .external_lex_state = 20}, - [4506] = {.lex_state = 649, .external_lex_state = 95}, - [4507] = {.lex_state = 636, .external_lex_state = 90}, - [4508] = {.lex_state = 636, .external_lex_state = 103}, - [4509] = {.lex_state = 37, .external_lex_state = 35}, - [4510] = {.lex_state = 73, .external_lex_state = 20}, - [4511] = {.lex_state = 73, .external_lex_state = 20}, - [4512] = {.lex_state = 73, .external_lex_state = 20}, - [4513] = {.lex_state = 636, .external_lex_state = 20}, - [4514] = {.lex_state = 73, .external_lex_state = 20}, - [4515] = {.lex_state = 636, .external_lex_state = 102}, - [4516] = {.lex_state = 73, .external_lex_state = 20}, - [4517] = {.lex_state = 97, .external_lex_state = 20}, - [4518] = {.lex_state = 636, .external_lex_state = 102}, - [4519] = {.lex_state = 649, .external_lex_state = 95}, - [4520] = {.lex_state = 73, .external_lex_state = 20}, - [4521] = {.lex_state = 73, .external_lex_state = 20}, - [4522] = {.lex_state = 73, .external_lex_state = 20}, - [4523] = {.lex_state = 73, .external_lex_state = 20}, - [4524] = {.lex_state = 649, .external_lex_state = 95}, - [4525] = {.lex_state = 73, .external_lex_state = 20}, - [4526] = {.lex_state = 636, .external_lex_state = 103}, - [4527] = {.lex_state = 636, .external_lex_state = 102}, - [4528] = {.lex_state = 636, .external_lex_state = 20}, - [4529] = {.lex_state = 73, .external_lex_state = 20}, - [4530] = {.lex_state = 73, .external_lex_state = 20}, - [4531] = {.lex_state = 73, .external_lex_state = 20}, - [4532] = {.lex_state = 636, .external_lex_state = 102}, - [4533] = {.lex_state = 73, .external_lex_state = 20}, - [4534] = {.lex_state = 73, .external_lex_state = 20}, - [4535] = {.lex_state = 73, .external_lex_state = 20}, - [4536] = {.lex_state = 73, .external_lex_state = 20}, - [4537] = {.lex_state = 73, .external_lex_state = 20}, - [4538] = {.lex_state = 97, .external_lex_state = 20}, - [4539] = {.lex_state = 73, .external_lex_state = 20}, - [4540] = {.lex_state = 73, .external_lex_state = 20}, - [4541] = {.lex_state = 73, .external_lex_state = 20}, - [4542] = {.lex_state = 97, .external_lex_state = 20}, - [4543] = {.lex_state = 649, .external_lex_state = 40}, - [4544] = {.lex_state = 73, .external_lex_state = 20}, - [4545] = {.lex_state = 636, .external_lex_state = 93}, - [4546] = {.lex_state = 636, .external_lex_state = 20}, - [4547] = {.lex_state = 73, .external_lex_state = 20}, - [4548] = {.lex_state = 73, .external_lex_state = 20}, - [4549] = {.lex_state = 636, .external_lex_state = 20}, - [4550] = {.lex_state = 73, .external_lex_state = 20}, - [4551] = {.lex_state = 73, .external_lex_state = 20}, - [4552] = {.lex_state = 73, .external_lex_state = 20}, - [4553] = {.lex_state = 73, .external_lex_state = 20}, - [4554] = {.lex_state = 649, .external_lex_state = 95}, - [4555] = {.lex_state = 37, .external_lex_state = 35}, - [4556] = {.lex_state = 636, .external_lex_state = 90}, - [4557] = {.lex_state = 636, .external_lex_state = 20}, - [4558] = {.lex_state = 37, .external_lex_state = 35}, - [4559] = {.lex_state = 636, .external_lex_state = 90}, - [4560] = {.lex_state = 73, .external_lex_state = 20}, - [4561] = {.lex_state = 649, .external_lex_state = 99}, - [4562] = {.lex_state = 96, .external_lex_state = 101}, - [4563] = {.lex_state = 636, .external_lex_state = 102}, - [4564] = {.lex_state = 96, .external_lex_state = 101}, - [4565] = {.lex_state = 649, .external_lex_state = 95}, - [4566] = {.lex_state = 73, .external_lex_state = 20}, - [4567] = {.lex_state = 73, .external_lex_state = 20}, - [4568] = {.lex_state = 636, .external_lex_state = 93}, - [4569] = {.lex_state = 636, .external_lex_state = 72}, - [4570] = {.lex_state = 73, .external_lex_state = 20}, - [4571] = {.lex_state = 649, .external_lex_state = 99}, - [4572] = {.lex_state = 636, .external_lex_state = 102}, - [4573] = {.lex_state = 73, .external_lex_state = 20}, - [4574] = {.lex_state = 636, .external_lex_state = 20}, - [4575] = {.lex_state = 73, .external_lex_state = 20}, - [4576] = {.lex_state = 636, .external_lex_state = 20}, - [4577] = {.lex_state = 636, .external_lex_state = 102}, - [4578] = {.lex_state = 636, .external_lex_state = 102}, - [4579] = {.lex_state = 73, .external_lex_state = 20}, - [4580] = {.lex_state = 73, .external_lex_state = 20}, - [4581] = {.lex_state = 37, .external_lex_state = 35}, - [4582] = {.lex_state = 636, .external_lex_state = 93}, - [4583] = {.lex_state = 73, .external_lex_state = 20}, - [4584] = {.lex_state = 636, .external_lex_state = 102}, - [4585] = {.lex_state = 73, .external_lex_state = 20}, - [4586] = {.lex_state = 636, .external_lex_state = 93}, - [4587] = {.lex_state = 636, .external_lex_state = 93}, - [4588] = {.lex_state = 636, .external_lex_state = 102}, - [4589] = {.lex_state = 636, .external_lex_state = 93}, - [4590] = {.lex_state = 636, .external_lex_state = 20}, - [4591] = {.lex_state = 649, .external_lex_state = 95}, - [4592] = {.lex_state = 73, .external_lex_state = 20}, - [4593] = {.lex_state = 636, .external_lex_state = 90}, - [4594] = {.lex_state = 636, .external_lex_state = 102}, - [4595] = {.lex_state = 636, .external_lex_state = 102}, - [4596] = {.lex_state = 73, .external_lex_state = 20}, - [4597] = {.lex_state = 636, .external_lex_state = 93}, - [4598] = {.lex_state = 649, .external_lex_state = 95}, - [4599] = {.lex_state = 636, .external_lex_state = 90}, - [4600] = {.lex_state = 636, .external_lex_state = 102}, - [4601] = {.lex_state = 649, .external_lex_state = 99}, - [4602] = {.lex_state = 636, .external_lex_state = 20}, - [4603] = {.lex_state = 636, .external_lex_state = 20}, - [4604] = {.lex_state = 73, .external_lex_state = 20}, - [4605] = {.lex_state = 73, .external_lex_state = 20}, - [4606] = {.lex_state = 73, .external_lex_state = 20}, - [4607] = {.lex_state = 636, .external_lex_state = 93}, - [4608] = {.lex_state = 73, .external_lex_state = 20}, - [4609] = {.lex_state = 73, .external_lex_state = 20}, - [4610] = {.lex_state = 636, .external_lex_state = 103}, - [4611] = {.lex_state = 96, .external_lex_state = 101}, - [4612] = {.lex_state = 73, .external_lex_state = 20}, - [4613] = {.lex_state = 636, .external_lex_state = 102}, - [4614] = {.lex_state = 636, .external_lex_state = 102}, - [4615] = {.lex_state = 73, .external_lex_state = 20}, - [4616] = {.lex_state = 97, .external_lex_state = 20}, - [4617] = {.lex_state = 649, .external_lex_state = 40}, - [4618] = {.lex_state = 636, .external_lex_state = 72}, - [4619] = {.lex_state = 73, .external_lex_state = 20}, - [4620] = {.lex_state = 636, .external_lex_state = 20}, - [4621] = {.lex_state = 97, .external_lex_state = 20}, - [4622] = {.lex_state = 636, .external_lex_state = 20}, - [4623] = {.lex_state = 97, .external_lex_state = 20}, - [4624] = {.lex_state = 97, .external_lex_state = 20}, - [4625] = {.lex_state = 636, .external_lex_state = 102}, - [4626] = {.lex_state = 636, .external_lex_state = 90}, - [4627] = {.lex_state = 649, .external_lex_state = 95}, - [4628] = {.lex_state = 649, .external_lex_state = 95}, - [4629] = {.lex_state = 636, .external_lex_state = 90}, - [4630] = {.lex_state = 97, .external_lex_state = 20}, - [4631] = {.lex_state = 97, .external_lex_state = 20}, - [4632] = {.lex_state = 73, .external_lex_state = 20}, - [4633] = {.lex_state = 97, .external_lex_state = 20}, - [4634] = {.lex_state = 73, .external_lex_state = 20}, - [4635] = {.lex_state = 73, .external_lex_state = 20}, - [4636] = {.lex_state = 636, .external_lex_state = 102}, - [4637] = {.lex_state = 73, .external_lex_state = 20}, - [4638] = {.lex_state = 73, .external_lex_state = 20}, - [4639] = {.lex_state = 73, .external_lex_state = 20}, - [4640] = {.lex_state = 636, .external_lex_state = 93}, - [4641] = {.lex_state = 636, .external_lex_state = 104}, - [4642] = {.lex_state = 636, .external_lex_state = 104}, - [4643] = {.lex_state = 73, .external_lex_state = 20}, - [4644] = {.lex_state = 73, .external_lex_state = 20}, - [4645] = {.lex_state = 649, .external_lex_state = 99}, - [4646] = {.lex_state = 96, .external_lex_state = 101}, - [4647] = {.lex_state = 73, .external_lex_state = 20}, - [4648] = {.lex_state = 73, .external_lex_state = 20}, - [4649] = {.lex_state = 636, .external_lex_state = 104}, - [4650] = {.lex_state = 96, .external_lex_state = 101}, - [4651] = {.lex_state = 636, .external_lex_state = 105}, - [4652] = {.lex_state = 636, .external_lex_state = 105}, - [4653] = {.lex_state = 636, .external_lex_state = 93}, - [4654] = {.lex_state = 636, .external_lex_state = 106}, - [4655] = {.lex_state = 636, .external_lex_state = 39}, - [4656] = {.lex_state = 636, .external_lex_state = 90}, - [4657] = {.lex_state = 73, .external_lex_state = 20}, - [4658] = {.lex_state = 636, .external_lex_state = 40}, - [4659] = {.lex_state = 636, .external_lex_state = 104}, - [4660] = {.lex_state = 636, .external_lex_state = 45}, - [4661] = {.lex_state = 636, .external_lex_state = 105}, - [4662] = {.lex_state = 73, .external_lex_state = 20}, - [4663] = {.lex_state = 649, .external_lex_state = 99}, - [4664] = {.lex_state = 73, .external_lex_state = 20}, - [4665] = {.lex_state = 96, .external_lex_state = 101}, - [4666] = {.lex_state = 636, .external_lex_state = 105}, - [4667] = {.lex_state = 73, .external_lex_state = 20}, - [4668] = {.lex_state = 636, .external_lex_state = 104}, - [4669] = {.lex_state = 73, .external_lex_state = 20}, - [4670] = {.lex_state = 636, .external_lex_state = 107}, - [4671] = {.lex_state = 37, .external_lex_state = 35}, - [4672] = {.lex_state = 636, .external_lex_state = 93}, - [4673] = {.lex_state = 636, .external_lex_state = 104}, - [4674] = {.lex_state = 636, .external_lex_state = 104}, - [4675] = {.lex_state = 636, .external_lex_state = 105}, - [4676] = {.lex_state = 73, .external_lex_state = 20}, - [4677] = {.lex_state = 73, .external_lex_state = 20}, - [4678] = {.lex_state = 73, .external_lex_state = 20}, - [4679] = {.lex_state = 73, .external_lex_state = 20}, - [4680] = {.lex_state = 73, .external_lex_state = 20}, - [4681] = {.lex_state = 649, .external_lex_state = 99}, - [4682] = {.lex_state = 73, .external_lex_state = 20}, - [4683] = {.lex_state = 37, .external_lex_state = 20}, - [4684] = {.lex_state = 649, .external_lex_state = 101}, - [4685] = {.lex_state = 636, .external_lex_state = 40}, - [4686] = {.lex_state = 636, .external_lex_state = 40}, - [4687] = {.lex_state = 649, .external_lex_state = 101}, - [4688] = {.lex_state = 73, .external_lex_state = 20}, - [4689] = {.lex_state = 73, .external_lex_state = 20}, - [4690] = {.lex_state = 649, .external_lex_state = 99}, - [4691] = {.lex_state = 649, .external_lex_state = 99}, - [4692] = {.lex_state = 73, .external_lex_state = 20}, - [4693] = {.lex_state = 73, .external_lex_state = 20}, - [4694] = {.lex_state = 37, .external_lex_state = 108}, - [4695] = {.lex_state = 73, .external_lex_state = 20}, - [4696] = {.lex_state = 73, .external_lex_state = 20}, - [4697] = {.lex_state = 73, .external_lex_state = 20}, - [4698] = {.lex_state = 73, .external_lex_state = 20}, - [4699] = {.lex_state = 73, .external_lex_state = 20}, - [4700] = {.lex_state = 73, .external_lex_state = 20}, - [4701] = {.lex_state = 73, .external_lex_state = 20}, - [4702] = {.lex_state = 636, .external_lex_state = 106}, - [4703] = {.lex_state = 649, .external_lex_state = 99}, - [4704] = {.lex_state = 73, .external_lex_state = 20}, - [4705] = {.lex_state = 73, .external_lex_state = 20}, - [4706] = {.lex_state = 636, .external_lex_state = 105}, - [4707] = {.lex_state = 37, .external_lex_state = 35}, - [4708] = {.lex_state = 636, .external_lex_state = 105}, - [4709] = {.lex_state = 649, .external_lex_state = 99}, - [4710] = {.lex_state = 37, .external_lex_state = 35}, - [4711] = {.lex_state = 636, .external_lex_state = 104}, - [4712] = {.lex_state = 73, .external_lex_state = 20}, - [4713] = {.lex_state = 73, .external_lex_state = 20}, - [4714] = {.lex_state = 636, .external_lex_state = 39}, - [4715] = {.lex_state = 636, .external_lex_state = 95}, - [4716] = {.lex_state = 636, .external_lex_state = 95}, - [4717] = {.lex_state = 73, .external_lex_state = 20}, - [4718] = {.lex_state = 37, .external_lex_state = 35}, - [4719] = {.lex_state = 649, .external_lex_state = 99}, - [4720] = {.lex_state = 636, .external_lex_state = 95}, - [4721] = {.lex_state = 636, .external_lex_state = 95}, - [4722] = {.lex_state = 636, .external_lex_state = 102}, - [4723] = {.lex_state = 636, .external_lex_state = 98}, - [4724] = {.lex_state = 73, .external_lex_state = 20}, - [4725] = {.lex_state = 636, .external_lex_state = 95}, - [4726] = {.lex_state = 70, .external_lex_state = 20}, - [4727] = {.lex_state = 636, .external_lex_state = 93}, - [4728] = {.lex_state = 636, .external_lex_state = 105}, - [4729] = {.lex_state = 636, .external_lex_state = 104}, - [4730] = {.lex_state = 73, .external_lex_state = 20}, - [4731] = {.lex_state = 73, .external_lex_state = 20}, - [4732] = {.lex_state = 73, .external_lex_state = 20}, - [4733] = {.lex_state = 70, .external_lex_state = 20}, - [4734] = {.lex_state = 70, .external_lex_state = 20}, - [4735] = {.lex_state = 636, .external_lex_state = 105}, - [4736] = {.lex_state = 649, .external_lex_state = 99}, - [4737] = {.lex_state = 636, .external_lex_state = 104}, - [4738] = {.lex_state = 73, .external_lex_state = 20}, - [4739] = {.lex_state = 636, .external_lex_state = 104}, - [4740] = {.lex_state = 73, .external_lex_state = 20}, - [4741] = {.lex_state = 636, .external_lex_state = 105}, - [4742] = {.lex_state = 636, .external_lex_state = 45}, - [4743] = {.lex_state = 73, .external_lex_state = 20}, - [4744] = {.lex_state = 73, .external_lex_state = 20}, - [4745] = {.lex_state = 649, .external_lex_state = 99}, - [4746] = {.lex_state = 649, .external_lex_state = 99}, - [4747] = {.lex_state = 70, .external_lex_state = 20}, - [4748] = {.lex_state = 73, .external_lex_state = 20}, - [4749] = {.lex_state = 636, .external_lex_state = 104}, - [4750] = {.lex_state = 37, .external_lex_state = 35}, - [4751] = {.lex_state = 636, .external_lex_state = 106}, - [4752] = {.lex_state = 96, .external_lex_state = 101}, - [4753] = {.lex_state = 96, .external_lex_state = 101}, - [4754] = {.lex_state = 636, .external_lex_state = 104}, - [4755] = {.lex_state = 96, .external_lex_state = 101}, - [4756] = {.lex_state = 73, .external_lex_state = 20}, - [4757] = {.lex_state = 73, .external_lex_state = 20}, - [4758] = {.lex_state = 636, .external_lex_state = 93}, - [4759] = {.lex_state = 73, .external_lex_state = 20}, - [4760] = {.lex_state = 636, .external_lex_state = 93}, - [4761] = {.lex_state = 636, .external_lex_state = 93}, - [4762] = {.lex_state = 636, .external_lex_state = 104}, - [4763] = {.lex_state = 96, .external_lex_state = 101}, - [4764] = {.lex_state = 73, .external_lex_state = 20}, - [4765] = {.lex_state = 73, .external_lex_state = 20}, - [4766] = {.lex_state = 636, .external_lex_state = 107}, - [4767] = {.lex_state = 73, .external_lex_state = 20}, - [4768] = {.lex_state = 73, .external_lex_state = 20}, - [4769] = {.lex_state = 73, .external_lex_state = 20}, - [4770] = {.lex_state = 649, .external_lex_state = 99}, - [4771] = {.lex_state = 73, .external_lex_state = 20}, - [4772] = {.lex_state = 73, .external_lex_state = 20}, - [4773] = {.lex_state = 636, .external_lex_state = 106}, - [4774] = {.lex_state = 73, .external_lex_state = 20}, - [4775] = {.lex_state = 96, .external_lex_state = 101}, - [4776] = {.lex_state = 636, .external_lex_state = 109}, - [4777] = {.lex_state = 96, .external_lex_state = 101}, - [4778] = {.lex_state = 73, .external_lex_state = 20}, - [4779] = {.lex_state = 636, .external_lex_state = 109}, - [4780] = {.lex_state = 73, .external_lex_state = 20}, - [4781] = {.lex_state = 636, .external_lex_state = 107}, - [4782] = {.lex_state = 636, .external_lex_state = 106}, - [4783] = {.lex_state = 37, .external_lex_state = 108}, - [4784] = {.lex_state = 37, .external_lex_state = 35}, - [4785] = {.lex_state = 636, .external_lex_state = 104}, - [4786] = {.lex_state = 96, .external_lex_state = 101}, - [4787] = {.lex_state = 636, .external_lex_state = 93}, - [4788] = {.lex_state = 73, .external_lex_state = 20}, - [4789] = {.lex_state = 70, .external_lex_state = 20}, - [4790] = {.lex_state = 73, .external_lex_state = 20}, - [4791] = {.lex_state = 73, .external_lex_state = 20}, - [4792] = {.lex_state = 73, .external_lex_state = 20}, - [4793] = {.lex_state = 73, .external_lex_state = 20}, - [4794] = {.lex_state = 636, .external_lex_state = 105}, - [4795] = {.lex_state = 73, .external_lex_state = 20}, - [4796] = {.lex_state = 70, .external_lex_state = 20}, - [4797] = {.lex_state = 73, .external_lex_state = 20}, - [4798] = {.lex_state = 636, .external_lex_state = 99}, - [4799] = {.lex_state = 649, .external_lex_state = 99}, - [4800] = {.lex_state = 96, .external_lex_state = 101}, - [4801] = {.lex_state = 73, .external_lex_state = 20}, - [4802] = {.lex_state = 73, .external_lex_state = 20}, - [4803] = {.lex_state = 73, .external_lex_state = 20}, - [4804] = {.lex_state = 73, .external_lex_state = 20}, - [4805] = {.lex_state = 73, .external_lex_state = 20}, - [4806] = {.lex_state = 73, .external_lex_state = 20}, - [4807] = {.lex_state = 636, .external_lex_state = 105}, - [4808] = {.lex_state = 73, .external_lex_state = 20}, - [4809] = {.lex_state = 73, .external_lex_state = 20}, - [4810] = {.lex_state = 37, .external_lex_state = 35}, - [4811] = {.lex_state = 636, .external_lex_state = 104}, - [4812] = {.lex_state = 73, .external_lex_state = 20}, - [4813] = {.lex_state = 73, .external_lex_state = 20}, - [4814] = {.lex_state = 636, .external_lex_state = 102}, - [4815] = {.lex_state = 73, .external_lex_state = 20}, - [4816] = {.lex_state = 73, .external_lex_state = 20}, - [4817] = {.lex_state = 636, .external_lex_state = 105}, - [4818] = {.lex_state = 73, .external_lex_state = 20}, - [4819] = {.lex_state = 636, .external_lex_state = 104}, - [4820] = {.lex_state = 636, .external_lex_state = 93}, - [4821] = {.lex_state = 73, .external_lex_state = 20}, - [4822] = {.lex_state = 73, .external_lex_state = 20}, - [4823] = {.lex_state = 73, .external_lex_state = 20}, - [4824] = {.lex_state = 73, .external_lex_state = 20}, - [4825] = {.lex_state = 73, .external_lex_state = 20}, - [4826] = {.lex_state = 649, .external_lex_state = 99}, - [4827] = {.lex_state = 73, .external_lex_state = 20}, - [4828] = {.lex_state = 636, .external_lex_state = 99}, - [4829] = {.lex_state = 73, .external_lex_state = 20}, - [4830] = {.lex_state = 636, .external_lex_state = 106}, - [4831] = {.lex_state = 73, .external_lex_state = 20}, - [4832] = {.lex_state = 649, .external_lex_state = 99}, - [4833] = {.lex_state = 636, .external_lex_state = 105}, - [4834] = {.lex_state = 636, .external_lex_state = 105}, - [4835] = {.lex_state = 37, .external_lex_state = 108}, - [4836] = {.lex_state = 73, .external_lex_state = 20}, - [4837] = {.lex_state = 636, .external_lex_state = 104}, - [4838] = {.lex_state = 636, .external_lex_state = 93}, - [4839] = {.lex_state = 96, .external_lex_state = 101}, - [4840] = {.lex_state = 649, .external_lex_state = 99}, - [4841] = {.lex_state = 636, .external_lex_state = 93}, - [4842] = {.lex_state = 636, .external_lex_state = 105}, - [4843] = {.lex_state = 636, .external_lex_state = 105}, - [4844] = {.lex_state = 37, .external_lex_state = 35}, - [4845] = {.lex_state = 636, .external_lex_state = 102}, - [4846] = {.lex_state = 636, .external_lex_state = 108}, - [4847] = {.lex_state = 636, .external_lex_state = 108}, - [4848] = {.lex_state = 636, .external_lex_state = 110}, - [4849] = {.lex_state = 636, .external_lex_state = 97}, - [4850] = {.lex_state = 636, .external_lex_state = 108}, - [4851] = {.lex_state = 649, .external_lex_state = 99}, - [4852] = {.lex_state = 636, .external_lex_state = 42}, - [4853] = {.lex_state = 636, .external_lex_state = 102}, - [4854] = {.lex_state = 636, .external_lex_state = 104}, - [4855] = {.lex_state = 636, .external_lex_state = 102}, - [4856] = {.lex_state = 636, .external_lex_state = 104}, - [4857] = {.lex_state = 72, .external_lex_state = 20}, - [4858] = {.lex_state = 636, .external_lex_state = 102}, - [4859] = {.lex_state = 72, .external_lex_state = 20}, - [4860] = {.lex_state = 649, .external_lex_state = 99}, - [4861] = {.lex_state = 636, .external_lex_state = 97}, - [4862] = {.lex_state = 649, .external_lex_state = 99}, - [4863] = {.lex_state = 636, .external_lex_state = 42}, - [4864] = {.lex_state = 636, .external_lex_state = 110}, - [4865] = {.lex_state = 96, .external_lex_state = 101}, - [4866] = {.lex_state = 636, .external_lex_state = 102}, - [4867] = {.lex_state = 636, .external_lex_state = 102}, - [4868] = {.lex_state = 636, .external_lex_state = 104}, - [4869] = {.lex_state = 636, .external_lex_state = 108}, - [4870] = {.lex_state = 636, .external_lex_state = 110}, - [4871] = {.lex_state = 37, .external_lex_state = 101}, - [4872] = {.lex_state = 636, .external_lex_state = 108}, - [4873] = {.lex_state = 636, .external_lex_state = 20}, - [4874] = {.lex_state = 636, .external_lex_state = 108}, - [4875] = {.lex_state = 636, .external_lex_state = 104}, - [4876] = {.lex_state = 636, .external_lex_state = 108}, - [4877] = {.lex_state = 636, .external_lex_state = 104}, - [4878] = {.lex_state = 636, .external_lex_state = 104}, - [4879] = {.lex_state = 636, .external_lex_state = 108}, - [4880] = {.lex_state = 636, .external_lex_state = 42}, - [4881] = {.lex_state = 636, .external_lex_state = 108}, - [4882] = {.lex_state = 636, .external_lex_state = 20}, - [4883] = {.lex_state = 636, .external_lex_state = 111}, - [4884] = {.lex_state = 636, .external_lex_state = 102}, - [4885] = {.lex_state = 636, .external_lex_state = 103}, - [4886] = {.lex_state = 636, .external_lex_state = 20}, - [4887] = {.lex_state = 636, .external_lex_state = 104}, - [4888] = {.lex_state = 636, .external_lex_state = 104}, - [4889] = {.lex_state = 636, .external_lex_state = 108}, - [4890] = {.lex_state = 96, .external_lex_state = 101}, - [4891] = {.lex_state = 636, .external_lex_state = 108}, - [4892] = {.lex_state = 636, .external_lex_state = 108}, - [4893] = {.lex_state = 636, .external_lex_state = 104}, - [4894] = {.lex_state = 636, .external_lex_state = 108}, - [4895] = {.lex_state = 636, .external_lex_state = 104}, - [4896] = {.lex_state = 636, .external_lex_state = 103}, - [4897] = {.lex_state = 636, .external_lex_state = 42}, - [4898] = {.lex_state = 636, .external_lex_state = 108}, - [4899] = {.lex_state = 636, .external_lex_state = 102}, - [4900] = {.lex_state = 636, .external_lex_state = 104}, - [4901] = {.lex_state = 636, .external_lex_state = 42}, - [4902] = {.lex_state = 636, .external_lex_state = 108}, - [4903] = {.lex_state = 636, .external_lex_state = 102}, - [4904] = {.lex_state = 636, .external_lex_state = 104}, - [4905] = {.lex_state = 636, .external_lex_state = 102}, - [4906] = {.lex_state = 636, .external_lex_state = 102}, - [4907] = {.lex_state = 649, .external_lex_state = 89}, - [4908] = {.lex_state = 636, .external_lex_state = 93}, - [4909] = {.lex_state = 636, .external_lex_state = 104}, - [4910] = {.lex_state = 96, .external_lex_state = 101}, - [4911] = {.lex_state = 636, .external_lex_state = 104}, - [4912] = {.lex_state = 636, .external_lex_state = 104}, - [4913] = {.lex_state = 636, .external_lex_state = 102}, - [4914] = {.lex_state = 636, .external_lex_state = 108}, - [4915] = {.lex_state = 37, .external_lex_state = 101}, - [4916] = {.lex_state = 636, .external_lex_state = 102}, - [4917] = {.lex_state = 636, .external_lex_state = 109}, - [4918] = {.lex_state = 636, .external_lex_state = 108}, - [4919] = {.lex_state = 636, .external_lex_state = 108}, - [4920] = {.lex_state = 636, .external_lex_state = 102}, - [4921] = {.lex_state = 636, .external_lex_state = 104}, - [4922] = {.lex_state = 636, .external_lex_state = 104}, - [4923] = {.lex_state = 72, .external_lex_state = 20}, - [4924] = {.lex_state = 636, .external_lex_state = 103}, - [4925] = {.lex_state = 636, .external_lex_state = 103}, - [4926] = {.lex_state = 636, .external_lex_state = 110}, - [4927] = {.lex_state = 636, .external_lex_state = 102}, - [4928] = {.lex_state = 636, .external_lex_state = 104}, - [4929] = {.lex_state = 636, .external_lex_state = 20}, - [4930] = {.lex_state = 72, .external_lex_state = 20}, - [4931] = {.lex_state = 636, .external_lex_state = 42}, - [4932] = {.lex_state = 636, .external_lex_state = 108}, - [4933] = {.lex_state = 72, .external_lex_state = 20}, - [4934] = {.lex_state = 636, .external_lex_state = 42}, - [4935] = {.lex_state = 636, .external_lex_state = 108}, - [4936] = {.lex_state = 636, .external_lex_state = 102}, - [4937] = {.lex_state = 636, .external_lex_state = 108}, - [4938] = {.lex_state = 636, .external_lex_state = 97}, - [4939] = {.lex_state = 636, .external_lex_state = 111}, - [4940] = {.lex_state = 636, .external_lex_state = 104}, - [4941] = {.lex_state = 72, .external_lex_state = 20}, - [4942] = {.lex_state = 37, .external_lex_state = 20}, - [4943] = {.lex_state = 636, .external_lex_state = 104}, - [4944] = {.lex_state = 636, .external_lex_state = 104}, - [4945] = {.lex_state = 636, .external_lex_state = 97}, - [4946] = {.lex_state = 636, .external_lex_state = 108}, - [4947] = {.lex_state = 636, .external_lex_state = 110}, - [4948] = {.lex_state = 636, .external_lex_state = 102}, - [4949] = {.lex_state = 636, .external_lex_state = 97}, - [4950] = {.lex_state = 636, .external_lex_state = 108}, - [4951] = {.lex_state = 636, .external_lex_state = 104}, - [4952] = {.lex_state = 636, .external_lex_state = 108}, - [4953] = {.lex_state = 636, .external_lex_state = 102}, - [4954] = {.lex_state = 636, .external_lex_state = 111}, - [4955] = {.lex_state = 636, .external_lex_state = 102}, - [4956] = {.lex_state = 636, .external_lex_state = 102}, - [4957] = {.lex_state = 636, .external_lex_state = 111}, - [4958] = {.lex_state = 636, .external_lex_state = 108}, - [4959] = {.lex_state = 636, .external_lex_state = 108}, - [4960] = {.lex_state = 636, .external_lex_state = 104}, - [4961] = {.lex_state = 636, .external_lex_state = 104}, - [4962] = {.lex_state = 636, .external_lex_state = 104}, - [4963] = {.lex_state = 636, .external_lex_state = 93}, - [4964] = {.lex_state = 636, .external_lex_state = 93}, - [4965] = {.lex_state = 636, .external_lex_state = 102}, - [4966] = {.lex_state = 37, .external_lex_state = 101}, - [4967] = {.lex_state = 636, .external_lex_state = 102}, - [4968] = {.lex_state = 636, .external_lex_state = 104}, - [4969] = {.lex_state = 636, .external_lex_state = 108}, - [4970] = {.lex_state = 636, .external_lex_state = 103}, - [4971] = {.lex_state = 636, .external_lex_state = 104}, - [4972] = {.lex_state = 636, .external_lex_state = 20}, - [4973] = {.lex_state = 636, .external_lex_state = 102}, - [4974] = {.lex_state = 37, .external_lex_state = 101}, - [4975] = {.lex_state = 636, .external_lex_state = 102}, - [4976] = {.lex_state = 636, .external_lex_state = 102}, - [4977] = {.lex_state = 37, .external_lex_state = 101}, - [4978] = {.lex_state = 636, .external_lex_state = 109}, - [4979] = {.lex_state = 636, .external_lex_state = 102}, - [4980] = {.lex_state = 636, .external_lex_state = 97}, - [4981] = {.lex_state = 636, .external_lex_state = 108}, - [4982] = {.lex_state = 636, .external_lex_state = 97}, - [4983] = {.lex_state = 636, .external_lex_state = 104}, - [4984] = {.lex_state = 636, .external_lex_state = 110}, - [4985] = {.lex_state = 636, .external_lex_state = 104}, - [4986] = {.lex_state = 636, .external_lex_state = 97}, - [4987] = {.lex_state = 636, .external_lex_state = 97}, - [4988] = {.lex_state = 636, .external_lex_state = 108}, - [4989] = {.lex_state = 636, .external_lex_state = 105}, - [4990] = {.lex_state = 636, .external_lex_state = 104}, - [4991] = {.lex_state = 636, .external_lex_state = 108}, - [4992] = {.lex_state = 636, .external_lex_state = 104}, - [4993] = {.lex_state = 73, .external_lex_state = 20}, - [4994] = {.lex_state = 636, .external_lex_state = 104}, - [4995] = {.lex_state = 636, .external_lex_state = 104}, - [4996] = {.lex_state = 636, .external_lex_state = 110}, - [4997] = {.lex_state = 636, .external_lex_state = 102}, - [4998] = {.lex_state = 636, .external_lex_state = 110}, - [4999] = {.lex_state = 636, .external_lex_state = 108}, - [5000] = {.lex_state = 636, .external_lex_state = 104}, - [5001] = {.lex_state = 37, .external_lex_state = 101}, - [5002] = {.lex_state = 636, .external_lex_state = 102}, - [5003] = {.lex_state = 636, .external_lex_state = 102}, - [5004] = {.lex_state = 636, .external_lex_state = 103}, - [5005] = {.lex_state = 636, .external_lex_state = 104}, - [5006] = {.lex_state = 636, .external_lex_state = 104}, - [5007] = {.lex_state = 636, .external_lex_state = 104}, - [5008] = {.lex_state = 636, .external_lex_state = 102}, - [5009] = {.lex_state = 636, .external_lex_state = 104}, - [5010] = {.lex_state = 636, .external_lex_state = 102}, - [5011] = {.lex_state = 636, .external_lex_state = 108}, - [5012] = {.lex_state = 636, .external_lex_state = 39}, - [5013] = {.lex_state = 636, .external_lex_state = 110}, - [5014] = {.lex_state = 636, .external_lex_state = 93}, - [5015] = {.lex_state = 636, .external_lex_state = 110}, - [5016] = {.lex_state = 636, .external_lex_state = 102}, - [5017] = {.lex_state = 636, .external_lex_state = 110}, - [5018] = {.lex_state = 636, .external_lex_state = 110}, - [5019] = {.lex_state = 37, .external_lex_state = 101}, - [5020] = {.lex_state = 37, .external_lex_state = 101}, - [5021] = {.lex_state = 636, .external_lex_state = 20}, - [5022] = {.lex_state = 636, .external_lex_state = 102}, - [5023] = {.lex_state = 636, .external_lex_state = 102}, - [5024] = {.lex_state = 636, .external_lex_state = 102}, - [5025] = {.lex_state = 636, .external_lex_state = 102}, - [5026] = {.lex_state = 636, .external_lex_state = 102}, - [5027] = {.lex_state = 636, .external_lex_state = 104}, - [5028] = {.lex_state = 636, .external_lex_state = 102}, - [5029] = {.lex_state = 636, .external_lex_state = 102}, - [5030] = {.lex_state = 636, .external_lex_state = 20}, - [5031] = {.lex_state = 636, .external_lex_state = 102}, - [5032] = {.lex_state = 636, .external_lex_state = 104}, - [5033] = {.lex_state = 636, .external_lex_state = 20}, - [5034] = {.lex_state = 636, .external_lex_state = 101}, - [5035] = {.lex_state = 636, .external_lex_state = 104}, - [5036] = {.lex_state = 636, .external_lex_state = 45}, - [5037] = {.lex_state = 636, .external_lex_state = 102}, - [5038] = {.lex_state = 636, .external_lex_state = 102}, - [5039] = {.lex_state = 636, .external_lex_state = 102}, - [5040] = {.lex_state = 636, .external_lex_state = 102}, - [5041] = {.lex_state = 636, .external_lex_state = 104}, - [5042] = {.lex_state = 636, .external_lex_state = 42}, - [5043] = {.lex_state = 636, .external_lex_state = 102}, - [5044] = {.lex_state = 636, .external_lex_state = 109}, - [5045] = {.lex_state = 636, .external_lex_state = 104}, - [5046] = {.lex_state = 636, .external_lex_state = 104}, - [5047] = {.lex_state = 636, .external_lex_state = 104}, - [5048] = {.lex_state = 636, .external_lex_state = 104}, - [5049] = {.lex_state = 636, .external_lex_state = 104}, - [5050] = {.lex_state = 636, .external_lex_state = 104}, - [5051] = {.lex_state = 636, .external_lex_state = 104}, - [5052] = {.lex_state = 636, .external_lex_state = 102}, - [5053] = {.lex_state = 636, .external_lex_state = 20}, - [5054] = {.lex_state = 636, .external_lex_state = 104}, - [5055] = {.lex_state = 636, .external_lex_state = 106}, - [5056] = {.lex_state = 636, .external_lex_state = 104}, - [5057] = {.lex_state = 636, .external_lex_state = 102}, - [5058] = {.lex_state = 636, .external_lex_state = 104}, - [5059] = {.lex_state = 636, .external_lex_state = 104}, - [5060] = {.lex_state = 636, .external_lex_state = 104}, - [5061] = {.lex_state = 636, .external_lex_state = 104}, - [5062] = {.lex_state = 636, .external_lex_state = 104}, - [5063] = {.lex_state = 636, .external_lex_state = 104}, - [5064] = {.lex_state = 636, .external_lex_state = 102}, - [5065] = {.lex_state = 636, .external_lex_state = 104}, - [5066] = {.lex_state = 636, .external_lex_state = 102}, - [5067] = {.lex_state = 636, .external_lex_state = 104}, - [5068] = {.lex_state = 636, .external_lex_state = 106}, - [5069] = {.lex_state = 636, .external_lex_state = 102}, - [5070] = {.lex_state = 636, .external_lex_state = 104}, - [5071] = {.lex_state = 636, .external_lex_state = 104}, - [5072] = {.lex_state = 636, .external_lex_state = 20}, - [5073] = {.lex_state = 636, .external_lex_state = 102}, - [5074] = {.lex_state = 636, .external_lex_state = 101}, - [5075] = {.lex_state = 636, .external_lex_state = 102}, - [5076] = {.lex_state = 636, .external_lex_state = 102}, - [5077] = {.lex_state = 636, .external_lex_state = 42}, - [5078] = {.lex_state = 636, .external_lex_state = 102}, - [5079] = {.lex_state = 636, .external_lex_state = 104}, - [5080] = {.lex_state = 636, .external_lex_state = 102}, - [5081] = {.lex_state = 636, .external_lex_state = 104}, - [5082] = {.lex_state = 636, .external_lex_state = 102}, - [5083] = {.lex_state = 636, .external_lex_state = 104}, - [5084] = {.lex_state = 636, .external_lex_state = 104}, - [5085] = {.lex_state = 636, .external_lex_state = 104}, - [5086] = {.lex_state = 636, .external_lex_state = 104}, - [5087] = {.lex_state = 636, .external_lex_state = 104}, - [5088] = {.lex_state = 636, .external_lex_state = 104}, - [5089] = {.lex_state = 636, .external_lex_state = 102}, - [5090] = {.lex_state = 636, .external_lex_state = 104}, - [5091] = {.lex_state = 636, .external_lex_state = 42}, - [5092] = {.lex_state = 636, .external_lex_state = 104}, - [5093] = {.lex_state = 636, .external_lex_state = 102}, - [5094] = {.lex_state = 636, .external_lex_state = 104}, - [5095] = {.lex_state = 636, .external_lex_state = 102}, - [5096] = {.lex_state = 636, .external_lex_state = 104}, - [5097] = {.lex_state = 636, .external_lex_state = 102}, - [5098] = {.lex_state = 636, .external_lex_state = 102}, - [5099] = {.lex_state = 636, .external_lex_state = 39}, - [5100] = {.lex_state = 636, .external_lex_state = 102}, - [5101] = {.lex_state = 636, .external_lex_state = 102}, - [5102] = {.lex_state = 636, .external_lex_state = 42}, - [5103] = {.lex_state = 636, .external_lex_state = 102}, - [5104] = {.lex_state = 636, .external_lex_state = 102}, - [5105] = {.lex_state = 636, .external_lex_state = 104}, - [5106] = {.lex_state = 636, .external_lex_state = 102}, - [5107] = {.lex_state = 636, .external_lex_state = 102}, - [5108] = {.lex_state = 636, .external_lex_state = 104}, - [5109] = {.lex_state = 636, .external_lex_state = 20}, - [5110] = {.lex_state = 636, .external_lex_state = 20}, - [5111] = {.lex_state = 636, .external_lex_state = 42}, - [5112] = {.lex_state = 636, .external_lex_state = 42}, - [5113] = {.lex_state = 636, .external_lex_state = 20}, - [5114] = {.lex_state = 636, .external_lex_state = 42}, - [5115] = {.lex_state = 636, .external_lex_state = 102}, - [5116] = {.lex_state = 636, .external_lex_state = 104}, - [5117] = {.lex_state = 636, .external_lex_state = 104}, - [5118] = {.lex_state = 636, .external_lex_state = 102}, - [5119] = {.lex_state = 636, .external_lex_state = 20}, - [5120] = {.lex_state = 636, .external_lex_state = 42}, - [5121] = {.lex_state = 636, .external_lex_state = 20}, - [5122] = {.lex_state = 636, .external_lex_state = 104}, - [5123] = {.lex_state = 636, .external_lex_state = 104}, - [5124] = {.lex_state = 636, .external_lex_state = 102}, - [5125] = {.lex_state = 636, .external_lex_state = 102}, - [5126] = {.lex_state = 636, .external_lex_state = 104}, - [5127] = {.lex_state = 636, .external_lex_state = 102}, - [5128] = {.lex_state = 636, .external_lex_state = 107}, - [5129] = {.lex_state = 636, .external_lex_state = 20}, - [5130] = {.lex_state = 636, .external_lex_state = 102}, - [5131] = {.lex_state = 636, .external_lex_state = 102}, - [5132] = {.lex_state = 636, .external_lex_state = 104}, - [5133] = {.lex_state = 636, .external_lex_state = 104}, - [5134] = {.lex_state = 636, .external_lex_state = 20}, - [5135] = {.lex_state = 636, .external_lex_state = 104}, - [5136] = {.lex_state = 636, .external_lex_state = 20}, - [5137] = {.lex_state = 636, .external_lex_state = 102}, - [5138] = {.lex_state = 636, .external_lex_state = 42}, - [5139] = {.lex_state = 636, .external_lex_state = 109}, - [5140] = {.lex_state = 636, .external_lex_state = 104}, - [5141] = {.lex_state = 636, .external_lex_state = 102}, - [5142] = {.lex_state = 636, .external_lex_state = 42}, - [5143] = {.lex_state = 636, .external_lex_state = 102}, - [5144] = {.lex_state = 636, .external_lex_state = 102}, - [5145] = {.lex_state = 636, .external_lex_state = 104}, - [5146] = {.lex_state = 636, .external_lex_state = 102}, - [5147] = {.lex_state = 636, .external_lex_state = 102}, - [5148] = {.lex_state = 636, .external_lex_state = 104}, - [5149] = {.lex_state = 636, .external_lex_state = 20}, - [5150] = {.lex_state = 636, .external_lex_state = 102}, - [5151] = {.lex_state = 636, .external_lex_state = 104}, - [5152] = {.lex_state = 636, .external_lex_state = 97}, - [5153] = {.lex_state = 636, .external_lex_state = 104}, - [5154] = {.lex_state = 636, .external_lex_state = 20}, - [5155] = {.lex_state = 636, .external_lex_state = 102}, - [5156] = {.lex_state = 636, .external_lex_state = 104}, - [5157] = {.lex_state = 636, .external_lex_state = 102}, - [5158] = {.lex_state = 636, .external_lex_state = 104}, - [5159] = {.lex_state = 636, .external_lex_state = 104}, - [5160] = {.lex_state = 636, .external_lex_state = 104}, - [5161] = {.lex_state = 636, .external_lex_state = 102}, - [5162] = {.lex_state = 636, .external_lex_state = 102}, - [5163] = {.lex_state = 636, .external_lex_state = 102}, - [5164] = {.lex_state = 636, .external_lex_state = 104}, - [5165] = {.lex_state = 636, .external_lex_state = 102}, - [5166] = {.lex_state = 636, .external_lex_state = 104}, - [5167] = {.lex_state = 636, .external_lex_state = 104}, - [5168] = {.lex_state = 636, .external_lex_state = 104}, - [5169] = {.lex_state = 636, .external_lex_state = 104}, - [5170] = {.lex_state = 636, .external_lex_state = 39}, - [5171] = {.lex_state = 636, .external_lex_state = 102}, - [5172] = {.lex_state = 636, .external_lex_state = 104}, - [5173] = {.lex_state = 636, .external_lex_state = 104}, - [5174] = {.lex_state = 636, .external_lex_state = 102}, - [5175] = {.lex_state = 636, .external_lex_state = 104}, - [5176] = {.lex_state = 636, .external_lex_state = 102}, - [5177] = {.lex_state = 636, .external_lex_state = 104}, - [5178] = {.lex_state = 636, .external_lex_state = 20}, - [5179] = {.lex_state = 636, .external_lex_state = 104}, - [5180] = {.lex_state = 636, .external_lex_state = 102}, - [5181] = {.lex_state = 636, .external_lex_state = 104}, - [5182] = {.lex_state = 636, .external_lex_state = 102}, - [5183] = {.lex_state = 636, .external_lex_state = 109}, - [5184] = {.lex_state = 636, .external_lex_state = 102}, - [5185] = {.lex_state = 636, .external_lex_state = 45}, - [5186] = {.lex_state = 636, .external_lex_state = 109}, - [5187] = {.lex_state = 636, .external_lex_state = 104}, - [5188] = {.lex_state = 636, .external_lex_state = 104}, - [5189] = {.lex_state = 636, .external_lex_state = 99}, - [5190] = {.lex_state = 636, .external_lex_state = 104}, - [5191] = {.lex_state = 636, .external_lex_state = 99}, - [5192] = {.lex_state = 636, .external_lex_state = 104}, - [5193] = {.lex_state = 636, .external_lex_state = 104}, - [5194] = {.lex_state = 636, .external_lex_state = 107}, - [5195] = {.lex_state = 636, .external_lex_state = 104}, - [5196] = {.lex_state = 636, .external_lex_state = 106}, - [5197] = {.lex_state = 636, .external_lex_state = 102}, - [5198] = {.lex_state = 636, .external_lex_state = 104}, - [5199] = {.lex_state = 636, .external_lex_state = 20}, - [5200] = {.lex_state = 636, .external_lex_state = 104}, - [5201] = {.lex_state = 636, .external_lex_state = 104}, - [5202] = {.lex_state = 636, .external_lex_state = 104}, - [5203] = {.lex_state = 636, .external_lex_state = 102}, - [5204] = {.lex_state = 636, .external_lex_state = 97}, - [5205] = {.lex_state = 636, .external_lex_state = 104}, - [5206] = {.lex_state = 636, .external_lex_state = 104}, - [5207] = {.lex_state = 636, .external_lex_state = 104}, - [5208] = {.lex_state = 636, .external_lex_state = 104}, - [5209] = {.lex_state = 636, .external_lex_state = 20}, - [5210] = {.lex_state = 636, .external_lex_state = 99}, - [5211] = {.lex_state = 636, .external_lex_state = 99}, - [5212] = {.lex_state = 636, .external_lex_state = 104}, - [5213] = {.lex_state = 636, .external_lex_state = 104}, - [5214] = {.lex_state = 636, .external_lex_state = 104}, - [5215] = {.lex_state = 636, .external_lex_state = 106}, - [5216] = {.lex_state = 636, .external_lex_state = 104}, - [5217] = {.lex_state = 636, .external_lex_state = 104}, - [5218] = {.lex_state = 636, .external_lex_state = 20}, - [5219] = {.lex_state = 636, .external_lex_state = 104}, - [5220] = {.lex_state = 636, .external_lex_state = 104}, - [5221] = {.lex_state = 636, .external_lex_state = 104}, - [5222] = {.lex_state = 636, .external_lex_state = 104}, - [5223] = {.lex_state = 636, .external_lex_state = 104}, - [5224] = {.lex_state = 636, .external_lex_state = 104}, - [5225] = {.lex_state = 636, .external_lex_state = 104}, - [5226] = {.lex_state = 636, .external_lex_state = 20}, - [5227] = {.lex_state = 636, .external_lex_state = 104}, - [5228] = {.lex_state = 636, .external_lex_state = 104}, - [5229] = {.lex_state = 636, .external_lex_state = 104}, - [5230] = {.lex_state = 636, .external_lex_state = 104}, - [5231] = {.lex_state = 636, .external_lex_state = 42}, - [5232] = {.lex_state = 636, .external_lex_state = 104}, - [5233] = {.lex_state = 636, .external_lex_state = 20}, - [5234] = {.lex_state = 636, .external_lex_state = 20}, - [5235] = {.lex_state = 636, .external_lex_state = 104}, - [5236] = {.lex_state = 636, .external_lex_state = 104}, - [5237] = {.lex_state = 636, .external_lex_state = 104}, - [5238] = {.lex_state = 636, .external_lex_state = 20}, - [5239] = {.lex_state = 636, .external_lex_state = 102}, - [5240] = {.lex_state = 636, .external_lex_state = 97}, - [5241] = {.lex_state = 636, .external_lex_state = 104}, - [5242] = {.lex_state = 636, .external_lex_state = 104}, - [5243] = {.lex_state = 636, .external_lex_state = 102}, - [5244] = {.lex_state = 636, .external_lex_state = 104}, - [5245] = {.lex_state = 636, .external_lex_state = 104}, - [5246] = {.lex_state = 636, .external_lex_state = 104}, - [5247] = {.lex_state = 636, .external_lex_state = 104}, - [5248] = {.lex_state = 636, .external_lex_state = 20}, - [5249] = {.lex_state = 636, .external_lex_state = 20}, - [5250] = {.lex_state = 636, .external_lex_state = 64}, - [5251] = {.lex_state = 636, .external_lex_state = 20}, - [5252] = {.lex_state = 636, .external_lex_state = 102}, - [5253] = {.lex_state = 636, .external_lex_state = 104}, - [5254] = {.lex_state = 636, .external_lex_state = 99}, - [5255] = {.lex_state = 636, .external_lex_state = 104}, - [5256] = {.lex_state = 636, .external_lex_state = 20}, - [5257] = {.lex_state = 636, .external_lex_state = 104}, - [5258] = {.lex_state = 636, .external_lex_state = 99}, - [5259] = {.lex_state = 636, .external_lex_state = 99}, - [5260] = {.lex_state = 636, .external_lex_state = 104}, - [5261] = {.lex_state = 636, .external_lex_state = 42}, - [5262] = {.lex_state = 636, .external_lex_state = 104}, - [5263] = {.lex_state = 636, .external_lex_state = 104}, - [5264] = {.lex_state = 636, .external_lex_state = 104}, - [5265] = {.lex_state = 636, .external_lex_state = 20}, - [5266] = {.lex_state = 636, .external_lex_state = 104}, - [5267] = {.lex_state = 636, .external_lex_state = 20}, - [5268] = {.lex_state = 636, .external_lex_state = 104}, - [5269] = {.lex_state = 636, .external_lex_state = 104}, - [5270] = {.lex_state = 636, .external_lex_state = 104}, - [5271] = {.lex_state = 636, .external_lex_state = 20}, - [5272] = {.lex_state = 636, .external_lex_state = 104}, - [5273] = {.lex_state = 636, .external_lex_state = 20}, - [5274] = {.lex_state = 636, .external_lex_state = 104}, - [5275] = {.lex_state = 636, .external_lex_state = 104}, - [5276] = {.lex_state = 636, .external_lex_state = 104}, - [5277] = {.lex_state = 636, .external_lex_state = 104}, - [5278] = {.lex_state = 636, .external_lex_state = 20}, - [5279] = {.lex_state = 636, .external_lex_state = 104}, - [5280] = {.lex_state = 636, .external_lex_state = 20}, - [5281] = {.lex_state = 636, .external_lex_state = 20}, - [5282] = {.lex_state = 636, .external_lex_state = 20}, - [5283] = {.lex_state = 636, .external_lex_state = 20}, - [5284] = {.lex_state = 636, .external_lex_state = 104}, - [5285] = {.lex_state = 636, .external_lex_state = 20}, - [5286] = {.lex_state = 636, .external_lex_state = 20}, - [5287] = {.lex_state = 636, .external_lex_state = 104}, - [5288] = {.lex_state = 636, .external_lex_state = 20}, - [5289] = {.lex_state = 636, .external_lex_state = 20}, - [5290] = {.lex_state = 636, .external_lex_state = 20}, - [5291] = {.lex_state = 636, .external_lex_state = 20}, - [5292] = {.lex_state = 636, .external_lex_state = 20}, - [5293] = {.lex_state = 636, .external_lex_state = 20}, - [5294] = {.lex_state = 636, .external_lex_state = 20}, - [5295] = {.lex_state = 636, .external_lex_state = 20}, - [5296] = {.lex_state = 636, .external_lex_state = 20}, - [5297] = {.lex_state = 636, .external_lex_state = 104}, - [5298] = {.lex_state = 636, .external_lex_state = 104}, - [5299] = {.lex_state = 636, .external_lex_state = 20}, - [5300] = {.lex_state = 636, .external_lex_state = 20}, - [5301] = {.lex_state = 636, .external_lex_state = 104}, - [5302] = {.lex_state = 636, .external_lex_state = 20}, - [5303] = {.lex_state = 636, .external_lex_state = 104}, - [5304] = {.lex_state = 636, .external_lex_state = 104}, - [5305] = {.lex_state = 636, .external_lex_state = 20}, - [5306] = {.lex_state = 636, .external_lex_state = 104}, - [5307] = {.lex_state = 636, .external_lex_state = 42}, - [5308] = {.lex_state = 636, .external_lex_state = 20}, - [5309] = {.lex_state = 636, .external_lex_state = 45}, - [5310] = {.lex_state = 636, .external_lex_state = 20}, - [5311] = {.lex_state = 636, .external_lex_state = 64}, - [5312] = {.lex_state = 636, .external_lex_state = 20}, - [5313] = {.lex_state = 636, .external_lex_state = 104}, - [5314] = {.lex_state = 636, .external_lex_state = 102}, - [5315] = {.lex_state = 636, .external_lex_state = 20}, - [5316] = {.lex_state = 636, .external_lex_state = 104}, - [5317] = {.lex_state = 636, .external_lex_state = 104}, - [5318] = {.lex_state = 636, .external_lex_state = 102}, - [5319] = {.lex_state = 636, .external_lex_state = 20}, - [5320] = {.lex_state = 636, .external_lex_state = 45}, - [5321] = {.lex_state = 636, .external_lex_state = 104}, - [5322] = {.lex_state = 636, .external_lex_state = 20}, - [5323] = {.lex_state = 636, .external_lex_state = 20}, - [5324] = {.lex_state = 636, .external_lex_state = 20}, - [5325] = {.lex_state = 636, .external_lex_state = 104}, - [5326] = {.lex_state = 636, .external_lex_state = 20}, - [5327] = {.lex_state = 636, .external_lex_state = 20}, - [5328] = {.lex_state = 636, .external_lex_state = 20}, - [5329] = {.lex_state = 636, .external_lex_state = 20}, - [5330] = {.lex_state = 636, .external_lex_state = 20}, - [5331] = {.lex_state = 636, .external_lex_state = 104}, - [5332] = {.lex_state = 636, .external_lex_state = 104}, - [5333] = {.lex_state = 636, .external_lex_state = 20}, - [5334] = {.lex_state = 636, .external_lex_state = 104}, - [5335] = {.lex_state = 636, .external_lex_state = 20}, - [5336] = {.lex_state = 636, .external_lex_state = 104}, - [5337] = {.lex_state = 636, .external_lex_state = 20}, - [5338] = {.lex_state = 636, .external_lex_state = 104}, - [5339] = {.lex_state = 636, .external_lex_state = 102}, - [5340] = {.lex_state = 37, .external_lex_state = 112}, - [5341] = {.lex_state = 636, .external_lex_state = 20}, - [5342] = {.lex_state = 636, .external_lex_state = 20}, - [5343] = {.lex_state = 636, .external_lex_state = 20}, - [5344] = {.lex_state = 636, .external_lex_state = 20}, - [5345] = {.lex_state = 636, .external_lex_state = 104}, - [5346] = {.lex_state = 636, .external_lex_state = 64}, - [5347] = {.lex_state = 636, .external_lex_state = 113}, - [5348] = {.lex_state = 636, .external_lex_state = 102}, - [5349] = {.lex_state = 636, .external_lex_state = 20}, - [5350] = {.lex_state = 636, .external_lex_state = 20}, - [5351] = {.lex_state = 636, .external_lex_state = 20}, - [5352] = {.lex_state = 636, .external_lex_state = 20}, - [5353] = {.lex_state = 636, .external_lex_state = 104}, - [5354] = {.lex_state = 636, .external_lex_state = 20}, - [5355] = {.lex_state = 636, .external_lex_state = 104}, - [5356] = {.lex_state = 636, .external_lex_state = 20}, - [5357] = {.lex_state = 636, .external_lex_state = 104}, - [5358] = {.lex_state = 636, .external_lex_state = 104}, - [5359] = {.lex_state = 636, .external_lex_state = 104}, - [5360] = {.lex_state = 636, .external_lex_state = 20}, - [5361] = {.lex_state = 636, .external_lex_state = 20}, - [5362] = {.lex_state = 636, .external_lex_state = 20}, - [5363] = {.lex_state = 636, .external_lex_state = 20}, - [5364] = {.lex_state = 636, .external_lex_state = 20}, - [5365] = {.lex_state = 636, .external_lex_state = 20}, - [5366] = {.lex_state = 636, .external_lex_state = 20}, - [5367] = {.lex_state = 636, .external_lex_state = 20}, - [5368] = {.lex_state = 636, .external_lex_state = 20}, - [5369] = {.lex_state = 636, .external_lex_state = 20}, - [5370] = {.lex_state = 636, .external_lex_state = 104}, - [5371] = {.lex_state = 636, .external_lex_state = 104}, - [5372] = {.lex_state = 636, .external_lex_state = 20}, - [5373] = {.lex_state = 636, .external_lex_state = 20}, - [5374] = {.lex_state = 636, .external_lex_state = 20}, - [5375] = {.lex_state = 636, .external_lex_state = 102}, - [5376] = {.lex_state = 636, .external_lex_state = 20}, - [5377] = {.lex_state = 636, .external_lex_state = 104}, - [5378] = {.lex_state = 636, .external_lex_state = 20}, - [5379] = {.lex_state = 636, .external_lex_state = 20}, - [5380] = {.lex_state = 636, .external_lex_state = 20}, - [5381] = {.lex_state = 636, .external_lex_state = 104}, - [5382] = {.lex_state = 636, .external_lex_state = 45}, - [5383] = {.lex_state = 636, .external_lex_state = 20}, - [5384] = {.lex_state = 636, .external_lex_state = 64}, - [5385] = {.lex_state = 636, .external_lex_state = 102}, - [5386] = {.lex_state = 636, .external_lex_state = 104}, - [5387] = {.lex_state = 636, .external_lex_state = 102}, - [5388] = {.lex_state = 636, .external_lex_state = 104}, - [5389] = {.lex_state = 636, .external_lex_state = 104}, - [5390] = {.lex_state = 636, .external_lex_state = 20}, - [5391] = {.lex_state = 636, .external_lex_state = 104}, - [5392] = {.lex_state = 636, .external_lex_state = 20}, - [5393] = {.lex_state = 636, .external_lex_state = 104}, - [5394] = {.lex_state = 636, .external_lex_state = 20}, - [5395] = {.lex_state = 636, .external_lex_state = 20}, - [5396] = {.lex_state = 636, .external_lex_state = 20}, - [5397] = {.lex_state = 636, .external_lex_state = 20}, - [5398] = {.lex_state = 636, .external_lex_state = 104}, - [5399] = {.lex_state = 636, .external_lex_state = 102}, - [5400] = {.lex_state = 636, .external_lex_state = 20}, - [5401] = {.lex_state = 636, .external_lex_state = 104}, - [5402] = {.lex_state = 636, .external_lex_state = 104}, - [5403] = {.lex_state = 636, .external_lex_state = 104}, - [5404] = {.lex_state = 636, .external_lex_state = 102}, - [5405] = {.lex_state = 636, .external_lex_state = 104}, - [5406] = {.lex_state = 636, .external_lex_state = 102}, - [5407] = {.lex_state = 636, .external_lex_state = 20}, - [5408] = {.lex_state = 636, .external_lex_state = 20}, - [5409] = {.lex_state = 636, .external_lex_state = 104}, - [5410] = {.lex_state = 636, .external_lex_state = 20}, - [5411] = {.lex_state = 636, .external_lex_state = 104}, - [5412] = {.lex_state = 636, .external_lex_state = 104}, - [5413] = {.lex_state = 636, .external_lex_state = 20}, - [5414] = {.lex_state = 636, .external_lex_state = 104}, - [5415] = {.lex_state = 636, .external_lex_state = 20}, - [5416] = {.lex_state = 636, .external_lex_state = 104}, - [5417] = {.lex_state = 636, .external_lex_state = 20}, - [5418] = {.lex_state = 636, .external_lex_state = 104}, - [5419] = {.lex_state = 636, .external_lex_state = 104}, - [5420] = {.lex_state = 636, .external_lex_state = 104}, - [5421] = {.lex_state = 636, .external_lex_state = 104}, - [5422] = {.lex_state = 636, .external_lex_state = 20}, - [5423] = {.lex_state = 636, .external_lex_state = 20}, - [5424] = {.lex_state = 636, .external_lex_state = 20}, - [5425] = {.lex_state = 636, .external_lex_state = 20}, - [5426] = {.lex_state = 636, .external_lex_state = 104}, - [5427] = {.lex_state = 636, .external_lex_state = 20}, - [5428] = {.lex_state = 636, .external_lex_state = 20}, - [5429] = {.lex_state = 636, .external_lex_state = 20}, - [5430] = {.lex_state = 636, .external_lex_state = 104}, - [5431] = {.lex_state = 636, .external_lex_state = 104}, - [5432] = {.lex_state = 636, .external_lex_state = 20}, - [5433] = {.lex_state = 636, .external_lex_state = 20}, - [5434] = {.lex_state = 636, .external_lex_state = 102}, - [5435] = {.lex_state = 636, .external_lex_state = 20}, - [5436] = {.lex_state = 636, .external_lex_state = 20}, - [5437] = {.lex_state = 636, .external_lex_state = 20}, - [5438] = {.lex_state = 636, .external_lex_state = 20}, - [5439] = {.lex_state = 636, .external_lex_state = 20}, - [5440] = {.lex_state = 636, .external_lex_state = 20}, - [5441] = {.lex_state = 636, .external_lex_state = 20}, - [5442] = {.lex_state = 636, .external_lex_state = 20}, - [5443] = {.lex_state = 636, .external_lex_state = 20}, - [5444] = {.lex_state = 636, .external_lex_state = 102}, - [5445] = {.lex_state = 636, .external_lex_state = 20}, - [5446] = {.lex_state = 636, .external_lex_state = 20}, - [5447] = {.lex_state = 636, .external_lex_state = 104}, - [5448] = {.lex_state = 636, .external_lex_state = 104}, - [5449] = {.lex_state = 636, .external_lex_state = 104}, - [5450] = {.lex_state = 636, .external_lex_state = 104}, - [5451] = {.lex_state = 636, .external_lex_state = 114}, - [5452] = {.lex_state = 636, .external_lex_state = 104}, - [5453] = {.lex_state = 636, .external_lex_state = 64}, - [5454] = {.lex_state = 636, .external_lex_state = 64}, - [5455] = {.lex_state = 636, .external_lex_state = 45}, - [5456] = {.lex_state = 636, .external_lex_state = 104}, - [5457] = {.lex_state = 636, .external_lex_state = 104}, - [5458] = {.lex_state = 636, .external_lex_state = 104}, - [5459] = {.lex_state = 636, .external_lex_state = 45}, - [5460] = {.lex_state = 636, .external_lex_state = 102}, - [5461] = {.lex_state = 636, .external_lex_state = 102}, - [5462] = {.lex_state = 636, .external_lex_state = 20}, - [5463] = {.lex_state = 636, .external_lex_state = 64}, - [5464] = {.lex_state = 636, .external_lex_state = 104}, - [5465] = {.lex_state = 636, .external_lex_state = 20}, - [5466] = {.lex_state = 636, .external_lex_state = 20}, - [5467] = {.lex_state = 636, .external_lex_state = 102}, - [5468] = {.lex_state = 636, .external_lex_state = 104}, - [5469] = {.lex_state = 636, .external_lex_state = 20}, - [5470] = {.lex_state = 636, .external_lex_state = 20}, - [5471] = {.lex_state = 636, .external_lex_state = 20}, - [5472] = {.lex_state = 636, .external_lex_state = 20}, - [5473] = {.lex_state = 636, .external_lex_state = 104}, - [5474] = {.lex_state = 636, .external_lex_state = 20}, - [5475] = {.lex_state = 636, .external_lex_state = 20}, - [5476] = {.lex_state = 636, .external_lex_state = 20}, - [5477] = {.lex_state = 636, .external_lex_state = 104}, - [5478] = {.lex_state = 636, .external_lex_state = 102}, - [5479] = {.lex_state = 636, .external_lex_state = 20}, - [5480] = {.lex_state = 636, .external_lex_state = 104}, - [5481] = {.lex_state = 636, .external_lex_state = 104}, - [5482] = {.lex_state = 636, .external_lex_state = 20}, - [5483] = {.lex_state = 636, .external_lex_state = 102}, - [5484] = {.lex_state = 636, .external_lex_state = 20}, - [5485] = {.lex_state = 636, .external_lex_state = 102}, - [5486] = {.lex_state = 636, .external_lex_state = 104}, - [5487] = {.lex_state = 636, .external_lex_state = 20}, - [5488] = {.lex_state = 636, .external_lex_state = 20}, - [5489] = {.lex_state = 636, .external_lex_state = 20}, - [5490] = {.lex_state = 636, .external_lex_state = 104}, - [5491] = {.lex_state = 636, .external_lex_state = 20}, - [5492] = {.lex_state = 636, .external_lex_state = 20}, - [5493] = {.lex_state = 636, .external_lex_state = 20}, - [5494] = {.lex_state = 636, .external_lex_state = 104}, - [5495] = {.lex_state = 636, .external_lex_state = 102}, - [5496] = {.lex_state = 636, .external_lex_state = 20}, - [5497] = {.lex_state = 636, .external_lex_state = 20}, - [5498] = {.lex_state = 636, .external_lex_state = 20}, - [5499] = {.lex_state = 636, .external_lex_state = 20}, - [5500] = {.lex_state = 636, .external_lex_state = 20}, - [5501] = {.lex_state = 636, .external_lex_state = 20}, - [5502] = {.lex_state = 636, .external_lex_state = 20}, - [5503] = {.lex_state = 636, .external_lex_state = 104}, - [5504] = {.lex_state = 636, .external_lex_state = 104}, - [5505] = {.lex_state = 636, .external_lex_state = 104}, - [5506] = {.lex_state = 636, .external_lex_state = 20}, - [5507] = {.lex_state = 636, .external_lex_state = 20}, - [5508] = {.lex_state = 636, .external_lex_state = 20}, - [5509] = {.lex_state = 636, .external_lex_state = 104}, - [5510] = {.lex_state = 636, .external_lex_state = 20}, - [5511] = {.lex_state = 636, .external_lex_state = 104}, - [5512] = {.lex_state = 636, .external_lex_state = 104}, - [5513] = {.lex_state = 636, .external_lex_state = 20}, - [5514] = {.lex_state = 636, .external_lex_state = 20}, - [5515] = {.lex_state = 636, .external_lex_state = 20}, - [5516] = {.lex_state = 636, .external_lex_state = 20}, - [5517] = {.lex_state = 636, .external_lex_state = 20}, - [5518] = {.lex_state = 636, .external_lex_state = 20}, - [5519] = {.lex_state = 636, .external_lex_state = 20}, - [5520] = {.lex_state = 636, .external_lex_state = 20}, - [5521] = {.lex_state = 636, .external_lex_state = 20}, - [5522] = {.lex_state = 636, .external_lex_state = 104}, - [5523] = {.lex_state = 636, .external_lex_state = 20}, - [5524] = {.lex_state = 636, .external_lex_state = 20}, - [5525] = {.lex_state = 636, .external_lex_state = 104}, - [5526] = {.lex_state = 636, .external_lex_state = 104}, - [5527] = {.lex_state = 636, .external_lex_state = 20}, - [5528] = {.lex_state = 636, .external_lex_state = 20}, - [5529] = {.lex_state = 636, .external_lex_state = 20}, - [5530] = {.lex_state = 636, .external_lex_state = 64}, - [5531] = {.lex_state = 636, .external_lex_state = 20}, - [5532] = {.lex_state = 636, .external_lex_state = 20}, - [5533] = {.lex_state = 636, .external_lex_state = 20}, - [5534] = {.lex_state = 636, .external_lex_state = 20}, - [5535] = {.lex_state = 636, .external_lex_state = 20}, - [5536] = {.lex_state = 636, .external_lex_state = 20}, - [5537] = {.lex_state = 636, .external_lex_state = 104}, - [5538] = {.lex_state = 636, .external_lex_state = 20}, - [5539] = {.lex_state = 636, .external_lex_state = 20}, - [5540] = {.lex_state = 636, .external_lex_state = 20}, - [5541] = {.lex_state = 636, .external_lex_state = 104}, - [5542] = {.lex_state = 636, .external_lex_state = 104}, - [5543] = {.lex_state = 636, .external_lex_state = 20}, - [5544] = {.lex_state = 636, .external_lex_state = 20}, - [5545] = {.lex_state = 636, .external_lex_state = 20}, - [5546] = {.lex_state = 636, .external_lex_state = 20}, - [5547] = {.lex_state = 636, .external_lex_state = 20}, - [5548] = {.lex_state = 636, .external_lex_state = 20}, - [5549] = {.lex_state = 636, .external_lex_state = 20}, - [5550] = {.lex_state = 636, .external_lex_state = 20}, - [5551] = {.lex_state = 636, .external_lex_state = 20}, - [5552] = {.lex_state = 636, .external_lex_state = 104}, - [5553] = {.lex_state = 636, .external_lex_state = 20}, - [5554] = {.lex_state = 636, .external_lex_state = 20}, - [5555] = {.lex_state = 636, .external_lex_state = 20}, - [5556] = {.lex_state = 636, .external_lex_state = 20}, - [5557] = {.lex_state = 636, .external_lex_state = 20}, - [5558] = {.lex_state = 636, .external_lex_state = 114}, - [5559] = {.lex_state = 636, .external_lex_state = 20}, - [5560] = {.lex_state = 636, .external_lex_state = 20}, - [5561] = {.lex_state = 636, .external_lex_state = 20}, - [5562] = {.lex_state = 636, .external_lex_state = 104}, - [5563] = {.lex_state = 636, .external_lex_state = 104}, - [5564] = {.lex_state = 636, .external_lex_state = 104}, - [5565] = {.lex_state = 636, .external_lex_state = 20}, - [5566] = {.lex_state = 636, .external_lex_state = 20}, - [5567] = {.lex_state = 636, .external_lex_state = 20}, - [5568] = {.lex_state = 636, .external_lex_state = 20}, - [5569] = {.lex_state = 636, .external_lex_state = 20}, - [5570] = {.lex_state = 636, .external_lex_state = 20}, - [5571] = {.lex_state = 636, .external_lex_state = 20}, - [5572] = {.lex_state = 636, .external_lex_state = 20}, - [5573] = {.lex_state = 636, .external_lex_state = 20}, - [5574] = {.lex_state = 636, .external_lex_state = 20}, - [5575] = {.lex_state = 636, .external_lex_state = 20}, - [5576] = {.lex_state = 636, .external_lex_state = 20}, - [5577] = {.lex_state = 636, .external_lex_state = 20}, - [5578] = {.lex_state = 636, .external_lex_state = 20}, - [5579] = {.lex_state = 636, .external_lex_state = 20}, - [5580] = {.lex_state = 636, .external_lex_state = 20}, - [5581] = {.lex_state = 636, .external_lex_state = 20}, - [5582] = {.lex_state = 636, .external_lex_state = 20}, - [5583] = {.lex_state = 37, .external_lex_state = 112}, - [5584] = {.lex_state = 636, .external_lex_state = 20}, - [5585] = {.lex_state = 636, .external_lex_state = 20}, - [5586] = {.lex_state = 636, .external_lex_state = 104}, - [5587] = {.lex_state = 636, .external_lex_state = 104}, - [5588] = {.lex_state = 636, .external_lex_state = 104}, - [5589] = {.lex_state = 636, .external_lex_state = 104}, - [5590] = {.lex_state = 636, .external_lex_state = 104}, - [5591] = {.lex_state = 636, .external_lex_state = 20}, - [5592] = {.lex_state = 636, .external_lex_state = 20}, - [5593] = {.lex_state = 636, .external_lex_state = 20}, - [5594] = {.lex_state = 636, .external_lex_state = 20}, - [5595] = {.lex_state = 636, .external_lex_state = 20}, - [5596] = {.lex_state = 636, .external_lex_state = 104}, - [5597] = {.lex_state = 636, .external_lex_state = 20}, - [5598] = {.lex_state = 636, .external_lex_state = 20}, - [5599] = {.lex_state = 636, .external_lex_state = 104}, - [5600] = {.lex_state = 636, .external_lex_state = 20}, - [5601] = {.lex_state = 636, .external_lex_state = 20}, - [5602] = {.lex_state = 636, .external_lex_state = 20}, - [5603] = {.lex_state = 636, .external_lex_state = 20}, - [5604] = {.lex_state = 636, .external_lex_state = 104}, - [5605] = {.lex_state = 636, .external_lex_state = 20}, - [5606] = {.lex_state = 636, .external_lex_state = 114}, - [5607] = {.lex_state = 636, .external_lex_state = 20}, - [5608] = {.lex_state = 636, .external_lex_state = 104}, - [5609] = {.lex_state = 636, .external_lex_state = 20}, - [5610] = {.lex_state = 636, .external_lex_state = 20}, - [5611] = {.lex_state = 636, .external_lex_state = 104}, - [5612] = {.lex_state = 37, .external_lex_state = 101}, - [5613] = {.lex_state = 636, .external_lex_state = 20}, - [5614] = {.lex_state = 37, .external_lex_state = 101}, - [5615] = {.lex_state = 37, .external_lex_state = 101}, - [5616] = {.lex_state = 636, .external_lex_state = 20}, - [5617] = {.lex_state = 636, .external_lex_state = 20}, - [5618] = {.lex_state = 636, .external_lex_state = 20}, - [5619] = {.lex_state = 636, .external_lex_state = 20}, - [5620] = {.lex_state = 636, .external_lex_state = 20}, - [5621] = {.lex_state = 636, .external_lex_state = 104}, - [5622] = {.lex_state = 636, .external_lex_state = 20}, - [5623] = {.lex_state = 636, .external_lex_state = 20}, - [5624] = {.lex_state = 636, .external_lex_state = 102}, - [5625] = {.lex_state = 636, .external_lex_state = 104}, - [5626] = {.lex_state = 636, .external_lex_state = 20}, - [5627] = {.lex_state = 636, .external_lex_state = 104}, - [5628] = {.lex_state = 636, .external_lex_state = 104}, - [5629] = {.lex_state = 636, .external_lex_state = 104}, - [5630] = {.lex_state = 636, .external_lex_state = 104}, - [5631] = {.lex_state = 636, .external_lex_state = 104}, - [5632] = {.lex_state = 636, .external_lex_state = 20}, - [5633] = {.lex_state = 636, .external_lex_state = 20}, - [5634] = {.lex_state = 636, .external_lex_state = 20}, - [5635] = {.lex_state = 636, .external_lex_state = 20}, - [5636] = {.lex_state = 636, .external_lex_state = 20}, - [5637] = {.lex_state = 636, .external_lex_state = 20}, - [5638] = {.lex_state = 636, .external_lex_state = 104}, - [5639] = {.lex_state = 636, .external_lex_state = 20}, - [5640] = {.lex_state = 636, .external_lex_state = 20}, - [5641] = {.lex_state = 636, .external_lex_state = 20}, - [5642] = {.lex_state = 636, .external_lex_state = 20}, - [5643] = {.lex_state = 636, .external_lex_state = 20}, - [5644] = {.lex_state = 636, .external_lex_state = 20}, - [5645] = {.lex_state = 636, .external_lex_state = 64}, - [5646] = {.lex_state = 636, .external_lex_state = 45}, - [5647] = {.lex_state = 636, .external_lex_state = 42}, - [5648] = {.lex_state = 636, .external_lex_state = 20}, - [5649] = {.lex_state = 636, .external_lex_state = 45}, - [5650] = {.lex_state = 636, .external_lex_state = 20}, - [5651] = {.lex_state = 636, .external_lex_state = 64}, - [5652] = {.lex_state = 636, .external_lex_state = 97}, - [5653] = {.lex_state = 636, .external_lex_state = 42}, - [5654] = {.lex_state = 636, .external_lex_state = 20}, - [5655] = {.lex_state = 636, .external_lex_state = 20}, - [5656] = {.lex_state = 636, .external_lex_state = 104}, - [5657] = {.lex_state = 37, .external_lex_state = 112}, - [5658] = {.lex_state = 636, .external_lex_state = 104}, - [5659] = {.lex_state = 636, .external_lex_state = 104}, - [5660] = {.lex_state = 636, .external_lex_state = 20}, - [5661] = {.lex_state = 636, .external_lex_state = 20}, - [5662] = {.lex_state = 636, .external_lex_state = 104}, - [5663] = {.lex_state = 636, .external_lex_state = 104}, - [5664] = {.lex_state = 636, .external_lex_state = 20}, - [5665] = {.lex_state = 636, .external_lex_state = 20}, - [5666] = {.lex_state = 636, .external_lex_state = 104}, - [5667] = {.lex_state = 636, .external_lex_state = 20}, - [5668] = {.lex_state = 636, .external_lex_state = 20}, - [5669] = {.lex_state = 636, .external_lex_state = 20}, - [5670] = {.lex_state = 636, .external_lex_state = 20}, - [5671] = {.lex_state = 636, .external_lex_state = 20}, - [5672] = {.lex_state = 636, .external_lex_state = 20}, - [5673] = {.lex_state = 636, .external_lex_state = 104}, - [5674] = {.lex_state = 636, .external_lex_state = 20}, - [5675] = {.lex_state = 636, .external_lex_state = 20}, - [5676] = {.lex_state = 636, .external_lex_state = 20}, - [5677] = {.lex_state = 636, .external_lex_state = 20}, - [5678] = {.lex_state = 636, .external_lex_state = 20}, - [5679] = {.lex_state = 636, .external_lex_state = 102}, - [5680] = {.lex_state = 636, .external_lex_state = 20}, - [5681] = {.lex_state = 636, .external_lex_state = 20}, - [5682] = {.lex_state = 636, .external_lex_state = 20}, - [5683] = {.lex_state = 636, .external_lex_state = 20}, - [5684] = {.lex_state = 636, .external_lex_state = 20}, - [5685] = {.lex_state = 636, .external_lex_state = 20}, - [5686] = {.lex_state = 636, .external_lex_state = 20}, - [5687] = {.lex_state = 636, .external_lex_state = 20}, - [5688] = {.lex_state = 636, .external_lex_state = 20}, - [5689] = {.lex_state = 636, .external_lex_state = 113}, - [5690] = {.lex_state = 636, .external_lex_state = 20}, - [5691] = {.lex_state = 636, .external_lex_state = 20}, - [5692] = {.lex_state = 636, .external_lex_state = 20}, - [5693] = {.lex_state = 636, .external_lex_state = 104}, - [5694] = {.lex_state = 636, .external_lex_state = 20}, - [5695] = {.lex_state = 636, .external_lex_state = 20}, - [5696] = {.lex_state = 636, .external_lex_state = 104}, - [5697] = {.lex_state = 636, .external_lex_state = 20}, - [5698] = {.lex_state = 636, .external_lex_state = 20}, - [5699] = {.lex_state = 636, .external_lex_state = 20}, - [5700] = {.lex_state = 636, .external_lex_state = 20}, - [5701] = {.lex_state = 636, .external_lex_state = 20}, - [5702] = {.lex_state = 636, .external_lex_state = 20}, - [5703] = {.lex_state = 636, .external_lex_state = 20}, - [5704] = {.lex_state = 636, .external_lex_state = 104}, - [5705] = {.lex_state = 636, .external_lex_state = 20}, - [5706] = {.lex_state = 636, .external_lex_state = 20}, - [5707] = {.lex_state = 636, .external_lex_state = 20}, - [5708] = {.lex_state = 636, .external_lex_state = 104}, - [5709] = {.lex_state = 636, .external_lex_state = 20}, - [5710] = {.lex_state = 636, .external_lex_state = 102}, - [5711] = {.lex_state = 636, .external_lex_state = 20}, - [5712] = {.lex_state = 636, .external_lex_state = 20}, - [5713] = {.lex_state = 636, .external_lex_state = 20}, - [5714] = {.lex_state = 636, .external_lex_state = 20}, - [5715] = {.lex_state = 636, .external_lex_state = 20}, - [5716] = {.lex_state = 636, .external_lex_state = 20}, - [5717] = {.lex_state = 636, .external_lex_state = 20}, - [5718] = {.lex_state = 636, .external_lex_state = 20}, - [5719] = {.lex_state = 636, .external_lex_state = 104}, - [5720] = {.lex_state = 636, .external_lex_state = 20}, - [5721] = {.lex_state = 636, .external_lex_state = 20}, - [5722] = {.lex_state = 636, .external_lex_state = 20}, - [5723] = {.lex_state = 636, .external_lex_state = 20}, - [5724] = {.lex_state = 636, .external_lex_state = 20}, - [5725] = {.lex_state = 636, .external_lex_state = 20}, - [5726] = {.lex_state = 636, .external_lex_state = 20}, - [5727] = {.lex_state = 636, .external_lex_state = 104}, - [5728] = {.lex_state = 636, .external_lex_state = 20}, - [5729] = {.lex_state = 636, .external_lex_state = 20}, - [5730] = {.lex_state = 636, .external_lex_state = 20}, - [5731] = {.lex_state = 636, .external_lex_state = 20}, - [5732] = {.lex_state = 636, .external_lex_state = 20}, - [5733] = {.lex_state = 636, .external_lex_state = 20}, - [5734] = {.lex_state = 636, .external_lex_state = 20}, - [5735] = {.lex_state = 636, .external_lex_state = 20}, - [5736] = {.lex_state = 636, .external_lex_state = 20}, - [5737] = {.lex_state = 636, .external_lex_state = 20}, - [5738] = {.lex_state = 636, .external_lex_state = 20}, - [5739] = {.lex_state = 636, .external_lex_state = 20}, - [5740] = {.lex_state = 636, .external_lex_state = 20}, - [5741] = {.lex_state = 636, .external_lex_state = 20}, - [5742] = {.lex_state = 636, .external_lex_state = 20}, - [5743] = {.lex_state = 636, .external_lex_state = 20}, - [5744] = {.lex_state = 37, .external_lex_state = 112}, - [5745] = {.lex_state = 636, .external_lex_state = 20}, - [5746] = {.lex_state = 636, .external_lex_state = 20}, - [5747] = {.lex_state = 636, .external_lex_state = 20}, - [5748] = {.lex_state = 636, .external_lex_state = 20}, - [5749] = {.lex_state = 636, .external_lex_state = 20}, - [5750] = {.lex_state = 636, .external_lex_state = 104}, - [5751] = {.lex_state = 636, .external_lex_state = 20}, - [5752] = {.lex_state = 636, .external_lex_state = 104}, - [5753] = {.lex_state = 636, .external_lex_state = 20}, - [5754] = {.lex_state = 636, .external_lex_state = 20}, - [5755] = {.lex_state = 636, .external_lex_state = 20}, - [5756] = {.lex_state = 636, .external_lex_state = 20}, - [5757] = {.lex_state = 636, .external_lex_state = 20}, - [5758] = {.lex_state = 636, .external_lex_state = 20}, - [5759] = {.lex_state = 636, .external_lex_state = 104}, - [5760] = {.lex_state = 636, .external_lex_state = 20}, - [5761] = {.lex_state = 636, .external_lex_state = 20}, - [5762] = {.lex_state = 636, .external_lex_state = 20}, - [5763] = {.lex_state = 636, .external_lex_state = 20}, - [5764] = {.lex_state = 636, .external_lex_state = 114}, - [5765] = {.lex_state = 636, .external_lex_state = 20}, - [5766] = {.lex_state = 636, .external_lex_state = 20}, - [5767] = {.lex_state = 636, .external_lex_state = 102}, - [5768] = {.lex_state = 636, .external_lex_state = 104}, - [5769] = {.lex_state = 636, .external_lex_state = 20}, - [5770] = {.lex_state = 636, .external_lex_state = 20}, - [5771] = {.lex_state = 636, .external_lex_state = 20}, - [5772] = {.lex_state = 636, .external_lex_state = 104}, - [5773] = {.lex_state = 636, .external_lex_state = 104}, - [5774] = {.lex_state = 636, .external_lex_state = 20}, - [5775] = {.lex_state = 636, .external_lex_state = 114}, - [5776] = {.lex_state = 636, .external_lex_state = 104}, - [5777] = {.lex_state = 636, .external_lex_state = 20}, - [5778] = {.lex_state = 636, .external_lex_state = 20}, - [5779] = {.lex_state = 636, .external_lex_state = 102}, - [5780] = {.lex_state = 636, .external_lex_state = 20}, - [5781] = {.lex_state = 636, .external_lex_state = 20}, - [5782] = {.lex_state = 636, .external_lex_state = 20}, - [5783] = {.lex_state = 636, .external_lex_state = 20}, - [5784] = {.lex_state = 636, .external_lex_state = 20}, - [5785] = {.lex_state = 636, .external_lex_state = 20}, - [5786] = {.lex_state = 636, .external_lex_state = 20}, - [5787] = {.lex_state = 636, .external_lex_state = 20}, - [5788] = {.lex_state = 636, .external_lex_state = 20}, - [5789] = {.lex_state = 636, .external_lex_state = 20}, - [5790] = {.lex_state = 636, .external_lex_state = 20}, - [5791] = {.lex_state = 636, .external_lex_state = 20}, - [5792] = {.lex_state = 636, .external_lex_state = 20}, - [5793] = {.lex_state = 636, .external_lex_state = 20}, - [5794] = {.lex_state = 636, .external_lex_state = 20}, - [5795] = {.lex_state = 636, .external_lex_state = 20}, - [5796] = {.lex_state = 636, .external_lex_state = 104}, - [5797] = {.lex_state = 636, .external_lex_state = 20}, - [5798] = {.lex_state = 636, .external_lex_state = 20}, - [5799] = {.lex_state = 636, .external_lex_state = 20}, - [5800] = {.lex_state = 636, .external_lex_state = 20}, - [5801] = {.lex_state = 636, .external_lex_state = 20}, - [5802] = {.lex_state = 636, .external_lex_state = 20}, - [5803] = {.lex_state = 636, .external_lex_state = 20}, - [5804] = {.lex_state = 636, .external_lex_state = 20}, - [5805] = {.lex_state = 636, .external_lex_state = 104}, - [5806] = {.lex_state = 636, .external_lex_state = 20}, - [5807] = {.lex_state = 636, .external_lex_state = 20}, - [5808] = {.lex_state = 636, .external_lex_state = 20}, - [5809] = {.lex_state = 636, .external_lex_state = 20}, - [5810] = {.lex_state = 636, .external_lex_state = 20}, - [5811] = {.lex_state = 636, .external_lex_state = 20}, - [5812] = {.lex_state = 636, .external_lex_state = 20}, - [5813] = {.lex_state = 636, .external_lex_state = 20}, - [5814] = {.lex_state = 636, .external_lex_state = 20}, - [5815] = {.lex_state = 636, .external_lex_state = 20}, - [5816] = {.lex_state = 636, .external_lex_state = 104}, - [5817] = {.lex_state = 636, .external_lex_state = 20}, - [5818] = {.lex_state = 636, .external_lex_state = 20}, - [5819] = {.lex_state = 636, .external_lex_state = 20}, - [5820] = {.lex_state = 636, .external_lex_state = 20}, - [5821] = {.lex_state = 636, .external_lex_state = 20}, - [5822] = {.lex_state = 636, .external_lex_state = 20}, - [5823] = {.lex_state = 636, .external_lex_state = 20}, - [5824] = {.lex_state = 636, .external_lex_state = 20}, - [5825] = {.lex_state = 636, .external_lex_state = 20}, - [5826] = {.lex_state = 636, .external_lex_state = 20}, - [5827] = {.lex_state = 636, .external_lex_state = 20}, - [5828] = {.lex_state = 636, .external_lex_state = 20}, - [5829] = {.lex_state = 636, .external_lex_state = 20}, - [5830] = {.lex_state = 636, .external_lex_state = 20}, - [5831] = {.lex_state = 636, .external_lex_state = 20}, - [5832] = {.lex_state = 636, .external_lex_state = 104}, - [5833] = {.lex_state = 636, .external_lex_state = 104}, - [5834] = {.lex_state = 636, .external_lex_state = 20}, - [5835] = {.lex_state = 636, .external_lex_state = 20}, - [5836] = {.lex_state = 636, .external_lex_state = 20}, - [5837] = {.lex_state = 636, .external_lex_state = 20}, - [5838] = {.lex_state = 636, .external_lex_state = 20}, - [5839] = {.lex_state = 636, .external_lex_state = 20}, - [5840] = {.lex_state = 636, .external_lex_state = 20}, - [5841] = {.lex_state = 636, .external_lex_state = 20}, - [5842] = {.lex_state = 636, .external_lex_state = 20}, - [5843] = {.lex_state = 636, .external_lex_state = 20}, - [5844] = {.lex_state = 636, .external_lex_state = 20}, - [5845] = {.lex_state = 636, .external_lex_state = 20}, - [5846] = {.lex_state = 636, .external_lex_state = 20}, - [5847] = {.lex_state = 636, .external_lex_state = 20}, - [5848] = {.lex_state = 636, .external_lex_state = 20}, - [5849] = {.lex_state = 636, .external_lex_state = 20}, - [5850] = {.lex_state = 636, .external_lex_state = 20}, - [5851] = {.lex_state = 636, .external_lex_state = 20}, - [5852] = {.lex_state = 636, .external_lex_state = 104}, - [5853] = {.lex_state = 636, .external_lex_state = 20}, - [5854] = {.lex_state = 636, .external_lex_state = 45}, - [5855] = {.lex_state = 636, .external_lex_state = 20}, - [5856] = {.lex_state = 636, .external_lex_state = 20}, - [5857] = {.lex_state = 636, .external_lex_state = 20}, - [5858] = {.lex_state = 636, .external_lex_state = 20}, - [5859] = {.lex_state = 636, .external_lex_state = 20}, - [5860] = {.lex_state = 636, .external_lex_state = 20}, - [5861] = {.lex_state = 636, .external_lex_state = 20}, - [5862] = {.lex_state = 636, .external_lex_state = 20}, - [5863] = {.lex_state = 636, .external_lex_state = 20}, - [5864] = {.lex_state = 636, .external_lex_state = 45}, - [5865] = {.lex_state = 636, .external_lex_state = 104}, - [5866] = {.lex_state = 636, .external_lex_state = 20}, - [5867] = {.lex_state = 636, .external_lex_state = 104}, - [5868] = {.lex_state = 636, .external_lex_state = 42}, - [5869] = {.lex_state = 636, .external_lex_state = 20}, - [5870] = {.lex_state = 636, .external_lex_state = 64}, - [5871] = {.lex_state = 636, .external_lex_state = 20}, - [5872] = {.lex_state = 636, .external_lex_state = 20}, - [5873] = {.lex_state = 636, .external_lex_state = 20}, - [5874] = {.lex_state = 636, .external_lex_state = 104}, - [5875] = {.lex_state = 636, .external_lex_state = 20}, - [5876] = {.lex_state = 636, .external_lex_state = 104}, - [5877] = {.lex_state = 636, .external_lex_state = 20}, - [5878] = {.lex_state = 636, .external_lex_state = 104}, - [5879] = {.lex_state = 636, .external_lex_state = 104}, - [5880] = {.lex_state = 636, .external_lex_state = 20}, - [5881] = {.lex_state = 636, .external_lex_state = 104}, - [5882] = {.lex_state = 636, .external_lex_state = 20}, - [5883] = {.lex_state = 636, .external_lex_state = 20}, - [5884] = {.lex_state = 636, .external_lex_state = 45}, - [5885] = {.lex_state = 636, .external_lex_state = 102}, - [5886] = {.lex_state = 636, .external_lex_state = 102}, - [5887] = {.lex_state = 636, .external_lex_state = 20}, - [5888] = {.lex_state = 636, .external_lex_state = 20}, - [5889] = {.lex_state = 636, .external_lex_state = 20}, - [5890] = {.lex_state = 636, .external_lex_state = 20}, - [5891] = {.lex_state = 636, .external_lex_state = 20}, - [5892] = {.lex_state = 636, .external_lex_state = 20}, - [5893] = {.lex_state = 636, .external_lex_state = 20}, - [5894] = {.lex_state = 636, .external_lex_state = 20}, - [5895] = {.lex_state = 636, .external_lex_state = 20}, - [5896] = {.lex_state = 636, .external_lex_state = 20}, - [5897] = {.lex_state = 636, .external_lex_state = 20}, - [5898] = {.lex_state = 636, .external_lex_state = 20}, - [5899] = {.lex_state = 636, .external_lex_state = 20}, - [5900] = {.lex_state = 636, .external_lex_state = 20}, - [5901] = {.lex_state = 636, .external_lex_state = 20}, - [5902] = {.lex_state = 636, .external_lex_state = 20}, - [5903] = {.lex_state = 636, .external_lex_state = 20}, - [5904] = {.lex_state = 636, .external_lex_state = 20}, - [5905] = {.lex_state = 636, .external_lex_state = 20}, - [5906] = {.lex_state = 636, .external_lex_state = 20}, - [5907] = {.lex_state = 636, .external_lex_state = 20}, - [5908] = {.lex_state = 636, .external_lex_state = 20}, - [5909] = {.lex_state = 636, .external_lex_state = 20}, - [5910] = {.lex_state = 636, .external_lex_state = 20}, - [5911] = {.lex_state = 636, .external_lex_state = 20}, - [5912] = {.lex_state = 636, .external_lex_state = 20}, - [5913] = {.lex_state = 636, .external_lex_state = 20}, - [5914] = {.lex_state = 636, .external_lex_state = 20}, - [5915] = {.lex_state = 636, .external_lex_state = 20}, - [5916] = {.lex_state = 636, .external_lex_state = 20}, - [5917] = {.lex_state = 636, .external_lex_state = 20}, - [5918] = {.lex_state = 636, .external_lex_state = 20}, - [5919] = {.lex_state = 636, .external_lex_state = 20}, - [5920] = {.lex_state = 636, .external_lex_state = 20}, - [5921] = {.lex_state = 636, .external_lex_state = 20}, - [5922] = {.lex_state = 636, .external_lex_state = 20}, - [5923] = {.lex_state = 636, .external_lex_state = 20}, - [5924] = {.lex_state = 636, .external_lex_state = 20}, - [5925] = {.lex_state = 636, .external_lex_state = 20}, - [5926] = {.lex_state = 636, .external_lex_state = 20}, - [5927] = {.lex_state = 636, .external_lex_state = 20}, - [5928] = {.lex_state = 636, .external_lex_state = 20}, - [5929] = {.lex_state = 636, .external_lex_state = 20}, - [5930] = {.lex_state = 636, .external_lex_state = 20}, - [5931] = {.lex_state = 636, .external_lex_state = 20}, - [5932] = {.lex_state = 636, .external_lex_state = 20}, - [5933] = {.lex_state = 636, .external_lex_state = 20}, - [5934] = {.lex_state = 636, .external_lex_state = 20}, - [5935] = {.lex_state = 636, .external_lex_state = 20}, - [5936] = {.lex_state = 636, .external_lex_state = 20}, - [5937] = {.lex_state = 636, .external_lex_state = 20}, - [5938] = {.lex_state = 636, .external_lex_state = 20}, - [5939] = {.lex_state = 636, .external_lex_state = 20}, - [5940] = {.lex_state = 636, .external_lex_state = 20}, - [5941] = {.lex_state = 636, .external_lex_state = 20}, - [5942] = {.lex_state = 636, .external_lex_state = 20}, - [5943] = {.lex_state = 636, .external_lex_state = 20}, - [5944] = {.lex_state = 636, .external_lex_state = 20}, - [5945] = {.lex_state = 636, .external_lex_state = 20}, - [5946] = {.lex_state = 636, .external_lex_state = 20}, - [5947] = {.lex_state = 636, .external_lex_state = 20}, - [5948] = {.lex_state = 636, .external_lex_state = 20}, - [5949] = {.lex_state = 636, .external_lex_state = 20}, - [5950] = {.lex_state = 636, .external_lex_state = 20}, - [5951] = {.lex_state = 636, .external_lex_state = 20}, - [5952] = {.lex_state = 636, .external_lex_state = 20}, - [5953] = {.lex_state = 636, .external_lex_state = 20}, - [5954] = {.lex_state = 636, .external_lex_state = 20}, - [5955] = {.lex_state = 636, .external_lex_state = 20}, - [5956] = {.lex_state = 636, .external_lex_state = 114}, - [5957] = {.lex_state = 636, .external_lex_state = 20}, - [5958] = {.lex_state = 636, .external_lex_state = 20}, - [5959] = {.lex_state = 636, .external_lex_state = 20}, - [5960] = {.lex_state = 636, .external_lex_state = 20}, - [5961] = {.lex_state = 636, .external_lex_state = 20}, - [5962] = {.lex_state = 636, .external_lex_state = 20}, - [5963] = {.lex_state = 636, .external_lex_state = 20}, - [5964] = {.lex_state = 636, .external_lex_state = 20}, - [5965] = {.lex_state = 636, .external_lex_state = 20}, - [5966] = {.lex_state = 636, .external_lex_state = 20}, - [5967] = {.lex_state = 636, .external_lex_state = 20}, - [5968] = {.lex_state = 636, .external_lex_state = 20}, - [5969] = {.lex_state = 636, .external_lex_state = 20}, - [5970] = {.lex_state = 636, .external_lex_state = 20}, - [5971] = {.lex_state = 636, .external_lex_state = 20}, - [5972] = {.lex_state = 636, .external_lex_state = 20}, - [5973] = {.lex_state = 636, .external_lex_state = 20}, - [5974] = {.lex_state = 636, .external_lex_state = 20}, - [5975] = {.lex_state = 636, .external_lex_state = 20}, - [5976] = {.lex_state = 636, .external_lex_state = 20}, - [5977] = {.lex_state = 636, .external_lex_state = 20}, - [5978] = {.lex_state = 636, .external_lex_state = 45}, - [5979] = {.lex_state = 636, .external_lex_state = 20}, - [5980] = {.lex_state = 636, .external_lex_state = 20}, - [5981] = {.lex_state = 636, .external_lex_state = 20}, - [5982] = {.lex_state = 636, .external_lex_state = 114}, - [5983] = {.lex_state = 636, .external_lex_state = 20}, - [5984] = {.lex_state = 636, .external_lex_state = 20}, - [5985] = {.lex_state = 636, .external_lex_state = 20}, - [5986] = {.lex_state = 636, .external_lex_state = 20}, - [5987] = {.lex_state = 636, .external_lex_state = 20}, - [5988] = {.lex_state = 636, .external_lex_state = 20}, - [5989] = {.lex_state = 636, .external_lex_state = 20}, - [5990] = {.lex_state = 636, .external_lex_state = 20}, - [5991] = {.lex_state = 636, .external_lex_state = 41}, - [5992] = {.lex_state = 636, .external_lex_state = 20}, - [5993] = {.lex_state = 636, .external_lex_state = 20}, - [5994] = {.lex_state = 636, .external_lex_state = 20}, - [5995] = {.lex_state = 636, .external_lex_state = 20}, - [5996] = {.lex_state = 636, .external_lex_state = 20}, - [5997] = {.lex_state = 636, .external_lex_state = 20}, - [5998] = {.lex_state = 636, .external_lex_state = 20}, - [5999] = {.lex_state = 636, .external_lex_state = 20}, - [6000] = {.lex_state = 636, .external_lex_state = 112}, - [6001] = {.lex_state = 636, .external_lex_state = 20}, - [6002] = {.lex_state = 636, .external_lex_state = 45}, - [6003] = {.lex_state = 636, .external_lex_state = 112}, - [6004] = {.lex_state = 636, .external_lex_state = 20}, - [6005] = {.lex_state = 636, .external_lex_state = 20}, - [6006] = {.lex_state = 636, .external_lex_state = 20}, - [6007] = {.lex_state = 636, .external_lex_state = 112}, - [6008] = {.lex_state = 636, .external_lex_state = 112}, - [6009] = {.lex_state = 636, .external_lex_state = 20}, - [6010] = {.lex_state = 636, .external_lex_state = 112}, - [6011] = {.lex_state = 636, .external_lex_state = 112}, - [6012] = {.lex_state = 636, .external_lex_state = 101}, - [6013] = {.lex_state = 636, .external_lex_state = 20}, - [6014] = {.lex_state = 636, .external_lex_state = 20}, - [6015] = {.lex_state = 636, .external_lex_state = 20}, - [6016] = {.lex_state = 636, .external_lex_state = 20}, - [6017] = {.lex_state = 636, .external_lex_state = 20}, - [6018] = {.lex_state = 636, .external_lex_state = 112}, - [6019] = {.lex_state = 636, .external_lex_state = 20}, - [6020] = {.lex_state = 636, .external_lex_state = 20}, - [6021] = {.lex_state = 636, .external_lex_state = 20}, - [6022] = {.lex_state = 636, .external_lex_state = 20}, - [6023] = {.lex_state = 636, .external_lex_state = 112}, - [6024] = {.lex_state = 636, .external_lex_state = 45}, - [6025] = {.lex_state = 636, .external_lex_state = 112}, - [6026] = {.lex_state = 636, .external_lex_state = 20}, - [6027] = {.lex_state = 636, .external_lex_state = 112}, - [6028] = {.lex_state = 636, .external_lex_state = 42}, - [6029] = {.lex_state = 636, .external_lex_state = 112}, - [6030] = {.lex_state = 636, .external_lex_state = 20}, - [6031] = {.lex_state = 636, .external_lex_state = 20}, - [6032] = {.lex_state = 636, .external_lex_state = 20}, - [6033] = {.lex_state = 636, .external_lex_state = 112}, - [6034] = {.lex_state = 636, .external_lex_state = 112}, - [6035] = {.lex_state = 636, .external_lex_state = 20}, - [6036] = {.lex_state = 636, .external_lex_state = 20}, - [6037] = {.lex_state = 636, .external_lex_state = 112}, - [6038] = {.lex_state = 636, .external_lex_state = 20}, - [6039] = {.lex_state = 636, .external_lex_state = 20}, - [6040] = {.lex_state = 636, .external_lex_state = 20}, - [6041] = {.lex_state = 636, .external_lex_state = 20}, - [6042] = {.lex_state = 636, .external_lex_state = 20}, - [6043] = {.lex_state = 636, .external_lex_state = 112}, - [6044] = {.lex_state = 636, .external_lex_state = 112}, - [6045] = {.lex_state = 636, .external_lex_state = 20}, - [6046] = {.lex_state = 636, .external_lex_state = 20}, - [6047] = {.lex_state = 636, .external_lex_state = 20}, - [6048] = {.lex_state = 636, .external_lex_state = 20}, - [6049] = {.lex_state = 636, .external_lex_state = 20}, - [6050] = {.lex_state = 636, .external_lex_state = 20}, - [6051] = {.lex_state = 636, .external_lex_state = 20}, - [6052] = {.lex_state = 636, .external_lex_state = 20}, - [6053] = {.lex_state = 636, .external_lex_state = 112}, - [6054] = {.lex_state = 636, .external_lex_state = 112}, - [6055] = {.lex_state = 636, .external_lex_state = 20}, - [6056] = {.lex_state = 636, .external_lex_state = 112}, - [6057] = {.lex_state = 636, .external_lex_state = 20}, - [6058] = {.lex_state = 636, .external_lex_state = 20}, - [6059] = {.lex_state = 636, .external_lex_state = 20}, - [6060] = {.lex_state = 636, .external_lex_state = 101}, - [6061] = {.lex_state = 636, .external_lex_state = 112}, - [6062] = {.lex_state = 636, .external_lex_state = 112}, - [6063] = {.lex_state = 636, .external_lex_state = 20}, - [6064] = {.lex_state = 636, .external_lex_state = 20}, - [6065] = {.lex_state = 636, .external_lex_state = 20}, - [6066] = {.lex_state = 636, .external_lex_state = 20}, - [6067] = {.lex_state = 636, .external_lex_state = 20}, - [6068] = {.lex_state = 636, .external_lex_state = 20}, - [6069] = {.lex_state = 636, .external_lex_state = 20}, - [6070] = {.lex_state = 636, .external_lex_state = 20}, - [6071] = {.lex_state = 636, .external_lex_state = 20}, - [6072] = {.lex_state = 636, .external_lex_state = 112}, - [6073] = {.lex_state = 636, .external_lex_state = 112}, - [6074] = {.lex_state = 636, .external_lex_state = 20}, - [6075] = {.lex_state = 636, .external_lex_state = 20}, - [6076] = {.lex_state = 636, .external_lex_state = 20}, - [6077] = {.lex_state = 636, .external_lex_state = 20}, - [6078] = {.lex_state = 636, .external_lex_state = 112}, - [6079] = {.lex_state = 636, .external_lex_state = 20}, - [6080] = {.lex_state = 636, .external_lex_state = 112}, - [6081] = {.lex_state = 636, .external_lex_state = 20}, - [6082] = {.lex_state = 636, .external_lex_state = 112}, - [6083] = {.lex_state = 636, .external_lex_state = 20}, - [6084] = {.lex_state = 636, .external_lex_state = 112}, - [6085] = {.lex_state = 636, .external_lex_state = 20}, - [6086] = {.lex_state = 636, .external_lex_state = 20}, - [6087] = {.lex_state = 636, .external_lex_state = 20}, - [6088] = {.lex_state = 636, .external_lex_state = 20}, - [6089] = {.lex_state = 636, .external_lex_state = 112}, - [6090] = {.lex_state = 636, .external_lex_state = 112}, - [6091] = {.lex_state = 636, .external_lex_state = 20}, - [6092] = {.lex_state = 636, .external_lex_state = 20}, - [6093] = {.lex_state = 636, .external_lex_state = 20}, - [6094] = {.lex_state = 636, .external_lex_state = 20}, - [6095] = {.lex_state = 636, .external_lex_state = 45}, - [6096] = {.lex_state = 636, .external_lex_state = 20}, - [6097] = {.lex_state = 636, .external_lex_state = 64}, - [6098] = {.lex_state = 636, .external_lex_state = 20}, - [6099] = {.lex_state = 636, .external_lex_state = 112}, - [6100] = {.lex_state = 636, .external_lex_state = 112}, - [6101] = {.lex_state = 636, .external_lex_state = 20}, - [6102] = {.lex_state = 636, .external_lex_state = 101}, - [6103] = {.lex_state = 636, .external_lex_state = 20}, - [6104] = {.lex_state = 636, .external_lex_state = 20}, - [6105] = {.lex_state = 636, .external_lex_state = 20}, - [6106] = {.lex_state = 636, .external_lex_state = 20}, - [6107] = {.lex_state = 636, .external_lex_state = 20}, - [6108] = {.lex_state = 636, .external_lex_state = 112}, - [6109] = {.lex_state = 636, .external_lex_state = 20}, - [6110] = {.lex_state = 636, .external_lex_state = 20}, - [6111] = {.lex_state = 636, .external_lex_state = 45}, - [6112] = {.lex_state = 636, .external_lex_state = 42}, - [6113] = {.lex_state = 636, .external_lex_state = 20}, - [6114] = {.lex_state = 636, .external_lex_state = 20}, - [6115] = {.lex_state = 636, .external_lex_state = 20}, - [6116] = {.lex_state = 636, .external_lex_state = 20}, - [6117] = {.lex_state = 636, .external_lex_state = 112}, - [6118] = {.lex_state = 636, .external_lex_state = 20}, - [6119] = {.lex_state = 636, .external_lex_state = 20}, - [6120] = {.lex_state = 636, .external_lex_state = 20}, - [6121] = {.lex_state = 636, .external_lex_state = 112}, - [6122] = {.lex_state = 636, .external_lex_state = 20}, - [6123] = {.lex_state = 636, .external_lex_state = 112}, - [6124] = {.lex_state = 636, .external_lex_state = 20}, - [6125] = {.lex_state = 636, .external_lex_state = 114}, - [6126] = {.lex_state = 636, .external_lex_state = 112}, - [6127] = {.lex_state = 636, .external_lex_state = 112}, - [6128] = {.lex_state = 636, .external_lex_state = 20}, - [6129] = {.lex_state = 636, .external_lex_state = 20}, - [6130] = {.lex_state = 636, .external_lex_state = 20}, - [6131] = {.lex_state = 636, .external_lex_state = 20}, - [6132] = {.lex_state = 636, .external_lex_state = 20}, - [6133] = {.lex_state = 636, .external_lex_state = 20}, - [6134] = {.lex_state = 636, .external_lex_state = 20}, - [6135] = {.lex_state = 636, .external_lex_state = 20}, - [6136] = {.lex_state = 636, .external_lex_state = 112}, - [6137] = {.lex_state = 636, .external_lex_state = 112}, - [6138] = {.lex_state = 636, .external_lex_state = 20}, - [6139] = {.lex_state = 636, .external_lex_state = 20}, - [6140] = {.lex_state = 636, .external_lex_state = 20}, - [6141] = {.lex_state = 636, .external_lex_state = 20}, - [6142] = {.lex_state = 636, .external_lex_state = 20}, - [6143] = {.lex_state = 636, .external_lex_state = 20}, - [6144] = {.lex_state = 636, .external_lex_state = 114}, - [6145] = {.lex_state = 636, .external_lex_state = 20}, - [6146] = {.lex_state = 636, .external_lex_state = 20}, - [6147] = {.lex_state = 636, .external_lex_state = 45}, - [6148] = {.lex_state = 636, .external_lex_state = 20}, - [6149] = {.lex_state = 636, .external_lex_state = 20}, - [6150] = {.lex_state = 636, .external_lex_state = 112}, - [6151] = {.lex_state = 636, .external_lex_state = 112}, - [6152] = {.lex_state = 636, .external_lex_state = 101}, - [6153] = {.lex_state = 636, .external_lex_state = 20}, - [6154] = {.lex_state = 636, .external_lex_state = 20}, - [6155] = {.lex_state = 636, .external_lex_state = 20}, - [6156] = {.lex_state = 636, .external_lex_state = 20}, - [6157] = {.lex_state = 636, .external_lex_state = 112}, - [6158] = {.lex_state = 636, .external_lex_state = 20}, - [6159] = {.lex_state = 636, .external_lex_state = 20}, - [6160] = {.lex_state = 636, .external_lex_state = 45}, - [6161] = {.lex_state = 636, .external_lex_state = 42}, - [6162] = {.lex_state = 636, .external_lex_state = 114}, - [6163] = {.lex_state = 636, .external_lex_state = 112}, - [6164] = {.lex_state = 636, .external_lex_state = 20}, - [6165] = {.lex_state = 636, .external_lex_state = 112}, - [6166] = {.lex_state = 636, .external_lex_state = 20}, - [6167] = {.lex_state = 636, .external_lex_state = 20}, - [6168] = {.lex_state = 636, .external_lex_state = 112}, - [6169] = {.lex_state = 636, .external_lex_state = 20}, - [6170] = {.lex_state = 636, .external_lex_state = 20}, - [6171] = {.lex_state = 636, .external_lex_state = 20}, - [6172] = {.lex_state = 636, .external_lex_state = 20}, - [6173] = {.lex_state = 636, .external_lex_state = 20}, - [6174] = {.lex_state = 636, .external_lex_state = 20}, - [6175] = {.lex_state = 636, .external_lex_state = 20}, - [6176] = {.lex_state = 37, .external_lex_state = 112}, - [6177] = {.lex_state = 636, .external_lex_state = 20}, - [6178] = {.lex_state = 636, .external_lex_state = 20}, - [6179] = {.lex_state = 636, .external_lex_state = 20}, - [6180] = {.lex_state = 636, .external_lex_state = 20}, - [6181] = {.lex_state = 636, .external_lex_state = 45}, - [6182] = {.lex_state = 636, .external_lex_state = 20}, - [6183] = {.lex_state = 636, .external_lex_state = 42}, - [6184] = {.lex_state = 636, .external_lex_state = 101}, - [6185] = {.lex_state = 636, .external_lex_state = 20}, - [6186] = {.lex_state = 636, .external_lex_state = 20}, - [6187] = {.lex_state = 636, .external_lex_state = 20}, - [6188] = {.lex_state = 636, .external_lex_state = 112}, - [6189] = {.lex_state = 636, .external_lex_state = 20}, - [6190] = {.lex_state = 636, .external_lex_state = 45}, - [6191] = {.lex_state = 636, .external_lex_state = 20}, - [6192] = {.lex_state = 636, .external_lex_state = 114}, - [6193] = {.lex_state = 636, .external_lex_state = 20}, - [6194] = {.lex_state = 636, .external_lex_state = 112}, - [6195] = {.lex_state = 636, .external_lex_state = 112}, - [6196] = {.lex_state = 636, .external_lex_state = 112}, - [6197] = {.lex_state = 636, .external_lex_state = 20}, - [6198] = {.lex_state = 636, .external_lex_state = 112}, - [6199] = {.lex_state = 636, .external_lex_state = 20}, - [6200] = {.lex_state = 636, .external_lex_state = 20}, - [6201] = {.lex_state = 636, .external_lex_state = 112}, - [6202] = {.lex_state = 636, .external_lex_state = 20}, - [6203] = {.lex_state = 636, .external_lex_state = 45}, - [6204] = {.lex_state = 636, .external_lex_state = 20}, - [6205] = {.lex_state = 636, .external_lex_state = 112}, - [6206] = {.lex_state = 636, .external_lex_state = 101}, - [6207] = {.lex_state = 636, .external_lex_state = 20}, - [6208] = {.lex_state = 636, .external_lex_state = 20}, - [6209] = {.lex_state = 636, .external_lex_state = 20}, - [6210] = {.lex_state = 636, .external_lex_state = 112}, - [6211] = {.lex_state = 636, .external_lex_state = 20}, - [6212] = {.lex_state = 636, .external_lex_state = 45}, - [6213] = {.lex_state = 636, .external_lex_state = 20}, - [6214] = {.lex_state = 636, .external_lex_state = 20}, - [6215] = {.lex_state = 636, .external_lex_state = 20}, - [6216] = {.lex_state = 636, .external_lex_state = 112}, - [6217] = {.lex_state = 636, .external_lex_state = 45}, - [6218] = {.lex_state = 636, .external_lex_state = 20}, - [6219] = {.lex_state = 636, .external_lex_state = 20}, - [6220] = {.lex_state = 636, .external_lex_state = 20}, - [6221] = {.lex_state = 636, .external_lex_state = 20}, - [6222] = {.lex_state = 636, .external_lex_state = 20}, - [6223] = {.lex_state = 636, .external_lex_state = 112}, - [6224] = {.lex_state = 636, .external_lex_state = 20}, - [6225] = {.lex_state = 636, .external_lex_state = 45}, - [6226] = {.lex_state = 636, .external_lex_state = 20}, - [6227] = {.lex_state = 636, .external_lex_state = 112}, - [6228] = {.lex_state = 636, .external_lex_state = 101}, - [6229] = {.lex_state = 636, .external_lex_state = 112}, - [6230] = {.lex_state = 636, .external_lex_state = 20}, - [6231] = {.lex_state = 636, .external_lex_state = 20}, - [6232] = {.lex_state = 636, .external_lex_state = 112}, - [6233] = {.lex_state = 636, .external_lex_state = 20}, - [6234] = {.lex_state = 636, .external_lex_state = 112}, - [6235] = {.lex_state = 636, .external_lex_state = 20}, - [6236] = {.lex_state = 636, .external_lex_state = 20}, - [6237] = {.lex_state = 636, .external_lex_state = 112}, - [6238] = {.lex_state = 636, .external_lex_state = 20}, - [6239] = {.lex_state = 636, .external_lex_state = 20}, - [6240] = {.lex_state = 636, .external_lex_state = 20}, - [6241] = {.lex_state = 636, .external_lex_state = 20}, - [6242] = {.lex_state = 636, .external_lex_state = 112}, - [6243] = {.lex_state = 636, .external_lex_state = 112}, - [6244] = {.lex_state = 636, .external_lex_state = 20}, - [6245] = {.lex_state = 636, .external_lex_state = 20}, - [6246] = {.lex_state = 636, .external_lex_state = 20}, - [6247] = {.lex_state = 636, .external_lex_state = 20}, - [6248] = {.lex_state = 636, .external_lex_state = 112}, - [6249] = {.lex_state = 636, .external_lex_state = 20}, - [6250] = {.lex_state = 636, .external_lex_state = 20}, - [6251] = {.lex_state = 636, .external_lex_state = 20}, - [6252] = {.lex_state = 636, .external_lex_state = 112}, - [6253] = {.lex_state = 636, .external_lex_state = 20}, - [6254] = {.lex_state = 636, .external_lex_state = 20}, - [6255] = {.lex_state = 636, .external_lex_state = 20}, - [6256] = {.lex_state = 636, .external_lex_state = 20}, - [6257] = {.lex_state = 636, .external_lex_state = 20}, - [6258] = {.lex_state = 636, .external_lex_state = 20}, - [6259] = {.lex_state = 636, .external_lex_state = 20}, - [6260] = {.lex_state = 37, .external_lex_state = 20}, - [6261] = {.lex_state = 636, .external_lex_state = 20}, - [6262] = {.lex_state = 636, .external_lex_state = 20}, - [6263] = {.lex_state = 37, .external_lex_state = 20}, - [6264] = {.lex_state = 37, .external_lex_state = 20}, - [6265] = {.lex_state = 636, .external_lex_state = 20}, - [6266] = {.lex_state = 636, .external_lex_state = 20}, - [6267] = {.lex_state = 636, .external_lex_state = 20}, - [6268] = {.lex_state = 636, .external_lex_state = 20}, - [6269] = {.lex_state = 636, .external_lex_state = 20}, - [6270] = {.lex_state = 636, .external_lex_state = 20}, - [6271] = {.lex_state = 636, .external_lex_state = 20}, - [6272] = {.lex_state = 636, .external_lex_state = 20}, - [6273] = {.lex_state = 636, .external_lex_state = 20}, - [6274] = {.lex_state = 636, .external_lex_state = 20}, - [6275] = {.lex_state = 636, .external_lex_state = 20}, - [6276] = {.lex_state = 636, .external_lex_state = 20}, - [6277] = {.lex_state = 636, .external_lex_state = 20}, - [6278] = {.lex_state = 636, .external_lex_state = 20}, - [6279] = {.lex_state = 636, .external_lex_state = 20}, - [6280] = {.lex_state = 636, .external_lex_state = 20}, - [6281] = {.lex_state = 636, .external_lex_state = 20}, - [6282] = {.lex_state = 636, .external_lex_state = 20}, - [6283] = {.lex_state = 636, .external_lex_state = 20}, - [6284] = {.lex_state = 636, .external_lex_state = 20}, - [6285] = {.lex_state = 636, .external_lex_state = 20}, - [6286] = {.lex_state = 636, .external_lex_state = 20}, - [6287] = {.lex_state = 636, .external_lex_state = 20}, - [6288] = {.lex_state = 636, .external_lex_state = 20}, - [6289] = {.lex_state = 636, .external_lex_state = 20}, - [6290] = {.lex_state = 636, .external_lex_state = 20}, - [6291] = {.lex_state = 37, .external_lex_state = 20}, - [6292] = {.lex_state = 636, .external_lex_state = 20}, - [6293] = {.lex_state = 636, .external_lex_state = 20}, - [6294] = {.lex_state = 636, .external_lex_state = 20}, - [6295] = {.lex_state = 636, .external_lex_state = 20}, - [6296] = {.lex_state = 636, .external_lex_state = 20}, - [6297] = {.lex_state = 636, .external_lex_state = 20}, - [6298] = {.lex_state = 636, .external_lex_state = 20}, - [6299] = {.lex_state = 636, .external_lex_state = 20}, - [6300] = {.lex_state = 636, .external_lex_state = 20}, - [6301] = {.lex_state = 636, .external_lex_state = 20}, - [6302] = {.lex_state = 636, .external_lex_state = 20}, - [6303] = {.lex_state = 636, .external_lex_state = 20}, - [6304] = {.lex_state = 636, .external_lex_state = 20}, - [6305] = {.lex_state = 636, .external_lex_state = 20}, - [6306] = {.lex_state = 636, .external_lex_state = 20}, - [6307] = {.lex_state = 636, .external_lex_state = 20}, - [6308] = {.lex_state = 636, .external_lex_state = 20}, - [6309] = {.lex_state = 636, .external_lex_state = 20}, - [6310] = {.lex_state = 636, .external_lex_state = 20}, - [6311] = {.lex_state = 636, .external_lex_state = 20}, - [6312] = {.lex_state = 636, .external_lex_state = 20}, - [6313] = {.lex_state = 2, .external_lex_state = 20}, - [6314] = {.lex_state = 2, .external_lex_state = 20}, - [6315] = {.lex_state = 636, .external_lex_state = 20}, - [6316] = {.lex_state = 636, .external_lex_state = 20}, - [6317] = {.lex_state = 636, .external_lex_state = 20}, - [6318] = {.lex_state = 636, .external_lex_state = 20}, - [6319] = {.lex_state = 636, .external_lex_state = 20}, - [6320] = {.lex_state = 636, .external_lex_state = 20}, - [6321] = {.lex_state = 636, .external_lex_state = 20}, - [6322] = {.lex_state = 636, .external_lex_state = 20}, - [6323] = {.lex_state = 37, .external_lex_state = 20}, - [6324] = {.lex_state = 636, .external_lex_state = 20}, - [6325] = {.lex_state = 636, .external_lex_state = 20}, - [6326] = {.lex_state = 636, .external_lex_state = 20}, - [6327] = {.lex_state = 636, .external_lex_state = 20}, - [6328] = {.lex_state = 86, .external_lex_state = 20}, - [6329] = {.lex_state = 636, .external_lex_state = 20}, - [6330] = {.lex_state = 636, .external_lex_state = 20}, - [6331] = {.lex_state = 636, .external_lex_state = 20}, - [6332] = {.lex_state = 636, .external_lex_state = 20}, - [6333] = {.lex_state = 636, .external_lex_state = 20}, - [6334] = {.lex_state = 636, .external_lex_state = 20}, - [6335] = {.lex_state = 636, .external_lex_state = 20}, - [6336] = {.lex_state = 636, .external_lex_state = 20}, - [6337] = {.lex_state = 636, .external_lex_state = 20}, - [6338] = {.lex_state = 636, .external_lex_state = 20}, - [6339] = {.lex_state = 636, .external_lex_state = 20}, - [6340] = {.lex_state = 636, .external_lex_state = 20}, - [6341] = {.lex_state = 636, .external_lex_state = 20}, - [6342] = {.lex_state = 636, .external_lex_state = 20}, - [6343] = {.lex_state = 636, .external_lex_state = 20}, - [6344] = {.lex_state = 636, .external_lex_state = 20}, - [6345] = {.lex_state = 636, .external_lex_state = 20}, - [6346] = {.lex_state = 636, .external_lex_state = 20}, - [6347] = {.lex_state = 636, .external_lex_state = 20}, - [6348] = {.lex_state = 636, .external_lex_state = 20}, - [6349] = {.lex_state = 636, .external_lex_state = 20}, - [6350] = {.lex_state = 636, .external_lex_state = 20}, - [6351] = {.lex_state = 636, .external_lex_state = 20}, - [6352] = {.lex_state = 636, .external_lex_state = 20}, - [6353] = {.lex_state = 636, .external_lex_state = 20}, - [6354] = {.lex_state = 37, .external_lex_state = 20}, - [6355] = {.lex_state = 636, .external_lex_state = 20}, - [6356] = {.lex_state = 636, .external_lex_state = 20}, - [6357] = {.lex_state = 636, .external_lex_state = 20}, - [6358] = {.lex_state = 636, .external_lex_state = 20}, - [6359] = {.lex_state = 636, .external_lex_state = 20}, - [6360] = {.lex_state = 636, .external_lex_state = 20}, - [6361] = {.lex_state = 636, .external_lex_state = 20}, - [6362] = {.lex_state = 636, .external_lex_state = 20}, - [6363] = {.lex_state = 636, .external_lex_state = 20}, - [6364] = {.lex_state = 636, .external_lex_state = 20}, - [6365] = {.lex_state = 636, .external_lex_state = 20}, - [6366] = {.lex_state = 636, .external_lex_state = 20}, - [6367] = {.lex_state = 636, .external_lex_state = 20}, - [6368] = {.lex_state = 636, .external_lex_state = 20}, - [6369] = {.lex_state = 636, .external_lex_state = 20}, - [6370] = {.lex_state = 636, .external_lex_state = 20}, - [6371] = {.lex_state = 636, .external_lex_state = 20}, - [6372] = {.lex_state = 636, .external_lex_state = 20}, - [6373] = {.lex_state = 636, .external_lex_state = 20}, - [6374] = {.lex_state = 636, .external_lex_state = 20}, - [6375] = {.lex_state = 636, .external_lex_state = 20}, - [6376] = {.lex_state = 636, .external_lex_state = 20}, - [6377] = {.lex_state = 636, .external_lex_state = 20}, - [6378] = {.lex_state = 636, .external_lex_state = 20}, - [6379] = {.lex_state = 636, .external_lex_state = 20}, - [6380] = {.lex_state = 636, .external_lex_state = 20}, - [6381] = {.lex_state = 636, .external_lex_state = 20}, - [6382] = {.lex_state = 636, .external_lex_state = 20}, - [6383] = {.lex_state = 636, .external_lex_state = 20}, - [6384] = {.lex_state = 636, .external_lex_state = 20}, - [6385] = {.lex_state = 636, .external_lex_state = 20}, - [6386] = {.lex_state = 636, .external_lex_state = 20}, - [6387] = {.lex_state = 636, .external_lex_state = 20}, - [6388] = {.lex_state = 636, .external_lex_state = 20}, - [6389] = {.lex_state = 636, .external_lex_state = 20}, - [6390] = {.lex_state = 636, .external_lex_state = 20}, - [6391] = {.lex_state = 636, .external_lex_state = 20}, - [6392] = {.lex_state = 636, .external_lex_state = 20}, - [6393] = {.lex_state = 636, .external_lex_state = 20}, - [6394] = {.lex_state = 37, .external_lex_state = 20}, - [6395] = {.lex_state = 636, .external_lex_state = 20}, - [6396] = {.lex_state = 636, .external_lex_state = 20}, - [6397] = {.lex_state = 636, .external_lex_state = 20}, - [6398] = {.lex_state = 636, .external_lex_state = 20}, - [6399] = {.lex_state = 636, .external_lex_state = 20}, - [6400] = {.lex_state = 636, .external_lex_state = 20}, - [6401] = {.lex_state = 636, .external_lex_state = 20}, - [6402] = {.lex_state = 636, .external_lex_state = 20}, - [6403] = {.lex_state = 86, .external_lex_state = 20}, - [6404] = {.lex_state = 636, .external_lex_state = 20}, - [6405] = {.lex_state = 636, .external_lex_state = 20}, - [6406] = {.lex_state = 37, .external_lex_state = 20}, - [6407] = {.lex_state = 636, .external_lex_state = 20}, - [6408] = {.lex_state = 636, .external_lex_state = 20}, - [6409] = {.lex_state = 636, .external_lex_state = 20}, - [6410] = {.lex_state = 636, .external_lex_state = 20}, - [6411] = {.lex_state = 636, .external_lex_state = 20}, - [6412] = {.lex_state = 636, .external_lex_state = 20}, - [6413] = {.lex_state = 636, .external_lex_state = 20}, - [6414] = {.lex_state = 636, .external_lex_state = 20}, - [6415] = {.lex_state = 636, .external_lex_state = 20}, - [6416] = {.lex_state = 636, .external_lex_state = 20}, - [6417] = {.lex_state = 636, .external_lex_state = 20}, - [6418] = {.lex_state = 636, .external_lex_state = 20}, - [6419] = {.lex_state = 636, .external_lex_state = 20}, - [6420] = {.lex_state = 636, .external_lex_state = 20}, - [6421] = {.lex_state = 636, .external_lex_state = 20}, - [6422] = {.lex_state = 636, .external_lex_state = 20}, - [6423] = {.lex_state = 636, .external_lex_state = 20}, - [6424] = {.lex_state = 636, .external_lex_state = 20}, - [6425] = {.lex_state = 37, .external_lex_state = 20}, - [6426] = {.lex_state = 636, .external_lex_state = 20}, - [6427] = {.lex_state = 636, .external_lex_state = 20}, - [6428] = {.lex_state = 636, .external_lex_state = 20}, - [6429] = {.lex_state = 636, .external_lex_state = 20}, - [6430] = {.lex_state = 636, .external_lex_state = 20}, - [6431] = {.lex_state = 636, .external_lex_state = 20}, - [6432] = {.lex_state = 636, .external_lex_state = 20}, - [6433] = {.lex_state = 2, .external_lex_state = 20}, - [6434] = {.lex_state = 636, .external_lex_state = 20}, - [6435] = {.lex_state = 636, .external_lex_state = 20}, - [6436] = {.lex_state = 636, .external_lex_state = 20}, - [6437] = {.lex_state = 636, .external_lex_state = 20}, - [6438] = {.lex_state = 636, .external_lex_state = 20}, - [6439] = {.lex_state = 636, .external_lex_state = 20}, - [6440] = {.lex_state = 2, .external_lex_state = 20}, - [6441] = {.lex_state = 636, .external_lex_state = 20}, - [6442] = {.lex_state = 636, .external_lex_state = 20}, - [6443] = {.lex_state = 636, .external_lex_state = 20}, - [6444] = {.lex_state = 636, .external_lex_state = 20}, - [6445] = {.lex_state = 636, .external_lex_state = 20}, - [6446] = {.lex_state = 636, .external_lex_state = 20}, - [6447] = {.lex_state = 2, .external_lex_state = 20}, - [6448] = {.lex_state = 636, .external_lex_state = 20}, - [6449] = {.lex_state = 636, .external_lex_state = 20}, - [6450] = {.lex_state = 636, .external_lex_state = 20}, - [6451] = {.lex_state = 636, .external_lex_state = 20}, - [6452] = {.lex_state = 636, .external_lex_state = 20}, - [6453] = {.lex_state = 636, .external_lex_state = 20}, - [6454] = {.lex_state = 636, .external_lex_state = 20}, - [6455] = {.lex_state = 636, .external_lex_state = 20}, - [6456] = {.lex_state = 636, .external_lex_state = 20}, - [6457] = {.lex_state = 636, .external_lex_state = 20}, - [6458] = {.lex_state = 636, .external_lex_state = 20}, - [6459] = {.lex_state = 636, .external_lex_state = 20}, - [6460] = {.lex_state = 636, .external_lex_state = 20}, - [6461] = {.lex_state = 636, .external_lex_state = 20}, - [6462] = {.lex_state = 636, .external_lex_state = 20}, - [6463] = {.lex_state = 636, .external_lex_state = 20}, - [6464] = {.lex_state = 636, .external_lex_state = 20}, - [6465] = {.lex_state = 636, .external_lex_state = 20}, - [6466] = {.lex_state = 636, .external_lex_state = 20}, - [6467] = {.lex_state = 636, .external_lex_state = 20}, - [6468] = {.lex_state = 636, .external_lex_state = 20}, - [6469] = {.lex_state = 636, .external_lex_state = 20}, - [6470] = {.lex_state = 636, .external_lex_state = 20}, - [6471] = {.lex_state = 636, .external_lex_state = 20}, - [6472] = {.lex_state = 37, .external_lex_state = 20}, - [6473] = {.lex_state = 636, .external_lex_state = 20}, - [6474] = {.lex_state = 37, .external_lex_state = 20}, - [6475] = {.lex_state = 37, .external_lex_state = 20}, - [6476] = {.lex_state = 636, .external_lex_state = 20}, - [6477] = {.lex_state = 37, .external_lex_state = 20}, - [6478] = {.lex_state = 636, .external_lex_state = 20}, - [6479] = {.lex_state = 37, .external_lex_state = 20}, - [6480] = {.lex_state = 636, .external_lex_state = 20}, - [6481] = {.lex_state = 37, .external_lex_state = 20}, - [6482] = {.lex_state = 636, .external_lex_state = 20}, - [6483] = {.lex_state = 636, .external_lex_state = 20}, - [6484] = {.lex_state = 636, .external_lex_state = 20}, - [6485] = {.lex_state = 636, .external_lex_state = 20}, - [6486] = {.lex_state = 636, .external_lex_state = 20}, - [6487] = {.lex_state = 636, .external_lex_state = 20}, - [6488] = {.lex_state = 636, .external_lex_state = 20}, - [6489] = {.lex_state = 636, .external_lex_state = 20}, - [6490] = {.lex_state = 636, .external_lex_state = 20}, - [6491] = {.lex_state = 636, .external_lex_state = 20}, - [6492] = {.lex_state = 636, .external_lex_state = 20}, - [6493] = {.lex_state = 636, .external_lex_state = 20}, - [6494] = {.lex_state = 2, .external_lex_state = 20}, - [6495] = {.lex_state = 636, .external_lex_state = 20}, - [6496] = {.lex_state = 636, .external_lex_state = 20}, - [6497] = {.lex_state = 37, .external_lex_state = 20}, - [6498] = {.lex_state = 636, .external_lex_state = 20}, - [6499] = {.lex_state = 636, .external_lex_state = 20}, - [6500] = {.lex_state = 636, .external_lex_state = 20}, - [6501] = {.lex_state = 636, .external_lex_state = 20}, - [6502] = {.lex_state = 636, .external_lex_state = 20}, - [6503] = {.lex_state = 636, .external_lex_state = 20}, - [6504] = {.lex_state = 37, .external_lex_state = 20}, - [6505] = {.lex_state = 636, .external_lex_state = 20}, - [6506] = {.lex_state = 636, .external_lex_state = 20}, - [6507] = {.lex_state = 636, .external_lex_state = 20}, - [6508] = {.lex_state = 636, .external_lex_state = 20}, - [6509] = {.lex_state = 636, .external_lex_state = 20}, - [6510] = {.lex_state = 636, .external_lex_state = 20}, - [6511] = {.lex_state = 636, .external_lex_state = 20}, - [6512] = {.lex_state = 636, .external_lex_state = 20}, - [6513] = {.lex_state = 636, .external_lex_state = 20}, - [6514] = {.lex_state = 636, .external_lex_state = 20}, - [6515] = {.lex_state = 37, .external_lex_state = 20}, - [6516] = {.lex_state = 636, .external_lex_state = 20}, - [6517] = {.lex_state = 636, .external_lex_state = 42}, - [6518] = {.lex_state = 636, .external_lex_state = 20}, - [6519] = {.lex_state = 636, .external_lex_state = 42}, - [6520] = {.lex_state = 636, .external_lex_state = 20}, - [6521] = {.lex_state = 636, .external_lex_state = 20}, - [6522] = {.lex_state = 636, .external_lex_state = 20}, - [6523] = {.lex_state = 636, .external_lex_state = 42}, - [6524] = {.lex_state = 636, .external_lex_state = 20}, - [6525] = {.lex_state = 636, .external_lex_state = 20}, - [6526] = {.lex_state = 2, .external_lex_state = 20}, - [6527] = {.lex_state = 2, .external_lex_state = 20}, - [6528] = {.lex_state = 636, .external_lex_state = 20}, - [6529] = {.lex_state = 636, .external_lex_state = 20}, - [6530] = {.lex_state = 636, .external_lex_state = 20}, - [6531] = {.lex_state = 636, .external_lex_state = 20}, - [6532] = {.lex_state = 636, .external_lex_state = 20}, - [6533] = {.lex_state = 636, .external_lex_state = 20}, - [6534] = {.lex_state = 636, .external_lex_state = 20}, - [6535] = {.lex_state = 636, .external_lex_state = 20}, - [6536] = {.lex_state = 636, .external_lex_state = 20}, - [6537] = {.lex_state = 636, .external_lex_state = 20}, - [6538] = {.lex_state = 636, .external_lex_state = 20}, - [6539] = {.lex_state = 636, .external_lex_state = 20}, - [6540] = {.lex_state = 636, .external_lex_state = 20}, - [6541] = {.lex_state = 636, .external_lex_state = 20}, - [6542] = {.lex_state = 636, .external_lex_state = 20}, - [6543] = {.lex_state = 636, .external_lex_state = 20}, - [6544] = {.lex_state = 636, .external_lex_state = 20}, - [6545] = {.lex_state = 636, .external_lex_state = 20}, - [6546] = {.lex_state = 636, .external_lex_state = 20}, - [6547] = {.lex_state = 636, .external_lex_state = 20}, - [6548] = {.lex_state = 636, .external_lex_state = 20}, - [6549] = {.lex_state = 636, .external_lex_state = 20}, - [6550] = {.lex_state = 636, .external_lex_state = 20}, - [6551] = {.lex_state = 2, .external_lex_state = 20}, - [6552] = {.lex_state = 636, .external_lex_state = 20}, - [6553] = {.lex_state = 636, .external_lex_state = 20}, - [6554] = {.lex_state = 636, .external_lex_state = 20}, - [6555] = {.lex_state = 636, .external_lex_state = 20}, - [6556] = {.lex_state = 636, .external_lex_state = 20}, - [6557] = {.lex_state = 636, .external_lex_state = 20}, - [6558] = {.lex_state = 636, .external_lex_state = 20}, - [6559] = {.lex_state = 636, .external_lex_state = 20}, - [6560] = {.lex_state = 636, .external_lex_state = 20}, - [6561] = {.lex_state = 636, .external_lex_state = 20}, - [6562] = {.lex_state = 636, .external_lex_state = 20}, - [6563] = {.lex_state = 636, .external_lex_state = 20}, - [6564] = {.lex_state = 636, .external_lex_state = 20}, - [6565] = {.lex_state = 636, .external_lex_state = 20}, - [6566] = {.lex_state = 636, .external_lex_state = 20}, - [6567] = {.lex_state = 636, .external_lex_state = 20}, - [6568] = {.lex_state = 2, .external_lex_state = 20}, - [6569] = {.lex_state = 37, .external_lex_state = 20}, - [6570] = {.lex_state = 636, .external_lex_state = 20}, - [6571] = {.lex_state = 652, .external_lex_state = 20}, - [6572] = {.lex_state = 636, .external_lex_state = 20}, - [6573] = {.lex_state = 636, .external_lex_state = 20}, - [6574] = {.lex_state = 37, .external_lex_state = 20}, - [6575] = {.lex_state = 636, .external_lex_state = 20}, - [6576] = {.lex_state = 636, .external_lex_state = 20}, - [6577] = {.lex_state = 636, .external_lex_state = 20}, - [6578] = {.lex_state = 636, .external_lex_state = 20}, - [6579] = {.lex_state = 636, .external_lex_state = 20}, - [6580] = {.lex_state = 636, .external_lex_state = 20}, - [6581] = {.lex_state = 636, .external_lex_state = 20}, - [6582] = {.lex_state = 636, .external_lex_state = 20}, - [6583] = {.lex_state = 636, .external_lex_state = 20}, - [6584] = {.lex_state = 636, .external_lex_state = 20}, - [6585] = {.lex_state = 636, .external_lex_state = 20}, - [6586] = {.lex_state = 636, .external_lex_state = 20}, -}; - -enum { - ts_external_token_multiline_comment = 0, - ts_external_token_raw_str_part = 1, - ts_external_token_raw_str_continuing_indicator = 2, - ts_external_token_raw_str_end_part = 3, - ts_external_token__implicit_semi = 4, - ts_external_token__explicit_semi = 5, - ts_external_token__arrow_operator_custom = 6, - ts_external_token__dot_custom = 7, - ts_external_token__conjunction_operator_custom = 8, - ts_external_token__disjunction_operator_custom = 9, - ts_external_token__nil_coalescing_operator_custom = 10, - ts_external_token__eq_custom = 11, - ts_external_token__eq_eq_custom = 12, - ts_external_token__plus_then_ws = 13, - ts_external_token__minus_then_ws = 14, - ts_external_token_bang = 15, - ts_external_token__throws_keyword = 16, - ts_external_token__rethrows_keyword = 17, - ts_external_token_default_keyword = 18, - ts_external_token_where_keyword = 19, - ts_external_token_else = 20, - ts_external_token_catch_keyword = 21, - ts_external_token__as_custom = 22, - ts_external_token__as_quest_custom = 23, - ts_external_token__as_bang_custom = 24, - ts_external_token__async_keyword_custom = 25, - ts_external_token__custom_operator = 26, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_multiline_comment] = sym_multiline_comment, - [ts_external_token_raw_str_part] = sym_raw_str_part, - [ts_external_token_raw_str_continuing_indicator] = sym_raw_str_continuing_indicator, - [ts_external_token_raw_str_end_part] = sym_raw_str_end_part, - [ts_external_token__implicit_semi] = sym__implicit_semi, - [ts_external_token__explicit_semi] = sym__explicit_semi, - [ts_external_token__arrow_operator_custom] = sym__arrow_operator_custom, - [ts_external_token__dot_custom] = sym__dot_custom, - [ts_external_token__conjunction_operator_custom] = sym__conjunction_operator_custom, - [ts_external_token__disjunction_operator_custom] = sym__disjunction_operator_custom, - [ts_external_token__nil_coalescing_operator_custom] = sym__nil_coalescing_operator_custom, - [ts_external_token__eq_custom] = sym__eq_custom, - [ts_external_token__eq_eq_custom] = sym__eq_eq_custom, - [ts_external_token__plus_then_ws] = sym__plus_then_ws, - [ts_external_token__minus_then_ws] = sym__minus_then_ws, - [ts_external_token_bang] = sym_bang, - [ts_external_token__throws_keyword] = sym__throws_keyword, - [ts_external_token__rethrows_keyword] = sym__rethrows_keyword, - [ts_external_token_default_keyword] = sym_default_keyword, - [ts_external_token_where_keyword] = sym_where_keyword, - [ts_external_token_else] = sym_else, - [ts_external_token_catch_keyword] = sym_catch_keyword, - [ts_external_token__as_custom] = sym__as_custom, - [ts_external_token__as_quest_custom] = sym__as_quest_custom, - [ts_external_token__as_bang_custom] = sym__as_bang_custom, - [ts_external_token__async_keyword_custom] = sym__async_keyword_custom, - [ts_external_token__custom_operator] = sym__custom_operator, -}; - -static const bool ts_external_scanner_states[115][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_continuing_indicator] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token_catch_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [2] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__custom_operator] = true, - }, - [3] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__custom_operator] = true, - }, - [4] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__custom_operator] = true, - }, - [5] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__custom_operator] = true, - }, - [6] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__custom_operator] = true, - }, - [7] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [8] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [9] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [10] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [11] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [12] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [13] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [14] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [15] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [16] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [17] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [18] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [19] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [20] = { - [ts_external_token_multiline_comment] = true, - }, - [21] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [22] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [23] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [24] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [25] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [26] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [27] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [28] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [29] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [30] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [31] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [32] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [33] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [34] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [35] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [36] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [37] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [38] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [39] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [40] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [41] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_default_keyword] = true, - }, - [42] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - }, - [43] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [44] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [45] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - }, - [46] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token_default_keyword] = true, - }, - [47] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__conjunction_operator_custom] = true, - [ts_external_token__disjunction_operator_custom] = true, - [ts_external_token__nil_coalescing_operator_custom] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__as_quest_custom] = true, - [ts_external_token__as_bang_custom] = true, - [ts_external_token__async_keyword_custom] = true, - [ts_external_token__custom_operator] = true, - }, - [48] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [49] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [50] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [51] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [52] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [53] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [54] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [55] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_eq_custom] = true, - [ts_external_token__plus_then_ws] = true, - [ts_external_token__minus_then_ws] = true, - [ts_external_token_bang] = true, - [ts_external_token__custom_operator] = true, - }, - [56] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [57] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [58] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [59] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_where_keyword] = true, - }, - [60] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_default_keyword] = true, - }, - [61] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_catch_keyword] = true, - }, - [62] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_default_keyword] = true, - }, - [63] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_default_keyword] = true, - [ts_external_token_else] = true, - }, - [64] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_end_part] = true, - }, - [65] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [66] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [67] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [68] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [69] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [70] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [71] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [72] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [73] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [74] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [75] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [76] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [77] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [78] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [79] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [80] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [81] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [82] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [83] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [84] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [85] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [86] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [87] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token__async_keyword_custom] = true, - }, - [88] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [89] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_bang] = true, - }, - [90] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [91] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - }, - [92] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - }, - [93] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__eq_custom] = true, - }, - [94] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [95] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - [ts_external_token__as_custom] = true, - }, - [96] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__as_custom] = true, - }, - [97] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [98] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token_where_keyword] = true, - }, - [99] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token__as_custom] = true, - }, - [100] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - [ts_external_token_where_keyword] = true, - }, - [101] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__as_custom] = true, - }, - [102] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_where_keyword] = true, - }, - [103] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_catch_keyword] = true, - }, - [104] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - }, - [105] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_where_keyword] = true, - }, - [106] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token__dot_custom] = true, - }, - [107] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__dot_custom] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - }, - [108] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - [ts_external_token__throws_keyword] = true, - [ts_external_token__rethrows_keyword] = true, - }, - [109] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token_where_keyword] = true, - [ts_external_token_else] = true, - }, - [110] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__eq_custom] = true, - [ts_external_token__eq_eq_custom] = true, - }, - [111] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__implicit_semi] = true, - [ts_external_token__explicit_semi] = true, - [ts_external_token_else] = true, - }, - [112] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token__arrow_operator_custom] = true, - }, - [113] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_raw_str_part] = true, - [ts_external_token_raw_str_continuing_indicator] = true, - [ts_external_token_raw_str_end_part] = true, - }, - [114] = { - [ts_external_token_multiline_comment] = true, - [ts_external_token_else] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_POUND_BANG] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token2] = ACTIONS(1), - [aux_sym_simple_identifier_token3] = ACTIONS(1), - [aux_sym_simple_identifier_token4] = ACTIONS(1), - [anon_sym_actor] = ACTIONS(1), - [anon_sym_nil] = ACTIONS(1), - [sym_integer_literal] = ACTIONS(1), - [sym_hex_literal] = ACTIONS(1), - [sym_oct_literal] = ACTIONS(1), - [sym_bin_literal] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_BSLASH] = ACTIONS(1), - [anon_sym_u] = ACTIONS(1), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [sym__escaped_identifier] = ACTIONS(1), - [sym__extended_regex_literal] = ACTIONS(1), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1), - [sym__oneline_regex_literal] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_Type] = ACTIONS(1), - [anon_sym_Protocol] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [sym__immediate_quest] = ACTIONS(1), - [anon_sym_some] = ACTIONS(1), - [anon_sym_any] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_async] = ACTIONS(1), - [anon_sym_POUNDselector] = ACTIONS(1), - [anon_sym_getter_COLON] = ACTIONS(1), - [anon_sym_setter_COLON] = ACTIONS(1), - [aux_sym_custom_operator_token1] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_await] = ACTIONS(1), - [anon_sym_POUNDfile] = ACTIONS(1), - [anon_sym_POUNDfileID] = ACTIONS(1), - [anon_sym_POUNDfilePath] = ACTIONS(1), - [anon_sym_POUNDline] = ACTIONS(1), - [anon_sym_POUNDcolumn] = ACTIONS(1), - [anon_sym_POUNDfunction] = ACTIONS(1), - [anon_sym_POUNDdsohandle] = ACTIONS(1), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1), - [anon_sym_POUNDfileLiteral] = ACTIONS(1), - [anon_sym_POUNDimageLiteral] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_CARET_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_self] = ACTIONS(1), - [anon_sym_super] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_guard] = ACTIONS(1), - [anon_sym_switch] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [anon_sym_fallthrough] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_POUNDkeyPath] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), - [anon_sym_try_BANG] = ACTIONS(1), - [anon_sym_try_QMARK] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_DOT_DOT_LT] = ACTIONS(1), - [anon_sym_is] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_repeat] = ACTIONS(1), - [sym_throw_keyword] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), - [anon_sym_continue] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_yield] = ACTIONS(1), - [anon_sym_POUNDavailable] = ACTIONS(1), - [anon_sym_import] = ACTIONS(1), - [anon_sym_typealias] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_class] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [anon_sym_protocol] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), - [anon_sym_var] = ACTIONS(1), - [anon_sym_func] = ACTIONS(1), - [anon_sym_extension] = ACTIONS(1), - [anon_sym_indirect] = ACTIONS(1), - [anon_sym_init] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_deinit] = ACTIONS(1), - [anon_sym_subscript] = ACTIONS(1), - [anon_sym_get] = ACTIONS(1), - [anon_sym_set] = ACTIONS(1), - [anon_sym_prefix] = ACTIONS(1), - [anon_sym_infix] = ACTIONS(1), - [anon_sym_postfix] = ACTIONS(1), - [anon_sym_operator] = ACTIONS(1), - [anon_sym_precedencegroup] = ACTIONS(1), - [anon_sym_associatedtype] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [sym_wildcard_pattern] = ACTIONS(1), - [sym_property_behavior_modifier] = ACTIONS(1), - [anon_sym_override] = ACTIONS(1), - [anon_sym_convenience] = ACTIONS(1), - [anon_sym_required] = ACTIONS(1), - [anon_sym_nonisolated] = ACTIONS(1), - [anon_sym_public] = ACTIONS(1), - [anon_sym_private] = ACTIONS(1), - [anon_sym_internal] = ACTIONS(1), - [anon_sym_fileprivate] = ACTIONS(1), - [anon_sym_open] = ACTIONS(1), - [anon_sym_mutating] = ACTIONS(1), - [anon_sym_nonmutating] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_dynamic] = ACTIONS(1), - [anon_sym_optional] = ACTIONS(1), - [anon_sym_final] = ACTIONS(1), - [anon_sym_inout] = ACTIONS(1), - [anon_sym_ATescaping] = ACTIONS(1), - [anon_sym_ATautoclosure] = ACTIONS(1), - [anon_sym_weak] = ACTIONS(1), - [anon_sym_unowned] = ACTIONS(1), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(1), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(1), - [anon_sym_property] = ACTIONS(1), - [anon_sym_receiver] = ACTIONS(1), - [anon_sym_param] = ACTIONS(1), - [anon_sym_setparam] = ACTIONS(1), - [anon_sym_delegate] = ACTIONS(1), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(1), - [sym_raw_str_continuing_indicator] = ACTIONS(1), - [sym_raw_str_end_part] = ACTIONS(1), - [sym__implicit_semi] = ACTIONS(1), - [sym__explicit_semi] = ACTIONS(1), - [sym__arrow_operator_custom] = ACTIONS(1), - [sym__dot_custom] = ACTIONS(1), - [sym__conjunction_operator_custom] = ACTIONS(1), - [sym__disjunction_operator_custom] = ACTIONS(1), - [sym__nil_coalescing_operator_custom] = ACTIONS(1), - [sym__eq_custom] = ACTIONS(1), - [sym__eq_eq_custom] = ACTIONS(1), - [sym__plus_then_ws] = ACTIONS(1), - [sym__minus_then_ws] = ACTIONS(1), - [sym_bang] = ACTIONS(1), - [sym__throws_keyword] = ACTIONS(1), - [sym__rethrows_keyword] = ACTIONS(1), - [sym_default_keyword] = ACTIONS(1), - [sym_where_keyword] = ACTIONS(1), - [sym_else] = ACTIONS(1), - [sym_catch_keyword] = ACTIONS(1), - [sym__as_custom] = ACTIONS(1), - [sym__as_quest_custom] = ACTIONS(1), - [sym__as_bang_custom] = ACTIONS(1), - [sym__async_keyword_custom] = ACTIONS(1), - [sym__custom_operator] = ACTIONS(1), - }, - [1] = { - [sym_source_file] = STATE(6516), - [sym_shebang_line] = STATE(6), - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1210), - [sym_boolean_literal] = STATE(1210), - [sym__string_literal] = STATE(1210), - [sym_line_string_literal] = STATE(1210), - [sym_multi_line_string_literal] = STATE(1210), - [sym_raw_string_literal] = STATE(1210), - [sym_regex_literal] = STATE(1210), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1210), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1210), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1210), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1210), - [sym_prefix_expression] = STATE(1210), - [sym_as_expression] = STATE(1210), - [sym_selector_expression] = STATE(1210), - [sym__binary_expression] = STATE(1210), - [sym_multiplicative_expression] = STATE(1210), - [sym_additive_expression] = STATE(1210), - [sym_range_expression] = STATE(1210), - [sym_infix_expression] = STATE(1210), - [sym_nil_coalescing_expression] = STATE(1210), - [sym_check_expression] = STATE(1210), - [sym_comparison_expression] = STATE(1210), - [sym_equality_expression] = STATE(1210), - [sym_conjunction_expression] = STATE(1210), - [sym_disjunction_expression] = STATE(1210), - [sym_bitwise_operation] = STATE(1210), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1210), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1210), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1210), - [sym_dictionary_literal] = STATE(1210), - [sym__special_literal] = STATE(1210), - [sym__playground_literal] = STATE(1210), - [sym_lambda_literal] = STATE(1210), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1210), - [sym_if_statement] = STATE(4968), - [sym_guard_statement] = STATE(4968), - [sym_switch_statement] = STATE(4968), - [sym_do_statement] = STATE(4968), - [sym_key_path_expression] = STATE(1210), - [sym_key_path_string_expression] = STATE(1210), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1210), - [sym__equality_operator] = STATE(1210), - [sym__comparison_operator] = STATE(1210), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1210), - [sym__multiplicative_operator] = STATE(1210), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__top_level_statement] = STATE(4968), - [sym__labeled_statement] = STATE(4968), - [sym_for_statement] = STATE(4968), - [sym_while_statement] = STATE(4968), - [sym_repeat_while_statement] = STATE(4968), - [sym__throw_statement] = STATE(4968), - [sym_assignment] = STATE(1210), - [sym__global_declaration] = STATE(4968), - [sym_import_declaration] = STATE(4968), - [sym_property_declaration] = STATE(4968), - [sym__modifierless_property_declaration] = STATE(5331), - [sym_typealias_declaration] = STATE(4968), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym_function_declaration] = STATE(4968), - [sym__bodyless_function_declaration] = STATE(5333), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(4968), - [sym__modifierless_class_declaration] = STATE(5334), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1210), - [sym__eq_eq] = STATE(1210), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(4968), - [sym_operator_declaration] = STATE(4968), - [sym_precedence_group_declaration] = STATE(4968), - [sym_associatedtype_declaration] = STATE(4968), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(3502), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym_modifiers_repeat1] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(7), - [anon_sym_POUND_BANG] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(17), - [sym_real_literal] = ACTIONS(19), - [sym_integer_literal] = ACTIONS(17), - [sym_hex_literal] = ACTIONS(19), - [sym_oct_literal] = ACTIONS(19), - [sym_bin_literal] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(17), - [anon_sym_POUNDfileID] = ACTIONS(19), - [anon_sym_POUNDfilePath] = ACTIONS(19), - [anon_sym_POUNDline] = ACTIONS(19), - [anon_sym_POUNDcolumn] = ACTIONS(19), - [anon_sym_POUNDfunction] = ACTIONS(19), - [anon_sym_POUNDdsohandle] = ACTIONS(19), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(19), - [anon_sym_DASH_EQ] = ACTIONS(19), - [anon_sym_STAR_EQ] = ACTIONS(19), - [anon_sym_SLASH_EQ] = ACTIONS(19), - [anon_sym_PERCENT_EQ] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ_EQ] = ACTIONS(19), - [anon_sym_EQ_EQ_EQ] = ACTIONS(19), - [anon_sym_LT_EQ] = ACTIONS(19), - [anon_sym_GT_EQ] = ACTIONS(19), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_PERCENT] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(17), - [anon_sym_LT_LT] = ACTIONS(19), - [anon_sym_GT_GT] = ACTIONS(19), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_import] = ACTIONS(89), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_protocol] = ACTIONS(99), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(111), - [anon_sym_infix] = ACTIONS(111), - [anon_sym_postfix] = ACTIONS(111), - [anon_sym_precedencegroup] = ACTIONS(113), - [anon_sym_associatedtype] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(119), - [anon_sym_override] = ACTIONS(121), - [anon_sym_convenience] = ACTIONS(121), - [anon_sym_required] = ACTIONS(121), - [anon_sym_nonisolated] = ACTIONS(121), - [anon_sym_public] = ACTIONS(123), - [anon_sym_private] = ACTIONS(123), - [anon_sym_internal] = ACTIONS(123), - [anon_sym_fileprivate] = ACTIONS(123), - [anon_sym_open] = ACTIONS(123), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_static] = ACTIONS(127), - [anon_sym_dynamic] = ACTIONS(127), - [anon_sym_optional] = ACTIONS(127), - [anon_sym_final] = ACTIONS(129), - [anon_sym_inout] = ACTIONS(131), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(135), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(19), - [sym__plus_then_ws] = ACTIONS(19), - [sym__minus_then_ws] = ACTIONS(19), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [2] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(67), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_switch_entry] = STATE(2273), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6573), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2062), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(5991), - [aux_sym__locally_permitted_modifiers] = STATE(1539), - [sym__non_local_scope_modifier] = STATE(2747), - [sym__locally_permitted_modifier] = STATE(1539), - [sym_member_modifier] = STATE(2747), - [sym_visibility_modifier] = STATE(2747), - [sym_function_modifier] = STATE(2747), - [sym_mutation_modifier] = STATE(2747), - [sym_property_modifier] = STATE(2747), - [sym_inheritance_modifier] = STATE(1539), - [sym_parameter_modifier] = STATE(2747), - [sym_ownership_modifier] = STATE(1539), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [aux_sym_switch_statement_repeat1] = STATE(2273), - [aux_sym_modifiers_repeat1] = STATE(2747), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_in] = ACTIONS(159), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(163), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(167), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(169), - [anon_sym_infix] = ACTIONS(169), - [anon_sym_postfix] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(171), - [sym_property_behavior_modifier] = ACTIONS(173), - [anon_sym_override] = ACTIONS(175), - [anon_sym_convenience] = ACTIONS(175), - [anon_sym_required] = ACTIONS(175), - [anon_sym_nonisolated] = ACTIONS(175), - [anon_sym_public] = ACTIONS(177), - [anon_sym_private] = ACTIONS(177), - [anon_sym_internal] = ACTIONS(177), - [anon_sym_fileprivate] = ACTIONS(177), - [anon_sym_open] = ACTIONS(177), - [anon_sym_mutating] = ACTIONS(179), - [anon_sym_nonmutating] = ACTIONS(179), - [anon_sym_static] = ACTIONS(181), - [anon_sym_dynamic] = ACTIONS(181), - [anon_sym_optional] = ACTIONS(181), - [anon_sym_final] = ACTIONS(183), - [anon_sym_inout] = ACTIONS(185), - [anon_sym_ATescaping] = ACTIONS(187), - [anon_sym_ATautoclosure] = ACTIONS(187), - [anon_sym_weak] = ACTIONS(189), - [anon_sym_unowned] = ACTIONS(189), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(191), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(191), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym_default_keyword] = ACTIONS(193), - [sym__custom_operator] = ACTIONS(45), - }, - [3] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(67), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_switch_entry] = STATE(2299), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6573), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2062), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(5991), - [aux_sym__locally_permitted_modifiers] = STATE(1539), - [sym__non_local_scope_modifier] = STATE(2747), - [sym__locally_permitted_modifier] = STATE(1539), - [sym_member_modifier] = STATE(2747), - [sym_visibility_modifier] = STATE(2747), - [sym_function_modifier] = STATE(2747), - [sym_mutation_modifier] = STATE(2747), - [sym_property_modifier] = STATE(2747), - [sym_inheritance_modifier] = STATE(1539), - [sym_parameter_modifier] = STATE(2747), - [sym_ownership_modifier] = STATE(1539), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [aux_sym_switch_statement_repeat1] = STATE(2299), - [aux_sym_modifiers_repeat1] = STATE(2747), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(195), - [anon_sym_in] = ACTIONS(159), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_case] = ACTIONS(163), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(167), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(169), - [anon_sym_infix] = ACTIONS(169), - [anon_sym_postfix] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(171), - [sym_property_behavior_modifier] = ACTIONS(173), - [anon_sym_override] = ACTIONS(175), - [anon_sym_convenience] = ACTIONS(175), - [anon_sym_required] = ACTIONS(175), - [anon_sym_nonisolated] = ACTIONS(175), - [anon_sym_public] = ACTIONS(177), - [anon_sym_private] = ACTIONS(177), - [anon_sym_internal] = ACTIONS(177), - [anon_sym_fileprivate] = ACTIONS(177), - [anon_sym_open] = ACTIONS(177), - [anon_sym_mutating] = ACTIONS(179), - [anon_sym_nonmutating] = ACTIONS(179), - [anon_sym_static] = ACTIONS(181), - [anon_sym_dynamic] = ACTIONS(181), - [anon_sym_optional] = ACTIONS(181), - [anon_sym_final] = ACTIONS(183), - [anon_sym_inout] = ACTIONS(185), - [anon_sym_ATescaping] = ACTIONS(187), - [anon_sym_ATautoclosure] = ACTIONS(187), - [anon_sym_weak] = ACTIONS(189), - [anon_sym_unowned] = ACTIONS(189), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(191), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(191), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym_default_keyword] = ACTIONS(193), - [sym__custom_operator] = ACTIONS(45), - }, - [4] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1210), - [sym_boolean_literal] = STATE(1210), - [sym__string_literal] = STATE(1210), - [sym_line_string_literal] = STATE(1210), - [sym_multi_line_string_literal] = STATE(1210), - [sym_raw_string_literal] = STATE(1210), - [sym_regex_literal] = STATE(1210), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1210), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1210), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1210), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1210), - [sym_prefix_expression] = STATE(1210), - [sym_as_expression] = STATE(1210), - [sym_selector_expression] = STATE(1210), - [sym__binary_expression] = STATE(1210), - [sym_multiplicative_expression] = STATE(1210), - [sym_additive_expression] = STATE(1210), - [sym_range_expression] = STATE(1210), - [sym_infix_expression] = STATE(1210), - [sym_nil_coalescing_expression] = STATE(1210), - [sym_check_expression] = STATE(1210), - [sym_comparison_expression] = STATE(1210), - [sym_equality_expression] = STATE(1210), - [sym_conjunction_expression] = STATE(1210), - [sym_disjunction_expression] = STATE(1210), - [sym_bitwise_operation] = STATE(1210), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1210), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1210), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1210), - [sym_dictionary_literal] = STATE(1210), - [sym__special_literal] = STATE(1210), - [sym__playground_literal] = STATE(1210), - [sym_lambda_literal] = STATE(1210), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1210), - [sym_if_statement] = STATE(5638), - [sym_guard_statement] = STATE(5638), - [sym_switch_statement] = STATE(5638), - [sym_do_statement] = STATE(5638), - [sym_key_path_expression] = STATE(1210), - [sym_key_path_string_expression] = STATE(1210), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1210), - [sym__equality_operator] = STATE(1210), - [sym__comparison_operator] = STATE(1210), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1210), - [sym__multiplicative_operator] = STATE(1210), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__top_level_statement] = STATE(5638), - [sym__labeled_statement] = STATE(5638), - [sym_for_statement] = STATE(5638), - [sym_while_statement] = STATE(5638), - [sym_repeat_while_statement] = STATE(5638), - [sym__throw_statement] = STATE(5638), - [sym_assignment] = STATE(1210), - [sym__global_declaration] = STATE(5638), - [sym_import_declaration] = STATE(5638), - [sym_property_declaration] = STATE(5638), - [sym__modifierless_property_declaration] = STATE(5331), - [sym_typealias_declaration] = STATE(5638), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym_function_declaration] = STATE(5638), - [sym__bodyless_function_declaration] = STATE(5333), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(5638), - [sym__modifierless_class_declaration] = STATE(5334), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1210), - [sym__eq_eq] = STATE(1210), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(5638), - [sym_operator_declaration] = STATE(5638), - [sym_precedence_group_declaration] = STATE(5638), - [sym_associatedtype_declaration] = STATE(5638), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(3502), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym_modifiers_repeat1] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(197), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(17), - [sym_real_literal] = ACTIONS(19), - [sym_integer_literal] = ACTIONS(17), - [sym_hex_literal] = ACTIONS(19), - [sym_oct_literal] = ACTIONS(19), - [sym_bin_literal] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(17), - [anon_sym_POUNDfileID] = ACTIONS(19), - [anon_sym_POUNDfilePath] = ACTIONS(19), - [anon_sym_POUNDline] = ACTIONS(19), - [anon_sym_POUNDcolumn] = ACTIONS(19), - [anon_sym_POUNDfunction] = ACTIONS(19), - [anon_sym_POUNDdsohandle] = ACTIONS(19), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(19), - [anon_sym_DASH_EQ] = ACTIONS(19), - [anon_sym_STAR_EQ] = ACTIONS(19), - [anon_sym_SLASH_EQ] = ACTIONS(19), - [anon_sym_PERCENT_EQ] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ_EQ] = ACTIONS(19), - [anon_sym_EQ_EQ_EQ] = ACTIONS(19), - [anon_sym_LT_EQ] = ACTIONS(19), - [anon_sym_GT_EQ] = ACTIONS(19), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_PERCENT] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(17), - [anon_sym_LT_LT] = ACTIONS(19), - [anon_sym_GT_GT] = ACTIONS(19), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_import] = ACTIONS(89), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_protocol] = ACTIONS(99), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(111), - [anon_sym_infix] = ACTIONS(111), - [anon_sym_postfix] = ACTIONS(111), - [anon_sym_precedencegroup] = ACTIONS(113), - [anon_sym_associatedtype] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(119), - [anon_sym_override] = ACTIONS(121), - [anon_sym_convenience] = ACTIONS(121), - [anon_sym_required] = ACTIONS(121), - [anon_sym_nonisolated] = ACTIONS(121), - [anon_sym_public] = ACTIONS(123), - [anon_sym_private] = ACTIONS(123), - [anon_sym_internal] = ACTIONS(123), - [anon_sym_fileprivate] = ACTIONS(123), - [anon_sym_open] = ACTIONS(123), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_static] = ACTIONS(127), - [anon_sym_dynamic] = ACTIONS(127), - [anon_sym_optional] = ACTIONS(127), - [anon_sym_final] = ACTIONS(129), - [anon_sym_inout] = ACTIONS(131), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(135), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(19), - [sym__plus_then_ws] = ACTIONS(19), - [sym__minus_then_ws] = ACTIONS(19), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [5] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1210), - [sym_boolean_literal] = STATE(1210), - [sym__string_literal] = STATE(1210), - [sym_line_string_literal] = STATE(1210), - [sym_multi_line_string_literal] = STATE(1210), - [sym_raw_string_literal] = STATE(1210), - [sym_regex_literal] = STATE(1210), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1210), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1210), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1210), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1210), - [sym_prefix_expression] = STATE(1210), - [sym_as_expression] = STATE(1210), - [sym_selector_expression] = STATE(1210), - [sym__binary_expression] = STATE(1210), - [sym_multiplicative_expression] = STATE(1210), - [sym_additive_expression] = STATE(1210), - [sym_range_expression] = STATE(1210), - [sym_infix_expression] = STATE(1210), - [sym_nil_coalescing_expression] = STATE(1210), - [sym_check_expression] = STATE(1210), - [sym_comparison_expression] = STATE(1210), - [sym_equality_expression] = STATE(1210), - [sym_conjunction_expression] = STATE(1210), - [sym_disjunction_expression] = STATE(1210), - [sym_bitwise_operation] = STATE(1210), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1210), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1210), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1210), - [sym_dictionary_literal] = STATE(1210), - [sym__special_literal] = STATE(1210), - [sym__playground_literal] = STATE(1210), - [sym_lambda_literal] = STATE(1210), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1210), - [sym_if_statement] = STATE(5638), - [sym_guard_statement] = STATE(5638), - [sym_switch_statement] = STATE(5638), - [sym_do_statement] = STATE(5638), - [sym_key_path_expression] = STATE(1210), - [sym_key_path_string_expression] = STATE(1210), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1210), - [sym__equality_operator] = STATE(1210), - [sym__comparison_operator] = STATE(1210), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1210), - [sym__multiplicative_operator] = STATE(1210), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__top_level_statement] = STATE(5638), - [sym__labeled_statement] = STATE(5638), - [sym_for_statement] = STATE(5638), - [sym_while_statement] = STATE(5638), - [sym_repeat_while_statement] = STATE(5638), - [sym__throw_statement] = STATE(5638), - [sym_assignment] = STATE(1210), - [sym__global_declaration] = STATE(5638), - [sym_import_declaration] = STATE(5638), - [sym_property_declaration] = STATE(5638), - [sym__modifierless_property_declaration] = STATE(5331), - [sym_typealias_declaration] = STATE(5638), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym_function_declaration] = STATE(5638), - [sym__bodyless_function_declaration] = STATE(5333), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(5638), - [sym__modifierless_class_declaration] = STATE(5334), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1210), - [sym__eq_eq] = STATE(1210), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(5638), - [sym_operator_declaration] = STATE(5638), - [sym_precedence_group_declaration] = STATE(5638), - [sym_associatedtype_declaration] = STATE(5638), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(3502), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym_modifiers_repeat1] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(199), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(17), - [sym_real_literal] = ACTIONS(19), - [sym_integer_literal] = ACTIONS(17), - [sym_hex_literal] = ACTIONS(19), - [sym_oct_literal] = ACTIONS(19), - [sym_bin_literal] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(17), - [anon_sym_POUNDfileID] = ACTIONS(19), - [anon_sym_POUNDfilePath] = ACTIONS(19), - [anon_sym_POUNDline] = ACTIONS(19), - [anon_sym_POUNDcolumn] = ACTIONS(19), - [anon_sym_POUNDfunction] = ACTIONS(19), - [anon_sym_POUNDdsohandle] = ACTIONS(19), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(19), - [anon_sym_DASH_EQ] = ACTIONS(19), - [anon_sym_STAR_EQ] = ACTIONS(19), - [anon_sym_SLASH_EQ] = ACTIONS(19), - [anon_sym_PERCENT_EQ] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ_EQ] = ACTIONS(19), - [anon_sym_EQ_EQ_EQ] = ACTIONS(19), - [anon_sym_LT_EQ] = ACTIONS(19), - [anon_sym_GT_EQ] = ACTIONS(19), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_PERCENT] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(17), - [anon_sym_LT_LT] = ACTIONS(19), - [anon_sym_GT_GT] = ACTIONS(19), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_import] = ACTIONS(89), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_protocol] = ACTIONS(99), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(111), - [anon_sym_infix] = ACTIONS(111), - [anon_sym_postfix] = ACTIONS(111), - [anon_sym_precedencegroup] = ACTIONS(113), - [anon_sym_associatedtype] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(119), - [anon_sym_override] = ACTIONS(121), - [anon_sym_convenience] = ACTIONS(121), - [anon_sym_required] = ACTIONS(121), - [anon_sym_nonisolated] = ACTIONS(121), - [anon_sym_public] = ACTIONS(123), - [anon_sym_private] = ACTIONS(123), - [anon_sym_internal] = ACTIONS(123), - [anon_sym_fileprivate] = ACTIONS(123), - [anon_sym_open] = ACTIONS(123), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_static] = ACTIONS(127), - [anon_sym_dynamic] = ACTIONS(127), - [anon_sym_optional] = ACTIONS(127), - [anon_sym_final] = ACTIONS(129), - [anon_sym_inout] = ACTIONS(131), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(135), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(19), - [sym__plus_then_ws] = ACTIONS(19), - [sym__minus_then_ws] = ACTIONS(19), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [6] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1210), - [sym_boolean_literal] = STATE(1210), - [sym__string_literal] = STATE(1210), - [sym_line_string_literal] = STATE(1210), - [sym_multi_line_string_literal] = STATE(1210), - [sym_raw_string_literal] = STATE(1210), - [sym_regex_literal] = STATE(1210), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1210), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1210), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1210), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1210), - [sym_prefix_expression] = STATE(1210), - [sym_as_expression] = STATE(1210), - [sym_selector_expression] = STATE(1210), - [sym__binary_expression] = STATE(1210), - [sym_multiplicative_expression] = STATE(1210), - [sym_additive_expression] = STATE(1210), - [sym_range_expression] = STATE(1210), - [sym_infix_expression] = STATE(1210), - [sym_nil_coalescing_expression] = STATE(1210), - [sym_check_expression] = STATE(1210), - [sym_comparison_expression] = STATE(1210), - [sym_equality_expression] = STATE(1210), - [sym_conjunction_expression] = STATE(1210), - [sym_disjunction_expression] = STATE(1210), - [sym_bitwise_operation] = STATE(1210), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1210), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1210), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1210), - [sym_dictionary_literal] = STATE(1210), - [sym__special_literal] = STATE(1210), - [sym__playground_literal] = STATE(1210), - [sym_lambda_literal] = STATE(1210), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1210), - [sym_if_statement] = STATE(4971), - [sym_guard_statement] = STATE(4971), - [sym_switch_statement] = STATE(4971), - [sym_do_statement] = STATE(4971), - [sym_key_path_expression] = STATE(1210), - [sym_key_path_string_expression] = STATE(1210), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1210), - [sym__equality_operator] = STATE(1210), - [sym__comparison_operator] = STATE(1210), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1210), - [sym__multiplicative_operator] = STATE(1210), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__top_level_statement] = STATE(4971), - [sym__labeled_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4971), - [sym_repeat_while_statement] = STATE(4971), - [sym__throw_statement] = STATE(4971), - [sym_assignment] = STATE(1210), - [sym__global_declaration] = STATE(4971), - [sym_import_declaration] = STATE(4971), - [sym_property_declaration] = STATE(4971), - [sym__modifierless_property_declaration] = STATE(5331), - [sym_typealias_declaration] = STATE(4971), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym_function_declaration] = STATE(4971), - [sym__bodyless_function_declaration] = STATE(5333), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(4971), - [sym__modifierless_class_declaration] = STATE(5334), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1210), - [sym__eq_eq] = STATE(1210), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(4971), - [sym_operator_declaration] = STATE(4971), - [sym_precedence_group_declaration] = STATE(4971), - [sym_associatedtype_declaration] = STATE(4971), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(3502), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym_modifiers_repeat1] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(17), - [sym_real_literal] = ACTIONS(19), - [sym_integer_literal] = ACTIONS(17), - [sym_hex_literal] = ACTIONS(19), - [sym_oct_literal] = ACTIONS(19), - [sym_bin_literal] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(17), - [anon_sym_POUNDfileID] = ACTIONS(19), - [anon_sym_POUNDfilePath] = ACTIONS(19), - [anon_sym_POUNDline] = ACTIONS(19), - [anon_sym_POUNDcolumn] = ACTIONS(19), - [anon_sym_POUNDfunction] = ACTIONS(19), - [anon_sym_POUNDdsohandle] = ACTIONS(19), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(19), - [anon_sym_DASH_EQ] = ACTIONS(19), - [anon_sym_STAR_EQ] = ACTIONS(19), - [anon_sym_SLASH_EQ] = ACTIONS(19), - [anon_sym_PERCENT_EQ] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ_EQ] = ACTIONS(19), - [anon_sym_EQ_EQ_EQ] = ACTIONS(19), - [anon_sym_LT_EQ] = ACTIONS(19), - [anon_sym_GT_EQ] = ACTIONS(19), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_PERCENT] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(17), - [anon_sym_LT_LT] = ACTIONS(19), - [anon_sym_GT_GT] = ACTIONS(19), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_import] = ACTIONS(89), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_protocol] = ACTIONS(99), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(111), - [anon_sym_infix] = ACTIONS(111), - [anon_sym_postfix] = ACTIONS(111), - [anon_sym_precedencegroup] = ACTIONS(113), - [anon_sym_associatedtype] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(119), - [anon_sym_override] = ACTIONS(121), - [anon_sym_convenience] = ACTIONS(121), - [anon_sym_required] = ACTIONS(121), - [anon_sym_nonisolated] = ACTIONS(121), - [anon_sym_public] = ACTIONS(123), - [anon_sym_private] = ACTIONS(123), - [anon_sym_internal] = ACTIONS(123), - [anon_sym_fileprivate] = ACTIONS(123), - [anon_sym_open] = ACTIONS(123), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_static] = ACTIONS(127), - [anon_sym_dynamic] = ACTIONS(127), - [anon_sym_optional] = ACTIONS(127), - [anon_sym_final] = ACTIONS(129), - [anon_sym_inout] = ACTIONS(131), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(135), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(19), - [sym__plus_then_ws] = ACTIONS(19), - [sym__minus_then_ws] = ACTIONS(19), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [7] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1210), - [sym_boolean_literal] = STATE(1210), - [sym__string_literal] = STATE(1210), - [sym_line_string_literal] = STATE(1210), - [sym_multi_line_string_literal] = STATE(1210), - [sym_raw_string_literal] = STATE(1210), - [sym_regex_literal] = STATE(1210), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1210), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1210), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1210), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1210), - [sym_prefix_expression] = STATE(1210), - [sym_as_expression] = STATE(1210), - [sym_selector_expression] = STATE(1210), - [sym__binary_expression] = STATE(1210), - [sym_multiplicative_expression] = STATE(1210), - [sym_additive_expression] = STATE(1210), - [sym_range_expression] = STATE(1210), - [sym_infix_expression] = STATE(1210), - [sym_nil_coalescing_expression] = STATE(1210), - [sym_check_expression] = STATE(1210), - [sym_comparison_expression] = STATE(1210), - [sym_equality_expression] = STATE(1210), - [sym_conjunction_expression] = STATE(1210), - [sym_disjunction_expression] = STATE(1210), - [sym_bitwise_operation] = STATE(1210), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1210), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1210), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1210), - [sym_dictionary_literal] = STATE(1210), - [sym__special_literal] = STATE(1210), - [sym__playground_literal] = STATE(1210), - [sym_lambda_literal] = STATE(1210), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1210), - [sym_if_statement] = STATE(5638), - [sym_guard_statement] = STATE(5638), - [sym_switch_statement] = STATE(5638), - [sym_do_statement] = STATE(5638), - [sym_key_path_expression] = STATE(1210), - [sym_key_path_string_expression] = STATE(1210), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1210), - [sym__equality_operator] = STATE(1210), - [sym__comparison_operator] = STATE(1210), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1210), - [sym__multiplicative_operator] = STATE(1210), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__top_level_statement] = STATE(5638), - [sym__labeled_statement] = STATE(5638), - [sym_for_statement] = STATE(5638), - [sym_while_statement] = STATE(5638), - [sym_repeat_while_statement] = STATE(5638), - [sym__throw_statement] = STATE(5638), - [sym_assignment] = STATE(1210), - [sym__global_declaration] = STATE(5638), - [sym_import_declaration] = STATE(5638), - [sym_property_declaration] = STATE(5638), - [sym__modifierless_property_declaration] = STATE(5331), - [sym_typealias_declaration] = STATE(5638), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym_function_declaration] = STATE(5638), - [sym__bodyless_function_declaration] = STATE(5333), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(5638), - [sym__modifierless_class_declaration] = STATE(5334), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1210), - [sym__eq_eq] = STATE(1210), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(5638), - [sym_operator_declaration] = STATE(5638), - [sym_precedence_group_declaration] = STATE(5638), - [sym_associatedtype_declaration] = STATE(5638), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(3502), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym_modifiers_repeat1] = STATE(1456), - [ts_builtin_sym_end] = ACTIONS(203), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(17), - [sym_real_literal] = ACTIONS(19), - [sym_integer_literal] = ACTIONS(17), - [sym_hex_literal] = ACTIONS(19), - [sym_oct_literal] = ACTIONS(19), - [sym_bin_literal] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(17), - [anon_sym_POUNDfileID] = ACTIONS(19), - [anon_sym_POUNDfilePath] = ACTIONS(19), - [anon_sym_POUNDline] = ACTIONS(19), - [anon_sym_POUNDcolumn] = ACTIONS(19), - [anon_sym_POUNDfunction] = ACTIONS(19), - [anon_sym_POUNDdsohandle] = ACTIONS(19), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(19), - [anon_sym_DASH_EQ] = ACTIONS(19), - [anon_sym_STAR_EQ] = ACTIONS(19), - [anon_sym_SLASH_EQ] = ACTIONS(19), - [anon_sym_PERCENT_EQ] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ_EQ] = ACTIONS(19), - [anon_sym_EQ_EQ_EQ] = ACTIONS(19), - [anon_sym_LT_EQ] = ACTIONS(19), - [anon_sym_GT_EQ] = ACTIONS(19), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_PERCENT] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(17), - [anon_sym_LT_LT] = ACTIONS(19), - [anon_sym_GT_GT] = ACTIONS(19), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_import] = ACTIONS(89), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_protocol] = ACTIONS(99), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(111), - [anon_sym_infix] = ACTIONS(111), - [anon_sym_postfix] = ACTIONS(111), - [anon_sym_precedencegroup] = ACTIONS(113), - [anon_sym_associatedtype] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(119), - [anon_sym_override] = ACTIONS(121), - [anon_sym_convenience] = ACTIONS(121), - [anon_sym_required] = ACTIONS(121), - [anon_sym_nonisolated] = ACTIONS(121), - [anon_sym_public] = ACTIONS(123), - [anon_sym_private] = ACTIONS(123), - [anon_sym_internal] = ACTIONS(123), - [anon_sym_fileprivate] = ACTIONS(123), - [anon_sym_open] = ACTIONS(123), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_static] = ACTIONS(127), - [anon_sym_dynamic] = ACTIONS(127), - [anon_sym_optional] = ACTIONS(127), - [anon_sym_final] = ACTIONS(129), - [anon_sym_inout] = ACTIONS(131), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(135), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(19), - [sym__plus_then_ws] = ACTIONS(19), - [sym__minus_then_ws] = ACTIONS(19), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [8] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1210), - [sym_boolean_literal] = STATE(1210), - [sym__string_literal] = STATE(1210), - [sym_line_string_literal] = STATE(1210), - [sym_multi_line_string_literal] = STATE(1210), - [sym_raw_string_literal] = STATE(1210), - [sym_regex_literal] = STATE(1210), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(1210), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1210), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1210), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1210), - [sym_prefix_expression] = STATE(1210), - [sym_as_expression] = STATE(1210), - [sym_selector_expression] = STATE(1210), - [sym__binary_expression] = STATE(1210), - [sym_multiplicative_expression] = STATE(1210), - [sym_additive_expression] = STATE(1210), - [sym_range_expression] = STATE(1210), - [sym_infix_expression] = STATE(1210), - [sym_nil_coalescing_expression] = STATE(1210), - [sym_check_expression] = STATE(1210), - [sym_comparison_expression] = STATE(1210), - [sym_equality_expression] = STATE(1210), - [sym_conjunction_expression] = STATE(1210), - [sym_disjunction_expression] = STATE(1210), - [sym_bitwise_operation] = STATE(1210), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1210), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1210), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1210), - [sym_dictionary_literal] = STATE(1210), - [sym__special_literal] = STATE(1210), - [sym__playground_literal] = STATE(1210), - [sym_lambda_literal] = STATE(1210), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1210), - [sym_if_statement] = STATE(5638), - [sym_guard_statement] = STATE(5638), - [sym_switch_statement] = STATE(5638), - [sym_do_statement] = STATE(5638), - [sym_key_path_expression] = STATE(1210), - [sym_key_path_string_expression] = STATE(1210), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1210), - [sym__equality_operator] = STATE(1210), - [sym__comparison_operator] = STATE(1210), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1210), - [sym__multiplicative_operator] = STATE(1210), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__top_level_statement] = STATE(5638), - [sym__labeled_statement] = STATE(5638), - [sym_for_statement] = STATE(5638), - [sym_while_statement] = STATE(5638), - [sym_repeat_while_statement] = STATE(5638), - [sym__throw_statement] = STATE(5638), - [sym_assignment] = STATE(1210), - [sym__global_declaration] = STATE(5638), - [sym_import_declaration] = STATE(5638), - [sym_property_declaration] = STATE(5638), - [sym__modifierless_property_declaration] = STATE(5331), - [sym_typealias_declaration] = STATE(5638), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym_function_declaration] = STATE(5638), - [sym__bodyless_function_declaration] = STATE(5333), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(5638), - [sym__modifierless_class_declaration] = STATE(5334), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1210), - [sym__eq_eq] = STATE(1210), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(5638), - [sym_operator_declaration] = STATE(5638), - [sym_precedence_group_declaration] = STATE(5638), - [sym_associatedtype_declaration] = STATE(5638), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [sym_modifiers] = STATE(3502), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(17), - [sym_real_literal] = ACTIONS(19), - [sym_integer_literal] = ACTIONS(17), - [sym_hex_literal] = ACTIONS(19), - [sym_oct_literal] = ACTIONS(19), - [sym_bin_literal] = ACTIONS(19), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(17), - [anon_sym_GT] = ACTIONS(17), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(17), - [anon_sym_POUNDfileID] = ACTIONS(19), - [anon_sym_POUNDfilePath] = ACTIONS(19), - [anon_sym_POUNDline] = ACTIONS(19), - [anon_sym_POUNDcolumn] = ACTIONS(19), - [anon_sym_POUNDfunction] = ACTIONS(19), - [anon_sym_POUNDdsohandle] = ACTIONS(19), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(19), - [anon_sym_DASH_EQ] = ACTIONS(19), - [anon_sym_STAR_EQ] = ACTIONS(19), - [anon_sym_SLASH_EQ] = ACTIONS(19), - [anon_sym_PERCENT_EQ] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ] = ACTIONS(17), - [anon_sym_BANG_EQ_EQ] = ACTIONS(19), - [anon_sym_EQ_EQ_EQ] = ACTIONS(19), - [anon_sym_LT_EQ] = ACTIONS(19), - [anon_sym_GT_EQ] = ACTIONS(19), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_SLASH] = ACTIONS(17), - [anon_sym_PERCENT] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(19), - [anon_sym_CARET] = ACTIONS(17), - [anon_sym_LT_LT] = ACTIONS(19), - [anon_sym_GT_GT] = ACTIONS(19), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_import] = ACTIONS(89), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(95), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_protocol] = ACTIONS(99), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(111), - [anon_sym_infix] = ACTIONS(111), - [anon_sym_postfix] = ACTIONS(111), - [anon_sym_precedencegroup] = ACTIONS(113), - [anon_sym_associatedtype] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(119), - [anon_sym_override] = ACTIONS(121), - [anon_sym_convenience] = ACTIONS(121), - [anon_sym_required] = ACTIONS(121), - [anon_sym_nonisolated] = ACTIONS(121), - [anon_sym_public] = ACTIONS(123), - [anon_sym_private] = ACTIONS(123), - [anon_sym_internal] = ACTIONS(123), - [anon_sym_fileprivate] = ACTIONS(123), - [anon_sym_open] = ACTIONS(123), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_static] = ACTIONS(127), - [anon_sym_dynamic] = ACTIONS(127), - [anon_sym_optional] = ACTIONS(127), - [anon_sym_final] = ACTIONS(129), - [anon_sym_inout] = ACTIONS(131), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(135), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(19), - [sym__plus_then_ws] = ACTIONS(19), - [sym__minus_then_ws] = ACTIONS(19), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [9] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2942), - [sym_guard_statement] = STATE(2942), - [sym_switch_statement] = STATE(2942), - [sym_do_statement] = STATE(2942), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym__local_statement] = STATE(2942), - [sym__labeled_statement] = STATE(2942), - [sym_for_statement] = STATE(2942), - [sym_while_statement] = STATE(2942), - [sym_repeat_while_statement] = STATE(2942), - [sym_control_transfer_statement] = STATE(2942), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2942), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_case] = ACTIONS(259), - [anon_sym_fallthrough] = ACTIONS(259), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(259), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(259), - [anon_sym_infix] = ACTIONS(259), - [anon_sym_postfix] = ACTIONS(259), - [anon_sym_AT] = ACTIONS(259), - [sym_property_behavior_modifier] = ACTIONS(259), - [anon_sym_override] = ACTIONS(259), - [anon_sym_convenience] = ACTIONS(259), - [anon_sym_required] = ACTIONS(259), - [anon_sym_nonisolated] = ACTIONS(259), - [anon_sym_public] = ACTIONS(259), - [anon_sym_private] = ACTIONS(259), - [anon_sym_internal] = ACTIONS(259), - [anon_sym_fileprivate] = ACTIONS(259), - [anon_sym_open] = ACTIONS(259), - [anon_sym_mutating] = ACTIONS(259), - [anon_sym_nonmutating] = ACTIONS(259), - [anon_sym_static] = ACTIONS(259), - [anon_sym_dynamic] = ACTIONS(259), - [anon_sym_optional] = ACTIONS(259), - [anon_sym_final] = ACTIONS(259), - [anon_sym_inout] = ACTIONS(259), - [anon_sym_ATescaping] = ACTIONS(247), - [anon_sym_ATautoclosure] = ACTIONS(247), - [anon_sym_weak] = ACTIONS(259), - [anon_sym_unowned] = ACTIONS(259), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(247), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(247), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym_default_keyword] = ACTIONS(247), - [sym__custom_operator] = ACTIONS(239), - }, - [10] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2942), - [sym_guard_statement] = STATE(2942), - [sym_switch_statement] = STATE(2942), - [sym_do_statement] = STATE(2942), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym__local_statement] = STATE(2942), - [sym__labeled_statement] = STATE(2942), - [sym_for_statement] = STATE(2942), - [sym_while_statement] = STATE(2942), - [sym_repeat_while_statement] = STATE(2942), - [sym_control_transfer_statement] = STATE(2942), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2942), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_case] = ACTIONS(303), - [anon_sym_fallthrough] = ACTIONS(303), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(303), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_prefix] = ACTIONS(303), - [anon_sym_infix] = ACTIONS(303), - [anon_sym_postfix] = ACTIONS(303), - [anon_sym_AT] = ACTIONS(303), - [sym_property_behavior_modifier] = ACTIONS(303), - [anon_sym_override] = ACTIONS(303), - [anon_sym_convenience] = ACTIONS(303), - [anon_sym_required] = ACTIONS(303), - [anon_sym_nonisolated] = ACTIONS(303), - [anon_sym_public] = ACTIONS(303), - [anon_sym_private] = ACTIONS(303), - [anon_sym_internal] = ACTIONS(303), - [anon_sym_fileprivate] = ACTIONS(303), - [anon_sym_open] = ACTIONS(303), - [anon_sym_mutating] = ACTIONS(303), - [anon_sym_nonmutating] = ACTIONS(303), - [anon_sym_static] = ACTIONS(303), - [anon_sym_dynamic] = ACTIONS(303), - [anon_sym_optional] = ACTIONS(303), - [anon_sym_final] = ACTIONS(303), - [anon_sym_inout] = ACTIONS(303), - [anon_sym_ATescaping] = ACTIONS(301), - [anon_sym_ATautoclosure] = ACTIONS(301), - [anon_sym_weak] = ACTIONS(303), - [anon_sym_unowned] = ACTIONS(303), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(301), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(301), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym_default_keyword] = ACTIONS(301), - [sym__custom_operator] = ACTIONS(239), - }, - [11] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6402), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_computed_getter] = STATE(3798), - [sym_computed_modify] = STATE(3798), - [sym_computed_setter] = STATE(3798), - [sym_getter_specifier] = STATE(4340), - [sym_setter_specifier] = STATE(4339), - [sym_modify_specifier] = STATE(4342), - [sym_attribute] = STATE(3514), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_mutation_modifier] = STATE(5735), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4203), - [aux_sym_computed_property_repeat1] = STATE(3798), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_get] = ACTIONS(307), - [anon_sym_set] = ACTIONS(309), - [anon_sym__modify] = ACTIONS(311), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [12] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6258), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_computed_getter] = STATE(3809), - [sym_computed_modify] = STATE(3809), - [sym_computed_setter] = STATE(3809), - [sym_getter_specifier] = STATE(4340), - [sym_setter_specifier] = STATE(4339), - [sym_modify_specifier] = STATE(4342), - [sym_attribute] = STATE(3514), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_mutation_modifier] = STATE(5735), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4203), - [aux_sym_computed_property_repeat1] = STATE(3809), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_get] = ACTIONS(307), - [anon_sym_set] = ACTIONS(309), - [anon_sym__modify] = ACTIONS(311), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [13] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6421), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_computed_getter] = STATE(3801), - [sym_computed_modify] = STATE(3801), - [sym_computed_setter] = STATE(3801), - [sym_getter_specifier] = STATE(4340), - [sym_setter_specifier] = STATE(4339), - [sym_modify_specifier] = STATE(4342), - [sym_attribute] = STATE(3514), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_mutation_modifier] = STATE(5735), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4203), - [aux_sym_computed_property_repeat1] = STATE(3801), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_get] = ACTIONS(307), - [anon_sym_set] = ACTIONS(309), - [anon_sym__modify] = ACTIONS(311), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [14] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6385), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_computed_getter] = STATE(3805), - [sym_computed_modify] = STATE(3805), - [sym_computed_setter] = STATE(3805), - [sym_getter_specifier] = STATE(4340), - [sym_setter_specifier] = STATE(4339), - [sym_modify_specifier] = STATE(4342), - [sym_attribute] = STATE(3514), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_mutation_modifier] = STATE(5735), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4203), - [aux_sym_computed_property_repeat1] = STATE(3805), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_get] = ACTIONS(307), - [anon_sym_set] = ACTIONS(309), - [anon_sym__modify] = ACTIONS(311), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_mutating] = ACTIONS(125), - [anon_sym_nonmutating] = ACTIONS(125), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [15] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(67), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6573), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_in] = ACTIONS(159), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [16] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(73), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6446), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_in] = ACTIONS(333), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [17] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(80), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6377), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_in] = ACTIONS(337), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [18] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(82), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6525), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_in] = ACTIONS(341), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [19] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(87), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6288), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_in] = ACTIONS(345), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [20] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(88), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6295), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_in] = ACTIONS(349), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [21] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(49), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6389), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_in] = ACTIONS(353), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [22] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(82), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6356), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_in] = ACTIONS(341), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [23] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(68), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6461), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(357), - [anon_sym_in] = ACTIONS(359), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [24] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(78), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6454), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(361), - [anon_sym_in] = ACTIONS(363), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [25] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(75), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6374), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(365), - [anon_sym_in] = ACTIONS(367), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [26] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(62), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6378), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_in] = ACTIONS(371), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [27] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(57), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6285), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_in] = ACTIONS(375), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [28] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(74), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6255), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_in] = ACTIONS(379), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [29] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(72), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6399), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(381), - [anon_sym_in] = ACTIONS(383), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [30] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(82), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6312), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_in] = ACTIONS(341), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [31] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(83), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6300), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_in] = ACTIONS(389), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [32] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(69), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6436), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_in] = ACTIONS(393), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [33] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(48), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6365), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_in] = ACTIONS(397), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [34] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(70), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6356), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_in] = ACTIONS(399), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [35] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(63), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6573), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_in] = ACTIONS(401), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [36] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(90), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6286), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_in] = ACTIONS(405), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [37] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(71), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6346), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_in] = ACTIONS(409), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [38] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(51), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6520), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_in] = ACTIONS(413), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [39] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(92), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6316), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_in] = ACTIONS(417), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [40] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(91), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6386), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_in] = ACTIONS(421), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [41] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(56), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6512), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_in] = ACTIONS(425), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [42] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(89), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6322), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_in] = ACTIONS(429), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [43] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(59), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6572), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_in] = ACTIONS(433), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [44] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(50), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6482), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_in] = ACTIONS(437), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [45] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(53), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6493), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_in] = ACTIONS(441), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [46] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(65), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6334), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_in] = ACTIONS(445), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [47] = { - [sym_simple_identifier] = STATE(1365), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym__lambda_type_declaration] = STATE(86), - [sym_capture_list] = STATE(4044), - [sym_lambda_function_type] = STATE(6472), - [sym_lambda_function_type_parameters] = STATE(4483), - [sym_lambda_parameter] = STATE(4509), - [sym_self_expression] = STATE(1517), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6438), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(3478), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [aux_sym__lambda_type_declaration_repeat1] = STATE(3749), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(143), - [aux_sym_simple_identifier_token2] = ACTIONS(145), - [aux_sym_simple_identifier_token3] = ACTIONS(145), - [aux_sym_simple_identifier_token4] = ACTIONS(145), - [anon_sym_actor] = ACTIONS(147), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_in] = ACTIONS(449), - [anon_sym_self] = ACTIONS(161), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(329), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [48] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6371), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [49] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6401), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [50] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6457), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [51] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6548), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [52] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6576), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [53] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6500), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [54] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6283), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [55] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6501), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [56] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6502), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [57] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6262), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [58] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6456), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [59] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6480), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [60] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6259), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [61] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6299), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [62] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6380), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [63] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6290), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [64] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6458), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(483), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [65] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6339), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [66] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6539), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(487), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [67] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6540), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(489), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [68] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6269), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(491), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [69] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6429), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [70] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6276), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [71] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6353), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(497), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [72] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6392), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [73] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6465), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(501), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [74] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6388), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [75] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6363), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [76] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6396), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [77] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6491), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [78] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6490), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [79] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6336), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(513), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [80] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6427), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [81] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6381), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(517), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [82] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6347), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [83] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6309), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(521), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [84] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6306), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [85] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6280), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(525), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [86] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6439), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [87] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6265), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [88] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6320), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [89] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6335), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [90] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6293), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(535), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [91] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6268), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [92] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6325), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [93] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(4962), - [sym_guard_statement] = STATE(4962), - [sym_switch_statement] = STATE(4962), - [sym_do_statement] = STATE(4962), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_statements] = STATE(6281), - [sym__local_statement] = STATE(4962), - [sym__labeled_statement] = STATE(4962), - [sym_for_statement] = STATE(4962), - [sym_while_statement] = STATE(4962), - [sym_repeat_while_statement] = STATE(4962), - [sym_control_transfer_statement] = STATE(4962), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(4962), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [94] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2877), - [sym_guard_statement] = STATE(2877), - [sym_switch_statement] = STATE(2877), - [sym_do_statement] = STATE(2877), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_statements] = STATE(2984), - [sym__local_statement] = STATE(2877), - [sym__labeled_statement] = STATE(2877), - [sym_for_statement] = STATE(2877), - [sym_while_statement] = STATE(2877), - [sym_repeat_while_statement] = STATE(2877), - [sym_control_transfer_statement] = STATE(2877), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2877), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [95] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(5759), - [sym_guard_statement] = STATE(5759), - [sym_switch_statement] = STATE(5759), - [sym_do_statement] = STATE(5759), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__local_statement] = STATE(5759), - [sym__labeled_statement] = STATE(5759), - [sym_for_statement] = STATE(5759), - [sym_while_statement] = STATE(5759), - [sym_repeat_while_statement] = STATE(5759), - [sym_control_transfer_statement] = STATE(5759), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(5759), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [96] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2877), - [sym_guard_statement] = STATE(2877), - [sym_switch_statement] = STATE(2877), - [sym_do_statement] = STATE(2877), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_statements] = STATE(2982), - [sym__local_statement] = STATE(2877), - [sym__labeled_statement] = STATE(2877), - [sym_for_statement] = STATE(2877), - [sym_while_statement] = STATE(2877), - [sym_repeat_while_statement] = STATE(2877), - [sym_control_transfer_statement] = STATE(2877), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2877), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [97] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2877), - [sym_guard_statement] = STATE(2877), - [sym_switch_statement] = STATE(2877), - [sym_do_statement] = STATE(2877), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_statements] = STATE(2983), - [sym__local_statement] = STATE(2877), - [sym__labeled_statement] = STATE(2877), - [sym_for_statement] = STATE(2877), - [sym_while_statement] = STATE(2877), - [sym_repeat_while_statement] = STATE(2877), - [sym_control_transfer_statement] = STATE(2877), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2877), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [98] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2877), - [sym_guard_statement] = STATE(2877), - [sym_switch_statement] = STATE(2877), - [sym_do_statement] = STATE(2877), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_statements] = STATE(2977), - [sym__local_statement] = STATE(2877), - [sym__labeled_statement] = STATE(2877), - [sym_for_statement] = STATE(2877), - [sym_while_statement] = STATE(2877), - [sym_repeat_while_statement] = STATE(2877), - [sym_control_transfer_statement] = STATE(2877), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2877), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [99] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2877), - [sym_guard_statement] = STATE(2877), - [sym_switch_statement] = STATE(2877), - [sym_do_statement] = STATE(2877), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_statements] = STATE(2989), - [sym__local_statement] = STATE(2877), - [sym__labeled_statement] = STATE(2877), - [sym_for_statement] = STATE(2877), - [sym_while_statement] = STATE(2877), - [sym_repeat_while_statement] = STATE(2877), - [sym_control_transfer_statement] = STATE(2877), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2877), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [100] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(5759), - [sym_guard_statement] = STATE(5759), - [sym_switch_statement] = STATE(5759), - [sym_do_statement] = STATE(5759), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__local_statement] = STATE(5759), - [sym__labeled_statement] = STATE(5759), - [sym_for_statement] = STATE(5759), - [sym_while_statement] = STATE(5759), - [sym_repeat_while_statement] = STATE(5759), - [sym_control_transfer_statement] = STATE(5759), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(5759), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(247), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [101] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2877), - [sym_guard_statement] = STATE(2877), - [sym_switch_statement] = STATE(2877), - [sym_do_statement] = STATE(2877), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_statements] = STATE(2987), - [sym__local_statement] = STATE(2877), - [sym__labeled_statement] = STATE(2877), - [sym_for_statement] = STATE(2877), - [sym_while_statement] = STATE(2877), - [sym_repeat_while_statement] = STATE(2877), - [sym_control_transfer_statement] = STATE(2877), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2877), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [102] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(640), - [sym_boolean_literal] = STATE(640), - [sym__string_literal] = STATE(640), - [sym_line_string_literal] = STATE(640), - [sym_multi_line_string_literal] = STATE(640), - [sym_raw_string_literal] = STATE(640), - [sym_regex_literal] = STATE(640), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(640), - [sym__unary_expression] = STATE(640), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(640), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(640), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(640), - [sym_prefix_expression] = STATE(640), - [sym_as_expression] = STATE(640), - [sym_selector_expression] = STATE(640), - [sym__binary_expression] = STATE(640), - [sym_multiplicative_expression] = STATE(640), - [sym_additive_expression] = STATE(640), - [sym_range_expression] = STATE(640), - [sym_infix_expression] = STATE(640), - [sym_nil_coalescing_expression] = STATE(640), - [sym_check_expression] = STATE(640), - [sym_comparison_expression] = STATE(640), - [sym_equality_expression] = STATE(640), - [sym_conjunction_expression] = STATE(640), - [sym_disjunction_expression] = STATE(640), - [sym_bitwise_operation] = STATE(640), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(640), - [sym_await_expression] = STATE(640), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(640), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(640), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(640), - [sym_dictionary_literal] = STATE(640), - [sym__special_literal] = STATE(640), - [sym__playground_literal] = STATE(640), - [sym_lambda_literal] = STATE(640), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(640), - [sym_if_statement] = STATE(2942), - [sym_guard_statement] = STATE(2942), - [sym_switch_statement] = STATE(2942), - [sym_do_statement] = STATE(2942), - [sym_key_path_expression] = STATE(640), - [sym_key_path_string_expression] = STATE(640), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(640), - [sym__equality_operator] = STATE(640), - [sym__comparison_operator] = STATE(640), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(640), - [sym__multiplicative_operator] = STATE(640), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym__local_statement] = STATE(2942), - [sym__labeled_statement] = STATE(2942), - [sym_for_statement] = STATE(2942), - [sym_while_statement] = STATE(2942), - [sym_repeat_while_statement] = STATE(2942), - [sym_control_transfer_statement] = STATE(2942), - [sym__throw_statement] = STATE(2920), - [sym__optionally_valueful_control_keyword] = STATE(104), - [sym_assignment] = STATE(640), - [sym__local_declaration] = STATE(2942), - [sym__local_property_declaration] = STATE(2930), - [sym__local_typealias_declaration] = STATE(2934), - [sym__local_function_declaration] = STATE(2935), - [sym__local_class_declaration] = STATE(2944), - [sym__modifierless_property_declaration] = STATE(2952), - [sym__modifierless_typealias_declaration] = STATE(2953), - [sym__modifierless_function_declaration] = STATE(2904), - [sym__modifierless_function_declaration_no_body] = STATE(5471), - [sym__modifierless_class_declaration] = STATE(2916), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(640), - [sym__eq_eq] = STATE(640), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2976), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3466), - [aux_sym__locally_permitted_modifiers] = STATE(2976), - [sym__locally_permitted_modifier] = STATE(2976), - [sym_inheritance_modifier] = STATE(2976), - [sym_ownership_modifier] = STATE(2976), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(209), - [anon_sym_nil] = ACTIONS(211), - [sym_real_literal] = ACTIONS(213), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(213), - [sym_oct_literal] = ACTIONS(213), - [sym_bin_literal] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(211), - [anon_sym_POUNDfileID] = ACTIONS(213), - [anon_sym_POUNDfilePath] = ACTIONS(213), - [anon_sym_POUNDline] = ACTIONS(213), - [anon_sym_POUNDcolumn] = ACTIONS(213), - [anon_sym_POUNDfunction] = ACTIONS(213), - [anon_sym_POUNDdsohandle] = ACTIONS(213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_if] = ACTIONS(253), - [anon_sym_guard] = ACTIONS(255), - [anon_sym_switch] = ACTIONS(257), - [anon_sym_do] = ACTIONS(261), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(213), - [anon_sym_DASH_EQ] = ACTIONS(213), - [anon_sym_STAR_EQ] = ACTIONS(213), - [anon_sym_SLASH_EQ] = ACTIONS(213), - [anon_sym_PERCENT_EQ] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(213), - [anon_sym_CARET] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(213), - [anon_sym_GT_GT] = ACTIONS(213), - [sym_statement_label] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_while] = ACTIONS(281), - [anon_sym_repeat] = ACTIONS(283), - [sym_throw_keyword] = ACTIONS(285), - [anon_sym_return] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(287), - [anon_sym_break] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(287), - [anon_sym_typealias] = ACTIONS(289), - [anon_sym_struct] = ACTIONS(291), - [anon_sym_class] = ACTIONS(291), - [anon_sym_enum] = ACTIONS(293), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(295), - [anon_sym_indirect] = ACTIONS(297), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(213), - [sym__plus_then_ws] = ACTIONS(213), - [sym__minus_then_ws] = ACTIONS(213), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [103] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1203), - [sym_boolean_literal] = STATE(1203), - [sym__string_literal] = STATE(1203), - [sym_line_string_literal] = STATE(1203), - [sym_multi_line_string_literal] = STATE(1203), - [sym_raw_string_literal] = STATE(1203), - [sym_regex_literal] = STATE(1203), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(1203), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1203), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1203), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1203), - [sym_prefix_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_selector_expression] = STATE(1203), - [sym__binary_expression] = STATE(1203), - [sym_multiplicative_expression] = STATE(1203), - [sym_additive_expression] = STATE(1203), - [sym_range_expression] = STATE(1203), - [sym_infix_expression] = STATE(1203), - [sym_nil_coalescing_expression] = STATE(1203), - [sym_check_expression] = STATE(1203), - [sym_comparison_expression] = STATE(1203), - [sym_equality_expression] = STATE(1203), - [sym_conjunction_expression] = STATE(1203), - [sym_disjunction_expression] = STATE(1203), - [sym_bitwise_operation] = STATE(1203), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1203), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1203), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1203), - [sym_dictionary_literal] = STATE(1203), - [sym__special_literal] = STATE(1203), - [sym__playground_literal] = STATE(1203), - [sym_lambda_literal] = STATE(1203), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1203), - [sym_if_statement] = STATE(5759), - [sym_guard_statement] = STATE(5759), - [sym_switch_statement] = STATE(5759), - [sym_do_statement] = STATE(5759), - [sym_key_path_expression] = STATE(1203), - [sym_key_path_string_expression] = STATE(1203), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1203), - [sym__equality_operator] = STATE(1203), - [sym__comparison_operator] = STATE(1203), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1203), - [sym__multiplicative_operator] = STATE(1203), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym__local_statement] = STATE(5759), - [sym__labeled_statement] = STATE(5759), - [sym_for_statement] = STATE(5759), - [sym_while_statement] = STATE(5759), - [sym_repeat_while_statement] = STATE(5759), - [sym_control_transfer_statement] = STATE(5759), - [sym__throw_statement] = STATE(5414), - [sym__optionally_valueful_control_keyword] = STATE(204), - [sym_assignment] = STATE(1203), - [sym__local_declaration] = STATE(5759), - [sym__local_property_declaration] = STATE(5416), - [sym__local_typealias_declaration] = STATE(5419), - [sym__local_function_declaration] = STATE(5420), - [sym__local_class_declaration] = STATE(5421), - [sym__modifierless_property_declaration] = STATE(5426), - [sym__modifierless_typealias_declaration] = STATE(5430), - [sym__modifierless_function_declaration] = STATE(5431), - [sym__modifierless_function_declaration_no_body] = STATE(5443), - [sym__modifierless_class_declaration] = STATE(5447), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__referenceable_operator] = STATE(1203), - [sym__eq_eq] = STATE(1203), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym_attribute] = STATE(2975), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3470), - [aux_sym__locally_permitted_modifiers] = STATE(2975), - [sym__locally_permitted_modifier] = STATE(2975), - [sym_inheritance_modifier] = STATE(2975), - [sym_ownership_modifier] = STATE(2975), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(15), - [anon_sym_nil] = ACTIONS(149), - [sym_real_literal] = ACTIONS(151), - [sym_integer_literal] = ACTIONS(149), - [sym_hex_literal] = ACTIONS(151), - [sym_oct_literal] = ACTIONS(151), - [sym_bin_literal] = ACTIONS(151), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(149), - [anon_sym_POUNDfileID] = ACTIONS(151), - [anon_sym_POUNDfilePath] = ACTIONS(151), - [anon_sym_POUNDline] = ACTIONS(151), - [anon_sym_POUNDcolumn] = ACTIONS(151), - [anon_sym_POUNDfunction] = ACTIONS(151), - [anon_sym_POUNDdsohandle] = ACTIONS(151), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_guard] = ACTIONS(59), - [anon_sym_switch] = ACTIONS(61), - [anon_sym_do] = ACTIONS(63), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(151), - [anon_sym_DASH_EQ] = ACTIONS(151), - [anon_sym_STAR_EQ] = ACTIONS(151), - [anon_sym_SLASH_EQ] = ACTIONS(151), - [anon_sym_PERCENT_EQ] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ] = ACTIONS(149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_PERCENT] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_LT_LT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_statement_label] = ACTIONS(79), - [anon_sym_for] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_repeat] = ACTIONS(85), - [sym_throw_keyword] = ACTIONS(87), - [anon_sym_return] = ACTIONS(165), - [anon_sym_continue] = ACTIONS(165), - [anon_sym_break] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(165), - [anon_sym_typealias] = ACTIONS(91), - [anon_sym_struct] = ACTIONS(93), - [anon_sym_class] = ACTIONS(93), - [anon_sym_enum] = ACTIONS(97), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [anon_sym_func] = ACTIONS(103), - [anon_sym_extension] = ACTIONS(105), - [anon_sym_indirect] = ACTIONS(107), - [anon_sym_init] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(313), - [anon_sym_final] = ACTIONS(315), - [anon_sym_weak] = ACTIONS(317), - [anon_sym_unowned] = ACTIONS(317), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(319), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(319), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(151), - [sym__plus_then_ws] = ACTIONS(151), - [sym__minus_then_ws] = ACTIONS(151), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [104] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(639), - [sym_boolean_literal] = STATE(639), - [sym__string_literal] = STATE(639), - [sym_line_string_literal] = STATE(639), - [sym_multi_line_string_literal] = STATE(639), - [sym_raw_string_literal] = STATE(639), - [sym_regex_literal] = STATE(639), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(639), - [sym__unary_expression] = STATE(639), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(639), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(639), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(639), - [sym_prefix_expression] = STATE(639), - [sym_as_expression] = STATE(639), - [sym_selector_expression] = STATE(639), - [sym__binary_expression] = STATE(639), - [sym_multiplicative_expression] = STATE(639), - [sym_additive_expression] = STATE(639), - [sym_range_expression] = STATE(639), - [sym_infix_expression] = STATE(639), - [sym_nil_coalescing_expression] = STATE(639), - [sym_check_expression] = STATE(639), - [sym_comparison_expression] = STATE(639), - [sym_equality_expression] = STATE(639), - [sym_conjunction_expression] = STATE(639), - [sym_disjunction_expression] = STATE(639), - [sym_bitwise_operation] = STATE(639), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(639), - [sym_await_expression] = STATE(639), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(639), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(639), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(639), - [sym_dictionary_literal] = STATE(639), - [sym__special_literal] = STATE(639), - [sym__playground_literal] = STATE(639), - [sym_lambda_literal] = STATE(639), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(639), - [sym_key_path_expression] = STATE(639), - [sym_key_path_string_expression] = STATE(639), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(639), - [sym__equality_operator] = STATE(639), - [sym__comparison_operator] = STATE(639), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(639), - [sym__multiplicative_operator] = STATE(639), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(639), - [sym__referenceable_operator] = STATE(639), - [sym__eq_eq] = STATE(639), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(543), - [sym_real_literal] = ACTIONS(545), - [sym_integer_literal] = ACTIONS(543), - [sym_hex_literal] = ACTIONS(545), - [sym_oct_literal] = ACTIONS(545), - [sym_bin_literal] = ACTIONS(545), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(543), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(543), - [anon_sym_POUNDfileID] = ACTIONS(545), - [anon_sym_POUNDfilePath] = ACTIONS(545), - [anon_sym_POUNDline] = ACTIONS(545), - [anon_sym_POUNDcolumn] = ACTIONS(545), - [anon_sym_POUNDfunction] = ACTIONS(545), - [anon_sym_POUNDdsohandle] = ACTIONS(545), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_case] = ACTIONS(551), - [anon_sym_fallthrough] = ACTIONS(551), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(545), - [anon_sym_DASH_EQ] = ACTIONS(545), - [anon_sym_STAR_EQ] = ACTIONS(545), - [anon_sym_SLASH_EQ] = ACTIONS(545), - [anon_sym_PERCENT_EQ] = ACTIONS(545), - [anon_sym_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ] = ACTIONS(543), - [anon_sym_BANG_EQ_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(545), - [anon_sym_LT_EQ] = ACTIONS(545), - [anon_sym_GT_EQ] = ACTIONS(545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_class] = ACTIONS(551), - [anon_sym_prefix] = ACTIONS(551), - [anon_sym_infix] = ACTIONS(551), - [anon_sym_postfix] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(551), - [sym_property_behavior_modifier] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_convenience] = ACTIONS(551), - [anon_sym_required] = ACTIONS(551), - [anon_sym_nonisolated] = ACTIONS(551), - [anon_sym_public] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_internal] = ACTIONS(551), - [anon_sym_fileprivate] = ACTIONS(551), - [anon_sym_open] = ACTIONS(551), - [anon_sym_mutating] = ACTIONS(551), - [anon_sym_nonmutating] = ACTIONS(551), - [anon_sym_static] = ACTIONS(551), - [anon_sym_dynamic] = ACTIONS(551), - [anon_sym_optional] = ACTIONS(551), - [anon_sym_final] = ACTIONS(551), - [anon_sym_inout] = ACTIONS(551), - [anon_sym_ATescaping] = ACTIONS(549), - [anon_sym_ATautoclosure] = ACTIONS(549), - [anon_sym_weak] = ACTIONS(551), - [anon_sym_unowned] = ACTIONS(551), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(549), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(549), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__implicit_semi] = ACTIONS(549), - [sym__explicit_semi] = ACTIONS(549), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(545), - [sym__plus_then_ws] = ACTIONS(545), - [sym__minus_then_ws] = ACTIONS(545), - [sym_bang] = ACTIONS(275), - [sym_default_keyword] = ACTIONS(549), - [sym__custom_operator] = ACTIONS(239), - }, - [105] = { - [sym_simple_identifier] = STATE(1459), - [sym__basic_literal] = STATE(1173), - [sym_boolean_literal] = STATE(1173), - [sym__string_literal] = STATE(1173), - [sym_line_string_literal] = STATE(1173), - [sym_multi_line_string_literal] = STATE(1173), - [sym_raw_string_literal] = STATE(1173), - [sym_regex_literal] = STATE(1173), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1173), - [sym__unary_expression] = STATE(1173), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1173), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1173), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1173), - [sym_prefix_expression] = STATE(1173), - [sym_as_expression] = STATE(1173), - [sym_selector_expression] = STATE(1173), - [sym__binary_expression] = STATE(1173), - [sym_multiplicative_expression] = STATE(1173), - [sym_additive_expression] = STATE(1173), - [sym_range_expression] = STATE(1173), - [sym_infix_expression] = STATE(1173), - [sym_nil_coalescing_expression] = STATE(1173), - [sym_check_expression] = STATE(1173), - [sym_comparison_expression] = STATE(1173), - [sym_equality_expression] = STATE(1173), - [sym_conjunction_expression] = STATE(1173), - [sym_disjunction_expression] = STATE(1173), - [sym_bitwise_operation] = STATE(1173), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1173), - [sym_await_expression] = STATE(1173), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1173), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1173), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1173), - [sym_dictionary_literal] = STATE(1173), - [sym__dictionary_literal_item] = STATE(5390), - [sym__special_literal] = STATE(1173), - [sym__playground_literal] = STATE(1173), - [sym_lambda_literal] = STATE(1173), - [sym_capture_list_item] = STATE(5569), - [sym_self_expression] = STATE(1937), - [sym_super_expression] = STATE(1173), - [sym_key_path_expression] = STATE(1173), - [sym_key_path_string_expression] = STATE(1173), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1173), - [sym__equality_operator] = STATE(1173), - [sym__comparison_operator] = STATE(1173), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1173), - [sym__multiplicative_operator] = STATE(1173), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1173), - [sym__referenceable_operator] = STATE(1173), - [sym__eq_eq] = STATE(1173), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [sym_ownership_modifier] = STATE(4797), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(553), - [aux_sym_simple_identifier_token2] = ACTIONS(555), - [aux_sym_simple_identifier_token3] = ACTIONS(555), - [aux_sym_simple_identifier_token4] = ACTIONS(555), - [anon_sym_actor] = ACTIONS(553), - [anon_sym_nil] = ACTIONS(557), - [sym_real_literal] = ACTIONS(559), - [sym_integer_literal] = ACTIONS(557), - [sym_hex_literal] = ACTIONS(559), - [sym_oct_literal] = ACTIONS(559), - [sym_bin_literal] = ACTIONS(559), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(569), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(583), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(557), - [anon_sym_POUNDfileID] = ACTIONS(559), - [anon_sym_POUNDfilePath] = ACTIONS(559), - [anon_sym_POUNDline] = ACTIONS(559), - [anon_sym_POUNDcolumn] = ACTIONS(559), - [anon_sym_POUNDfunction] = ACTIONS(559), - [anon_sym_POUNDdsohandle] = ACTIONS(559), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(559), - [anon_sym_DASH_EQ] = ACTIONS(559), - [anon_sym_STAR_EQ] = ACTIONS(559), - [anon_sym_SLASH_EQ] = ACTIONS(559), - [anon_sym_PERCENT_EQ] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AT] = ACTIONS(621), - [anon_sym_weak] = ACTIONS(623), - [anon_sym_unowned] = ACTIONS(623), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(625), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(625), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(559), - [sym__plus_then_ws] = ACTIONS(559), - [sym__minus_then_ws] = ACTIONS(559), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [106] = { - [sym_simple_identifier] = STATE(1505), - [sym__basic_literal] = STATE(1265), - [sym_boolean_literal] = STATE(1265), - [sym__string_literal] = STATE(1265), - [sym_line_string_literal] = STATE(1265), - [sym_multi_line_string_literal] = STATE(1265), - [sym_raw_string_literal] = STATE(1265), - [sym_regex_literal] = STATE(1265), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(6146), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_tuple_type_item] = STATE(5557), - [sym__tuple_type_item_identifier] = STATE(2974), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(1265), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1265), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1265), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1265), - [sym_prefix_expression] = STATE(1265), - [sym_as_expression] = STATE(1265), - [sym_selector_expression] = STATE(1265), - [sym__binary_expression] = STATE(1265), - [sym_multiplicative_expression] = STATE(1265), - [sym_additive_expression] = STATE(1265), - [sym_range_expression] = STATE(1265), - [sym_infix_expression] = STATE(1265), - [sym_nil_coalescing_expression] = STATE(1265), - [sym_check_expression] = STATE(1265), - [sym_comparison_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_conjunction_expression] = STATE(1265), - [sym_disjunction_expression] = STATE(1265), - [sym_bitwise_operation] = STATE(1265), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1265), - [sym_await_expression] = STATE(1265), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1265), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1265), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1265), - [sym_dictionary_literal] = STATE(1265), - [sym__special_literal] = STATE(1265), - [sym__playground_literal] = STATE(1265), - [sym_lambda_literal] = STATE(1265), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1265), - [sym_key_path_expression] = STATE(1265), - [sym_key_path_string_expression] = STATE(1265), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1265), - [sym__equality_operator] = STATE(1265), - [sym__comparison_operator] = STATE(1265), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1265), - [sym__multiplicative_operator] = STATE(1265), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1265), - [sym__referenceable_operator] = STATE(1265), - [sym__eq_eq] = STATE(1265), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_parameter_modifiers] = STATE(3155), - [sym_type_modifiers] = STATE(3600), - [sym_parameter_modifier] = STATE(3896), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [aux_sym_parameter_modifiers_repeat1] = STATE(3896), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(633), - [sym_real_literal] = ACTIONS(635), - [sym_integer_literal] = ACTIONS(633), - [sym_hex_literal] = ACTIONS(635), - [sym_oct_literal] = ACTIONS(635), - [sym_bin_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(637), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(633), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(633), - [anon_sym_POUNDfileID] = ACTIONS(635), - [anon_sym_POUNDfilePath] = ACTIONS(635), - [anon_sym_POUNDline] = ACTIONS(635), - [anon_sym_POUNDcolumn] = ACTIONS(635), - [anon_sym_POUNDfunction] = ACTIONS(635), - [anon_sym_POUNDdsohandle] = ACTIONS(635), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(635), - [anon_sym_DASH_EQ] = ACTIONS(635), - [anon_sym_STAR_EQ] = ACTIONS(635), - [anon_sym_SLASH_EQ] = ACTIONS(635), - [anon_sym_PERCENT_EQ] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(635), - [anon_sym_EQ_EQ_EQ] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_PERCENT] = ACTIONS(633), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_CARET] = ACTIONS(633), - [anon_sym_LT_LT] = ACTIONS(635), - [anon_sym_GT_GT] = ACTIONS(635), - [anon_sym_AT] = ACTIONS(639), - [sym_wildcard_pattern] = ACTIONS(641), - [anon_sym_inout] = ACTIONS(643), - [anon_sym_ATescaping] = ACTIONS(645), - [anon_sym_ATautoclosure] = ACTIONS(645), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(635), - [sym__plus_then_ws] = ACTIONS(635), - [sym__minus_then_ws] = ACTIONS(635), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [107] = { - [sym_simple_identifier] = STATE(1538), - [sym__basic_literal] = STATE(1238), - [sym_boolean_literal] = STATE(1238), - [sym__string_literal] = STATE(1238), - [sym_line_string_literal] = STATE(1238), - [sym_multi_line_string_literal] = STATE(1238), - [sym_raw_string_literal] = STATE(1238), - [sym_regex_literal] = STATE(1238), - [sym__multiline_regex_literal] = STATE(736), - [sym__possibly_implicitly_unwrapped_type] = STATE(6251), - [sym__type] = STATE(4683), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(1238), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1238), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1238), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1238), - [sym_prefix_expression] = STATE(1238), - [sym_as_expression] = STATE(1238), - [sym_selector_expression] = STATE(1238), - [sym__binary_expression] = STATE(1238), - [sym_multiplicative_expression] = STATE(1238), - [sym_additive_expression] = STATE(1238), - [sym_range_expression] = STATE(1238), - [sym_infix_expression] = STATE(1238), - [sym_nil_coalescing_expression] = STATE(1238), - [sym_check_expression] = STATE(1238), - [sym_comparison_expression] = STATE(1238), - [sym_equality_expression] = STATE(1238), - [sym_conjunction_expression] = STATE(1238), - [sym_disjunction_expression] = STATE(1238), - [sym_bitwise_operation] = STATE(1238), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1238), - [sym_await_expression] = STATE(1238), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1238), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1238), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1238), - [sym_dictionary_literal] = STATE(1238), - [sym__special_literal] = STATE(1238), - [sym__playground_literal] = STATE(1238), - [sym_lambda_literal] = STATE(1238), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1238), - [sym_key_path_expression] = STATE(1238), - [sym_key_path_string_expression] = STATE(1238), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1238), - [sym__equality_operator] = STATE(1238), - [sym__comparison_operator] = STATE(1238), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1238), - [sym__multiplicative_operator] = STATE(1238), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1238), - [sym__referenceable_operator] = STATE(1238), - [sym__eq_eq] = STATE(1238), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_parameter_modifiers] = STATE(3124), - [sym_type_modifiers] = STATE(3600), - [sym_parameter_modifier] = STATE(3896), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [aux_sym_parameter_modifiers_repeat1] = STATE(3896), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(647), - [sym_real_literal] = ACTIONS(649), - [sym_integer_literal] = ACTIONS(647), - [sym_hex_literal] = ACTIONS(649), - [sym_oct_literal] = ACTIONS(649), - [sym_bin_literal] = ACTIONS(649), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(647), - [anon_sym_POUNDfileID] = ACTIONS(649), - [anon_sym_POUNDfilePath] = ACTIONS(649), - [anon_sym_POUNDline] = ACTIONS(649), - [anon_sym_POUNDcolumn] = ACTIONS(649), - [anon_sym_POUNDfunction] = ACTIONS(649), - [anon_sym_POUNDdsohandle] = ACTIONS(649), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_DASH_EQ] = ACTIONS(649), - [anon_sym_STAR_EQ] = ACTIONS(649), - [anon_sym_SLASH_EQ] = ACTIONS(649), - [anon_sym_PERCENT_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(649), - [anon_sym_LT_EQ] = ACTIONS(649), - [anon_sym_GT_EQ] = ACTIONS(649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(649), - [anon_sym_GT_GT] = ACTIONS(649), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_inout] = ACTIONS(643), - [anon_sym_ATescaping] = ACTIONS(645), - [anon_sym_ATautoclosure] = ACTIONS(645), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(649), - [sym__plus_then_ws] = ACTIONS(649), - [sym__minus_then_ws] = ACTIONS(649), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [108] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1183), - [sym_boolean_literal] = STATE(1183), - [sym__string_literal] = STATE(1183), - [sym_line_string_literal] = STATE(1183), - [sym_multi_line_string_literal] = STATE(1183), - [sym_raw_string_literal] = STATE(1183), - [sym_regex_literal] = STATE(1183), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1183), - [sym__unary_expression] = STATE(1183), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1183), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1183), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1183), - [sym_prefix_expression] = STATE(1183), - [sym_as_expression] = STATE(1183), - [sym_selector_expression] = STATE(1183), - [sym__binary_expression] = STATE(1183), - [sym_multiplicative_expression] = STATE(1183), - [sym_additive_expression] = STATE(1183), - [sym_range_expression] = STATE(1183), - [sym_infix_expression] = STATE(1183), - [sym_nil_coalescing_expression] = STATE(1183), - [sym_check_expression] = STATE(1183), - [sym_comparison_expression] = STATE(1183), - [sym_equality_expression] = STATE(1183), - [sym_conjunction_expression] = STATE(1183), - [sym_disjunction_expression] = STATE(1183), - [sym_bitwise_operation] = STATE(1183), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1183), - [sym_await_expression] = STATE(1183), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1183), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1183), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1183), - [sym_dictionary_literal] = STATE(1183), - [sym__dictionary_literal_item] = STATE(5395), - [sym__special_literal] = STATE(1183), - [sym__playground_literal] = STATE(1183), - [sym_lambda_literal] = STATE(1183), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1183), - [sym_key_path_expression] = STATE(1183), - [sym_key_path_string_expression] = STATE(1183), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1183), - [sym__equality_operator] = STATE(1183), - [sym__comparison_operator] = STATE(1183), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1183), - [sym__multiplicative_operator] = STATE(1183), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1183), - [sym__referenceable_operator] = STATE(1183), - [sym__eq_eq] = STATE(1183), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(651), - [sym_real_literal] = ACTIONS(653), - [sym_integer_literal] = ACTIONS(651), - [sym_hex_literal] = ACTIONS(653), - [sym_oct_literal] = ACTIONS(653), - [sym_bin_literal] = ACTIONS(653), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(655), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(659), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(651), - [anon_sym_POUNDfileID] = ACTIONS(653), - [anon_sym_POUNDfilePath] = ACTIONS(653), - [anon_sym_POUNDline] = ACTIONS(653), - [anon_sym_POUNDcolumn] = ACTIONS(653), - [anon_sym_POUNDfunction] = ACTIONS(653), - [anon_sym_POUNDdsohandle] = ACTIONS(653), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(653), - [anon_sym_DASH_EQ] = ACTIONS(653), - [anon_sym_STAR_EQ] = ACTIONS(653), - [anon_sym_SLASH_EQ] = ACTIONS(653), - [anon_sym_PERCENT_EQ] = ACTIONS(653), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ_EQ] = ACTIONS(653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_SLASH] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(651), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(653), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(653), - [sym__plus_then_ws] = ACTIONS(653), - [sym__minus_then_ws] = ACTIONS(653), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [109] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1173), - [sym_boolean_literal] = STATE(1173), - [sym__string_literal] = STATE(1173), - [sym_line_string_literal] = STATE(1173), - [sym_multi_line_string_literal] = STATE(1173), - [sym_raw_string_literal] = STATE(1173), - [sym_regex_literal] = STATE(1173), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1173), - [sym__unary_expression] = STATE(1173), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1173), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1173), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1173), - [sym_prefix_expression] = STATE(1173), - [sym_as_expression] = STATE(1173), - [sym_selector_expression] = STATE(1173), - [sym__binary_expression] = STATE(1173), - [sym_multiplicative_expression] = STATE(1173), - [sym_additive_expression] = STATE(1173), - [sym_range_expression] = STATE(1173), - [sym_infix_expression] = STATE(1173), - [sym_nil_coalescing_expression] = STATE(1173), - [sym_check_expression] = STATE(1173), - [sym_comparison_expression] = STATE(1173), - [sym_equality_expression] = STATE(1173), - [sym_conjunction_expression] = STATE(1173), - [sym_disjunction_expression] = STATE(1173), - [sym_bitwise_operation] = STATE(1173), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1173), - [sym_await_expression] = STATE(1173), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1173), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1173), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1173), - [sym_dictionary_literal] = STATE(1173), - [sym__dictionary_literal_item] = STATE(5390), - [sym__special_literal] = STATE(1173), - [sym__playground_literal] = STATE(1173), - [sym_lambda_literal] = STATE(1173), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1173), - [sym_key_path_expression] = STATE(1173), - [sym_key_path_string_expression] = STATE(1173), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1173), - [sym__equality_operator] = STATE(1173), - [sym__comparison_operator] = STATE(1173), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1173), - [sym__multiplicative_operator] = STATE(1173), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1173), - [sym__referenceable_operator] = STATE(1173), - [sym__eq_eq] = STATE(1173), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(557), - [sym_real_literal] = ACTIONS(559), - [sym_integer_literal] = ACTIONS(557), - [sym_hex_literal] = ACTIONS(559), - [sym_oct_literal] = ACTIONS(559), - [sym_bin_literal] = ACTIONS(559), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(569), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(583), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(557), - [anon_sym_POUNDfileID] = ACTIONS(559), - [anon_sym_POUNDfilePath] = ACTIONS(559), - [anon_sym_POUNDline] = ACTIONS(559), - [anon_sym_POUNDcolumn] = ACTIONS(559), - [anon_sym_POUNDfunction] = ACTIONS(559), - [anon_sym_POUNDdsohandle] = ACTIONS(559), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(559), - [anon_sym_DASH_EQ] = ACTIONS(559), - [anon_sym_STAR_EQ] = ACTIONS(559), - [anon_sym_SLASH_EQ] = ACTIONS(559), - [anon_sym_PERCENT_EQ] = ACTIONS(559), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(557), - [anon_sym_SLASH] = ACTIONS(557), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(559), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(559), - [sym__plus_then_ws] = ACTIONS(559), - [sym__minus_then_ws] = ACTIONS(559), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [110] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1185), - [sym_boolean_literal] = STATE(1185), - [sym__string_literal] = STATE(1185), - [sym_line_string_literal] = STATE(1185), - [sym_multi_line_string_literal] = STATE(1185), - [sym_raw_string_literal] = STATE(1185), - [sym_regex_literal] = STATE(1185), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1185), - [sym__unary_expression] = STATE(1185), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1185), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1185), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1185), - [sym_prefix_expression] = STATE(1185), - [sym_as_expression] = STATE(1185), - [sym_selector_expression] = STATE(1185), - [sym__binary_expression] = STATE(1185), - [sym_multiplicative_expression] = STATE(1185), - [sym_additive_expression] = STATE(1185), - [sym_range_expression] = STATE(1185), - [sym_infix_expression] = STATE(1185), - [sym_nil_coalescing_expression] = STATE(1185), - [sym_check_expression] = STATE(1185), - [sym_comparison_expression] = STATE(1185), - [sym_equality_expression] = STATE(1185), - [sym_conjunction_expression] = STATE(1185), - [sym_disjunction_expression] = STATE(1185), - [sym_bitwise_operation] = STATE(1185), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1185), - [sym_await_expression] = STATE(1185), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1185), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1185), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1185), - [sym_dictionary_literal] = STATE(1185), - [sym__dictionary_literal_item] = STATE(5626), - [sym__special_literal] = STATE(1185), - [sym__playground_literal] = STATE(1185), - [sym_lambda_literal] = STATE(1185), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1185), - [sym_key_path_expression] = STATE(1185), - [sym_key_path_string_expression] = STATE(1185), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1185), - [sym__equality_operator] = STATE(1185), - [sym__comparison_operator] = STATE(1185), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1185), - [sym__multiplicative_operator] = STATE(1185), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1185), - [sym__referenceable_operator] = STATE(1185), - [sym__eq_eq] = STATE(1185), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(661), - [sym_real_literal] = ACTIONS(663), - [sym_integer_literal] = ACTIONS(661), - [sym_hex_literal] = ACTIONS(663), - [sym_oct_literal] = ACTIONS(663), - [sym_bin_literal] = ACTIONS(663), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(665), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(661), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(661), - [anon_sym_POUNDfileID] = ACTIONS(663), - [anon_sym_POUNDfilePath] = ACTIONS(663), - [anon_sym_POUNDline] = ACTIONS(663), - [anon_sym_POUNDcolumn] = ACTIONS(663), - [anon_sym_POUNDfunction] = ACTIONS(663), - [anon_sym_POUNDdsohandle] = ACTIONS(663), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(663), - [anon_sym_DASH_EQ] = ACTIONS(663), - [anon_sym_STAR_EQ] = ACTIONS(663), - [anon_sym_SLASH_EQ] = ACTIONS(663), - [anon_sym_PERCENT_EQ] = ACTIONS(663), - [anon_sym_EQ] = ACTIONS(661), - [anon_sym_BANG_EQ] = ACTIONS(661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ_EQ] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(661), - [anon_sym_PERCENT] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_CARET] = ACTIONS(661), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(663), - [sym__plus_then_ws] = ACTIONS(663), - [sym__minus_then_ws] = ACTIONS(663), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [111] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1165), - [sym_boolean_literal] = STATE(1165), - [sym__string_literal] = STATE(1165), - [sym_line_string_literal] = STATE(1165), - [sym_multi_line_string_literal] = STATE(1165), - [sym_raw_string_literal] = STATE(1165), - [sym_regex_literal] = STATE(1165), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1165), - [sym__unary_expression] = STATE(1165), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1165), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1165), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1165), - [sym_prefix_expression] = STATE(1165), - [sym_as_expression] = STATE(1165), - [sym_selector_expression] = STATE(1165), - [sym__binary_expression] = STATE(1165), - [sym_multiplicative_expression] = STATE(1165), - [sym_additive_expression] = STATE(1165), - [sym_range_expression] = STATE(1165), - [sym_infix_expression] = STATE(1165), - [sym_nil_coalescing_expression] = STATE(1165), - [sym_check_expression] = STATE(1165), - [sym_comparison_expression] = STATE(1165), - [sym_equality_expression] = STATE(1165), - [sym_conjunction_expression] = STATE(1165), - [sym_disjunction_expression] = STATE(1165), - [sym_bitwise_operation] = STATE(1165), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1165), - [sym_await_expression] = STATE(1165), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1165), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1165), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1165), - [sym_dictionary_literal] = STATE(1165), - [sym__dictionary_literal_item] = STATE(5361), - [sym__special_literal] = STATE(1165), - [sym__playground_literal] = STATE(1165), - [sym_lambda_literal] = STATE(1165), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1165), - [sym_key_path_expression] = STATE(1165), - [sym_key_path_string_expression] = STATE(1165), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1165), - [sym__equality_operator] = STATE(1165), - [sym__comparison_operator] = STATE(1165), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1165), - [sym__multiplicative_operator] = STATE(1165), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1165), - [sym__referenceable_operator] = STATE(1165), - [sym__eq_eq] = STATE(1165), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(671), - [sym_real_literal] = ACTIONS(673), - [sym_integer_literal] = ACTIONS(671), - [sym_hex_literal] = ACTIONS(673), - [sym_oct_literal] = ACTIONS(673), - [sym_bin_literal] = ACTIONS(673), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(675), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(679), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(671), - [anon_sym_GT] = ACTIONS(671), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(671), - [anon_sym_POUNDfileID] = ACTIONS(673), - [anon_sym_POUNDfilePath] = ACTIONS(673), - [anon_sym_POUNDline] = ACTIONS(673), - [anon_sym_POUNDcolumn] = ACTIONS(673), - [anon_sym_POUNDfunction] = ACTIONS(673), - [anon_sym_POUNDdsohandle] = ACTIONS(673), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(673), - [anon_sym_DASH_EQ] = ACTIONS(673), - [anon_sym_STAR_EQ] = ACTIONS(673), - [anon_sym_SLASH_EQ] = ACTIONS(673), - [anon_sym_PERCENT_EQ] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(673), - [anon_sym_LT_EQ] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(671), - [anon_sym_SLASH] = ACTIONS(671), - [anon_sym_PERCENT] = ACTIONS(671), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_CARET] = ACTIONS(671), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(673), - [sym__plus_then_ws] = ACTIONS(673), - [sym__minus_then_ws] = ACTIONS(673), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [112] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1170), - [sym_boolean_literal] = STATE(1170), - [sym__string_literal] = STATE(1170), - [sym_line_string_literal] = STATE(1170), - [sym_multi_line_string_literal] = STATE(1170), - [sym_raw_string_literal] = STATE(1170), - [sym_regex_literal] = STATE(1170), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1170), - [sym__unary_expression] = STATE(1170), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1170), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1170), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1170), - [sym_prefix_expression] = STATE(1170), - [sym_as_expression] = STATE(1170), - [sym_selector_expression] = STATE(1170), - [sym__binary_expression] = STATE(1170), - [sym_multiplicative_expression] = STATE(1170), - [sym_additive_expression] = STATE(1170), - [sym_range_expression] = STATE(1170), - [sym_infix_expression] = STATE(1170), - [sym_nil_coalescing_expression] = STATE(1170), - [sym_check_expression] = STATE(1170), - [sym_comparison_expression] = STATE(1170), - [sym_equality_expression] = STATE(1170), - [sym_conjunction_expression] = STATE(1170), - [sym_disjunction_expression] = STATE(1170), - [sym_bitwise_operation] = STATE(1170), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1170), - [sym_await_expression] = STATE(1170), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1170), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1170), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1170), - [sym_dictionary_literal] = STATE(1170), - [sym__dictionary_literal_item] = STATE(5469), - [sym__special_literal] = STATE(1170), - [sym__playground_literal] = STATE(1170), - [sym_lambda_literal] = STATE(1170), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1170), - [sym_key_path_expression] = STATE(1170), - [sym_key_path_string_expression] = STATE(1170), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1170), - [sym__equality_operator] = STATE(1170), - [sym__comparison_operator] = STATE(1170), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1170), - [sym__multiplicative_operator] = STATE(1170), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1170), - [sym__referenceable_operator] = STATE(1170), - [sym__eq_eq] = STATE(1170), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(681), - [sym_real_literal] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(681), - [sym_hex_literal] = ACTIONS(683), - [sym_oct_literal] = ACTIONS(683), - [sym_bin_literal] = ACTIONS(683), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(685), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(681), - [anon_sym_POUNDfileID] = ACTIONS(683), - [anon_sym_POUNDfilePath] = ACTIONS(683), - [anon_sym_POUNDline] = ACTIONS(683), - [anon_sym_POUNDcolumn] = ACTIONS(683), - [anon_sym_POUNDfunction] = ACTIONS(683), - [anon_sym_POUNDdsohandle] = ACTIONS(683), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(683), - [anon_sym_DASH_EQ] = ACTIONS(683), - [anon_sym_STAR_EQ] = ACTIONS(683), - [anon_sym_SLASH_EQ] = ACTIONS(683), - [anon_sym_PERCENT_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(683), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_PERCENT] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_LT_LT] = ACTIONS(683), - [anon_sym_GT_GT] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(683), - [sym__plus_then_ws] = ACTIONS(683), - [sym__minus_then_ws] = ACTIONS(683), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [113] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1170), - [sym_boolean_literal] = STATE(1170), - [sym__string_literal] = STATE(1170), - [sym_line_string_literal] = STATE(1170), - [sym_multi_line_string_literal] = STATE(1170), - [sym_raw_string_literal] = STATE(1170), - [sym_regex_literal] = STATE(1170), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(6133), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1170), - [sym__unary_expression] = STATE(1170), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1170), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1170), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1170), - [sym_prefix_expression] = STATE(1170), - [sym_as_expression] = STATE(1170), - [sym_selector_expression] = STATE(1170), - [sym__binary_expression] = STATE(1170), - [sym_multiplicative_expression] = STATE(1170), - [sym_additive_expression] = STATE(1170), - [sym_range_expression] = STATE(1170), - [sym_infix_expression] = STATE(1170), - [sym_nil_coalescing_expression] = STATE(1170), - [sym_check_expression] = STATE(1170), - [sym_comparison_expression] = STATE(1170), - [sym_equality_expression] = STATE(1170), - [sym_conjunction_expression] = STATE(1170), - [sym_disjunction_expression] = STATE(1170), - [sym_bitwise_operation] = STATE(1170), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1170), - [sym_await_expression] = STATE(1170), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1170), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1170), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1170), - [sym_dictionary_literal] = STATE(1170), - [sym__dictionary_literal_item] = STATE(5469), - [sym__special_literal] = STATE(1170), - [sym__playground_literal] = STATE(1170), - [sym_lambda_literal] = STATE(1170), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1170), - [sym_key_path_expression] = STATE(1170), - [sym_key_path_string_expression] = STATE(1170), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1170), - [sym__equality_operator] = STATE(1170), - [sym__comparison_operator] = STATE(1170), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1170), - [sym__multiplicative_operator] = STATE(1170), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1170), - [sym__referenceable_operator] = STATE(1170), - [sym__eq_eq] = STATE(1170), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(681), - [sym_real_literal] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(681), - [sym_hex_literal] = ACTIONS(683), - [sym_oct_literal] = ACTIONS(683), - [sym_bin_literal] = ACTIONS(683), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(685), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(681), - [anon_sym_POUNDfileID] = ACTIONS(683), - [anon_sym_POUNDfilePath] = ACTIONS(683), - [anon_sym_POUNDline] = ACTIONS(683), - [anon_sym_POUNDcolumn] = ACTIONS(683), - [anon_sym_POUNDfunction] = ACTIONS(683), - [anon_sym_POUNDdsohandle] = ACTIONS(683), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(683), - [anon_sym_DASH_EQ] = ACTIONS(683), - [anon_sym_STAR_EQ] = ACTIONS(683), - [anon_sym_SLASH_EQ] = ACTIONS(683), - [anon_sym_PERCENT_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_BANG_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(683), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(681), - [anon_sym_SLASH] = ACTIONS(681), - [anon_sym_PERCENT] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_LT_LT] = ACTIONS(683), - [anon_sym_GT_GT] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(683), - [sym__plus_then_ws] = ACTIONS(683), - [sym__minus_then_ws] = ACTIONS(683), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [114] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1182), - [sym_boolean_literal] = STATE(1182), - [sym__string_literal] = STATE(1182), - [sym_line_string_literal] = STATE(1182), - [sym_multi_line_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_regex_literal] = STATE(1182), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1182), - [sym__unary_expression] = STATE(1182), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1182), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1182), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1182), - [sym_prefix_expression] = STATE(1182), - [sym_as_expression] = STATE(1182), - [sym_selector_expression] = STATE(1182), - [sym__binary_expression] = STATE(1182), - [sym_multiplicative_expression] = STATE(1182), - [sym_additive_expression] = STATE(1182), - [sym_range_expression] = STATE(1182), - [sym_infix_expression] = STATE(1182), - [sym_nil_coalescing_expression] = STATE(1182), - [sym_check_expression] = STATE(1182), - [sym_comparison_expression] = STATE(1182), - [sym_equality_expression] = STATE(1182), - [sym_conjunction_expression] = STATE(1182), - [sym_disjunction_expression] = STATE(1182), - [sym_bitwise_operation] = STATE(1182), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1182), - [sym_await_expression] = STATE(1182), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1182), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1182), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1182), - [sym_dictionary_literal] = STATE(1182), - [sym__dictionary_literal_item] = STATE(5256), - [sym__special_literal] = STATE(1182), - [sym__playground_literal] = STATE(1182), - [sym_lambda_literal] = STATE(1182), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1182), - [sym_key_path_expression] = STATE(1182), - [sym_key_path_string_expression] = STATE(1182), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1182), - [sym__equality_operator] = STATE(1182), - [sym__comparison_operator] = STATE(1182), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1182), - [sym__multiplicative_operator] = STATE(1182), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1182), - [sym__referenceable_operator] = STATE(1182), - [sym__eq_eq] = STATE(1182), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(691), - [sym_real_literal] = ACTIONS(693), - [sym_integer_literal] = ACTIONS(691), - [sym_hex_literal] = ACTIONS(693), - [sym_oct_literal] = ACTIONS(693), - [sym_bin_literal] = ACTIONS(693), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(695), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(697), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(691), - [anon_sym_GT] = ACTIONS(691), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(691), - [anon_sym_POUNDfileID] = ACTIONS(693), - [anon_sym_POUNDfilePath] = ACTIONS(693), - [anon_sym_POUNDline] = ACTIONS(693), - [anon_sym_POUNDcolumn] = ACTIONS(693), - [anon_sym_POUNDfunction] = ACTIONS(693), - [anon_sym_POUNDdsohandle] = ACTIONS(693), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(693), - [anon_sym_STAR_EQ] = ACTIONS(693), - [anon_sym_SLASH_EQ] = ACTIONS(693), - [anon_sym_PERCENT_EQ] = ACTIONS(693), - [anon_sym_EQ] = ACTIONS(691), - [anon_sym_BANG_EQ] = ACTIONS(691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(693), - [anon_sym_LT_EQ] = ACTIONS(693), - [anon_sym_GT_EQ] = ACTIONS(693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_PERCENT] = ACTIONS(691), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(693), - [anon_sym_CARET] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(693), - [anon_sym_GT_GT] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(693), - [sym__plus_then_ws] = ACTIONS(693), - [sym__minus_then_ws] = ACTIONS(693), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [115] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1174), - [sym_boolean_literal] = STATE(1174), - [sym__string_literal] = STATE(1174), - [sym_line_string_literal] = STATE(1174), - [sym_multi_line_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_regex_literal] = STATE(1174), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1174), - [sym__unary_expression] = STATE(1174), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1174), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1174), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1174), - [sym_prefix_expression] = STATE(1174), - [sym_as_expression] = STATE(1174), - [sym_selector_expression] = STATE(1174), - [sym__binary_expression] = STATE(1174), - [sym_multiplicative_expression] = STATE(1174), - [sym_additive_expression] = STATE(1174), - [sym_range_expression] = STATE(1174), - [sym_infix_expression] = STATE(1174), - [sym_nil_coalescing_expression] = STATE(1174), - [sym_check_expression] = STATE(1174), - [sym_comparison_expression] = STATE(1174), - [sym_equality_expression] = STATE(1174), - [sym_conjunction_expression] = STATE(1174), - [sym_disjunction_expression] = STATE(1174), - [sym_bitwise_operation] = STATE(1174), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1174), - [sym_await_expression] = STATE(1174), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1174), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1174), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1174), - [sym_dictionary_literal] = STATE(1174), - [sym__dictionary_literal_item] = STATE(5654), - [sym__special_literal] = STATE(1174), - [sym__playground_literal] = STATE(1174), - [sym_lambda_literal] = STATE(1174), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1174), - [sym_key_path_expression] = STATE(1174), - [sym_key_path_string_expression] = STATE(1174), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1174), - [sym__equality_operator] = STATE(1174), - [sym__comparison_operator] = STATE(1174), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1174), - [sym__multiplicative_operator] = STATE(1174), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1174), - [sym__referenceable_operator] = STATE(1174), - [sym__eq_eq] = STATE(1174), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(701), - [sym_real_literal] = ACTIONS(703), - [sym_integer_literal] = ACTIONS(701), - [sym_hex_literal] = ACTIONS(703), - [sym_oct_literal] = ACTIONS(703), - [sym_bin_literal] = ACTIONS(703), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(705), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(701), - [anon_sym_GT] = ACTIONS(701), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(701), - [anon_sym_POUNDfileID] = ACTIONS(703), - [anon_sym_POUNDfilePath] = ACTIONS(703), - [anon_sym_POUNDline] = ACTIONS(703), - [anon_sym_POUNDcolumn] = ACTIONS(703), - [anon_sym_POUNDfunction] = ACTIONS(703), - [anon_sym_POUNDdsohandle] = ACTIONS(703), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(703), - [anon_sym_DASH_EQ] = ACTIONS(703), - [anon_sym_STAR_EQ] = ACTIONS(703), - [anon_sym_SLASH_EQ] = ACTIONS(703), - [anon_sym_PERCENT_EQ] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(703), - [anon_sym_EQ_EQ_EQ] = ACTIONS(703), - [anon_sym_LT_EQ] = ACTIONS(703), - [anon_sym_GT_EQ] = ACTIONS(703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(701), - [anon_sym_SLASH] = ACTIONS(701), - [anon_sym_PERCENT] = ACTIONS(701), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(703), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_LT_LT] = ACTIONS(703), - [anon_sym_GT_GT] = ACTIONS(703), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(703), - [sym__plus_then_ws] = ACTIONS(703), - [sym__minus_then_ws] = ACTIONS(703), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [116] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1180), - [sym_boolean_literal] = STATE(1180), - [sym__string_literal] = STATE(1180), - [sym_line_string_literal] = STATE(1180), - [sym_multi_line_string_literal] = STATE(1180), - [sym_raw_string_literal] = STATE(1180), - [sym_regex_literal] = STATE(1180), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1180), - [sym__unary_expression] = STATE(1180), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1180), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1180), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1180), - [sym_prefix_expression] = STATE(1180), - [sym_as_expression] = STATE(1180), - [sym_selector_expression] = STATE(1180), - [sym__binary_expression] = STATE(1180), - [sym_multiplicative_expression] = STATE(1180), - [sym_additive_expression] = STATE(1180), - [sym_range_expression] = STATE(1180), - [sym_infix_expression] = STATE(1180), - [sym_nil_coalescing_expression] = STATE(1180), - [sym_check_expression] = STATE(1180), - [sym_comparison_expression] = STATE(1180), - [sym_equality_expression] = STATE(1180), - [sym_conjunction_expression] = STATE(1180), - [sym_disjunction_expression] = STATE(1180), - [sym_bitwise_operation] = STATE(1180), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1180), - [sym_await_expression] = STATE(1180), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1180), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1180), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1180), - [sym_dictionary_literal] = STATE(1180), - [sym__dictionary_literal_item] = STATE(5882), - [sym__special_literal] = STATE(1180), - [sym__playground_literal] = STATE(1180), - [sym_lambda_literal] = STATE(1180), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1180), - [sym_key_path_expression] = STATE(1180), - [sym_key_path_string_expression] = STATE(1180), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1180), - [sym__equality_operator] = STATE(1180), - [sym__comparison_operator] = STATE(1180), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1180), - [sym__multiplicative_operator] = STATE(1180), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1180), - [sym__referenceable_operator] = STATE(1180), - [sym__eq_eq] = STATE(1180), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(711), - [sym_real_literal] = ACTIONS(713), - [sym_integer_literal] = ACTIONS(711), - [sym_hex_literal] = ACTIONS(713), - [sym_oct_literal] = ACTIONS(713), - [sym_bin_literal] = ACTIONS(713), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(715), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(719), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(711), - [anon_sym_GT] = ACTIONS(711), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(711), - [anon_sym_POUNDfileID] = ACTIONS(713), - [anon_sym_POUNDfilePath] = ACTIONS(713), - [anon_sym_POUNDline] = ACTIONS(713), - [anon_sym_POUNDcolumn] = ACTIONS(713), - [anon_sym_POUNDfunction] = ACTIONS(713), - [anon_sym_POUNDdsohandle] = ACTIONS(713), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(713), - [anon_sym_DASH_EQ] = ACTIONS(713), - [anon_sym_STAR_EQ] = ACTIONS(713), - [anon_sym_SLASH_EQ] = ACTIONS(713), - [anon_sym_PERCENT_EQ] = ACTIONS(713), - [anon_sym_EQ] = ACTIONS(711), - [anon_sym_BANG_EQ] = ACTIONS(711), - [anon_sym_BANG_EQ_EQ] = ACTIONS(713), - [anon_sym_EQ_EQ_EQ] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(713), - [anon_sym_GT_EQ] = ACTIONS(713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_SLASH] = ACTIONS(711), - [anon_sym_PERCENT] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(711), - [anon_sym_LT_LT] = ACTIONS(713), - [anon_sym_GT_GT] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(713), - [sym__plus_then_ws] = ACTIONS(713), - [sym__minus_then_ws] = ACTIONS(713), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [117] = { - [sym_simple_identifier] = STATE(1515), - [sym__basic_literal] = STATE(1194), - [sym_boolean_literal] = STATE(1194), - [sym__string_literal] = STATE(1194), - [sym_line_string_literal] = STATE(1194), - [sym_multi_line_string_literal] = STATE(1194), - [sym_raw_string_literal] = STATE(1194), - [sym_regex_literal] = STATE(1194), - [sym__multiline_regex_literal] = STATE(736), - [sym__type] = STATE(5951), - [sym__unannotated_type] = STATE(3727), - [sym_user_type] = STATE(3668), - [sym__simple_user_type] = STATE(3725), - [sym_tuple_type] = STATE(3697), - [sym_function_type] = STATE(3727), - [sym_array_type] = STATE(3668), - [sym_dictionary_type] = STATE(3668), - [sym_optional_type] = STATE(3727), - [sym_metatype] = STATE(3727), - [sym_opaque_type] = STATE(3727), - [sym_existential_type] = STATE(3727), - [sym_protocol_composition_type] = STATE(3727), - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(1194), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1194), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1194), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1194), - [sym_prefix_expression] = STATE(1194), - [sym_as_expression] = STATE(1194), - [sym_selector_expression] = STATE(1194), - [sym__binary_expression] = STATE(1194), - [sym_multiplicative_expression] = STATE(1194), - [sym_additive_expression] = STATE(1194), - [sym_range_expression] = STATE(1194), - [sym_infix_expression] = STATE(1194), - [sym_nil_coalescing_expression] = STATE(1194), - [sym_check_expression] = STATE(1194), - [sym_comparison_expression] = STATE(1194), - [sym_equality_expression] = STATE(1194), - [sym_conjunction_expression] = STATE(1194), - [sym_disjunction_expression] = STATE(1194), - [sym_bitwise_operation] = STATE(1194), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1194), - [sym_await_expression] = STATE(1194), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1194), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1194), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1194), - [sym_dictionary_literal] = STATE(1194), - [sym__dictionary_literal_item] = STATE(5322), - [sym__special_literal] = STATE(1194), - [sym__playground_literal] = STATE(1194), - [sym_lambda_literal] = STATE(1194), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1194), - [sym_key_path_expression] = STATE(1194), - [sym_key_path_string_expression] = STATE(1194), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1194), - [sym__equality_operator] = STATE(1194), - [sym__comparison_operator] = STATE(1194), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1194), - [sym__multiplicative_operator] = STATE(1194), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1194), - [sym__referenceable_operator] = STATE(1194), - [sym__eq_eq] = STATE(1194), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(4208), - [sym_type_modifiers] = STATE(3600), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__lambda_type_declaration_repeat1] = STATE(4208), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(629), - [aux_sym_simple_identifier_token2] = ACTIONS(631), - [aux_sym_simple_identifier_token3] = ACTIONS(631), - [aux_sym_simple_identifier_token4] = ACTIONS(631), - [anon_sym_actor] = ACTIONS(629), - [anon_sym_nil] = ACTIONS(721), - [sym_real_literal] = ACTIONS(723), - [sym_integer_literal] = ACTIONS(721), - [sym_hex_literal] = ACTIONS(723), - [sym_oct_literal] = ACTIONS(723), - [sym_bin_literal] = ACTIONS(723), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(725), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(727), - [anon_sym_LPAREN] = ACTIONS(579), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_some] = ACTIONS(585), - [anon_sym_any] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(721), - [anon_sym_GT] = ACTIONS(721), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(721), - [anon_sym_POUNDfileID] = ACTIONS(723), - [anon_sym_POUNDfilePath] = ACTIONS(723), - [anon_sym_POUNDline] = ACTIONS(723), - [anon_sym_POUNDcolumn] = ACTIONS(723), - [anon_sym_POUNDfunction] = ACTIONS(723), - [anon_sym_POUNDdsohandle] = ACTIONS(723), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(723), - [anon_sym_DASH_EQ] = ACTIONS(723), - [anon_sym_STAR_EQ] = ACTIONS(723), - [anon_sym_SLASH_EQ] = ACTIONS(723), - [anon_sym_PERCENT_EQ] = ACTIONS(723), - [anon_sym_EQ] = ACTIONS(721), - [anon_sym_BANG_EQ] = ACTIONS(721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(723), - [anon_sym_EQ_EQ_EQ] = ACTIONS(723), - [anon_sym_LT_EQ] = ACTIONS(723), - [anon_sym_GT_EQ] = ACTIONS(723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_SLASH] = ACTIONS(721), - [anon_sym_PERCENT] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(721), - [anon_sym_LT_LT] = ACTIONS(723), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(723), - [sym__plus_then_ws] = ACTIONS(723), - [sym__minus_then_ws] = ACTIONS(723), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [118] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5684), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [119] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5383), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [120] = { - [sym_simple_identifier] = STATE(1783), - [sym__basic_literal] = STATE(1204), - [sym_boolean_literal] = STATE(1204), - [sym__string_literal] = STATE(1204), - [sym_line_string_literal] = STATE(1204), - [sym_multi_line_string_literal] = STATE(1204), - [sym_raw_string_literal] = STATE(1204), - [sym_regex_literal] = STATE(1204), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(1204), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1204), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1204), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1204), - [sym_prefix_expression] = STATE(1204), - [sym_as_expression] = STATE(1204), - [sym_selector_expression] = STATE(1204), - [sym__binary_expression] = STATE(1204), - [sym_multiplicative_expression] = STATE(1204), - [sym_additive_expression] = STATE(1204), - [sym_range_expression] = STATE(1204), - [sym_infix_expression] = STATE(1204), - [sym_nil_coalescing_expression] = STATE(1204), - [sym_check_expression] = STATE(1204), - [sym_comparison_expression] = STATE(1204), - [sym_equality_expression] = STATE(1204), - [sym_conjunction_expression] = STATE(1204), - [sym_disjunction_expression] = STATE(1204), - [sym_bitwise_operation] = STATE(1204), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1204), - [sym_await_expression] = STATE(1204), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1204), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1204), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1204), - [sym_dictionary_literal] = STATE(1204), - [sym__special_literal] = STATE(1204), - [sym__playground_literal] = STATE(1204), - [sym_lambda_literal] = STATE(1204), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1204), - [sym_key_path_expression] = STATE(1204), - [sym_key_path_string_expression] = STATE(1204), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1204), - [sym__equality_operator] = STATE(1204), - [sym__comparison_operator] = STATE(1204), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1204), - [sym__multiplicative_operator] = STATE(1204), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1204), - [sym__referenceable_operator] = STATE(1204), - [sym__eq_eq] = STATE(1204), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5607), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(751), - [sym_real_literal] = ACTIONS(753), - [sym_integer_literal] = ACTIONS(751), - [sym_hex_literal] = ACTIONS(753), - [sym_oct_literal] = ACTIONS(753), - [sym_bin_literal] = ACTIONS(753), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(751), - [anon_sym_GT] = ACTIONS(751), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(751), - [anon_sym_POUNDfileID] = ACTIONS(753), - [anon_sym_POUNDfilePath] = ACTIONS(753), - [anon_sym_POUNDline] = ACTIONS(753), - [anon_sym_POUNDcolumn] = ACTIONS(753), - [anon_sym_POUNDfunction] = ACTIONS(753), - [anon_sym_POUNDdsohandle] = ACTIONS(753), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(753), - [anon_sym_DASH_EQ] = ACTIONS(753), - [anon_sym_STAR_EQ] = ACTIONS(753), - [anon_sym_SLASH_EQ] = ACTIONS(753), - [anon_sym_PERCENT_EQ] = ACTIONS(753), - [anon_sym_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ] = ACTIONS(751), - [anon_sym_BANG_EQ_EQ] = ACTIONS(753), - [anon_sym_EQ_EQ_EQ] = ACTIONS(753), - [anon_sym_LT_EQ] = ACTIONS(753), - [anon_sym_GT_EQ] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_PERCENT] = ACTIONS(751), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(753), - [anon_sym_CARET] = ACTIONS(751), - [anon_sym_LT_LT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(753), - [sym__plus_then_ws] = ACTIONS(753), - [sym__minus_then_ws] = ACTIONS(753), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [121] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5278), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [122] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5607), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [123] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(6235), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [124] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5567), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [125] = { - [sym_simple_identifier] = STATE(1807), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_switch_pattern] = STATE(6106), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(5974), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [126] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5675), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [127] = { - [sym_simple_identifier] = STATE(1817), - [sym__basic_literal] = STATE(1227), - [sym_boolean_literal] = STATE(1227), - [sym__string_literal] = STATE(1227), - [sym_line_string_literal] = STATE(1227), - [sym_multi_line_string_literal] = STATE(1227), - [sym_raw_string_literal] = STATE(1227), - [sym_regex_literal] = STATE(1227), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4344), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(1227), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1227), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1227), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1227), - [sym_prefix_expression] = STATE(1227), - [sym_as_expression] = STATE(1227), - [sym_selector_expression] = STATE(1227), - [sym__binary_expression] = STATE(1227), - [sym_multiplicative_expression] = STATE(1227), - [sym_additive_expression] = STATE(1227), - [sym_range_expression] = STATE(1227), - [sym_infix_expression] = STATE(1227), - [sym_nil_coalescing_expression] = STATE(1227), - [sym_check_expression] = STATE(1227), - [sym_comparison_expression] = STATE(1227), - [sym_equality_expression] = STATE(1227), - [sym_conjunction_expression] = STATE(1227), - [sym_disjunction_expression] = STATE(1227), - [sym_bitwise_operation] = STATE(1227), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1227), - [sym_await_expression] = STATE(1227), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1227), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1227), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1227), - [sym_dictionary_literal] = STATE(1227), - [sym__special_literal] = STATE(1227), - [sym__playground_literal] = STATE(1227), - [sym_lambda_literal] = STATE(1227), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1227), - [sym_switch_pattern] = STATE(5064), - [sym_key_path_expression] = STATE(1227), - [sym_key_path_string_expression] = STATE(1227), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1227), - [sym__equality_operator] = STATE(1227), - [sym__comparison_operator] = STATE(1227), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1227), - [sym__multiplicative_operator] = STATE(1227), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1227), - [sym__referenceable_operator] = STATE(1227), - [sym__eq_eq] = STATE(1227), - [sym__dot] = STATE(991), - [sym__universally_allowed_pattern] = STATE(4691), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6206), - [sym__binding_pattern_with_expr] = STATE(5624), - [sym__binding_pattern_kind] = STATE(3491), - [sym__tuple_pattern] = STATE(4691), - [sym__case_pattern] = STATE(4691), - [sym__type_casting_pattern] = STATE(4663), - [sym__binding_pattern] = STATE(4690), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(759), - [sym_real_literal] = ACTIONS(761), - [sym_integer_literal] = ACTIONS(759), - [sym_hex_literal] = ACTIONS(761), - [sym_oct_literal] = ACTIONS(761), - [sym_bin_literal] = ACTIONS(761), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(759), - [anon_sym_POUNDfileID] = ACTIONS(761), - [anon_sym_POUNDfilePath] = ACTIONS(761), - [anon_sym_POUNDline] = ACTIONS(761), - [anon_sym_POUNDcolumn] = ACTIONS(761), - [anon_sym_POUNDfunction] = ACTIONS(761), - [anon_sym_POUNDdsohandle] = ACTIONS(761), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_case] = ACTIONS(799), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(761), - [anon_sym_DASH_EQ] = ACTIONS(761), - [anon_sym_STAR_EQ] = ACTIONS(761), - [anon_sym_SLASH_EQ] = ACTIONS(761), - [anon_sym_PERCENT_EQ] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(761), - [anon_sym_EQ_EQ_EQ] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_is] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_PERCENT] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_LT_LT] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(761), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(817), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(821), - [sym__eq_eq_custom] = ACTIONS(761), - [sym__plus_then_ws] = ACTIONS(761), - [sym__minus_then_ws] = ACTIONS(761), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [128] = { - [sym_simple_identifier] = STATE(1791), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5502), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [129] = { - [sym_simple_identifier] = STATE(1758), - [sym__basic_literal] = STATE(1212), - [sym_boolean_literal] = STATE(1212), - [sym__string_literal] = STATE(1212), - [sym_line_string_literal] = STATE(1212), - [sym_multi_line_string_literal] = STATE(1212), - [sym_raw_string_literal] = STATE(1212), - [sym_regex_literal] = STATE(1212), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1212), - [sym__unary_expression] = STATE(1212), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1212), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1212), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1212), - [sym_prefix_expression] = STATE(1212), - [sym_as_expression] = STATE(1212), - [sym_selector_expression] = STATE(1212), - [sym__binary_expression] = STATE(1212), - [sym_multiplicative_expression] = STATE(1212), - [sym_additive_expression] = STATE(1212), - [sym_range_expression] = STATE(1212), - [sym_infix_expression] = STATE(1212), - [sym_nil_coalescing_expression] = STATE(1212), - [sym_check_expression] = STATE(1212), - [sym_comparison_expression] = STATE(1212), - [sym_equality_expression] = STATE(1212), - [sym_conjunction_expression] = STATE(1212), - [sym_disjunction_expression] = STATE(1212), - [sym_bitwise_operation] = STATE(1212), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1212), - [sym_await_expression] = STATE(1212), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1212), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1212), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1212), - [sym_dictionary_literal] = STATE(1212), - [sym__special_literal] = STATE(1212), - [sym__playground_literal] = STATE(1212), - [sym_lambda_literal] = STATE(1212), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1212), - [sym_key_path_expression] = STATE(1212), - [sym_key_path_string_expression] = STATE(1212), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1212), - [sym__equality_operator] = STATE(1212), - [sym__comparison_operator] = STATE(1212), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1212), - [sym__multiplicative_operator] = STATE(1212), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1212), - [sym__referenceable_operator] = STATE(1212), - [sym__eq_eq] = STATE(1212), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6221), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern_item] = STATE(5567), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(823), - [sym_real_literal] = ACTIONS(825), - [sym_integer_literal] = ACTIONS(823), - [sym_hex_literal] = ACTIONS(825), - [sym_oct_literal] = ACTIONS(825), - [sym_bin_literal] = ACTIONS(825), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(823), - [anon_sym_GT] = ACTIONS(823), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(823), - [anon_sym_POUNDfileID] = ACTIONS(825), - [anon_sym_POUNDfilePath] = ACTIONS(825), - [anon_sym_POUNDline] = ACTIONS(825), - [anon_sym_POUNDcolumn] = ACTIONS(825), - [anon_sym_POUNDfunction] = ACTIONS(825), - [anon_sym_POUNDdsohandle] = ACTIONS(825), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(825), - [anon_sym_DASH_EQ] = ACTIONS(825), - [anon_sym_STAR_EQ] = ACTIONS(825), - [anon_sym_SLASH_EQ] = ACTIONS(825), - [anon_sym_PERCENT_EQ] = ACTIONS(825), - [anon_sym_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ] = ACTIONS(823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(825), - [anon_sym_EQ_EQ_EQ] = ACTIONS(825), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(823), - [anon_sym_SLASH] = ACTIONS(823), - [anon_sym_PERCENT] = ACTIONS(823), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(823), - [anon_sym_LT_LT] = ACTIONS(825), - [anon_sym_GT_GT] = ACTIONS(825), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(825), - [sym__plus_then_ws] = ACTIONS(825), - [sym__minus_then_ws] = ACTIONS(825), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [130] = { - [sym_simple_identifier] = STATE(1817), - [sym__basic_literal] = STATE(1227), - [sym_boolean_literal] = STATE(1227), - [sym__string_literal] = STATE(1227), - [sym_line_string_literal] = STATE(1227), - [sym_multi_line_string_literal] = STATE(1227), - [sym_raw_string_literal] = STATE(1227), - [sym_regex_literal] = STATE(1227), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4344), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1227), - [sym__unary_expression] = STATE(1227), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1227), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1227), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1227), - [sym_prefix_expression] = STATE(1227), - [sym_as_expression] = STATE(1227), - [sym_selector_expression] = STATE(1227), - [sym__binary_expression] = STATE(1227), - [sym_multiplicative_expression] = STATE(1227), - [sym_additive_expression] = STATE(1227), - [sym_range_expression] = STATE(1227), - [sym_infix_expression] = STATE(1227), - [sym_nil_coalescing_expression] = STATE(1227), - [sym_check_expression] = STATE(1227), - [sym_comparison_expression] = STATE(1227), - [sym_equality_expression] = STATE(1227), - [sym_conjunction_expression] = STATE(1227), - [sym_disjunction_expression] = STATE(1227), - [sym_bitwise_operation] = STATE(1227), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1227), - [sym_await_expression] = STATE(1227), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1227), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1227), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1227), - [sym_dictionary_literal] = STATE(1227), - [sym__special_literal] = STATE(1227), - [sym__playground_literal] = STATE(1227), - [sym_lambda_literal] = STATE(1227), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1227), - [sym_switch_pattern] = STATE(5203), - [sym_key_path_expression] = STATE(1227), - [sym_key_path_string_expression] = STATE(1227), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1227), - [sym__equality_operator] = STATE(1227), - [sym__comparison_operator] = STATE(1227), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1227), - [sym__multiplicative_operator] = STATE(1227), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1227), - [sym__referenceable_operator] = STATE(1227), - [sym__eq_eq] = STATE(1227), - [sym__dot] = STATE(991), - [sym__universally_allowed_pattern] = STATE(4691), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6206), - [sym__binding_pattern_with_expr] = STATE(5624), - [sym__binding_pattern_kind] = STATE(3491), - [sym__tuple_pattern] = STATE(4691), - [sym__case_pattern] = STATE(4691), - [sym__type_casting_pattern] = STATE(4663), - [sym__binding_pattern] = STATE(4690), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(759), - [sym_real_literal] = ACTIONS(761), - [sym_integer_literal] = ACTIONS(759), - [sym_hex_literal] = ACTIONS(761), - [sym_oct_literal] = ACTIONS(761), - [sym_bin_literal] = ACTIONS(761), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(759), - [anon_sym_POUNDfileID] = ACTIONS(761), - [anon_sym_POUNDfilePath] = ACTIONS(761), - [anon_sym_POUNDline] = ACTIONS(761), - [anon_sym_POUNDcolumn] = ACTIONS(761), - [anon_sym_POUNDfunction] = ACTIONS(761), - [anon_sym_POUNDdsohandle] = ACTIONS(761), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_case] = ACTIONS(799), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(761), - [anon_sym_DASH_EQ] = ACTIONS(761), - [anon_sym_STAR_EQ] = ACTIONS(761), - [anon_sym_SLASH_EQ] = ACTIONS(761), - [anon_sym_PERCENT_EQ] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ] = ACTIONS(759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(761), - [anon_sym_EQ_EQ_EQ] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_GT_EQ] = ACTIONS(761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_is] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_PERCENT] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(761), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_LT_LT] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(761), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(817), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(821), - [sym__eq_eq_custom] = ACTIONS(761), - [sym__plus_then_ws] = ACTIONS(761), - [sym__minus_then_ws] = ACTIONS(761), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [131] = { - [sym_simple_identifier] = STATE(1807), - [sym__basic_literal] = STATE(1226), - [sym_boolean_literal] = STATE(1226), - [sym__string_literal] = STATE(1226), - [sym_line_string_literal] = STATE(1226), - [sym_multi_line_string_literal] = STATE(1226), - [sym_raw_string_literal] = STATE(1226), - [sym_regex_literal] = STATE(1226), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1226), - [sym__unary_expression] = STATE(1226), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1226), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1226), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1226), - [sym_prefix_expression] = STATE(1226), - [sym_as_expression] = STATE(1226), - [sym_selector_expression] = STATE(1226), - [sym__binary_expression] = STATE(1226), - [sym_multiplicative_expression] = STATE(1226), - [sym_additive_expression] = STATE(1226), - [sym_range_expression] = STATE(1226), - [sym_infix_expression] = STATE(1226), - [sym_nil_coalescing_expression] = STATE(1226), - [sym_check_expression] = STATE(1226), - [sym_comparison_expression] = STATE(1226), - [sym_equality_expression] = STATE(1226), - [sym_conjunction_expression] = STATE(1226), - [sym_disjunction_expression] = STATE(1226), - [sym_bitwise_operation] = STATE(1226), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1226), - [sym_await_expression] = STATE(1226), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1226), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1226), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1226), - [sym_dictionary_literal] = STATE(1226), - [sym__special_literal] = STATE(1226), - [sym__playground_literal] = STATE(1226), - [sym_lambda_literal] = STATE(1226), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1226), - [sym_key_path_expression] = STATE(1226), - [sym_key_path_string_expression] = STATE(1226), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1226), - [sym__equality_operator] = STATE(1226), - [sym__comparison_operator] = STATE(1226), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1226), - [sym__multiplicative_operator] = STATE(1226), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1226), - [sym__referenceable_operator] = STATE(1226), - [sym__eq_eq] = STATE(1226), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6231), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(827), - [sym_real_literal] = ACTIONS(829), - [sym_integer_literal] = ACTIONS(827), - [sym_hex_literal] = ACTIONS(829), - [sym_oct_literal] = ACTIONS(829), - [sym_bin_literal] = ACTIONS(829), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(827), - [anon_sym_POUNDfileID] = ACTIONS(829), - [anon_sym_POUNDfilePath] = ACTIONS(829), - [anon_sym_POUNDline] = ACTIONS(829), - [anon_sym_POUNDcolumn] = ACTIONS(829), - [anon_sym_POUNDfunction] = ACTIONS(829), - [anon_sym_POUNDdsohandle] = ACTIONS(829), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(829), - [anon_sym_DASH_EQ] = ACTIONS(829), - [anon_sym_STAR_EQ] = ACTIONS(829), - [anon_sym_SLASH_EQ] = ACTIONS(829), - [anon_sym_PERCENT_EQ] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_BANG_EQ] = ACTIONS(827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(827), - [anon_sym_PERCENT] = ACTIONS(827), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(827), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(829), - [sym__plus_then_ws] = ACTIONS(829), - [sym__minus_then_ws] = ACTIONS(829), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [132] = { - [sym_simple_identifier] = STATE(1807), - [sym__basic_literal] = STATE(1268), - [sym_boolean_literal] = STATE(1268), - [sym__string_literal] = STATE(1268), - [sym_line_string_literal] = STATE(1268), - [sym_multi_line_string_literal] = STATE(1268), - [sym_raw_string_literal] = STATE(1268), - [sym_regex_literal] = STATE(1268), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1268), - [sym__unary_expression] = STATE(1268), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1268), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1268), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1268), - [sym_prefix_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_selector_expression] = STATE(1268), - [sym__binary_expression] = STATE(1268), - [sym_multiplicative_expression] = STATE(1268), - [sym_additive_expression] = STATE(1268), - [sym_range_expression] = STATE(1268), - [sym_infix_expression] = STATE(1268), - [sym_nil_coalescing_expression] = STATE(1268), - [sym_check_expression] = STATE(1268), - [sym_comparison_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_conjunction_expression] = STATE(1268), - [sym_disjunction_expression] = STATE(1268), - [sym_bitwise_operation] = STATE(1268), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1268), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1268), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1268), - [sym_dictionary_literal] = STATE(1268), - [sym__special_literal] = STATE(1268), - [sym__playground_literal] = STATE(1268), - [sym_lambda_literal] = STATE(1268), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1268), - [sym_key_path_expression] = STATE(1268), - [sym_key_path_string_expression] = STATE(1268), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1268), - [sym__equality_operator] = STATE(1268), - [sym__comparison_operator] = STATE(1268), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1268), - [sym__multiplicative_operator] = STATE(1268), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1268), - [sym__referenceable_operator] = STATE(1268), - [sym__eq_eq] = STATE(1268), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6231), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(735), - [sym_real_literal] = ACTIONS(737), - [sym_integer_literal] = ACTIONS(735), - [sym_hex_literal] = ACTIONS(737), - [sym_oct_literal] = ACTIONS(737), - [sym_bin_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(735), - [anon_sym_POUNDfileID] = ACTIONS(737), - [anon_sym_POUNDfilePath] = ACTIONS(737), - [anon_sym_POUNDline] = ACTIONS(737), - [anon_sym_POUNDcolumn] = ACTIONS(737), - [anon_sym_POUNDfunction] = ACTIONS(737), - [anon_sym_POUNDdsohandle] = ACTIONS(737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ] = ACTIONS(735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_LT_LT] = ACTIONS(737), - [anon_sym_GT_GT] = ACTIONS(737), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(737), - [sym__plus_then_ws] = ACTIONS(737), - [sym__minus_then_ws] = ACTIONS(737), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [133] = { - [sym_simple_identifier] = STATE(1807), - [sym__basic_literal] = STATE(1219), - [sym_boolean_literal] = STATE(1219), - [sym__string_literal] = STATE(1219), - [sym_line_string_literal] = STATE(1219), - [sym_multi_line_string_literal] = STATE(1219), - [sym_raw_string_literal] = STATE(1219), - [sym_regex_literal] = STATE(1219), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4375), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(1219), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1219), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1219), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1219), - [sym_prefix_expression] = STATE(1219), - [sym_as_expression] = STATE(1219), - [sym_selector_expression] = STATE(1219), - [sym__binary_expression] = STATE(1219), - [sym_multiplicative_expression] = STATE(1219), - [sym_additive_expression] = STATE(1219), - [sym_range_expression] = STATE(1219), - [sym_infix_expression] = STATE(1219), - [sym_nil_coalescing_expression] = STATE(1219), - [sym_check_expression] = STATE(1219), - [sym_comparison_expression] = STATE(1219), - [sym_equality_expression] = STATE(1219), - [sym_conjunction_expression] = STATE(1219), - [sym_disjunction_expression] = STATE(1219), - [sym_bitwise_operation] = STATE(1219), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1219), - [sym_await_expression] = STATE(1219), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1219), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1219), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1219), - [sym_dictionary_literal] = STATE(1219), - [sym__special_literal] = STATE(1219), - [sym__playground_literal] = STATE(1219), - [sym_lambda_literal] = STATE(1219), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1219), - [sym_key_path_expression] = STATE(1219), - [sym_key_path_string_expression] = STATE(1219), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1219), - [sym__equality_operator] = STATE(1219), - [sym__comparison_operator] = STATE(1219), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1219), - [sym__multiplicative_operator] = STATE(1219), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1219), - [sym__referenceable_operator] = STATE(1219), - [sym__eq_eq] = STATE(1219), - [sym__dot] = STATE(993), - [sym__universally_allowed_pattern] = STATE(4687), - [sym__bound_identifier] = STATE(4890), - [sym__binding_pattern_no_expr] = STATE(6152), - [sym__binding_pattern_with_expr] = STATE(6231), - [sym__binding_pattern_kind] = STATE(3498), - [sym__tuple_pattern] = STATE(4687), - [sym__case_pattern] = STATE(4687), - [sym__type_casting_pattern] = STATE(4839), - [sym__binding_pattern] = STATE(4684), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(831), - [sym_real_literal] = ACTIONS(833), - [sym_integer_literal] = ACTIONS(831), - [sym_hex_literal] = ACTIONS(833), - [sym_oct_literal] = ACTIONS(833), - [sym_bin_literal] = ACTIONS(833), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(831), - [anon_sym_GT] = ACTIONS(831), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(831), - [anon_sym_POUNDfileID] = ACTIONS(833), - [anon_sym_POUNDfilePath] = ACTIONS(833), - [anon_sym_POUNDline] = ACTIONS(833), - [anon_sym_POUNDcolumn] = ACTIONS(833), - [anon_sym_POUNDfunction] = ACTIONS(833), - [anon_sym_POUNDdsohandle] = ACTIONS(833), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(743), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_BANG_EQ] = ACTIONS(831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(833), - [anon_sym_LT_EQ] = ACTIONS(833), - [anon_sym_GT_EQ] = ACTIONS(833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_is] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(831), - [anon_sym_PERCENT] = ACTIONS(831), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(833), - [anon_sym_CARET] = ACTIONS(831), - [anon_sym_LT_LT] = ACTIONS(833), - [anon_sym_GT_GT] = ACTIONS(833), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_wildcard_pattern] = ACTIONS(747), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(749), - [sym__eq_eq_custom] = ACTIONS(833), - [sym__plus_then_ws] = ACTIONS(833), - [sym__minus_then_ws] = ACTIONS(833), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [134] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1154), - [sym_boolean_literal] = STATE(1154), - [sym__string_literal] = STATE(1154), - [sym_line_string_literal] = STATE(1154), - [sym_multi_line_string_literal] = STATE(1154), - [sym_raw_string_literal] = STATE(1154), - [sym_regex_literal] = STATE(1154), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1154), - [sym__unary_expression] = STATE(1154), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1154), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1154), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1154), - [sym_prefix_expression] = STATE(1154), - [sym_as_expression] = STATE(1154), - [sym_selector_expression] = STATE(1154), - [sym__binary_expression] = STATE(1154), - [sym_multiplicative_expression] = STATE(1154), - [sym_additive_expression] = STATE(1154), - [sym_range_expression] = STATE(1154), - [sym_infix_expression] = STATE(1154), - [sym_nil_coalescing_expression] = STATE(1154), - [sym_check_expression] = STATE(1154), - [sym_comparison_expression] = STATE(1154), - [sym_equality_expression] = STATE(1154), - [sym_conjunction_expression] = STATE(1154), - [sym_disjunction_expression] = STATE(1154), - [sym_bitwise_operation] = STATE(1154), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1154), - [sym_await_expression] = STATE(1154), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1154), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1154), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1154), - [sym_dictionary_literal] = STATE(1154), - [sym__special_literal] = STATE(1154), - [sym__playground_literal] = STATE(1154), - [sym_lambda_literal] = STATE(1154), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1154), - [sym__if_condition_sequence_item] = STATE(4837), - [sym__if_let_binding] = STATE(4985), - [sym_key_path_expression] = STATE(1154), - [sym_key_path_string_expression] = STATE(1154), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1154), - [sym__equality_operator] = STATE(1154), - [sym__comparison_operator] = STATE(1154), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1154), - [sym__multiplicative_operator] = STATE(1154), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1154), - [sym_availability_condition] = STATE(4837), - [sym__referenceable_operator] = STATE(1154), - [sym__eq_eq] = STATE(1154), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4367), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3489), - [sym__binding_kind_and_pattern] = STATE(4368), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(835), - [sym_real_literal] = ACTIONS(837), - [sym_integer_literal] = ACTIONS(835), - [sym_hex_literal] = ACTIONS(837), - [sym_oct_literal] = ACTIONS(837), - [sym_bin_literal] = ACTIONS(837), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(835), - [anon_sym_POUNDfileID] = ACTIONS(837), - [anon_sym_POUNDfilePath] = ACTIONS(837), - [anon_sym_POUNDline] = ACTIONS(837), - [anon_sym_POUNDcolumn] = ACTIONS(837), - [anon_sym_POUNDfunction] = ACTIONS(837), - [anon_sym_POUNDdsohandle] = ACTIONS(837), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_case] = ACTIONS(839), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(837), - [anon_sym_DASH_EQ] = ACTIONS(837), - [anon_sym_STAR_EQ] = ACTIONS(837), - [anon_sym_SLASH_EQ] = ACTIONS(837), - [anon_sym_PERCENT_EQ] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(837), - [anon_sym_GT_GT] = ACTIONS(837), - [anon_sym_POUNDavailable] = ACTIONS(841), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(837), - [sym__plus_then_ws] = ACTIONS(837), - [sym__minus_then_ws] = ACTIONS(837), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [135] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1323), - [sym_boolean_literal] = STATE(1323), - [sym__string_literal] = STATE(1323), - [sym_line_string_literal] = STATE(1323), - [sym_multi_line_string_literal] = STATE(1323), - [sym_raw_string_literal] = STATE(1323), - [sym_regex_literal] = STATE(1323), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1323), - [sym__unary_expression] = STATE(1323), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1323), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1323), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1323), - [sym_prefix_expression] = STATE(1323), - [sym_as_expression] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym__binary_expression] = STATE(1323), - [sym_multiplicative_expression] = STATE(1323), - [sym_additive_expression] = STATE(1323), - [sym_range_expression] = STATE(1323), - [sym_infix_expression] = STATE(1323), - [sym_nil_coalescing_expression] = STATE(1323), - [sym_check_expression] = STATE(1323), - [sym_comparison_expression] = STATE(1323), - [sym_equality_expression] = STATE(1323), - [sym_conjunction_expression] = STATE(1323), - [sym_disjunction_expression] = STATE(1323), - [sym_bitwise_operation] = STATE(1323), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1323), - [sym_await_expression] = STATE(1323), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1323), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1323), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1323), - [sym_dictionary_literal] = STATE(1323), - [sym__special_literal] = STATE(1323), - [sym__playground_literal] = STATE(1323), - [sym_lambda_literal] = STATE(1323), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1323), - [sym__if_condition_sequence_item] = STATE(5466), - [sym__if_let_binding] = STATE(5970), - [sym_key_path_expression] = STATE(1323), - [sym_key_path_string_expression] = STATE(1323), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1323), - [sym__equality_operator] = STATE(1323), - [sym__comparison_operator] = STATE(1323), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1323), - [sym__multiplicative_operator] = STATE(1323), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1323), - [sym_availability_condition] = STATE(5466), - [sym__referenceable_operator] = STATE(1323), - [sym__eq_eq] = STATE(1323), - [sym__dot] = STATE(498), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4714), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3488), - [sym__binding_kind_and_pattern] = STATE(4655), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(843), - [sym_real_literal] = ACTIONS(845), - [sym_integer_literal] = ACTIONS(843), - [sym_hex_literal] = ACTIONS(845), - [sym_oct_literal] = ACTIONS(845), - [sym_bin_literal] = ACTIONS(845), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(849), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(843), - [anon_sym_POUNDfileID] = ACTIONS(845), - [anon_sym_POUNDfilePath] = ACTIONS(845), - [anon_sym_POUNDline] = ACTIONS(845), - [anon_sym_POUNDcolumn] = ACTIONS(845), - [anon_sym_POUNDfunction] = ACTIONS(845), - [anon_sym_POUNDdsohandle] = ACTIONS(845), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(851), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_STAR_EQ] = ACTIONS(845), - [anon_sym_SLASH_EQ] = ACTIONS(845), - [anon_sym_PERCENT_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_POUNDavailable] = ACTIONS(853), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(845), - [sym__plus_then_ws] = ACTIONS(845), - [sym__minus_then_ws] = ACTIONS(845), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [136] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1278), - [sym_boolean_literal] = STATE(1278), - [sym__string_literal] = STATE(1278), - [sym_line_string_literal] = STATE(1278), - [sym_multi_line_string_literal] = STATE(1278), - [sym_raw_string_literal] = STATE(1278), - [sym_regex_literal] = STATE(1278), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(1278), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1278), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1278), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1278), - [sym_prefix_expression] = STATE(1278), - [sym_as_expression] = STATE(1278), - [sym_selector_expression] = STATE(1278), - [sym__binary_expression] = STATE(1278), - [sym_multiplicative_expression] = STATE(1278), - [sym_additive_expression] = STATE(1278), - [sym_range_expression] = STATE(1278), - [sym_infix_expression] = STATE(1278), - [sym_nil_coalescing_expression] = STATE(1278), - [sym_check_expression] = STATE(1278), - [sym_comparison_expression] = STATE(1278), - [sym_equality_expression] = STATE(1278), - [sym_conjunction_expression] = STATE(1278), - [sym_disjunction_expression] = STATE(1278), - [sym_bitwise_operation] = STATE(1278), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1278), - [sym_await_expression] = STATE(1278), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1278), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1278), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1278), - [sym_dictionary_literal] = STATE(1278), - [sym__special_literal] = STATE(1278), - [sym__playground_literal] = STATE(1278), - [sym_lambda_literal] = STATE(1278), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1278), - [sym__if_condition_sequence_item] = STATE(5775), - [sym__if_let_binding] = STATE(6162), - [sym_key_path_expression] = STATE(1278), - [sym_key_path_string_expression] = STATE(1278), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1278), - [sym__equality_operator] = STATE(1278), - [sym__comparison_operator] = STATE(1278), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1278), - [sym__multiplicative_operator] = STATE(1278), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1278), - [sym_availability_condition] = STATE(5775), - [sym__referenceable_operator] = STATE(1278), - [sym__eq_eq] = STATE(1278), - [sym__dot] = STATE(445), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4779), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3487), - [sym__binding_kind_and_pattern] = STATE(4776), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(859), - [sym_real_literal] = ACTIONS(861), - [sym_integer_literal] = ACTIONS(859), - [sym_hex_literal] = ACTIONS(861), - [sym_oct_literal] = ACTIONS(861), - [sym_bin_literal] = ACTIONS(861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(883), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_GT] = ACTIONS(859), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(859), - [anon_sym_POUNDfileID] = ACTIONS(861), - [anon_sym_POUNDfilePath] = ACTIONS(861), - [anon_sym_POUNDline] = ACTIONS(861), - [anon_sym_POUNDcolumn] = ACTIONS(861), - [anon_sym_POUNDfunction] = ACTIONS(861), - [anon_sym_POUNDdsohandle] = ACTIONS(861), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_case] = ACTIONS(899), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(861), - [anon_sym_DASH_EQ] = ACTIONS(861), - [anon_sym_STAR_EQ] = ACTIONS(861), - [anon_sym_SLASH_EQ] = ACTIONS(861), - [anon_sym_PERCENT_EQ] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_SLASH] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(859), - [anon_sym_LT_LT] = ACTIONS(861), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_POUNDavailable] = ACTIONS(915), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(861), - [sym__plus_then_ws] = ACTIONS(861), - [sym__minus_then_ws] = ACTIONS(861), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [137] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(619), - [sym_boolean_literal] = STATE(619), - [sym__string_literal] = STATE(619), - [sym_line_string_literal] = STATE(619), - [sym_multi_line_string_literal] = STATE(619), - [sym_raw_string_literal] = STATE(619), - [sym_regex_literal] = STATE(619), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(619), - [sym__unary_expression] = STATE(619), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(619), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(619), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(619), - [sym_prefix_expression] = STATE(619), - [sym_as_expression] = STATE(619), - [sym_selector_expression] = STATE(619), - [sym__binary_expression] = STATE(619), - [sym_multiplicative_expression] = STATE(619), - [sym_additive_expression] = STATE(619), - [sym_range_expression] = STATE(619), - [sym_infix_expression] = STATE(619), - [sym_nil_coalescing_expression] = STATE(619), - [sym_check_expression] = STATE(619), - [sym_comparison_expression] = STATE(619), - [sym_equality_expression] = STATE(619), - [sym_conjunction_expression] = STATE(619), - [sym_disjunction_expression] = STATE(619), - [sym_bitwise_operation] = STATE(619), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(619), - [sym_await_expression] = STATE(619), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(619), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(619), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(619), - [sym_dictionary_literal] = STATE(619), - [sym__special_literal] = STATE(619), - [sym__playground_literal] = STATE(619), - [sym_lambda_literal] = STATE(619), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(619), - [sym__if_condition_sequence_item] = STATE(2885), - [sym__if_let_binding] = STATE(2891), - [sym_key_path_expression] = STATE(619), - [sym_key_path_string_expression] = STATE(619), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(619), - [sym__equality_operator] = STATE(619), - [sym__comparison_operator] = STATE(619), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(619), - [sym__multiplicative_operator] = STATE(619), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(619), - [sym_availability_condition] = STATE(2885), - [sym__referenceable_operator] = STATE(619), - [sym__eq_eq] = STATE(619), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(2808), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3486), - [sym__binding_kind_and_pattern] = STATE(2809), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(919), - [sym_real_literal] = ACTIONS(921), - [sym_integer_literal] = ACTIONS(919), - [sym_hex_literal] = ACTIONS(921), - [sym_oct_literal] = ACTIONS(921), - [sym_bin_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(919), - [anon_sym_POUNDfileID] = ACTIONS(921), - [anon_sym_POUNDfilePath] = ACTIONS(921), - [anon_sym_POUNDline] = ACTIONS(921), - [anon_sym_POUNDcolumn] = ACTIONS(921), - [anon_sym_POUNDfunction] = ACTIONS(921), - [anon_sym_POUNDdsohandle] = ACTIONS(921), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_case] = ACTIONS(923), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_POUNDavailable] = ACTIONS(925), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(921), - [sym__plus_then_ws] = ACTIONS(921), - [sym__minus_then_ws] = ACTIONS(921), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [138] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1323), - [sym_boolean_literal] = STATE(1323), - [sym__string_literal] = STATE(1323), - [sym_line_string_literal] = STATE(1323), - [sym_multi_line_string_literal] = STATE(1323), - [sym_raw_string_literal] = STATE(1323), - [sym_regex_literal] = STATE(1323), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1323), - [sym__unary_expression] = STATE(1323), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1323), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1323), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1323), - [sym_prefix_expression] = STATE(1323), - [sym_as_expression] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym__binary_expression] = STATE(1323), - [sym_multiplicative_expression] = STATE(1323), - [sym_additive_expression] = STATE(1323), - [sym_range_expression] = STATE(1323), - [sym_infix_expression] = STATE(1323), - [sym_nil_coalescing_expression] = STATE(1323), - [sym_check_expression] = STATE(1323), - [sym_comparison_expression] = STATE(1323), - [sym_equality_expression] = STATE(1323), - [sym_conjunction_expression] = STATE(1323), - [sym_disjunction_expression] = STATE(1323), - [sym_bitwise_operation] = STATE(1323), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1323), - [sym_await_expression] = STATE(1323), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1323), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1323), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1323), - [sym_dictionary_literal] = STATE(1323), - [sym__special_literal] = STATE(1323), - [sym__playground_literal] = STATE(1323), - [sym_lambda_literal] = STATE(1323), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1323), - [sym__if_condition_sequence_item] = STATE(5226), - [sym__if_let_binding] = STATE(5970), - [sym_key_path_expression] = STATE(1323), - [sym_key_path_string_expression] = STATE(1323), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1323), - [sym__equality_operator] = STATE(1323), - [sym__comparison_operator] = STATE(1323), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1323), - [sym__multiplicative_operator] = STATE(1323), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1323), - [sym_availability_condition] = STATE(5226), - [sym__referenceable_operator] = STATE(1323), - [sym__eq_eq] = STATE(1323), - [sym__dot] = STATE(498), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4714), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3488), - [sym__binding_kind_and_pattern] = STATE(4655), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(843), - [sym_real_literal] = ACTIONS(845), - [sym_integer_literal] = ACTIONS(843), - [sym_hex_literal] = ACTIONS(845), - [sym_oct_literal] = ACTIONS(845), - [sym_bin_literal] = ACTIONS(845), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(849), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(843), - [anon_sym_POUNDfileID] = ACTIONS(845), - [anon_sym_POUNDfilePath] = ACTIONS(845), - [anon_sym_POUNDline] = ACTIONS(845), - [anon_sym_POUNDcolumn] = ACTIONS(845), - [anon_sym_POUNDfunction] = ACTIONS(845), - [anon_sym_POUNDdsohandle] = ACTIONS(845), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(851), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_STAR_EQ] = ACTIONS(845), - [anon_sym_SLASH_EQ] = ACTIONS(845), - [anon_sym_PERCENT_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_POUNDavailable] = ACTIONS(853), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(845), - [sym__plus_then_ws] = ACTIONS(845), - [sym__minus_then_ws] = ACTIONS(845), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [139] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1278), - [sym_boolean_literal] = STATE(1278), - [sym__string_literal] = STATE(1278), - [sym_line_string_literal] = STATE(1278), - [sym_multi_line_string_literal] = STATE(1278), - [sym_raw_string_literal] = STATE(1278), - [sym_regex_literal] = STATE(1278), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(1278), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1278), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1278), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1278), - [sym_prefix_expression] = STATE(1278), - [sym_as_expression] = STATE(1278), - [sym_selector_expression] = STATE(1278), - [sym__binary_expression] = STATE(1278), - [sym_multiplicative_expression] = STATE(1278), - [sym_additive_expression] = STATE(1278), - [sym_range_expression] = STATE(1278), - [sym_infix_expression] = STATE(1278), - [sym_nil_coalescing_expression] = STATE(1278), - [sym_check_expression] = STATE(1278), - [sym_comparison_expression] = STATE(1278), - [sym_equality_expression] = STATE(1278), - [sym_conjunction_expression] = STATE(1278), - [sym_disjunction_expression] = STATE(1278), - [sym_bitwise_operation] = STATE(1278), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1278), - [sym_await_expression] = STATE(1278), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1278), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1278), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1278), - [sym_dictionary_literal] = STATE(1278), - [sym__special_literal] = STATE(1278), - [sym__playground_literal] = STATE(1278), - [sym_lambda_literal] = STATE(1278), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1278), - [sym__if_condition_sequence_item] = STATE(5451), - [sym__if_let_binding] = STATE(6162), - [sym_key_path_expression] = STATE(1278), - [sym_key_path_string_expression] = STATE(1278), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1278), - [sym__equality_operator] = STATE(1278), - [sym__comparison_operator] = STATE(1278), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1278), - [sym__multiplicative_operator] = STATE(1278), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1278), - [sym_availability_condition] = STATE(5451), - [sym__referenceable_operator] = STATE(1278), - [sym__eq_eq] = STATE(1278), - [sym__dot] = STATE(445), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4779), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3487), - [sym__binding_kind_and_pattern] = STATE(4776), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(859), - [sym_real_literal] = ACTIONS(861), - [sym_integer_literal] = ACTIONS(859), - [sym_hex_literal] = ACTIONS(861), - [sym_oct_literal] = ACTIONS(861), - [sym_bin_literal] = ACTIONS(861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(883), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_GT] = ACTIONS(859), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(859), - [anon_sym_POUNDfileID] = ACTIONS(861), - [anon_sym_POUNDfilePath] = ACTIONS(861), - [anon_sym_POUNDline] = ACTIONS(861), - [anon_sym_POUNDcolumn] = ACTIONS(861), - [anon_sym_POUNDfunction] = ACTIONS(861), - [anon_sym_POUNDdsohandle] = ACTIONS(861), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_case] = ACTIONS(899), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(861), - [anon_sym_DASH_EQ] = ACTIONS(861), - [anon_sym_STAR_EQ] = ACTIONS(861), - [anon_sym_SLASH_EQ] = ACTIONS(861), - [anon_sym_PERCENT_EQ] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_SLASH] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(859), - [anon_sym_LT_LT] = ACTIONS(861), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_POUNDavailable] = ACTIONS(915), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(861), - [sym__plus_then_ws] = ACTIONS(861), - [sym__minus_then_ws] = ACTIONS(861), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [140] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1323), - [sym_boolean_literal] = STATE(1323), - [sym__string_literal] = STATE(1323), - [sym_line_string_literal] = STATE(1323), - [sym_multi_line_string_literal] = STATE(1323), - [sym_raw_string_literal] = STATE(1323), - [sym_regex_literal] = STATE(1323), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1323), - [sym__unary_expression] = STATE(1323), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1323), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1323), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1323), - [sym_prefix_expression] = STATE(1323), - [sym_as_expression] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym__binary_expression] = STATE(1323), - [sym_multiplicative_expression] = STATE(1323), - [sym_additive_expression] = STATE(1323), - [sym_range_expression] = STATE(1323), - [sym_infix_expression] = STATE(1323), - [sym_nil_coalescing_expression] = STATE(1323), - [sym_check_expression] = STATE(1323), - [sym_comparison_expression] = STATE(1323), - [sym_equality_expression] = STATE(1323), - [sym_conjunction_expression] = STATE(1323), - [sym_disjunction_expression] = STATE(1323), - [sym_bitwise_operation] = STATE(1323), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1323), - [sym_await_expression] = STATE(1323), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1323), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1323), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1323), - [sym_dictionary_literal] = STATE(1323), - [sym__special_literal] = STATE(1323), - [sym__playground_literal] = STATE(1323), - [sym_lambda_literal] = STATE(1323), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1323), - [sym__if_condition_sequence_item] = STATE(5771), - [sym__if_let_binding] = STATE(5970), - [sym_key_path_expression] = STATE(1323), - [sym_key_path_string_expression] = STATE(1323), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1323), - [sym__equality_operator] = STATE(1323), - [sym__comparison_operator] = STATE(1323), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1323), - [sym__multiplicative_operator] = STATE(1323), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1323), - [sym_availability_condition] = STATE(5771), - [sym__referenceable_operator] = STATE(1323), - [sym__eq_eq] = STATE(1323), - [sym__dot] = STATE(498), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4714), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3488), - [sym__binding_kind_and_pattern] = STATE(4655), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(843), - [sym_real_literal] = ACTIONS(845), - [sym_integer_literal] = ACTIONS(843), - [sym_hex_literal] = ACTIONS(845), - [sym_oct_literal] = ACTIONS(845), - [sym_bin_literal] = ACTIONS(845), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(849), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(843), - [anon_sym_POUNDfileID] = ACTIONS(845), - [anon_sym_POUNDfilePath] = ACTIONS(845), - [anon_sym_POUNDline] = ACTIONS(845), - [anon_sym_POUNDcolumn] = ACTIONS(845), - [anon_sym_POUNDfunction] = ACTIONS(845), - [anon_sym_POUNDdsohandle] = ACTIONS(845), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(851), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_STAR_EQ] = ACTIONS(845), - [anon_sym_SLASH_EQ] = ACTIONS(845), - [anon_sym_PERCENT_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_POUNDavailable] = ACTIONS(853), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(845), - [sym__plus_then_ws] = ACTIONS(845), - [sym__minus_then_ws] = ACTIONS(845), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [141] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1323), - [sym_boolean_literal] = STATE(1323), - [sym__string_literal] = STATE(1323), - [sym_line_string_literal] = STATE(1323), - [sym_multi_line_string_literal] = STATE(1323), - [sym_raw_string_literal] = STATE(1323), - [sym_regex_literal] = STATE(1323), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1323), - [sym__unary_expression] = STATE(1323), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1323), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1323), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1323), - [sym_prefix_expression] = STATE(1323), - [sym_as_expression] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym__binary_expression] = STATE(1323), - [sym_multiplicative_expression] = STATE(1323), - [sym_additive_expression] = STATE(1323), - [sym_range_expression] = STATE(1323), - [sym_infix_expression] = STATE(1323), - [sym_nil_coalescing_expression] = STATE(1323), - [sym_check_expression] = STATE(1323), - [sym_comparison_expression] = STATE(1323), - [sym_equality_expression] = STATE(1323), - [sym_conjunction_expression] = STATE(1323), - [sym_disjunction_expression] = STATE(1323), - [sym_bitwise_operation] = STATE(1323), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1323), - [sym_await_expression] = STATE(1323), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1323), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1323), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1323), - [sym_dictionary_literal] = STATE(1323), - [sym__special_literal] = STATE(1323), - [sym__playground_literal] = STATE(1323), - [sym_lambda_literal] = STATE(1323), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1323), - [sym__if_condition_sequence_item] = STATE(5238), - [sym__if_let_binding] = STATE(5970), - [sym_key_path_expression] = STATE(1323), - [sym_key_path_string_expression] = STATE(1323), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1323), - [sym__equality_operator] = STATE(1323), - [sym__comparison_operator] = STATE(1323), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1323), - [sym__multiplicative_operator] = STATE(1323), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1323), - [sym_availability_condition] = STATE(5238), - [sym__referenceable_operator] = STATE(1323), - [sym__eq_eq] = STATE(1323), - [sym__dot] = STATE(498), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4714), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3488), - [sym__binding_kind_and_pattern] = STATE(4655), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(843), - [sym_real_literal] = ACTIONS(845), - [sym_integer_literal] = ACTIONS(843), - [sym_hex_literal] = ACTIONS(845), - [sym_oct_literal] = ACTIONS(845), - [sym_bin_literal] = ACTIONS(845), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(849), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(843), - [anon_sym_POUNDfileID] = ACTIONS(845), - [anon_sym_POUNDfilePath] = ACTIONS(845), - [anon_sym_POUNDline] = ACTIONS(845), - [anon_sym_POUNDcolumn] = ACTIONS(845), - [anon_sym_POUNDfunction] = ACTIONS(845), - [anon_sym_POUNDdsohandle] = ACTIONS(845), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(851), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_STAR_EQ] = ACTIONS(845), - [anon_sym_SLASH_EQ] = ACTIONS(845), - [anon_sym_PERCENT_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_POUNDavailable] = ACTIONS(853), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(845), - [sym__plus_then_ws] = ACTIONS(845), - [sym__minus_then_ws] = ACTIONS(845), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [142] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1323), - [sym_boolean_literal] = STATE(1323), - [sym__string_literal] = STATE(1323), - [sym_line_string_literal] = STATE(1323), - [sym_multi_line_string_literal] = STATE(1323), - [sym_raw_string_literal] = STATE(1323), - [sym_regex_literal] = STATE(1323), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1323), - [sym__unary_expression] = STATE(1323), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1323), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1323), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1323), - [sym_prefix_expression] = STATE(1323), - [sym_as_expression] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym__binary_expression] = STATE(1323), - [sym_multiplicative_expression] = STATE(1323), - [sym_additive_expression] = STATE(1323), - [sym_range_expression] = STATE(1323), - [sym_infix_expression] = STATE(1323), - [sym_nil_coalescing_expression] = STATE(1323), - [sym_check_expression] = STATE(1323), - [sym_comparison_expression] = STATE(1323), - [sym_equality_expression] = STATE(1323), - [sym_conjunction_expression] = STATE(1323), - [sym_disjunction_expression] = STATE(1323), - [sym_bitwise_operation] = STATE(1323), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1323), - [sym_await_expression] = STATE(1323), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1323), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1323), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1323), - [sym_dictionary_literal] = STATE(1323), - [sym__special_literal] = STATE(1323), - [sym__playground_literal] = STATE(1323), - [sym_lambda_literal] = STATE(1323), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1323), - [sym__if_condition_sequence_item] = STATE(6004), - [sym__if_let_binding] = STATE(5970), - [sym_key_path_expression] = STATE(1323), - [sym_key_path_string_expression] = STATE(1323), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1323), - [sym__equality_operator] = STATE(1323), - [sym__comparison_operator] = STATE(1323), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1323), - [sym__multiplicative_operator] = STATE(1323), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1323), - [sym_availability_condition] = STATE(6004), - [sym__referenceable_operator] = STATE(1323), - [sym__eq_eq] = STATE(1323), - [sym__dot] = STATE(498), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4714), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3488), - [sym__binding_kind_and_pattern] = STATE(4655), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(843), - [sym_real_literal] = ACTIONS(845), - [sym_integer_literal] = ACTIONS(843), - [sym_hex_literal] = ACTIONS(845), - [sym_oct_literal] = ACTIONS(845), - [sym_bin_literal] = ACTIONS(845), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(849), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(843), - [anon_sym_GT] = ACTIONS(843), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(843), - [anon_sym_POUNDfileID] = ACTIONS(845), - [anon_sym_POUNDfilePath] = ACTIONS(845), - [anon_sym_POUNDline] = ACTIONS(845), - [anon_sym_POUNDcolumn] = ACTIONS(845), - [anon_sym_POUNDfunction] = ACTIONS(845), - [anon_sym_POUNDdsohandle] = ACTIONS(845), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_case] = ACTIONS(851), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_STAR_EQ] = ACTIONS(845), - [anon_sym_SLASH_EQ] = ACTIONS(845), - [anon_sym_PERCENT_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ] = ACTIONS(843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(843), - [anon_sym_SLASH] = ACTIONS(843), - [anon_sym_PERCENT] = ACTIONS(843), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(843), - [anon_sym_LT_LT] = ACTIONS(845), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_POUNDavailable] = ACTIONS(853), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(845), - [sym__plus_then_ws] = ACTIONS(845), - [sym__minus_then_ws] = ACTIONS(845), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [143] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1278), - [sym_boolean_literal] = STATE(1278), - [sym__string_literal] = STATE(1278), - [sym_line_string_literal] = STATE(1278), - [sym_multi_line_string_literal] = STATE(1278), - [sym_raw_string_literal] = STATE(1278), - [sym_regex_literal] = STATE(1278), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1278), - [sym__unary_expression] = STATE(1278), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1278), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1278), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1278), - [sym_prefix_expression] = STATE(1278), - [sym_as_expression] = STATE(1278), - [sym_selector_expression] = STATE(1278), - [sym__binary_expression] = STATE(1278), - [sym_multiplicative_expression] = STATE(1278), - [sym_additive_expression] = STATE(1278), - [sym_range_expression] = STATE(1278), - [sym_infix_expression] = STATE(1278), - [sym_nil_coalescing_expression] = STATE(1278), - [sym_check_expression] = STATE(1278), - [sym_comparison_expression] = STATE(1278), - [sym_equality_expression] = STATE(1278), - [sym_conjunction_expression] = STATE(1278), - [sym_disjunction_expression] = STATE(1278), - [sym_bitwise_operation] = STATE(1278), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1278), - [sym_await_expression] = STATE(1278), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1278), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1278), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1278), - [sym_dictionary_literal] = STATE(1278), - [sym__special_literal] = STATE(1278), - [sym__playground_literal] = STATE(1278), - [sym_lambda_literal] = STATE(1278), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1278), - [sym__if_condition_sequence_item] = STATE(6192), - [sym__if_let_binding] = STATE(6162), - [sym_key_path_expression] = STATE(1278), - [sym_key_path_string_expression] = STATE(1278), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1278), - [sym__equality_operator] = STATE(1278), - [sym__comparison_operator] = STATE(1278), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1278), - [sym__multiplicative_operator] = STATE(1278), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1278), - [sym_availability_condition] = STATE(6192), - [sym__referenceable_operator] = STATE(1278), - [sym__eq_eq] = STATE(1278), - [sym__dot] = STATE(445), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4779), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3487), - [sym__binding_kind_and_pattern] = STATE(4776), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(859), - [sym_real_literal] = ACTIONS(861), - [sym_integer_literal] = ACTIONS(859), - [sym_hex_literal] = ACTIONS(861), - [sym_oct_literal] = ACTIONS(861), - [sym_bin_literal] = ACTIONS(861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(883), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(859), - [anon_sym_GT] = ACTIONS(859), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(859), - [anon_sym_POUNDfileID] = ACTIONS(861), - [anon_sym_POUNDfilePath] = ACTIONS(861), - [anon_sym_POUNDline] = ACTIONS(861), - [anon_sym_POUNDcolumn] = ACTIONS(861), - [anon_sym_POUNDfunction] = ACTIONS(861), - [anon_sym_POUNDdsohandle] = ACTIONS(861), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_case] = ACTIONS(899), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(861), - [anon_sym_DASH_EQ] = ACTIONS(861), - [anon_sym_STAR_EQ] = ACTIONS(861), - [anon_sym_SLASH_EQ] = ACTIONS(861), - [anon_sym_PERCENT_EQ] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_SLASH] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(859), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(859), - [anon_sym_LT_LT] = ACTIONS(861), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_POUNDavailable] = ACTIONS(915), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(861), - [sym__plus_then_ws] = ACTIONS(861), - [sym__minus_then_ws] = ACTIONS(861), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [144] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(619), - [sym_boolean_literal] = STATE(619), - [sym__string_literal] = STATE(619), - [sym_line_string_literal] = STATE(619), - [sym_multi_line_string_literal] = STATE(619), - [sym_raw_string_literal] = STATE(619), - [sym_regex_literal] = STATE(619), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(619), - [sym__unary_expression] = STATE(619), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(619), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(619), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(619), - [sym_prefix_expression] = STATE(619), - [sym_as_expression] = STATE(619), - [sym_selector_expression] = STATE(619), - [sym__binary_expression] = STATE(619), - [sym_multiplicative_expression] = STATE(619), - [sym_additive_expression] = STATE(619), - [sym_range_expression] = STATE(619), - [sym_infix_expression] = STATE(619), - [sym_nil_coalescing_expression] = STATE(619), - [sym_check_expression] = STATE(619), - [sym_comparison_expression] = STATE(619), - [sym_equality_expression] = STATE(619), - [sym_conjunction_expression] = STATE(619), - [sym_disjunction_expression] = STATE(619), - [sym_bitwise_operation] = STATE(619), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(619), - [sym_await_expression] = STATE(619), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(619), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(619), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(619), - [sym_dictionary_literal] = STATE(619), - [sym__special_literal] = STATE(619), - [sym__playground_literal] = STATE(619), - [sym_lambda_literal] = STATE(619), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(619), - [sym__if_condition_sequence_item] = STATE(2869), - [sym__if_let_binding] = STATE(2891), - [sym_key_path_expression] = STATE(619), - [sym_key_path_string_expression] = STATE(619), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(619), - [sym__equality_operator] = STATE(619), - [sym__comparison_operator] = STATE(619), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(619), - [sym__multiplicative_operator] = STATE(619), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(619), - [sym_availability_condition] = STATE(2869), - [sym__referenceable_operator] = STATE(619), - [sym__eq_eq] = STATE(619), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(2808), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3486), - [sym__binding_kind_and_pattern] = STATE(2809), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(919), - [sym_real_literal] = ACTIONS(921), - [sym_integer_literal] = ACTIONS(919), - [sym_hex_literal] = ACTIONS(921), - [sym_oct_literal] = ACTIONS(921), - [sym_bin_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(919), - [anon_sym_POUNDfileID] = ACTIONS(921), - [anon_sym_POUNDfilePath] = ACTIONS(921), - [anon_sym_POUNDline] = ACTIONS(921), - [anon_sym_POUNDcolumn] = ACTIONS(921), - [anon_sym_POUNDfunction] = ACTIONS(921), - [anon_sym_POUNDdsohandle] = ACTIONS(921), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_case] = ACTIONS(923), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_POUNDavailable] = ACTIONS(925), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(921), - [sym__plus_then_ws] = ACTIONS(921), - [sym__minus_then_ws] = ACTIONS(921), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [145] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1154), - [sym_boolean_literal] = STATE(1154), - [sym__string_literal] = STATE(1154), - [sym_line_string_literal] = STATE(1154), - [sym_multi_line_string_literal] = STATE(1154), - [sym_raw_string_literal] = STATE(1154), - [sym_regex_literal] = STATE(1154), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1154), - [sym__unary_expression] = STATE(1154), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1154), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1154), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1154), - [sym_prefix_expression] = STATE(1154), - [sym_as_expression] = STATE(1154), - [sym_selector_expression] = STATE(1154), - [sym__binary_expression] = STATE(1154), - [sym_multiplicative_expression] = STATE(1154), - [sym_additive_expression] = STATE(1154), - [sym_range_expression] = STATE(1154), - [sym_infix_expression] = STATE(1154), - [sym_nil_coalescing_expression] = STATE(1154), - [sym_check_expression] = STATE(1154), - [sym_comparison_expression] = STATE(1154), - [sym_equality_expression] = STATE(1154), - [sym_conjunction_expression] = STATE(1154), - [sym_disjunction_expression] = STATE(1154), - [sym_bitwise_operation] = STATE(1154), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1154), - [sym_await_expression] = STATE(1154), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1154), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1154), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1154), - [sym_dictionary_literal] = STATE(1154), - [sym__special_literal] = STATE(1154), - [sym__playground_literal] = STATE(1154), - [sym_lambda_literal] = STATE(1154), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1154), - [sym__if_condition_sequence_item] = STATE(4943), - [sym__if_let_binding] = STATE(4985), - [sym_key_path_expression] = STATE(1154), - [sym_key_path_string_expression] = STATE(1154), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1154), - [sym__equality_operator] = STATE(1154), - [sym__comparison_operator] = STATE(1154), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1154), - [sym__multiplicative_operator] = STATE(1154), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1154), - [sym_availability_condition] = STATE(4943), - [sym__referenceable_operator] = STATE(1154), - [sym__eq_eq] = STATE(1154), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4367), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3489), - [sym__binding_kind_and_pattern] = STATE(4368), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(835), - [sym_real_literal] = ACTIONS(837), - [sym_integer_literal] = ACTIONS(835), - [sym_hex_literal] = ACTIONS(837), - [sym_oct_literal] = ACTIONS(837), - [sym_bin_literal] = ACTIONS(837), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(835), - [anon_sym_POUNDfileID] = ACTIONS(837), - [anon_sym_POUNDfilePath] = ACTIONS(837), - [anon_sym_POUNDline] = ACTIONS(837), - [anon_sym_POUNDcolumn] = ACTIONS(837), - [anon_sym_POUNDfunction] = ACTIONS(837), - [anon_sym_POUNDdsohandle] = ACTIONS(837), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_case] = ACTIONS(839), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(837), - [anon_sym_DASH_EQ] = ACTIONS(837), - [anon_sym_STAR_EQ] = ACTIONS(837), - [anon_sym_SLASH_EQ] = ACTIONS(837), - [anon_sym_PERCENT_EQ] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(837), - [anon_sym_GT_GT] = ACTIONS(837), - [anon_sym_POUNDavailable] = ACTIONS(841), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(837), - [sym__plus_then_ws] = ACTIONS(837), - [sym__minus_then_ws] = ACTIONS(837), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [146] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1154), - [sym_boolean_literal] = STATE(1154), - [sym__string_literal] = STATE(1154), - [sym_line_string_literal] = STATE(1154), - [sym_multi_line_string_literal] = STATE(1154), - [sym_raw_string_literal] = STATE(1154), - [sym_regex_literal] = STATE(1154), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1154), - [sym__unary_expression] = STATE(1154), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1154), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1154), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1154), - [sym_prefix_expression] = STATE(1154), - [sym_as_expression] = STATE(1154), - [sym_selector_expression] = STATE(1154), - [sym__binary_expression] = STATE(1154), - [sym_multiplicative_expression] = STATE(1154), - [sym_additive_expression] = STATE(1154), - [sym_range_expression] = STATE(1154), - [sym_infix_expression] = STATE(1154), - [sym_nil_coalescing_expression] = STATE(1154), - [sym_check_expression] = STATE(1154), - [sym_comparison_expression] = STATE(1154), - [sym_equality_expression] = STATE(1154), - [sym_conjunction_expression] = STATE(1154), - [sym_disjunction_expression] = STATE(1154), - [sym_bitwise_operation] = STATE(1154), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1154), - [sym_await_expression] = STATE(1154), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1154), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1154), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1154), - [sym_dictionary_literal] = STATE(1154), - [sym__special_literal] = STATE(1154), - [sym__playground_literal] = STATE(1154), - [sym_lambda_literal] = STATE(1154), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1154), - [sym__if_condition_sequence_item] = STATE(4711), - [sym__if_let_binding] = STATE(4985), - [sym_key_path_expression] = STATE(1154), - [sym_key_path_string_expression] = STATE(1154), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1154), - [sym__equality_operator] = STATE(1154), - [sym__comparison_operator] = STATE(1154), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1154), - [sym__multiplicative_operator] = STATE(1154), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1154), - [sym_availability_condition] = STATE(4711), - [sym__referenceable_operator] = STATE(1154), - [sym__eq_eq] = STATE(1154), - [sym__dot] = STATE(550), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(4367), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3489), - [sym__binding_kind_and_pattern] = STATE(4368), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(835), - [sym_real_literal] = ACTIONS(837), - [sym_integer_literal] = ACTIONS(835), - [sym_hex_literal] = ACTIONS(837), - [sym_oct_literal] = ACTIONS(837), - [sym_bin_literal] = ACTIONS(837), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(41), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(835), - [anon_sym_POUNDfileID] = ACTIONS(837), - [anon_sym_POUNDfilePath] = ACTIONS(837), - [anon_sym_POUNDline] = ACTIONS(837), - [anon_sym_POUNDcolumn] = ACTIONS(837), - [anon_sym_POUNDfunction] = ACTIONS(837), - [anon_sym_POUNDdsohandle] = ACTIONS(837), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_case] = ACTIONS(839), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(837), - [anon_sym_DASH_EQ] = ACTIONS(837), - [anon_sym_STAR_EQ] = ACTIONS(837), - [anon_sym_SLASH_EQ] = ACTIONS(837), - [anon_sym_PERCENT_EQ] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(837), - [anon_sym_GT_GT] = ACTIONS(837), - [anon_sym_POUNDavailable] = ACTIONS(841), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(837), - [sym__plus_then_ws] = ACTIONS(837), - [sym__minus_then_ws] = ACTIONS(837), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [147] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(619), - [sym_boolean_literal] = STATE(619), - [sym__string_literal] = STATE(619), - [sym_line_string_literal] = STATE(619), - [sym_multi_line_string_literal] = STATE(619), - [sym_raw_string_literal] = STATE(619), - [sym_regex_literal] = STATE(619), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(619), - [sym__unary_expression] = STATE(619), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(619), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(619), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(619), - [sym_prefix_expression] = STATE(619), - [sym_as_expression] = STATE(619), - [sym_selector_expression] = STATE(619), - [sym__binary_expression] = STATE(619), - [sym_multiplicative_expression] = STATE(619), - [sym_additive_expression] = STATE(619), - [sym_range_expression] = STATE(619), - [sym_infix_expression] = STATE(619), - [sym_nil_coalescing_expression] = STATE(619), - [sym_check_expression] = STATE(619), - [sym_comparison_expression] = STATE(619), - [sym_equality_expression] = STATE(619), - [sym_conjunction_expression] = STATE(619), - [sym_disjunction_expression] = STATE(619), - [sym_bitwise_operation] = STATE(619), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(619), - [sym_await_expression] = STATE(619), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(619), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(619), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(619), - [sym_dictionary_literal] = STATE(619), - [sym__special_literal] = STATE(619), - [sym__playground_literal] = STATE(619), - [sym_lambda_literal] = STATE(619), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(619), - [sym__if_condition_sequence_item] = STATE(2878), - [sym__if_let_binding] = STATE(2891), - [sym_key_path_expression] = STATE(619), - [sym_key_path_string_expression] = STATE(619), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(619), - [sym__equality_operator] = STATE(619), - [sym__comparison_operator] = STATE(619), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(619), - [sym__multiplicative_operator] = STATE(619), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(619), - [sym_availability_condition] = STATE(2878), - [sym__referenceable_operator] = STATE(619), - [sym__eq_eq] = STATE(619), - [sym__dot] = STATE(525), - [sym__async_modifier] = STATE(5341), - [sym__direct_or_indirect_binding] = STATE(2808), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3486), - [sym__binding_kind_and_pattern] = STATE(2809), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(919), - [sym_real_literal] = ACTIONS(921), - [sym_integer_literal] = ACTIONS(919), - [sym_hex_literal] = ACTIONS(921), - [sym_oct_literal] = ACTIONS(921), - [sym_bin_literal] = ACTIONS(921), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(235), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(919), - [anon_sym_POUNDfileID] = ACTIONS(921), - [anon_sym_POUNDfilePath] = ACTIONS(921), - [anon_sym_POUNDline] = ACTIONS(921), - [anon_sym_POUNDcolumn] = ACTIONS(921), - [anon_sym_POUNDfunction] = ACTIONS(921), - [anon_sym_POUNDdsohandle] = ACTIONS(921), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_case] = ACTIONS(923), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(921), - [anon_sym_DASH_EQ] = ACTIONS(921), - [anon_sym_STAR_EQ] = ACTIONS(921), - [anon_sym_SLASH_EQ] = ACTIONS(921), - [anon_sym_PERCENT_EQ] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_PERCENT] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_POUNDavailable] = ACTIONS(925), - [anon_sym_let] = ACTIONS(101), - [anon_sym_var] = ACTIONS(101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(921), - [sym__plus_then_ws] = ACTIONS(921), - [sym__minus_then_ws] = ACTIONS(921), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [148] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5351), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(931), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [149] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5546), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [150] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5688), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [151] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5636), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(941), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [152] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5635), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(943), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [153] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5694), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [154] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5683), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(939), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [155] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5427), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [156] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5680), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(949), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [157] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5715), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [158] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5425), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [159] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5424), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(953), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [160] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5423), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(955), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [161] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5354), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [162] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5788), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(959), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [163] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5352), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [164] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5785), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(961), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [165] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5780), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [166] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5760), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [167] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5637), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(941), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [168] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym__interpolation_contents] = STATE(6327), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5532), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [169] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5350), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(965), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [170] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5553), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(967), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [171] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym__interpolation_contents] = STATE(6348), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5532), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [172] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5549), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(937), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [173] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5547), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [174] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5533), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [175] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5528), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(971), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [176] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5523), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(973), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [177] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym__interpolation_contents] = STATE(6400), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5532), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [178] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5543), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [179] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5379), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(977), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [180] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5378), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(979), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [181] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5376), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [182] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5374), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [183] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5281), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(983), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [184] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5282), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(985), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [185] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5283), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [186] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5285), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [187] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(5500), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [188] = { - [sym_simple_identifier] = STATE(1746), - [sym__basic_literal] = STATE(1205), - [sym_boolean_literal] = STATE(1205), - [sym__string_literal] = STATE(1205), - [sym_line_string_literal] = STATE(1205), - [sym_multi_line_string_literal] = STATE(1205), - [sym_raw_string_literal] = STATE(1205), - [sym_regex_literal] = STATE(1205), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(1205), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1205), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1205), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1205), - [sym_prefix_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_selector_expression] = STATE(1205), - [sym__binary_expression] = STATE(1205), - [sym_multiplicative_expression] = STATE(1205), - [sym_additive_expression] = STATE(1205), - [sym_range_expression] = STATE(1205), - [sym_infix_expression] = STATE(1205), - [sym_nil_coalescing_expression] = STATE(1205), - [sym_check_expression] = STATE(1205), - [sym_comparison_expression] = STATE(1205), - [sym_equality_expression] = STATE(1205), - [sym_conjunction_expression] = STATE(1205), - [sym_disjunction_expression] = STATE(1205), - [sym_bitwise_operation] = STATE(1205), - [sym_custom_operator] = STATE(787), - [sym_value_argument] = STATE(6075), - [sym_try_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1205), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1205), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1205), - [sym_dictionary_literal] = STATE(1205), - [sym__special_literal] = STATE(1205), - [sym__playground_literal] = STATE(1205), - [sym_lambda_literal] = STATE(1205), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1205), - [sym_key_path_expression] = STATE(1205), - [sym_key_path_string_expression] = STATE(1205), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1205), - [sym__equality_operator] = STATE(1205), - [sym__comparison_operator] = STATE(1205), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1205), - [sym__multiplicative_operator] = STATE(1205), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1205), - [sym__referenceable_operator] = STATE(1205), - [sym__eq_eq] = STATE(1205), - [sym__dot] = STATE(498), - [sym_attribute] = STATE(908), - [sym_type_modifiers] = STATE(351), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4327), - [aux_sym__lambda_type_declaration_repeat1] = STATE(908), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(927), - [sym_real_literal] = ACTIONS(929), - [sym_integer_literal] = ACTIONS(927), - [sym_hex_literal] = ACTIONS(929), - [sym_oct_literal] = ACTIONS(929), - [sym_bin_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(933), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(927), - [anon_sym_POUNDfileID] = ACTIONS(929), - [anon_sym_POUNDfilePath] = ACTIONS(929), - [anon_sym_POUNDline] = ACTIONS(929), - [anon_sym_POUNDcolumn] = ACTIONS(929), - [anon_sym_POUNDfunction] = ACTIONS(929), - [anon_sym_POUNDdsohandle] = ACTIONS(929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_LT_LT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(929), - [sym__plus_then_ws] = ACTIONS(929), - [sym__minus_then_ws] = ACTIONS(929), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [189] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1255), - [sym_boolean_literal] = STATE(1255), - [sym__string_literal] = STATE(1255), - [sym_line_string_literal] = STATE(1255), - [sym_multi_line_string_literal] = STATE(1255), - [sym_raw_string_literal] = STATE(1255), - [sym_regex_literal] = STATE(1255), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(1255), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1255), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1255), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1255), - [sym_prefix_expression] = STATE(1255), - [sym_as_expression] = STATE(1255), - [sym_selector_expression] = STATE(1255), - [sym__binary_expression] = STATE(1255), - [sym_multiplicative_expression] = STATE(1255), - [sym_additive_expression] = STATE(1255), - [sym_range_expression] = STATE(1255), - [sym_infix_expression] = STATE(1255), - [sym_nil_coalescing_expression] = STATE(1255), - [sym_check_expression] = STATE(1255), - [sym_comparison_expression] = STATE(1255), - [sym_equality_expression] = STATE(1255), - [sym_conjunction_expression] = STATE(1255), - [sym_disjunction_expression] = STATE(1255), - [sym_bitwise_operation] = STATE(1255), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1255), - [sym_await_expression] = STATE(1255), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1255), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1255), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1255), - [sym_dictionary_literal] = STATE(1255), - [sym__special_literal] = STATE(1255), - [sym__playground_literal] = STATE(1255), - [sym_lambda_literal] = STATE(1255), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1255), - [sym_key_path_expression] = STATE(1255), - [sym_key_path_string_expression] = STATE(1255), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1255), - [sym__equality_operator] = STATE(1255), - [sym__comparison_operator] = STATE(1255), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1255), - [sym__multiplicative_operator] = STATE(1255), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1255), - [sym__referenceable_operator] = STATE(1255), - [sym__eq_eq] = STATE(1255), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(989), - [aux_sym_simple_identifier_token2] = ACTIONS(992), - [aux_sym_simple_identifier_token3] = ACTIONS(992), - [aux_sym_simple_identifier_token4] = ACTIONS(992), - [anon_sym_actor] = ACTIONS(989), - [anon_sym_nil] = ACTIONS(995), - [sym_real_literal] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(995), - [sym_hex_literal] = ACTIONS(997), - [sym_oct_literal] = ACTIONS(997), - [sym_bin_literal] = ACTIONS(997), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_some] = ACTIONS(1005), - [anon_sym_any] = ACTIONS(1005), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(995), - [anon_sym_POUNDfileID] = ACTIONS(997), - [anon_sym_POUNDfilePath] = ACTIONS(997), - [anon_sym_POUNDline] = ACTIONS(997), - [anon_sym_POUNDcolumn] = ACTIONS(997), - [anon_sym_POUNDfunction] = ACTIONS(997), - [anon_sym_POUNDdsohandle] = ACTIONS(997), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PERCENT_EQ] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ_EQ] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym_inout] = ACTIONS(1005), - [anon_sym_ATescaping] = ACTIONS(1007), - [anon_sym_ATautoclosure] = ACTIONS(1007), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(997), - [sym__plus_then_ws] = ACTIONS(997), - [sym__minus_then_ws] = ACTIONS(997), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [190] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5732), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [191] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5820), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [192] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5724), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [193] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5521), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [194] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1229), - [sym_boolean_literal] = STATE(1229), - [sym__string_literal] = STATE(1229), - [sym_line_string_literal] = STATE(1229), - [sym_multi_line_string_literal] = STATE(1229), - [sym_raw_string_literal] = STATE(1229), - [sym_regex_literal] = STATE(1229), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(1229), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1229), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1229), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1229), - [sym_prefix_expression] = STATE(1229), - [sym_as_expression] = STATE(1229), - [sym_selector_expression] = STATE(1229), - [sym__binary_expression] = STATE(1229), - [sym_multiplicative_expression] = STATE(1229), - [sym_additive_expression] = STATE(1229), - [sym_range_expression] = STATE(1229), - [sym_infix_expression] = STATE(1229), - [sym_nil_coalescing_expression] = STATE(1229), - [sym_check_expression] = STATE(1229), - [sym_comparison_expression] = STATE(1229), - [sym_equality_expression] = STATE(1229), - [sym_conjunction_expression] = STATE(1229), - [sym_disjunction_expression] = STATE(1229), - [sym_bitwise_operation] = STATE(1229), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1229), - [sym_await_expression] = STATE(1229), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1229), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1229), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1229), - [sym_dictionary_literal] = STATE(1229), - [sym__special_literal] = STATE(1229), - [sym__playground_literal] = STATE(1229), - [sym_lambda_literal] = STATE(1229), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1229), - [sym_key_path_expression] = STATE(1229), - [sym_key_path_string_expression] = STATE(1229), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1229), - [sym__equality_operator] = STATE(1229), - [sym__comparison_operator] = STATE(1229), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1229), - [sym__multiplicative_operator] = STATE(1229), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1229), - [sym__referenceable_operator] = STATE(1229), - [sym__eq_eq] = STATE(1229), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1017), - [aux_sym_simple_identifier_token2] = ACTIONS(1020), - [aux_sym_simple_identifier_token3] = ACTIONS(1020), - [aux_sym_simple_identifier_token4] = ACTIONS(1020), - [anon_sym_actor] = ACTIONS(1017), - [anon_sym_nil] = ACTIONS(1023), - [sym_real_literal] = ACTIONS(1025), - [sym_integer_literal] = ACTIONS(1023), - [sym_hex_literal] = ACTIONS(1025), - [sym_oct_literal] = ACTIONS(1025), - [sym_bin_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1023), - [anon_sym_POUNDfileID] = ACTIONS(1025), - [anon_sym_POUNDfilePath] = ACTIONS(1025), - [anon_sym_POUNDline] = ACTIONS(1025), - [anon_sym_POUNDcolumn] = ACTIONS(1025), - [anon_sym_POUNDfunction] = ACTIONS(1025), - [anon_sym_POUNDdsohandle] = ACTIONS(1025), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1025), - [anon_sym_DASH_EQ] = ACTIONS(1025), - [anon_sym_STAR_EQ] = ACTIONS(1025), - [anon_sym_SLASH_EQ] = ACTIONS(1025), - [anon_sym_PERCENT_EQ] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1025), - [sym__plus_then_ws] = ACTIONS(1025), - [sym__minus_then_ws] = ACTIONS(1025), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [195] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5328), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [196] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1305), - [sym_boolean_literal] = STATE(1305), - [sym__string_literal] = STATE(1305), - [sym_line_string_literal] = STATE(1305), - [sym_multi_line_string_literal] = STATE(1305), - [sym_raw_string_literal] = STATE(1305), - [sym_regex_literal] = STATE(1305), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1305), - [sym__unary_expression] = STATE(1305), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1305), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1305), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1305), - [sym_prefix_expression] = STATE(1305), - [sym_as_expression] = STATE(1305), - [sym_selector_expression] = STATE(1305), - [sym__binary_expression] = STATE(1305), - [sym_multiplicative_expression] = STATE(1305), - [sym_additive_expression] = STATE(1305), - [sym_range_expression] = STATE(1305), - [sym_infix_expression] = STATE(1305), - [sym_nil_coalescing_expression] = STATE(1305), - [sym_check_expression] = STATE(1305), - [sym_comparison_expression] = STATE(1305), - [sym_equality_expression] = STATE(1305), - [sym_conjunction_expression] = STATE(1305), - [sym_disjunction_expression] = STATE(1305), - [sym_bitwise_operation] = STATE(1305), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1305), - [sym_await_expression] = STATE(1305), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1305), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1305), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1305), - [sym_dictionary_literal] = STATE(1305), - [sym__special_literal] = STATE(1305), - [sym__playground_literal] = STATE(1305), - [sym_lambda_literal] = STATE(1305), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1305), - [sym_key_path_expression] = STATE(1305), - [sym_key_path_string_expression] = STATE(1305), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1305), - [sym__equality_operator] = STATE(1305), - [sym__comparison_operator] = STATE(1305), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1305), - [sym__multiplicative_operator] = STATE(1305), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1305), - [sym__referenceable_operator] = STATE(1305), - [sym__eq_eq] = STATE(1305), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1029), - [sym_real_literal] = ACTIONS(1031), - [sym_integer_literal] = ACTIONS(1029), - [sym_hex_literal] = ACTIONS(1031), - [sym_oct_literal] = ACTIONS(1031), - [sym_bin_literal] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(1033), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1029), - [anon_sym_POUNDfileID] = ACTIONS(1031), - [anon_sym_POUNDfilePath] = ACTIONS(1031), - [anon_sym_POUNDline] = ACTIONS(1031), - [anon_sym_POUNDcolumn] = ACTIONS(1031), - [anon_sym_POUNDfunction] = ACTIONS(1031), - [anon_sym_POUNDdsohandle] = ACTIONS(1031), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1031), - [anon_sym_DASH_EQ] = ACTIONS(1031), - [anon_sym_STAR_EQ] = ACTIONS(1031), - [anon_sym_SLASH_EQ] = ACTIONS(1031), - [anon_sym_PERCENT_EQ] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1031), - [anon_sym_LT_EQ] = ACTIONS(1031), - [anon_sym_GT_EQ] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_PERCENT] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1031), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1031), - [sym__plus_then_ws] = ACTIONS(1031), - [sym__minus_then_ws] = ACTIONS(1031), - [sym_bang] = ACTIONS(619), - [sym_where_keyword] = ACTIONS(1033), - [sym__custom_operator] = ACTIONS(595), - }, - [197] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1221), - [sym_boolean_literal] = STATE(1221), - [sym__string_literal] = STATE(1221), - [sym_line_string_literal] = STATE(1221), - [sym_multi_line_string_literal] = STATE(1221), - [sym_raw_string_literal] = STATE(1221), - [sym_regex_literal] = STATE(1221), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(1221), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1221), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1221), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1221), - [sym_prefix_expression] = STATE(1221), - [sym_as_expression] = STATE(1221), - [sym_selector_expression] = STATE(1221), - [sym__binary_expression] = STATE(1221), - [sym_multiplicative_expression] = STATE(1221), - [sym_additive_expression] = STATE(1221), - [sym_range_expression] = STATE(1221), - [sym_infix_expression] = STATE(1221), - [sym_nil_coalescing_expression] = STATE(1221), - [sym_check_expression] = STATE(1221), - [sym_comparison_expression] = STATE(1221), - [sym_equality_expression] = STATE(1221), - [sym_conjunction_expression] = STATE(1221), - [sym_disjunction_expression] = STATE(1221), - [sym_bitwise_operation] = STATE(1221), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1221), - [sym_await_expression] = STATE(1221), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1221), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1221), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1221), - [sym_dictionary_literal] = STATE(1221), - [sym__special_literal] = STATE(1221), - [sym__playground_literal] = STATE(1221), - [sym_lambda_literal] = STATE(1221), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1221), - [sym_key_path_expression] = STATE(1221), - [sym_key_path_string_expression] = STATE(1221), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1221), - [sym__equality_operator] = STATE(1221), - [sym__comparison_operator] = STATE(1221), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1221), - [sym__multiplicative_operator] = STATE(1221), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1221), - [sym__referenceable_operator] = STATE(1221), - [sym__eq_eq] = STATE(1221), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1017), - [aux_sym_simple_identifier_token2] = ACTIONS(1020), - [aux_sym_simple_identifier_token3] = ACTIONS(1020), - [aux_sym_simple_identifier_token4] = ACTIONS(1020), - [anon_sym_actor] = ACTIONS(1017), - [anon_sym_nil] = ACTIONS(1035), - [sym_real_literal] = ACTIONS(1037), - [sym_integer_literal] = ACTIONS(1035), - [sym_hex_literal] = ACTIONS(1037), - [sym_oct_literal] = ACTIONS(1037), - [sym_bin_literal] = ACTIONS(1037), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1035), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1035), - [anon_sym_POUNDfileID] = ACTIONS(1037), - [anon_sym_POUNDfilePath] = ACTIONS(1037), - [anon_sym_POUNDline] = ACTIONS(1037), - [anon_sym_POUNDcolumn] = ACTIONS(1037), - [anon_sym_POUNDfunction] = ACTIONS(1037), - [anon_sym_POUNDdsohandle] = ACTIONS(1037), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1037), - [anon_sym_DASH_EQ] = ACTIONS(1037), - [anon_sym_STAR_EQ] = ACTIONS(1037), - [anon_sym_SLASH_EQ] = ACTIONS(1037), - [anon_sym_PERCENT_EQ] = ACTIONS(1037), - [anon_sym_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1037), - [anon_sym_LT_EQ] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_SLASH] = ACTIONS(1035), - [anon_sym_PERCENT] = ACTIONS(1035), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1037), - [sym__plus_then_ws] = ACTIONS(1037), - [sym__minus_then_ws] = ACTIONS(1037), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [198] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5289), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [199] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5945), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [200] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5362), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [201] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5570), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [202] = { - [sym_simple_identifier] = STATE(1496), - [sym__basic_literal] = STATE(1295), - [sym_boolean_literal] = STATE(1295), - [sym__string_literal] = STATE(1295), - [sym_line_string_literal] = STATE(1295), - [sym_multi_line_string_literal] = STATE(1295), - [sym_raw_string_literal] = STATE(1295), - [sym_regex_literal] = STATE(1295), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1295), - [sym__unary_expression] = STATE(1295), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1295), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1295), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1295), - [sym_prefix_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_selector_expression] = STATE(1295), - [sym__binary_expression] = STATE(1295), - [sym_multiplicative_expression] = STATE(1295), - [sym_additive_expression] = STATE(1295), - [sym_range_expression] = STATE(1295), - [sym_infix_expression] = STATE(1295), - [sym_nil_coalescing_expression] = STATE(1295), - [sym_check_expression] = STATE(1295), - [sym_comparison_expression] = STATE(1295), - [sym_equality_expression] = STATE(1295), - [sym_conjunction_expression] = STATE(1295), - [sym_disjunction_expression] = STATE(1295), - [sym_bitwise_operation] = STATE(1295), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1295), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1295), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1295), - [sym_dictionary_literal] = STATE(1295), - [sym__special_literal] = STATE(1295), - [sym__playground_literal] = STATE(1295), - [sym_lambda_literal] = STATE(1295), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1295), - [sym_key_path_expression] = STATE(1295), - [sym_key_path_string_expression] = STATE(1295), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1295), - [sym__equality_operator] = STATE(1295), - [sym__comparison_operator] = STATE(1295), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1295), - [sym__multiplicative_operator] = STATE(1295), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1295), - [sym__referenceable_operator] = STATE(1295), - [sym__eq_eq] = STATE(1295), - [sym__dot] = STATE(498), - [sym__attribute_argument] = STATE(5435), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym__attribute_argument_repeat1] = STATE(4381), - [aux_sym__attribute_argument_repeat2] = STATE(4402), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1013), - [sym_real_literal] = ACTIONS(1015), - [sym_integer_literal] = ACTIONS(1013), - [sym_hex_literal] = ACTIONS(1015), - [sym_oct_literal] = ACTIONS(1015), - [sym_bin_literal] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1013), - [anon_sym_POUNDfileID] = ACTIONS(1015), - [anon_sym_POUNDfilePath] = ACTIONS(1015), - [anon_sym_POUNDline] = ACTIONS(1015), - [anon_sym_POUNDcolumn] = ACTIONS(1015), - [anon_sym_POUNDfunction] = ACTIONS(1015), - [anon_sym_POUNDdsohandle] = ACTIONS(1015), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1015), - [anon_sym_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1013), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1015), - [anon_sym_GT_GT] = ACTIONS(1015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1015), - [sym__plus_then_ws] = ACTIONS(1015), - [sym__minus_then_ws] = ACTIONS(1015), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [203] = { - [sym_simple_identifier] = STATE(1478), - [sym__basic_literal] = STATE(1209), - [sym_boolean_literal] = STATE(1209), - [sym__string_literal] = STATE(1209), - [sym_line_string_literal] = STATE(1209), - [sym_multi_line_string_literal] = STATE(1209), - [sym_raw_string_literal] = STATE(1209), - [sym_regex_literal] = STATE(1209), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(1209), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1209), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1209), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1209), - [sym_prefix_expression] = STATE(1209), - [sym_as_expression] = STATE(1209), - [sym_selector_expression] = STATE(1209), - [sym__binary_expression] = STATE(1209), - [sym_multiplicative_expression] = STATE(1209), - [sym_additive_expression] = STATE(1209), - [sym_range_expression] = STATE(1209), - [sym_infix_expression] = STATE(1209), - [sym_nil_coalescing_expression] = STATE(1209), - [sym_check_expression] = STATE(1209), - [sym_comparison_expression] = STATE(1209), - [sym_equality_expression] = STATE(1209), - [sym_conjunction_expression] = STATE(1209), - [sym_disjunction_expression] = STATE(1209), - [sym_bitwise_operation] = STATE(1209), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1209), - [sym_await_expression] = STATE(1209), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1209), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1209), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1209), - [sym_dictionary_literal] = STATE(1209), - [sym__special_literal] = STATE(1209), - [sym__playground_literal] = STATE(1209), - [sym_lambda_literal] = STATE(1209), - [sym_lambda_function_type_parameters] = STATE(6277), - [sym_lambda_parameter] = STATE(5677), - [sym_self_expression] = STATE(2056), - [sym_super_expression] = STATE(1209), - [sym_key_path_expression] = STATE(1209), - [sym_key_path_string_expression] = STATE(1209), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1209), - [sym__equality_operator] = STATE(1209), - [sym__comparison_operator] = STATE(1209), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1209), - [sym__multiplicative_operator] = STATE(1209), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1209), - [sym__referenceable_operator] = STATE(1209), - [sym__eq_eq] = STATE(1209), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1009), - [aux_sym_simple_identifier_token2] = ACTIONS(1011), - [aux_sym_simple_identifier_token3] = ACTIONS(1011), - [aux_sym_simple_identifier_token4] = ACTIONS(1011), - [anon_sym_actor] = ACTIONS(1009), - [anon_sym_nil] = ACTIONS(1039), - [sym_real_literal] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1039), - [sym_hex_literal] = ACTIONS(1041), - [sym_oct_literal] = ACTIONS(1041), - [sym_bin_literal] = ACTIONS(1041), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1043), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1039), - [anon_sym_POUNDfileID] = ACTIONS(1041), - [anon_sym_POUNDfilePath] = ACTIONS(1041), - [anon_sym_POUNDline] = ACTIONS(1041), - [anon_sym_POUNDcolumn] = ACTIONS(1041), - [anon_sym_POUNDfunction] = ACTIONS(1041), - [anon_sym_POUNDdsohandle] = ACTIONS(1041), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1041), - [anon_sym_DASH_EQ] = ACTIONS(1041), - [anon_sym_STAR_EQ] = ACTIONS(1041), - [anon_sym_SLASH_EQ] = ACTIONS(1041), - [anon_sym_PERCENT_EQ] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1041), - [anon_sym_LT_EQ] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1039), - [anon_sym_SLASH] = ACTIONS(1039), - [anon_sym_PERCENT] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1041), - [sym__plus_then_ws] = ACTIONS(1041), - [sym__minus_then_ws] = ACTIONS(1041), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [204] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1264), - [sym_boolean_literal] = STATE(1264), - [sym__string_literal] = STATE(1264), - [sym_line_string_literal] = STATE(1264), - [sym_multi_line_string_literal] = STATE(1264), - [sym_raw_string_literal] = STATE(1264), - [sym_regex_literal] = STATE(1264), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1264), - [sym__unary_expression] = STATE(1264), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1264), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1264), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1264), - [sym_prefix_expression] = STATE(1264), - [sym_as_expression] = STATE(1264), - [sym_selector_expression] = STATE(1264), - [sym__binary_expression] = STATE(1264), - [sym_multiplicative_expression] = STATE(1264), - [sym_additive_expression] = STATE(1264), - [sym_range_expression] = STATE(1264), - [sym_infix_expression] = STATE(1264), - [sym_nil_coalescing_expression] = STATE(1264), - [sym_check_expression] = STATE(1264), - [sym_comparison_expression] = STATE(1264), - [sym_equality_expression] = STATE(1264), - [sym_conjunction_expression] = STATE(1264), - [sym_disjunction_expression] = STATE(1264), - [sym_bitwise_operation] = STATE(1264), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1264), - [sym_await_expression] = STATE(1264), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1264), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1264), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1264), - [sym_dictionary_literal] = STATE(1264), - [sym__special_literal] = STATE(1264), - [sym__playground_literal] = STATE(1264), - [sym_lambda_literal] = STATE(1264), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1264), - [sym_key_path_expression] = STATE(1264), - [sym_key_path_string_expression] = STATE(1264), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1264), - [sym__equality_operator] = STATE(1264), - [sym__comparison_operator] = STATE(1264), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1264), - [sym__multiplicative_operator] = STATE(1264), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1264), - [sym__referenceable_operator] = STATE(1264), - [sym__eq_eq] = STATE(1264), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1045), - [sym_real_literal] = ACTIONS(1047), - [sym_integer_literal] = ACTIONS(1045), - [sym_hex_literal] = ACTIONS(1047), - [sym_oct_literal] = ACTIONS(1047), - [sym_bin_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1045), - [anon_sym_POUNDfileID] = ACTIONS(1047), - [anon_sym_POUNDfilePath] = ACTIONS(1047), - [anon_sym_POUNDline] = ACTIONS(1047), - [anon_sym_POUNDcolumn] = ACTIONS(1047), - [anon_sym_POUNDfunction] = ACTIONS(1047), - [anon_sym_POUNDdsohandle] = ACTIONS(1047), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1047), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_LT_LT] = ACTIONS(1047), - [anon_sym_GT_GT] = ACTIONS(1047), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__implicit_semi] = ACTIONS(549), - [sym__explicit_semi] = ACTIONS(549), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1047), - [sym__plus_then_ws] = ACTIONS(1047), - [sym__minus_then_ws] = ACTIONS(1047), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [205] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1333), - [sym_boolean_literal] = STATE(1333), - [sym__string_literal] = STATE(1333), - [sym_line_string_literal] = STATE(1333), - [sym_multi_line_string_literal] = STATE(1333), - [sym_raw_string_literal] = STATE(1333), - [sym_regex_literal] = STATE(1333), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1333), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1333), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1333), - [sym_prefix_expression] = STATE(1333), - [sym_as_expression] = STATE(1333), - [sym_selector_expression] = STATE(1333), - [sym__binary_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_range_expression] = STATE(1333), - [sym_infix_expression] = STATE(1333), - [sym_nil_coalescing_expression] = STATE(1333), - [sym_check_expression] = STATE(1333), - [sym_comparison_expression] = STATE(1333), - [sym_equality_expression] = STATE(1333), - [sym_conjunction_expression] = STATE(1333), - [sym_disjunction_expression] = STATE(1333), - [sym_bitwise_operation] = STATE(1333), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1333), - [sym_await_expression] = STATE(1333), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1333), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1333), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1333), - [sym_dictionary_literal] = STATE(1333), - [sym__special_literal] = STATE(1333), - [sym__playground_literal] = STATE(1333), - [sym_lambda_literal] = STATE(1333), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1333), - [sym_key_path_expression] = STATE(1333), - [sym_key_path_string_expression] = STATE(1333), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1333), - [sym__equality_operator] = STATE(1333), - [sym__comparison_operator] = STATE(1333), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1333), - [sym__multiplicative_operator] = STATE(1333), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1333), - [sym__referenceable_operator] = STATE(1333), - [sym__eq_eq] = STATE(1333), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1051), - [sym_real_literal] = ACTIONS(1053), - [sym_integer_literal] = ACTIONS(1051), - [sym_hex_literal] = ACTIONS(1053), - [sym_oct_literal] = ACTIONS(1053), - [sym_bin_literal] = ACTIONS(1053), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1033), - [anon_sym_COMMA] = ACTIONS(1033), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(1033), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1051), - [anon_sym_POUNDfileID] = ACTIONS(1053), - [anon_sym_POUNDfilePath] = ACTIONS(1053), - [anon_sym_POUNDline] = ACTIONS(1053), - [anon_sym_POUNDcolumn] = ACTIONS(1053), - [anon_sym_POUNDfunction] = ACTIONS(1053), - [anon_sym_POUNDdsohandle] = ACTIONS(1053), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1053), - [anon_sym_DASH_EQ] = ACTIONS(1053), - [anon_sym_STAR_EQ] = ACTIONS(1053), - [anon_sym_SLASH_EQ] = ACTIONS(1053), - [anon_sym_PERCENT_EQ] = ACTIONS(1053), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1053), - [anon_sym_LT_EQ] = ACTIONS(1053), - [anon_sym_GT_EQ] = ACTIONS(1053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1053), - [anon_sym_GT_GT] = ACTIONS(1053), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1053), - [sym__plus_then_ws] = ACTIONS(1053), - [sym__minus_then_ws] = ACTIONS(1053), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [206] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2725), - [sym_expr_hack_at_ternary_binary_call] = STATE(2725), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [207] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2332), - [sym_expr_hack_at_ternary_binary_call] = STATE(2332), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [208] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1125), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [209] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2529), - [sym_expr_hack_at_ternary_binary_call] = STATE(2529), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [210] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2354), - [sym_expr_hack_at_ternary_binary_call] = STATE(2354), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [211] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2498), - [sym_expr_hack_at_ternary_binary_call] = STATE(2498), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [212] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2454), - [sym_expr_hack_at_ternary_binary_call] = STATE(2454), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [213] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2497), - [sym_expr_hack_at_ternary_binary_call] = STATE(2497), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [214] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2496), - [sym_expr_hack_at_ternary_binary_call] = STATE(2496), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [215] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1038), - [sym_expr_hack_at_ternary_binary_call] = STATE(1038), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [216] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1037), - [sym_expr_hack_at_ternary_binary_call] = STATE(1037), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [217] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1036), - [sym_expr_hack_at_ternary_binary_call] = STATE(1036), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [218] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2491), - [sym_expr_hack_at_ternary_binary_call] = STATE(2491), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [219] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(773), - [sym_expr_hack_at_ternary_binary_call] = STATE(773), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [220] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2452), - [sym_expr_hack_at_ternary_binary_call] = STATE(2452), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [221] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2383), - [sym_expr_hack_at_ternary_binary_call] = STATE(2383), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [222] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2490), - [sym_expr_hack_at_ternary_binary_call] = STATE(2490), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [223] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2489), - [sym_expr_hack_at_ternary_binary_call] = STATE(2489), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [224] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1163), - [sym_boolean_literal] = STATE(1163), - [sym__string_literal] = STATE(1163), - [sym_line_string_literal] = STATE(1163), - [sym_multi_line_string_literal] = STATE(1163), - [sym_raw_string_literal] = STATE(1163), - [sym_regex_literal] = STATE(1163), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1163), - [sym__unary_expression] = STATE(1163), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1163), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1163), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1163), - [sym_prefix_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_selector_expression] = STATE(1163), - [sym__binary_expression] = STATE(1163), - [sym_multiplicative_expression] = STATE(1163), - [sym_additive_expression] = STATE(1163), - [sym_range_expression] = STATE(1163), - [sym_infix_expression] = STATE(1163), - [sym_nil_coalescing_expression] = STATE(1163), - [sym_check_expression] = STATE(1163), - [sym_comparison_expression] = STATE(1163), - [sym_equality_expression] = STATE(1163), - [sym_conjunction_expression] = STATE(1163), - [sym_disjunction_expression] = STATE(1163), - [sym_bitwise_operation] = STATE(1163), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1163), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2488), - [sym_expr_hack_at_ternary_binary_call] = STATE(2488), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1163), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1163), - [sym_dictionary_literal] = STATE(1163), - [sym__special_literal] = STATE(1163), - [sym__playground_literal] = STATE(1163), - [sym_lambda_literal] = STATE(1163), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1163), - [sym_key_path_expression] = STATE(1163), - [sym_key_path_string_expression] = STATE(1163), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1163), - [sym__equality_operator] = STATE(1163), - [sym__comparison_operator] = STATE(1163), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1163), - [sym__multiplicative_operator] = STATE(1163), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1163), - [sym__referenceable_operator] = STATE(1163), - [sym__eq_eq] = STATE(1163), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1131), - [sym_real_literal] = ACTIONS(1133), - [sym_integer_literal] = ACTIONS(1131), - [sym_hex_literal] = ACTIONS(1133), - [sym_oct_literal] = ACTIONS(1133), - [sym_bin_literal] = ACTIONS(1133), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1131), - [anon_sym_GT] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1131), - [anon_sym_POUNDfileID] = ACTIONS(1133), - [anon_sym_POUNDfilePath] = ACTIONS(1133), - [anon_sym_POUNDline] = ACTIONS(1133), - [anon_sym_POUNDcolumn] = ACTIONS(1133), - [anon_sym_POUNDfunction] = ACTIONS(1133), - [anon_sym_POUNDdsohandle] = ACTIONS(1133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1133), - [anon_sym_DASH_EQ] = ACTIONS(1133), - [anon_sym_STAR_EQ] = ACTIONS(1133), - [anon_sym_SLASH_EQ] = ACTIONS(1133), - [anon_sym_PERCENT_EQ] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ] = ACTIONS(1131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1133), - [anon_sym_GT_EQ] = ACTIONS(1133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(1131), - [anon_sym_PERCENT] = ACTIONS(1131), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1131), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1133), - [sym__plus_then_ws] = ACTIONS(1133), - [sym__minus_then_ws] = ACTIONS(1133), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [225] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(772), - [sym_expr_hack_at_ternary_binary_call] = STATE(772), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [226] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2408), - [sym_expr_hack_at_ternary_binary_call] = STATE(2408), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [227] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2356), - [sym_expr_hack_at_ternary_binary_call] = STATE(2356), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [228] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(770), - [sym_expr_hack_at_ternary_binary_call] = STATE(770), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [229] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1035), - [sym_expr_hack_at_ternary_binary_call] = STATE(1035), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [230] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(776), - [sym_expr_hack_at_ternary_binary_call] = STATE(776), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [231] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(769), - [sym_expr_hack_at_ternary_binary_call] = STATE(769), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [232] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2375), - [sym_expr_hack_at_ternary_binary_call] = STATE(2375), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [233] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2439), - [sym_expr_hack_at_ternary_binary_call] = STATE(2439), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [234] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(777), - [sym_expr_hack_at_ternary_binary_call] = STATE(777), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [235] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2349), - [sym_expr_hack_at_ternary_binary_call] = STATE(2349), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [236] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2434), - [sym_expr_hack_at_ternary_binary_call] = STATE(2434), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [237] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2425), - [sym_expr_hack_at_ternary_binary_call] = STATE(2425), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [238] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1144), - [sym_boolean_literal] = STATE(1144), - [sym__string_literal] = STATE(1144), - [sym_line_string_literal] = STATE(1144), - [sym_multi_line_string_literal] = STATE(1144), - [sym_raw_string_literal] = STATE(1144), - [sym_regex_literal] = STATE(1144), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1144), - [sym__unary_expression] = STATE(1144), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1144), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1144), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1144), - [sym_prefix_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_selector_expression] = STATE(1144), - [sym__binary_expression] = STATE(1144), - [sym_multiplicative_expression] = STATE(1144), - [sym_additive_expression] = STATE(1144), - [sym_range_expression] = STATE(1144), - [sym_infix_expression] = STATE(1144), - [sym_nil_coalescing_expression] = STATE(1144), - [sym_check_expression] = STATE(1144), - [sym_comparison_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_conjunction_expression] = STATE(1144), - [sym_disjunction_expression] = STATE(1144), - [sym_bitwise_operation] = STATE(1144), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1144), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2415), - [sym_expr_hack_at_ternary_binary_call] = STATE(2415), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1144), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1144), - [sym_dictionary_literal] = STATE(1144), - [sym__special_literal] = STATE(1144), - [sym__playground_literal] = STATE(1144), - [sym_lambda_literal] = STATE(1144), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1144), - [sym_key_path_expression] = STATE(1144), - [sym_key_path_string_expression] = STATE(1144), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1144), - [sym__equality_operator] = STATE(1144), - [sym__comparison_operator] = STATE(1144), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1144), - [sym__multiplicative_operator] = STATE(1144), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1144), - [sym__referenceable_operator] = STATE(1144), - [sym__eq_eq] = STATE(1144), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1261), - [sym_real_literal] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [sym_hex_literal] = ACTIONS(1263), - [sym_oct_literal] = ACTIONS(1263), - [sym_bin_literal] = ACTIONS(1263), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1261), - [anon_sym_POUNDfileID] = ACTIONS(1263), - [anon_sym_POUNDfilePath] = ACTIONS(1263), - [anon_sym_POUNDline] = ACTIONS(1263), - [anon_sym_POUNDcolumn] = ACTIONS(1263), - [anon_sym_POUNDfunction] = ACTIONS(1263), - [anon_sym_POUNDdsohandle] = ACTIONS(1263), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1263), - [anon_sym_DASH_EQ] = ACTIONS(1263), - [anon_sym_STAR_EQ] = ACTIONS(1263), - [anon_sym_SLASH_EQ] = ACTIONS(1263), - [anon_sym_PERCENT_EQ] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1263), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1263), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1263), - [sym__plus_then_ws] = ACTIONS(1263), - [sym__minus_then_ws] = ACTIONS(1263), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [239] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(778), - [sym_expr_hack_at_ternary_binary_call] = STATE(778), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [240] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [241] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [242] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1043), - [sym_expr_hack_at_ternary_binary_call] = STATE(1043), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [243] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1334), - [sym_boolean_literal] = STATE(1334), - [sym__string_literal] = STATE(1334), - [sym_line_string_literal] = STATE(1334), - [sym_multi_line_string_literal] = STATE(1334), - [sym_raw_string_literal] = STATE(1334), - [sym_regex_literal] = STATE(1334), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1334), - [sym__unary_expression] = STATE(1334), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1334), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1334), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1334), - [sym_prefix_expression] = STATE(1334), - [sym_as_expression] = STATE(1334), - [sym_selector_expression] = STATE(1334), - [sym__binary_expression] = STATE(1334), - [sym_multiplicative_expression] = STATE(1334), - [sym_additive_expression] = STATE(1334), - [sym_range_expression] = STATE(1334), - [sym_infix_expression] = STATE(1334), - [sym_nil_coalescing_expression] = STATE(1334), - [sym_check_expression] = STATE(1334), - [sym_comparison_expression] = STATE(1334), - [sym_equality_expression] = STATE(1334), - [sym_conjunction_expression] = STATE(1334), - [sym_disjunction_expression] = STATE(1334), - [sym_bitwise_operation] = STATE(1334), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1334), - [sym_await_expression] = STATE(1334), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1334), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1334), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1334), - [sym_dictionary_literal] = STATE(1334), - [sym__special_literal] = STATE(1334), - [sym__playground_literal] = STATE(1334), - [sym_lambda_literal] = STATE(1334), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1334), - [sym_key_path_expression] = STATE(1334), - [sym_key_path_string_expression] = STATE(1334), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1334), - [sym__equality_operator] = STATE(1334), - [sym__comparison_operator] = STATE(1334), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1334), - [sym__multiplicative_operator] = STATE(1334), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1334), - [sym__referenceable_operator] = STATE(1334), - [sym__eq_eq] = STATE(1334), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1269), - [sym_real_literal] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [sym_hex_literal] = ACTIONS(1271), - [sym_oct_literal] = ACTIONS(1271), - [sym_bin_literal] = ACTIONS(1271), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1273), - [anon_sym_setter_COLON] = ACTIONS(1273), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1269), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1269), - [anon_sym_POUNDfileID] = ACTIONS(1271), - [anon_sym_POUNDfilePath] = ACTIONS(1271), - [anon_sym_POUNDline] = ACTIONS(1271), - [anon_sym_POUNDcolumn] = ACTIONS(1271), - [anon_sym_POUNDfunction] = ACTIONS(1271), - [anon_sym_POUNDdsohandle] = ACTIONS(1271), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1271), - [anon_sym_DASH_EQ] = ACTIONS(1271), - [anon_sym_STAR_EQ] = ACTIONS(1271), - [anon_sym_SLASH_EQ] = ACTIONS(1271), - [anon_sym_PERCENT_EQ] = ACTIONS(1271), - [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1271), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1271), - [anon_sym_LT_EQ] = ACTIONS(1271), - [anon_sym_GT_EQ] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_PERCENT] = ACTIONS(1269), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1269), - [anon_sym_LT_LT] = ACTIONS(1271), - [anon_sym_GT_GT] = ACTIONS(1271), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1271), - [sym__plus_then_ws] = ACTIONS(1271), - [sym__minus_then_ws] = ACTIONS(1271), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [244] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(741), - [sym_expr_hack_at_ternary_binary_call] = STATE(741), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [245] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1044), - [sym_expr_hack_at_ternary_binary_call] = STATE(1044), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [246] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1101), - [sym_expr_hack_at_ternary_binary_call] = STATE(1101), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [247] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1045), - [sym_expr_hack_at_ternary_binary_call] = STATE(1045), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [248] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [249] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2348), - [sym_expr_hack_at_ternary_binary_call] = STATE(2348), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [250] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2729), - [sym_expr_hack_at_ternary_binary_call] = STATE(2729), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [251] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [252] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1303), - [sym_boolean_literal] = STATE(1303), - [sym__string_literal] = STATE(1303), - [sym_line_string_literal] = STATE(1303), - [sym_multi_line_string_literal] = STATE(1303), - [sym_raw_string_literal] = STATE(1303), - [sym_regex_literal] = STATE(1303), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1303), - [sym__unary_expression] = STATE(1303), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1303), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1303), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1303), - [sym_prefix_expression] = STATE(1303), - [sym_as_expression] = STATE(1303), - [sym_selector_expression] = STATE(1303), - [sym__binary_expression] = STATE(1303), - [sym_multiplicative_expression] = STATE(1303), - [sym_additive_expression] = STATE(1303), - [sym_range_expression] = STATE(1303), - [sym_infix_expression] = STATE(1303), - [sym_nil_coalescing_expression] = STATE(1303), - [sym_check_expression] = STATE(1303), - [sym_comparison_expression] = STATE(1303), - [sym_equality_expression] = STATE(1303), - [sym_conjunction_expression] = STATE(1303), - [sym_disjunction_expression] = STATE(1303), - [sym_bitwise_operation] = STATE(1303), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1303), - [sym_await_expression] = STATE(1303), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1303), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1303), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1303), - [sym_dictionary_literal] = STATE(1303), - [sym__special_literal] = STATE(1303), - [sym__playground_literal] = STATE(1303), - [sym_lambda_literal] = STATE(1303), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1303), - [sym_key_path_expression] = STATE(1303), - [sym_key_path_string_expression] = STATE(1303), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1303), - [sym__equality_operator] = STATE(1303), - [sym__comparison_operator] = STATE(1303), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1303), - [sym__multiplicative_operator] = STATE(1303), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1303), - [sym__referenceable_operator] = STATE(1303), - [sym__eq_eq] = STATE(1303), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1283), - [sym_real_literal] = ACTIONS(1285), - [sym_integer_literal] = ACTIONS(1283), - [sym_hex_literal] = ACTIONS(1285), - [sym_oct_literal] = ACTIONS(1285), - [sym_bin_literal] = ACTIONS(1285), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1287), - [anon_sym_setter_COLON] = ACTIONS(1287), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1283), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1283), - [anon_sym_POUNDfileID] = ACTIONS(1285), - [anon_sym_POUNDfilePath] = ACTIONS(1285), - [anon_sym_POUNDline] = ACTIONS(1285), - [anon_sym_POUNDcolumn] = ACTIONS(1285), - [anon_sym_POUNDfunction] = ACTIONS(1285), - [anon_sym_POUNDdsohandle] = ACTIONS(1285), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1285), - [anon_sym_DASH_EQ] = ACTIONS(1285), - [anon_sym_STAR_EQ] = ACTIONS(1285), - [anon_sym_SLASH_EQ] = ACTIONS(1285), - [anon_sym_PERCENT_EQ] = ACTIONS(1285), - [anon_sym_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ] = ACTIONS(1283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1285), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1285), - [anon_sym_LT_EQ] = ACTIONS(1285), - [anon_sym_GT_EQ] = ACTIONS(1285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_LT_LT] = ACTIONS(1285), - [anon_sym_GT_GT] = ACTIONS(1285), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1285), - [sym__plus_then_ws] = ACTIONS(1285), - [sym__minus_then_ws] = ACTIONS(1285), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [253] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(769), - [sym_expr_hack_at_ternary_binary_call] = STATE(769), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [254] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(770), - [sym_expr_hack_at_ternary_binary_call] = STATE(770), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [255] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1346), - [sym_boolean_literal] = STATE(1346), - [sym__string_literal] = STATE(1346), - [sym_line_string_literal] = STATE(1346), - [sym_multi_line_string_literal] = STATE(1346), - [sym_raw_string_literal] = STATE(1346), - [sym_regex_literal] = STATE(1346), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1346), - [sym__unary_expression] = STATE(1346), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1346), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1346), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1346), - [sym_prefix_expression] = STATE(1346), - [sym_as_expression] = STATE(1346), - [sym_selector_expression] = STATE(1346), - [sym__binary_expression] = STATE(1346), - [sym_multiplicative_expression] = STATE(1346), - [sym_additive_expression] = STATE(1346), - [sym_range_expression] = STATE(1346), - [sym_infix_expression] = STATE(1346), - [sym_nil_coalescing_expression] = STATE(1346), - [sym_check_expression] = STATE(1346), - [sym_comparison_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_conjunction_expression] = STATE(1346), - [sym_disjunction_expression] = STATE(1346), - [sym_bitwise_operation] = STATE(1346), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1346), - [sym_await_expression] = STATE(1346), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1346), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(779), - [sym_expr_hack_at_ternary_binary_call] = STATE(779), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1346), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1346), - [sym_dictionary_literal] = STATE(1346), - [sym__special_literal] = STATE(1346), - [sym__playground_literal] = STATE(1346), - [sym_lambda_literal] = STATE(1346), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1346), - [sym_key_path_expression] = STATE(1346), - [sym_key_path_string_expression] = STATE(1346), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1346), - [sym__equality_operator] = STATE(1346), - [sym__comparison_operator] = STATE(1346), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1346), - [sym__multiplicative_operator] = STATE(1346), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1346), - [sym__referenceable_operator] = STATE(1346), - [sym__eq_eq] = STATE(1346), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1247), - [sym_real_literal] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(1247), - [sym_hex_literal] = ACTIONS(1249), - [sym_oct_literal] = ACTIONS(1249), - [sym_bin_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1247), - [anon_sym_POUNDfileID] = ACTIONS(1249), - [anon_sym_POUNDfilePath] = ACTIONS(1249), - [anon_sym_POUNDline] = ACTIONS(1249), - [anon_sym_POUNDcolumn] = ACTIONS(1249), - [anon_sym_POUNDfunction] = ACTIONS(1249), - [anon_sym_POUNDdsohandle] = ACTIONS(1249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1249), - [sym__plus_then_ws] = ACTIONS(1249), - [sym__minus_then_ws] = ACTIONS(1249), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [256] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1047), - [sym_expr_hack_at_ternary_binary_call] = STATE(1047), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [257] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(772), - [sym_expr_hack_at_ternary_binary_call] = STATE(772), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [258] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(773), - [sym_expr_hack_at_ternary_binary_call] = STATE(773), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [259] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(741), - [sym_expr_hack_at_ternary_binary_call] = STATE(741), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [260] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(776), - [sym_expr_hack_at_ternary_binary_call] = STATE(776), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [261] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(777), - [sym_expr_hack_at_ternary_binary_call] = STATE(777), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [262] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(778), - [sym_expr_hack_at_ternary_binary_call] = STATE(778), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [263] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(779), - [sym_expr_hack_at_ternary_binary_call] = STATE(779), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [264] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2346), - [sym_expr_hack_at_ternary_binary_call] = STATE(2346), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [265] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [266] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1304), - [sym_boolean_literal] = STATE(1304), - [sym__string_literal] = STATE(1304), - [sym_line_string_literal] = STATE(1304), - [sym_multi_line_string_literal] = STATE(1304), - [sym_raw_string_literal] = STATE(1304), - [sym_regex_literal] = STATE(1304), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1304), - [sym__unary_expression] = STATE(1304), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1304), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1304), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1304), - [sym_prefix_expression] = STATE(1304), - [sym_as_expression] = STATE(1304), - [sym_selector_expression] = STATE(1304), - [sym__binary_expression] = STATE(1304), - [sym_multiplicative_expression] = STATE(1304), - [sym_additive_expression] = STATE(1304), - [sym_range_expression] = STATE(1304), - [sym_infix_expression] = STATE(1304), - [sym_nil_coalescing_expression] = STATE(1304), - [sym_check_expression] = STATE(1304), - [sym_comparison_expression] = STATE(1304), - [sym_equality_expression] = STATE(1304), - [sym_conjunction_expression] = STATE(1304), - [sym_disjunction_expression] = STATE(1304), - [sym_bitwise_operation] = STATE(1304), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1304), - [sym_await_expression] = STATE(1304), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1304), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1304), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1304), - [sym_dictionary_literal] = STATE(1304), - [sym__special_literal] = STATE(1304), - [sym__playground_literal] = STATE(1304), - [sym_lambda_literal] = STATE(1304), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1304), - [sym_key_path_expression] = STATE(1304), - [sym_key_path_string_expression] = STATE(1304), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1304), - [sym__equality_operator] = STATE(1304), - [sym__comparison_operator] = STATE(1304), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1304), - [sym__multiplicative_operator] = STATE(1304), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1304), - [sym__referenceable_operator] = STATE(1304), - [sym__eq_eq] = STATE(1304), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1319), - [sym_real_literal] = ACTIONS(1321), - [sym_integer_literal] = ACTIONS(1319), - [sym_hex_literal] = ACTIONS(1321), - [sym_oct_literal] = ACTIONS(1321), - [sym_bin_literal] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1323), - [anon_sym_setter_COLON] = ACTIONS(1323), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1319), - [anon_sym_POUNDfileID] = ACTIONS(1321), - [anon_sym_POUNDfilePath] = ACTIONS(1321), - [anon_sym_POUNDline] = ACTIONS(1321), - [anon_sym_POUNDcolumn] = ACTIONS(1321), - [anon_sym_POUNDfunction] = ACTIONS(1321), - [anon_sym_POUNDdsohandle] = ACTIONS(1321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1321), - [anon_sym_DASH_EQ] = ACTIONS(1321), - [anon_sym_STAR_EQ] = ACTIONS(1321), - [anon_sym_SLASH_EQ] = ACTIONS(1321), - [anon_sym_PERCENT_EQ] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_BANG_EQ] = ACTIONS(1319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_LT_LT] = ACTIONS(1321), - [anon_sym_GT_GT] = ACTIONS(1321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1321), - [sym__plus_then_ws] = ACTIONS(1321), - [sym__minus_then_ws] = ACTIONS(1321), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [267] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2685), - [sym_expr_hack_at_ternary_binary_call] = STATE(2685), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [268] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2687), - [sym_expr_hack_at_ternary_binary_call] = STATE(2687), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [269] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1097), - [sym_expr_hack_at_ternary_binary_call] = STATE(1097), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [270] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1096), - [sym_expr_hack_at_ternary_binary_call] = STATE(1096), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [271] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1095), - [sym_expr_hack_at_ternary_binary_call] = STATE(1095), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [272] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1093), - [sym_expr_hack_at_ternary_binary_call] = STATE(1093), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [273] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2584), - [sym_expr_hack_at_ternary_binary_call] = STATE(2584), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [274] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [275] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2678), - [sym_expr_hack_at_ternary_binary_call] = STATE(2678), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [276] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1090), - [sym_expr_hack_at_ternary_binary_call] = STATE(1090), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [277] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1089), - [sym_expr_hack_at_ternary_binary_call] = STATE(1089), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [278] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1117), - [sym_expr_hack_at_ternary_binary_call] = STATE(1117), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [279] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(614), - [sym_boolean_literal] = STATE(614), - [sym__string_literal] = STATE(614), - [sym_line_string_literal] = STATE(614), - [sym_multi_line_string_literal] = STATE(614), - [sym_raw_string_literal] = STATE(614), - [sym_regex_literal] = STATE(614), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(614), - [sym__unary_expression] = STATE(614), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(614), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(614), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(614), - [sym_prefix_expression] = STATE(614), - [sym_as_expression] = STATE(614), - [sym_selector_expression] = STATE(614), - [sym__binary_expression] = STATE(614), - [sym_multiplicative_expression] = STATE(614), - [sym_additive_expression] = STATE(614), - [sym_range_expression] = STATE(614), - [sym_infix_expression] = STATE(614), - [sym_nil_coalescing_expression] = STATE(614), - [sym_check_expression] = STATE(614), - [sym_comparison_expression] = STATE(614), - [sym_equality_expression] = STATE(614), - [sym_conjunction_expression] = STATE(614), - [sym_disjunction_expression] = STATE(614), - [sym_bitwise_operation] = STATE(614), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(614), - [sym_await_expression] = STATE(614), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(614), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1118), - [sym_expr_hack_at_ternary_binary_call] = STATE(1118), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(614), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(614), - [sym_dictionary_literal] = STATE(614), - [sym__special_literal] = STATE(614), - [sym__playground_literal] = STATE(614), - [sym_lambda_literal] = STATE(614), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(614), - [sym_key_path_expression] = STATE(614), - [sym_key_path_string_expression] = STATE(614), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(614), - [sym__equality_operator] = STATE(614), - [sym__comparison_operator] = STATE(614), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(614), - [sym__multiplicative_operator] = STATE(614), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(614), - [sym__referenceable_operator] = STATE(614), - [sym__eq_eq] = STATE(614), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1275), - [sym_real_literal] = ACTIONS(1277), - [sym_integer_literal] = ACTIONS(1275), - [sym_hex_literal] = ACTIONS(1277), - [sym_oct_literal] = ACTIONS(1277), - [sym_bin_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1275), - [anon_sym_POUNDfileID] = ACTIONS(1277), - [anon_sym_POUNDfilePath] = ACTIONS(1277), - [anon_sym_POUNDline] = ACTIONS(1277), - [anon_sym_POUNDcolumn] = ACTIONS(1277), - [anon_sym_POUNDfunction] = ACTIONS(1277), - [anon_sym_POUNDdsohandle] = ACTIONS(1277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1275), - [anon_sym_PERCENT] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1277), - [sym__plus_then_ws] = ACTIONS(1277), - [sym__minus_then_ws] = ACTIONS(1277), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [280] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1332), - [sym_boolean_literal] = STATE(1332), - [sym__string_literal] = STATE(1332), - [sym_line_string_literal] = STATE(1332), - [sym_multi_line_string_literal] = STATE(1332), - [sym_raw_string_literal] = STATE(1332), - [sym_regex_literal] = STATE(1332), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1332), - [sym__unary_expression] = STATE(1332), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1332), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1332), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1332), - [sym_prefix_expression] = STATE(1332), - [sym_as_expression] = STATE(1332), - [sym_selector_expression] = STATE(1332), - [sym__binary_expression] = STATE(1332), - [sym_multiplicative_expression] = STATE(1332), - [sym_additive_expression] = STATE(1332), - [sym_range_expression] = STATE(1332), - [sym_infix_expression] = STATE(1332), - [sym_nil_coalescing_expression] = STATE(1332), - [sym_check_expression] = STATE(1332), - [sym_comparison_expression] = STATE(1332), - [sym_equality_expression] = STATE(1332), - [sym_conjunction_expression] = STATE(1332), - [sym_disjunction_expression] = STATE(1332), - [sym_bitwise_operation] = STATE(1332), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1332), - [sym_await_expression] = STATE(1332), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1332), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1332), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1332), - [sym_dictionary_literal] = STATE(1332), - [sym__special_literal] = STATE(1332), - [sym__playground_literal] = STATE(1332), - [sym_lambda_literal] = STATE(1332), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1332), - [sym_key_path_expression] = STATE(1332), - [sym_key_path_string_expression] = STATE(1332), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1332), - [sym__equality_operator] = STATE(1332), - [sym__comparison_operator] = STATE(1332), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1332), - [sym__multiplicative_operator] = STATE(1332), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1332), - [sym__referenceable_operator] = STATE(1332), - [sym__eq_eq] = STATE(1332), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1343), - [sym_real_literal] = ACTIONS(1345), - [sym_integer_literal] = ACTIONS(1343), - [sym_hex_literal] = ACTIONS(1345), - [sym_oct_literal] = ACTIONS(1345), - [sym_bin_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1347), - [anon_sym_setter_COLON] = ACTIONS(1347), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1343), - [anon_sym_GT] = ACTIONS(1343), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1343), - [anon_sym_POUNDfileID] = ACTIONS(1345), - [anon_sym_POUNDfilePath] = ACTIONS(1345), - [anon_sym_POUNDline] = ACTIONS(1345), - [anon_sym_POUNDcolumn] = ACTIONS(1345), - [anon_sym_POUNDfunction] = ACTIONS(1345), - [anon_sym_POUNDdsohandle] = ACTIONS(1345), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1345), - [anon_sym_DASH_EQ] = ACTIONS(1345), - [anon_sym_STAR_EQ] = ACTIONS(1345), - [anon_sym_SLASH_EQ] = ACTIONS(1345), - [anon_sym_PERCENT_EQ] = ACTIONS(1345), - [anon_sym_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ] = ACTIONS(1343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1345), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1345), - [anon_sym_LT_EQ] = ACTIONS(1345), - [anon_sym_GT_EQ] = ACTIONS(1345), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1343), - [anon_sym_PERCENT] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_LT_LT] = ACTIONS(1345), - [anon_sym_GT_GT] = ACTIONS(1345), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1345), - [sym__plus_then_ws] = ACTIONS(1345), - [sym__minus_then_ws] = ACTIONS(1345), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [281] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(779), - [sym_expr_hack_at_ternary_binary_call] = STATE(779), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [282] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [283] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1301), - [sym_boolean_literal] = STATE(1301), - [sym__string_literal] = STATE(1301), - [sym_line_string_literal] = STATE(1301), - [sym_multi_line_string_literal] = STATE(1301), - [sym_raw_string_literal] = STATE(1301), - [sym_regex_literal] = STATE(1301), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1301), - [sym__unary_expression] = STATE(1301), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1301), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1301), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1301), - [sym_prefix_expression] = STATE(1301), - [sym_as_expression] = STATE(1301), - [sym_selector_expression] = STATE(1301), - [sym__binary_expression] = STATE(1301), - [sym_multiplicative_expression] = STATE(1301), - [sym_additive_expression] = STATE(1301), - [sym_range_expression] = STATE(1301), - [sym_infix_expression] = STATE(1301), - [sym_nil_coalescing_expression] = STATE(1301), - [sym_check_expression] = STATE(1301), - [sym_comparison_expression] = STATE(1301), - [sym_equality_expression] = STATE(1301), - [sym_conjunction_expression] = STATE(1301), - [sym_disjunction_expression] = STATE(1301), - [sym_bitwise_operation] = STATE(1301), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1301), - [sym_await_expression] = STATE(1301), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1301), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1301), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1301), - [sym_dictionary_literal] = STATE(1301), - [sym__special_literal] = STATE(1301), - [sym__playground_literal] = STATE(1301), - [sym_lambda_literal] = STATE(1301), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1301), - [sym_key_path_expression] = STATE(1301), - [sym_key_path_string_expression] = STATE(1301), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1301), - [sym__equality_operator] = STATE(1301), - [sym__comparison_operator] = STATE(1301), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1301), - [sym__multiplicative_operator] = STATE(1301), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1301), - [sym__referenceable_operator] = STATE(1301), - [sym__eq_eq] = STATE(1301), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1351), - [sym_real_literal] = ACTIONS(1353), - [sym_integer_literal] = ACTIONS(1351), - [sym_hex_literal] = ACTIONS(1353), - [sym_oct_literal] = ACTIONS(1353), - [sym_bin_literal] = ACTIONS(1353), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1355), - [anon_sym_setter_COLON] = ACTIONS(1355), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1351), - [anon_sym_GT] = ACTIONS(1351), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1351), - [anon_sym_POUNDfileID] = ACTIONS(1353), - [anon_sym_POUNDfilePath] = ACTIONS(1353), - [anon_sym_POUNDline] = ACTIONS(1353), - [anon_sym_POUNDcolumn] = ACTIONS(1353), - [anon_sym_POUNDfunction] = ACTIONS(1353), - [anon_sym_POUNDdsohandle] = ACTIONS(1353), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1353), - [anon_sym_DASH_EQ] = ACTIONS(1353), - [anon_sym_STAR_EQ] = ACTIONS(1353), - [anon_sym_SLASH_EQ] = ACTIONS(1353), - [anon_sym_PERCENT_EQ] = ACTIONS(1353), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_BANG_EQ] = ACTIONS(1351), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1353), - [anon_sym_LT_EQ] = ACTIONS(1353), - [anon_sym_GT_EQ] = ACTIONS(1353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_LT_LT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1353), - [sym__plus_then_ws] = ACTIONS(1353), - [sym__minus_then_ws] = ACTIONS(1353), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [284] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(778), - [sym_expr_hack_at_ternary_binary_call] = STATE(778), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [285] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(777), - [sym_expr_hack_at_ternary_binary_call] = STATE(777), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [286] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(776), - [sym_expr_hack_at_ternary_binary_call] = STATE(776), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [287] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [288] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [289] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2625), - [sym_expr_hack_at_ternary_binary_call] = STATE(2625), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [290] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [291] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2672), - [sym_expr_hack_at_ternary_binary_call] = STATE(2672), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [292] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2671), - [sym_expr_hack_at_ternary_binary_call] = STATE(2671), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [293] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2645), - [sym_expr_hack_at_ternary_binary_call] = STATE(2645), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [294] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1306), - [sym_boolean_literal] = STATE(1306), - [sym__string_literal] = STATE(1306), - [sym_line_string_literal] = STATE(1306), - [sym_multi_line_string_literal] = STATE(1306), - [sym_raw_string_literal] = STATE(1306), - [sym_regex_literal] = STATE(1306), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1306), - [sym__unary_expression] = STATE(1306), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1306), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1306), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1306), - [sym_prefix_expression] = STATE(1306), - [sym_as_expression] = STATE(1306), - [sym_selector_expression] = STATE(1306), - [sym__binary_expression] = STATE(1306), - [sym_multiplicative_expression] = STATE(1306), - [sym_additive_expression] = STATE(1306), - [sym_range_expression] = STATE(1306), - [sym_infix_expression] = STATE(1306), - [sym_nil_coalescing_expression] = STATE(1306), - [sym_check_expression] = STATE(1306), - [sym_comparison_expression] = STATE(1306), - [sym_equality_expression] = STATE(1306), - [sym_conjunction_expression] = STATE(1306), - [sym_disjunction_expression] = STATE(1306), - [sym_bitwise_operation] = STATE(1306), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1306), - [sym_await_expression] = STATE(1306), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1306), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1306), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1306), - [sym_dictionary_literal] = STATE(1306), - [sym__special_literal] = STATE(1306), - [sym__playground_literal] = STATE(1306), - [sym_lambda_literal] = STATE(1306), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1306), - [sym_key_path_expression] = STATE(1306), - [sym_key_path_string_expression] = STATE(1306), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1306), - [sym__equality_operator] = STATE(1306), - [sym__comparison_operator] = STATE(1306), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1306), - [sym__multiplicative_operator] = STATE(1306), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1306), - [sym__referenceable_operator] = STATE(1306), - [sym__eq_eq] = STATE(1306), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1423), - [sym_real_literal] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [sym_hex_literal] = ACTIONS(1425), - [sym_oct_literal] = ACTIONS(1425), - [sym_bin_literal] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1427), - [anon_sym_setter_COLON] = ACTIONS(1427), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1423), - [anon_sym_POUNDfileID] = ACTIONS(1425), - [anon_sym_POUNDfilePath] = ACTIONS(1425), - [anon_sym_POUNDline] = ACTIONS(1425), - [anon_sym_POUNDcolumn] = ACTIONS(1425), - [anon_sym_POUNDfunction] = ACTIONS(1425), - [anon_sym_POUNDdsohandle] = ACTIONS(1425), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1425), - [anon_sym_DASH_EQ] = ACTIONS(1425), - [anon_sym_STAR_EQ] = ACTIONS(1425), - [anon_sym_SLASH_EQ] = ACTIONS(1425), - [anon_sym_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_BANG_EQ] = ACTIONS(1423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1425), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1423), - [anon_sym_PERCENT] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1423), - [anon_sym_LT_LT] = ACTIONS(1425), - [anon_sym_GT_GT] = ACTIONS(1425), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1425), - [sym__plus_then_ws] = ACTIONS(1425), - [sym__minus_then_ws] = ACTIONS(1425), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [295] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [296] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2670), - [sym_expr_hack_at_ternary_binary_call] = STATE(2670), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [297] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2685), - [sym_expr_hack_at_ternary_binary_call] = STATE(2685), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [298] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [299] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(773), - [sym_expr_hack_at_ternary_binary_call] = STATE(773), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [300] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1313), - [sym_boolean_literal] = STATE(1313), - [sym__string_literal] = STATE(1313), - [sym_line_string_literal] = STATE(1313), - [sym_multi_line_string_literal] = STATE(1313), - [sym_raw_string_literal] = STATE(1313), - [sym_regex_literal] = STATE(1313), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1313), - [sym__unary_expression] = STATE(1313), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1313), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1313), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1313), - [sym_prefix_expression] = STATE(1313), - [sym_as_expression] = STATE(1313), - [sym_selector_expression] = STATE(1313), - [sym__binary_expression] = STATE(1313), - [sym_multiplicative_expression] = STATE(1313), - [sym_additive_expression] = STATE(1313), - [sym_range_expression] = STATE(1313), - [sym_infix_expression] = STATE(1313), - [sym_nil_coalescing_expression] = STATE(1313), - [sym_check_expression] = STATE(1313), - [sym_comparison_expression] = STATE(1313), - [sym_equality_expression] = STATE(1313), - [sym_conjunction_expression] = STATE(1313), - [sym_disjunction_expression] = STATE(1313), - [sym_bitwise_operation] = STATE(1313), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1313), - [sym_await_expression] = STATE(1313), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1313), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1313), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1313), - [sym_dictionary_literal] = STATE(1313), - [sym__special_literal] = STATE(1313), - [sym__playground_literal] = STATE(1313), - [sym_lambda_literal] = STATE(1313), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1313), - [sym_key_path_expression] = STATE(1313), - [sym_key_path_string_expression] = STATE(1313), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1313), - [sym__equality_operator] = STATE(1313), - [sym__comparison_operator] = STATE(1313), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1313), - [sym__multiplicative_operator] = STATE(1313), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1313), - [sym__referenceable_operator] = STATE(1313), - [sym__eq_eq] = STATE(1313), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1437), - [sym_real_literal] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [sym_hex_literal] = ACTIONS(1439), - [sym_oct_literal] = ACTIONS(1439), - [sym_bin_literal] = ACTIONS(1439), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1441), - [anon_sym_setter_COLON] = ACTIONS(1441), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1437), - [anon_sym_POUNDfileID] = ACTIONS(1439), - [anon_sym_POUNDfilePath] = ACTIONS(1439), - [anon_sym_POUNDline] = ACTIONS(1439), - [anon_sym_POUNDcolumn] = ACTIONS(1439), - [anon_sym_POUNDfunction] = ACTIONS(1439), - [anon_sym_POUNDdsohandle] = ACTIONS(1439), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1439), - [anon_sym_DASH_EQ] = ACTIONS(1439), - [anon_sym_STAR_EQ] = ACTIONS(1439), - [anon_sym_SLASH_EQ] = ACTIONS(1439), - [anon_sym_PERCENT_EQ] = ACTIONS(1439), - [anon_sym_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1439), - [anon_sym_LT_EQ] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1437), - [anon_sym_PERCENT] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1439), - [sym__plus_then_ws] = ACTIONS(1439), - [sym__minus_then_ws] = ACTIONS(1439), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [301] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2588), - [sym_expr_hack_at_ternary_binary_call] = STATE(2588), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [302] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2587), - [sym_expr_hack_at_ternary_binary_call] = STATE(2587), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [303] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2586), - [sym_expr_hack_at_ternary_binary_call] = STATE(2586), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [304] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(772), - [sym_expr_hack_at_ternary_binary_call] = STATE(772), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [305] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2623), - [sym_expr_hack_at_ternary_binary_call] = STATE(2623), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [306] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(770), - [sym_expr_hack_at_ternary_binary_call] = STATE(770), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [307] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(587), - [sym_boolean_literal] = STATE(587), - [sym__string_literal] = STATE(587), - [sym_line_string_literal] = STATE(587), - [sym_multi_line_string_literal] = STATE(587), - [sym_raw_string_literal] = STATE(587), - [sym_regex_literal] = STATE(587), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(587), - [sym__unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(587), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(587), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(587), - [sym_prefix_expression] = STATE(587), - [sym_as_expression] = STATE(587), - [sym_selector_expression] = STATE(587), - [sym__binary_expression] = STATE(587), - [sym_multiplicative_expression] = STATE(587), - [sym_additive_expression] = STATE(587), - [sym_range_expression] = STATE(587), - [sym_infix_expression] = STATE(587), - [sym_nil_coalescing_expression] = STATE(587), - [sym_check_expression] = STATE(587), - [sym_comparison_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_conjunction_expression] = STATE(587), - [sym_disjunction_expression] = STATE(587), - [sym_bitwise_operation] = STATE(587), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(587), - [sym_await_expression] = STATE(587), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(587), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(769), - [sym_expr_hack_at_ternary_binary_call] = STATE(769), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(587), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(587), - [sym_dictionary_literal] = STATE(587), - [sym__special_literal] = STATE(587), - [sym__playground_literal] = STATE(587), - [sym_lambda_literal] = STATE(587), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(587), - [sym_key_path_expression] = STATE(587), - [sym_key_path_string_expression] = STATE(587), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(587), - [sym__equality_operator] = STATE(587), - [sym__comparison_operator] = STATE(587), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(587), - [sym__multiplicative_operator] = STATE(587), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(587), - [sym__referenceable_operator] = STATE(587), - [sym__eq_eq] = STATE(587), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1293), - [sym_real_literal] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [sym_hex_literal] = ACTIONS(1295), - [sym_oct_literal] = ACTIONS(1295), - [sym_bin_literal] = ACTIONS(1295), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1293), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1293), - [anon_sym_POUNDfileID] = ACTIONS(1295), - [anon_sym_POUNDfilePath] = ACTIONS(1295), - [anon_sym_POUNDline] = ACTIONS(1295), - [anon_sym_POUNDcolumn] = ACTIONS(1295), - [anon_sym_POUNDfunction] = ACTIONS(1295), - [anon_sym_POUNDdsohandle] = ACTIONS(1295), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1295), - [anon_sym_DASH_EQ] = ACTIONS(1295), - [anon_sym_STAR_EQ] = ACTIONS(1295), - [anon_sym_SLASH_EQ] = ACTIONS(1295), - [anon_sym_PERCENT_EQ] = ACTIONS(1295), - [anon_sym_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1295), - [anon_sym_LT_EQ] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(1293), - [anon_sym_PERCENT] = ACTIONS(1293), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1295), - [sym__plus_then_ws] = ACTIONS(1295), - [sym__minus_then_ws] = ACTIONS(1295), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [308] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [309] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2687), - [sym_expr_hack_at_ternary_binary_call] = STATE(2687), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [310] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2579), - [sym_expr_hack_at_ternary_binary_call] = STATE(2579), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [311] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2578), - [sym_expr_hack_at_ternary_binary_call] = STATE(2578), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [312] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2576), - [sym_expr_hack_at_ternary_binary_call] = STATE(2576), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [313] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1167), - [sym_boolean_literal] = STATE(1167), - [sym__string_literal] = STATE(1167), - [sym_line_string_literal] = STATE(1167), - [sym_multi_line_string_literal] = STATE(1167), - [sym_raw_string_literal] = STATE(1167), - [sym_regex_literal] = STATE(1167), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1167), - [sym__unary_expression] = STATE(1167), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1167), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1167), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1167), - [sym_prefix_expression] = STATE(1167), - [sym_as_expression] = STATE(1167), - [sym_selector_expression] = STATE(1167), - [sym__binary_expression] = STATE(1167), - [sym_multiplicative_expression] = STATE(1167), - [sym_additive_expression] = STATE(1167), - [sym_range_expression] = STATE(1167), - [sym_infix_expression] = STATE(1167), - [sym_nil_coalescing_expression] = STATE(1167), - [sym_check_expression] = STATE(1167), - [sym_comparison_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_conjunction_expression] = STATE(1167), - [sym_disjunction_expression] = STATE(1167), - [sym_bitwise_operation] = STATE(1167), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1167), - [sym_await_expression] = STATE(1167), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1167), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2575), - [sym_expr_hack_at_ternary_binary_call] = STATE(2575), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1167), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1167), - [sym_dictionary_literal] = STATE(1167), - [sym__special_literal] = STATE(1167), - [sym__playground_literal] = STATE(1167), - [sym_lambda_literal] = STATE(1167), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1167), - [sym_key_path_expression] = STATE(1167), - [sym_key_path_string_expression] = STATE(1167), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1167), - [sym__equality_operator] = STATE(1167), - [sym__comparison_operator] = STATE(1167), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1167), - [sym__multiplicative_operator] = STATE(1167), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1167), - [sym__referenceable_operator] = STATE(1167), - [sym__eq_eq] = STATE(1167), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1367), - [sym_real_literal] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [sym_hex_literal] = ACTIONS(1369), - [sym_oct_literal] = ACTIONS(1369), - [sym_bin_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1367), - [anon_sym_POUNDfileID] = ACTIONS(1369), - [anon_sym_POUNDfilePath] = ACTIONS(1369), - [anon_sym_POUNDline] = ACTIONS(1369), - [anon_sym_POUNDcolumn] = ACTIONS(1369), - [anon_sym_POUNDfunction] = ACTIONS(1369), - [anon_sym_POUNDdsohandle] = ACTIONS(1369), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1369), - [anon_sym_DASH_EQ] = ACTIONS(1369), - [anon_sym_STAR_EQ] = ACTIONS(1369), - [anon_sym_SLASH_EQ] = ACTIONS(1369), - [anon_sym_PERCENT_EQ] = ACTIONS(1369), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1369), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1369), - [sym__plus_then_ws] = ACTIONS(1369), - [sym__minus_then_ws] = ACTIONS(1369), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [314] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(607), - [sym_boolean_literal] = STATE(607), - [sym__string_literal] = STATE(607), - [sym_line_string_literal] = STATE(607), - [sym_multi_line_string_literal] = STATE(607), - [sym_raw_string_literal] = STATE(607), - [sym_regex_literal] = STATE(607), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(607), - [sym__unary_expression] = STATE(607), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(607), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(607), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(607), - [sym_prefix_expression] = STATE(607), - [sym_as_expression] = STATE(607), - [sym_selector_expression] = STATE(607), - [sym__binary_expression] = STATE(607), - [sym_multiplicative_expression] = STATE(607), - [sym_additive_expression] = STATE(607), - [sym_range_expression] = STATE(607), - [sym_infix_expression] = STATE(607), - [sym_nil_coalescing_expression] = STATE(607), - [sym_check_expression] = STATE(607), - [sym_comparison_expression] = STATE(607), - [sym_equality_expression] = STATE(607), - [sym_conjunction_expression] = STATE(607), - [sym_disjunction_expression] = STATE(607), - [sym_bitwise_operation] = STATE(607), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(607), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(1070), - [sym_expr_hack_at_ternary_binary_call] = STATE(1070), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(607), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(607), - [sym_dictionary_literal] = STATE(607), - [sym__special_literal] = STATE(607), - [sym__playground_literal] = STATE(607), - [sym_lambda_literal] = STATE(607), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(607), - [sym_key_path_expression] = STATE(607), - [sym_key_path_string_expression] = STATE(607), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(607), - [sym__equality_operator] = STATE(607), - [sym__comparison_operator] = STATE(607), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(607), - [sym__multiplicative_operator] = STATE(607), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(607), - [sym__referenceable_operator] = STATE(607), - [sym__eq_eq] = STATE(607), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_hex_literal] = ACTIONS(1193), - [sym_oct_literal] = ACTIONS(1193), - [sym_bin_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1191), - [anon_sym_POUNDfileID] = ACTIONS(1193), - [anon_sym_POUNDfilePath] = ACTIONS(1193), - [anon_sym_POUNDline] = ACTIONS(1193), - [anon_sym_POUNDcolumn] = ACTIONS(1193), - [anon_sym_POUNDfunction] = ACTIONS(1193), - [anon_sym_POUNDdsohandle] = ACTIONS(1193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), - [anon_sym_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_EQ] = ACTIONS(1193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1191), - [anon_sym_SLASH] = ACTIONS(1191), - [anon_sym_PERCENT] = ACTIONS(1191), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_CARET] = ACTIONS(1191), - [anon_sym_LT_LT] = ACTIONS(1193), - [anon_sym_GT_GT] = ACTIONS(1193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1193), - [sym__plus_then_ws] = ACTIONS(1193), - [sym__minus_then_ws] = ACTIONS(1193), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [315] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1151), - [sym_boolean_literal] = STATE(1151), - [sym__string_literal] = STATE(1151), - [sym_line_string_literal] = STATE(1151), - [sym_multi_line_string_literal] = STATE(1151), - [sym_raw_string_literal] = STATE(1151), - [sym_regex_literal] = STATE(1151), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1151), - [sym__unary_expression] = STATE(1151), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1151), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1151), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1151), - [sym_prefix_expression] = STATE(1151), - [sym_as_expression] = STATE(1151), - [sym_selector_expression] = STATE(1151), - [sym__binary_expression] = STATE(1151), - [sym_multiplicative_expression] = STATE(1151), - [sym_additive_expression] = STATE(1151), - [sym_range_expression] = STATE(1151), - [sym_infix_expression] = STATE(1151), - [sym_nil_coalescing_expression] = STATE(1151), - [sym_check_expression] = STATE(1151), - [sym_comparison_expression] = STATE(1151), - [sym_equality_expression] = STATE(1151), - [sym_conjunction_expression] = STATE(1151), - [sym_disjunction_expression] = STATE(1151), - [sym_bitwise_operation] = STATE(1151), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1151), - [sym_await_expression] = STATE(1151), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1151), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(741), - [sym_expr_hack_at_ternary_binary_call] = STATE(741), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1151), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1151), - [sym_dictionary_literal] = STATE(1151), - [sym__special_literal] = STATE(1151), - [sym__playground_literal] = STATE(1151), - [sym_lambda_literal] = STATE(1151), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1151), - [sym_key_path_expression] = STATE(1151), - [sym_key_path_string_expression] = STATE(1151), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1151), - [sym__equality_operator] = STATE(1151), - [sym__comparison_operator] = STATE(1151), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1151), - [sym__multiplicative_operator] = STATE(1151), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1151), - [sym__referenceable_operator] = STATE(1151), - [sym__eq_eq] = STATE(1151), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1289), - [sym_real_literal] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [sym_hex_literal] = ACTIONS(1291), - [sym_oct_literal] = ACTIONS(1291), - [sym_bin_literal] = ACTIONS(1291), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1289), - [anon_sym_POUNDfileID] = ACTIONS(1291), - [anon_sym_POUNDfilePath] = ACTIONS(1291), - [anon_sym_POUNDline] = ACTIONS(1291), - [anon_sym_POUNDcolumn] = ACTIONS(1291), - [anon_sym_POUNDfunction] = ACTIONS(1291), - [anon_sym_POUNDdsohandle] = ACTIONS(1291), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ] = ACTIONS(1289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_LT_LT] = ACTIONS(1291), - [anon_sym_GT_GT] = ACTIONS(1291), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1291), - [sym__plus_then_ws] = ACTIONS(1291), - [sym__minus_then_ws] = ACTIONS(1291), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [316] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [317] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2584), - [sym_expr_hack_at_ternary_binary_call] = STATE(2584), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [318] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2240), - [sym_expr_hack_at_ternary_binary_call] = STATE(2240), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [319] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1320), - [sym_boolean_literal] = STATE(1320), - [sym__string_literal] = STATE(1320), - [sym_line_string_literal] = STATE(1320), - [sym_multi_line_string_literal] = STATE(1320), - [sym_raw_string_literal] = STATE(1320), - [sym_regex_literal] = STATE(1320), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1320), - [sym__unary_expression] = STATE(1320), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1320), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1320), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1320), - [sym_prefix_expression] = STATE(1320), - [sym_as_expression] = STATE(1320), - [sym_selector_expression] = STATE(1320), - [sym__binary_expression] = STATE(1320), - [sym_multiplicative_expression] = STATE(1320), - [sym_additive_expression] = STATE(1320), - [sym_range_expression] = STATE(1320), - [sym_infix_expression] = STATE(1320), - [sym_nil_coalescing_expression] = STATE(1320), - [sym_check_expression] = STATE(1320), - [sym_comparison_expression] = STATE(1320), - [sym_equality_expression] = STATE(1320), - [sym_conjunction_expression] = STATE(1320), - [sym_disjunction_expression] = STATE(1320), - [sym_bitwise_operation] = STATE(1320), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1320), - [sym_await_expression] = STATE(1320), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1320), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1320), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1320), - [sym_dictionary_literal] = STATE(1320), - [sym__special_literal] = STATE(1320), - [sym__playground_literal] = STATE(1320), - [sym_lambda_literal] = STATE(1320), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1320), - [sym_key_path_expression] = STATE(1320), - [sym_key_path_string_expression] = STATE(1320), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1320), - [sym__equality_operator] = STATE(1320), - [sym__comparison_operator] = STATE(1320), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1320), - [sym__multiplicative_operator] = STATE(1320), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1320), - [sym__referenceable_operator] = STATE(1320), - [sym__eq_eq] = STATE(1320), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1447), - [sym_hex_literal] = ACTIONS(1449), - [sym_oct_literal] = ACTIONS(1449), - [sym_bin_literal] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1451), - [anon_sym_setter_COLON] = ACTIONS(1451), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1447), - [anon_sym_POUNDfileID] = ACTIONS(1449), - [anon_sym_POUNDfilePath] = ACTIONS(1449), - [anon_sym_POUNDline] = ACTIONS(1449), - [anon_sym_POUNDcolumn] = ACTIONS(1449), - [anon_sym_POUNDfunction] = ACTIONS(1449), - [anon_sym_POUNDdsohandle] = ACTIONS(1449), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1449), - [sym__plus_then_ws] = ACTIONS(1449), - [sym__minus_then_ws] = ACTIONS(1449), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [320] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2327), - [sym_expr_hack_at_ternary_binary_call] = STATE(2327), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [321] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2730), - [sym_expr_hack_at_ternary_binary_call] = STATE(2730), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [322] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2678), - [sym_expr_hack_at_ternary_binary_call] = STATE(2678), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [323] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1286), - [sym_boolean_literal] = STATE(1286), - [sym__string_literal] = STATE(1286), - [sym_line_string_literal] = STATE(1286), - [sym_multi_line_string_literal] = STATE(1286), - [sym_raw_string_literal] = STATE(1286), - [sym_regex_literal] = STATE(1286), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1286), - [sym__unary_expression] = STATE(1286), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1286), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1286), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1286), - [sym_prefix_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_selector_expression] = STATE(1286), - [sym__binary_expression] = STATE(1286), - [sym_multiplicative_expression] = STATE(1286), - [sym_additive_expression] = STATE(1286), - [sym_range_expression] = STATE(1286), - [sym_infix_expression] = STATE(1286), - [sym_nil_coalescing_expression] = STATE(1286), - [sym_check_expression] = STATE(1286), - [sym_comparison_expression] = STATE(1286), - [sym_equality_expression] = STATE(1286), - [sym_conjunction_expression] = STATE(1286), - [sym_disjunction_expression] = STATE(1286), - [sym_bitwise_operation] = STATE(1286), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1286), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2601), - [sym_expr_hack_at_ternary_binary_call] = STATE(2601), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1286), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1286), - [sym_dictionary_literal] = STATE(1286), - [sym__special_literal] = STATE(1286), - [sym__playground_literal] = STATE(1286), - [sym_lambda_literal] = STATE(1286), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1286), - [sym_key_path_expression] = STATE(1286), - [sym_key_path_string_expression] = STATE(1286), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1286), - [sym__equality_operator] = STATE(1286), - [sym__comparison_operator] = STATE(1286), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1286), - [sym__multiplicative_operator] = STATE(1286), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1286), - [sym__referenceable_operator] = STATE(1286), - [sym__eq_eq] = STATE(1286), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1325), - [sym_real_literal] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [sym_hex_literal] = ACTIONS(1327), - [sym_oct_literal] = ACTIONS(1327), - [sym_bin_literal] = ACTIONS(1327), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1325), - [anon_sym_POUNDfileID] = ACTIONS(1327), - [anon_sym_POUNDfilePath] = ACTIONS(1327), - [anon_sym_POUNDline] = ACTIONS(1327), - [anon_sym_POUNDcolumn] = ACTIONS(1327), - [anon_sym_POUNDfunction] = ACTIONS(1327), - [anon_sym_POUNDdsohandle] = ACTIONS(1327), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1327), - [anon_sym_DASH_EQ] = ACTIONS(1327), - [anon_sym_STAR_EQ] = ACTIONS(1327), - [anon_sym_SLASH_EQ] = ACTIONS(1327), - [anon_sym_PERCENT_EQ] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ] = ACTIONS(1325), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1327), - [anon_sym_LT_EQ] = ACTIONS(1327), - [anon_sym_GT_EQ] = ACTIONS(1327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(1327), - [anon_sym_GT_GT] = ACTIONS(1327), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1327), - [sym__plus_then_ws] = ACTIONS(1327), - [sym__minus_then_ws] = ACTIONS(1327), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [324] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2625), - [sym_expr_hack_at_ternary_binary_call] = STATE(2625), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [325] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym__string_literal] = STATE(1274), - [sym_line_string_literal] = STATE(1274), - [sym_multi_line_string_literal] = STATE(1274), - [sym_raw_string_literal] = STATE(1274), - [sym_regex_literal] = STATE(1274), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1274), - [sym__unary_expression] = STATE(1274), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1274), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1274), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1274), - [sym_prefix_expression] = STATE(1274), - [sym_as_expression] = STATE(1274), - [sym_selector_expression] = STATE(1274), - [sym__binary_expression] = STATE(1274), - [sym_multiplicative_expression] = STATE(1274), - [sym_additive_expression] = STATE(1274), - [sym_range_expression] = STATE(1274), - [sym_infix_expression] = STATE(1274), - [sym_nil_coalescing_expression] = STATE(1274), - [sym_check_expression] = STATE(1274), - [sym_comparison_expression] = STATE(1274), - [sym_equality_expression] = STATE(1274), - [sym_conjunction_expression] = STATE(1274), - [sym_disjunction_expression] = STATE(1274), - [sym_bitwise_operation] = STATE(1274), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1274), - [sym_await_expression] = STATE(1274), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1274), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1274), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1274), - [sym_dictionary_literal] = STATE(1274), - [sym__special_literal] = STATE(1274), - [sym__playground_literal] = STATE(1274), - [sym_lambda_literal] = STATE(1274), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1274), - [sym_key_path_expression] = STATE(1274), - [sym_key_path_string_expression] = STATE(1274), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1274), - [sym__equality_operator] = STATE(1274), - [sym__comparison_operator] = STATE(1274), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1274), - [sym__multiplicative_operator] = STATE(1274), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1274), - [sym__referenceable_operator] = STATE(1274), - [sym__eq_eq] = STATE(1274), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1453), - [aux_sym_simple_identifier_token2] = ACTIONS(1456), - [aux_sym_simple_identifier_token3] = ACTIONS(1456), - [aux_sym_simple_identifier_token4] = ACTIONS(1456), - [anon_sym_actor] = ACTIONS(1453), - [anon_sym_nil] = ACTIONS(1459), - [sym_real_literal] = ACTIONS(1461), - [sym_integer_literal] = ACTIONS(1459), - [sym_hex_literal] = ACTIONS(1461), - [sym_oct_literal] = ACTIONS(1461), - [sym_bin_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1459), - [anon_sym_POUNDfileID] = ACTIONS(1461), - [anon_sym_POUNDfilePath] = ACTIONS(1461), - [anon_sym_POUNDline] = ACTIONS(1461), - [anon_sym_POUNDcolumn] = ACTIONS(1461), - [anon_sym_POUNDfunction] = ACTIONS(1461), - [anon_sym_POUNDdsohandle] = ACTIONS(1461), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1461), - [sym__plus_then_ws] = ACTIONS(1461), - [sym__minus_then_ws] = ACTIONS(1461), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [326] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [327] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2672), - [sym_expr_hack_at_ternary_binary_call] = STATE(2672), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [328] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [329] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2334), - [sym_expr_hack_at_ternary_binary_call] = STATE(2334), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [330] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2601), - [sym_expr_hack_at_ternary_binary_call] = STATE(2601), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [331] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2671), - [sym_expr_hack_at_ternary_binary_call] = STATE(2671), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [332] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1140), - [sym_boolean_literal] = STATE(1140), - [sym__string_literal] = STATE(1140), - [sym_line_string_literal] = STATE(1140), - [sym_multi_line_string_literal] = STATE(1140), - [sym_raw_string_literal] = STATE(1140), - [sym_regex_literal] = STATE(1140), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1140), - [sym__unary_expression] = STATE(1140), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1140), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1140), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1140), - [sym_prefix_expression] = STATE(1140), - [sym_as_expression] = STATE(1140), - [sym_selector_expression] = STATE(1140), - [sym__binary_expression] = STATE(1140), - [sym_multiplicative_expression] = STATE(1140), - [sym_additive_expression] = STATE(1140), - [sym_range_expression] = STATE(1140), - [sym_infix_expression] = STATE(1140), - [sym_nil_coalescing_expression] = STATE(1140), - [sym_check_expression] = STATE(1140), - [sym_comparison_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_conjunction_expression] = STATE(1140), - [sym_disjunction_expression] = STATE(1140), - [sym_bitwise_operation] = STATE(1140), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1140), - [sym_await_expression] = STATE(1140), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1140), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2350), - [sym_expr_hack_at_ternary_binary_call] = STATE(2350), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1140), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1140), - [sym_dictionary_literal] = STATE(1140), - [sym__special_literal] = STATE(1140), - [sym__playground_literal] = STATE(1140), - [sym_lambda_literal] = STATE(1140), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1140), - [sym_key_path_expression] = STATE(1140), - [sym_key_path_string_expression] = STATE(1140), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1140), - [sym__equality_operator] = STATE(1140), - [sym__comparison_operator] = STATE(1140), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1140), - [sym__multiplicative_operator] = STATE(1140), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1140), - [sym__referenceable_operator] = STATE(1140), - [sym__eq_eq] = STATE(1140), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1065), - [sym_real_literal] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [sym_hex_literal] = ACTIONS(1067), - [sym_oct_literal] = ACTIONS(1067), - [sym_bin_literal] = ACTIONS(1067), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_GT] = ACTIONS(1065), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1065), - [anon_sym_POUNDfileID] = ACTIONS(1067), - [anon_sym_POUNDfilePath] = ACTIONS(1067), - [anon_sym_POUNDline] = ACTIONS(1067), - [anon_sym_POUNDcolumn] = ACTIONS(1067), - [anon_sym_POUNDfunction] = ACTIONS(1067), - [anon_sym_POUNDdsohandle] = ACTIONS(1067), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1067), - [anon_sym_DASH_EQ] = ACTIONS(1067), - [anon_sym_STAR_EQ] = ACTIONS(1067), - [anon_sym_SLASH_EQ] = ACTIONS(1067), - [anon_sym_PERCENT_EQ] = ACTIONS(1067), - [anon_sym_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ] = ACTIONS(1065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1067), - [anon_sym_LT_EQ] = ACTIONS(1067), - [anon_sym_GT_EQ] = ACTIONS(1067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_SLASH] = ACTIONS(1065), - [anon_sym_PERCENT] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1067), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1067), - [anon_sym_GT_GT] = ACTIONS(1067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1067), - [sym__plus_then_ws] = ACTIONS(1067), - [sym__minus_then_ws] = ACTIONS(1067), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [333] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2711), - [sym_expr_hack_at_ternary_binary_call] = STATE(2711), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [334] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2712), - [sym_expr_hack_at_ternary_binary_call] = STATE(2712), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [335] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [336] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2713), - [sym_expr_hack_at_ternary_binary_call] = STATE(2713), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [337] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2716), - [sym_expr_hack_at_ternary_binary_call] = STATE(2716), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [338] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1319), - [sym_boolean_literal] = STATE(1319), - [sym__string_literal] = STATE(1319), - [sym_line_string_literal] = STATE(1319), - [sym_multi_line_string_literal] = STATE(1319), - [sym_raw_string_literal] = STATE(1319), - [sym_regex_literal] = STATE(1319), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1319), - [sym__unary_expression] = STATE(1319), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1319), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1319), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1319), - [sym_prefix_expression] = STATE(1319), - [sym_as_expression] = STATE(1319), - [sym_selector_expression] = STATE(1319), - [sym__binary_expression] = STATE(1319), - [sym_multiplicative_expression] = STATE(1319), - [sym_additive_expression] = STATE(1319), - [sym_range_expression] = STATE(1319), - [sym_infix_expression] = STATE(1319), - [sym_nil_coalescing_expression] = STATE(1319), - [sym_check_expression] = STATE(1319), - [sym_comparison_expression] = STATE(1319), - [sym_equality_expression] = STATE(1319), - [sym_conjunction_expression] = STATE(1319), - [sym_disjunction_expression] = STATE(1319), - [sym_bitwise_operation] = STATE(1319), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1319), - [sym_await_expression] = STATE(1319), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1319), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1319), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1319), - [sym_dictionary_literal] = STATE(1319), - [sym__special_literal] = STATE(1319), - [sym__playground_literal] = STATE(1319), - [sym_lambda_literal] = STATE(1319), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1319), - [sym_key_path_expression] = STATE(1319), - [sym_key_path_string_expression] = STATE(1319), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1319), - [sym__equality_operator] = STATE(1319), - [sym__comparison_operator] = STATE(1319), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1319), - [sym__multiplicative_operator] = STATE(1319), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1319), - [sym__referenceable_operator] = STATE(1319), - [sym__eq_eq] = STATE(1319), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), - [sym_integer_literal] = ACTIONS(1471), - [sym_hex_literal] = ACTIONS(1473), - [sym_oct_literal] = ACTIONS(1473), - [sym_bin_literal] = ACTIONS(1473), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [anon_sym_getter_COLON] = ACTIONS(1475), - [anon_sym_setter_COLON] = ACTIONS(1475), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1471), - [anon_sym_POUNDfileID] = ACTIONS(1473), - [anon_sym_POUNDfilePath] = ACTIONS(1473), - [anon_sym_POUNDline] = ACTIONS(1473), - [anon_sym_POUNDcolumn] = ACTIONS(1473), - [anon_sym_POUNDfunction] = ACTIONS(1473), - [anon_sym_POUNDdsohandle] = ACTIONS(1473), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1473), - [anon_sym_DASH_EQ] = ACTIONS(1473), - [anon_sym_STAR_EQ] = ACTIONS(1473), - [anon_sym_SLASH_EQ] = ACTIONS(1473), - [anon_sym_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1471), - [anon_sym_BANG_EQ] = ACTIONS(1471), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(1473), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1473), - [sym__plus_then_ws] = ACTIONS(1473), - [sym__minus_then_ws] = ACTIONS(1473), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [339] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2718), - [sym_expr_hack_at_ternary_binary_call] = STATE(2718), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [340] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1231), - [sym_boolean_literal] = STATE(1231), - [sym__string_literal] = STATE(1231), - [sym_line_string_literal] = STATE(1231), - [sym_multi_line_string_literal] = STATE(1231), - [sym_raw_string_literal] = STATE(1231), - [sym_regex_literal] = STATE(1231), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(1231), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1231), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1231), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1231), - [sym_prefix_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_selector_expression] = STATE(1231), - [sym__binary_expression] = STATE(1231), - [sym_multiplicative_expression] = STATE(1231), - [sym_additive_expression] = STATE(1231), - [sym_range_expression] = STATE(1231), - [sym_infix_expression] = STATE(1231), - [sym_nil_coalescing_expression] = STATE(1231), - [sym_check_expression] = STATE(1231), - [sym_comparison_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_conjunction_expression] = STATE(1231), - [sym_disjunction_expression] = STATE(1231), - [sym_bitwise_operation] = STATE(1231), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1231), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2727), - [sym_expr_hack_at_ternary_binary_call] = STATE(2727), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1231), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1231), - [sym_dictionary_literal] = STATE(1231), - [sym__special_literal] = STATE(1231), - [sym__playground_literal] = STATE(1231), - [sym_lambda_literal] = STATE(1231), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1231), - [sym_key_path_expression] = STATE(1231), - [sym_key_path_string_expression] = STATE(1231), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1231), - [sym__equality_operator] = STATE(1231), - [sym__comparison_operator] = STATE(1231), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1231), - [sym__multiplicative_operator] = STATE(1231), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1231), - [sym__referenceable_operator] = STATE(1231), - [sym__eq_eq] = STATE(1231), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1055), - [sym_real_literal] = ACTIONS(1057), - [sym_integer_literal] = ACTIONS(1055), - [sym_hex_literal] = ACTIONS(1057), - [sym_oct_literal] = ACTIONS(1057), - [sym_bin_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_GT] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1055), - [anon_sym_POUNDfileID] = ACTIONS(1057), - [anon_sym_POUNDfilePath] = ACTIONS(1057), - [anon_sym_POUNDline] = ACTIONS(1057), - [anon_sym_POUNDcolumn] = ACTIONS(1057), - [anon_sym_POUNDfunction] = ACTIONS(1057), - [anon_sym_POUNDdsohandle] = ACTIONS(1057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1057), - [anon_sym_DASH_EQ] = ACTIONS(1057), - [anon_sym_STAR_EQ] = ACTIONS(1057), - [anon_sym_SLASH_EQ] = ACTIONS(1057), - [anon_sym_PERCENT_EQ] = ACTIONS(1057), - [anon_sym_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1057), - [anon_sym_LT_EQ] = ACTIONS(1057), - [anon_sym_GT_EQ] = ACTIONS(1057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1055), - [anon_sym_PERCENT] = ACTIONS(1055), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1057), - [sym__plus_then_ws] = ACTIONS(1057), - [sym__minus_then_ws] = ACTIONS(1057), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [341] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1176), - [sym_boolean_literal] = STATE(1176), - [sym__string_literal] = STATE(1176), - [sym_line_string_literal] = STATE(1176), - [sym_multi_line_string_literal] = STATE(1176), - [sym_raw_string_literal] = STATE(1176), - [sym_regex_literal] = STATE(1176), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1176), - [sym__unary_expression] = STATE(1176), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1176), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1176), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1176), - [sym_prefix_expression] = STATE(1176), - [sym_as_expression] = STATE(1176), - [sym_selector_expression] = STATE(1176), - [sym__binary_expression] = STATE(1176), - [sym_multiplicative_expression] = STATE(1176), - [sym_additive_expression] = STATE(1176), - [sym_range_expression] = STATE(1176), - [sym_infix_expression] = STATE(1176), - [sym_nil_coalescing_expression] = STATE(1176), - [sym_check_expression] = STATE(1176), - [sym_comparison_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_conjunction_expression] = STATE(1176), - [sym_disjunction_expression] = STATE(1176), - [sym_bitwise_operation] = STATE(1176), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1176), - [sym_await_expression] = STATE(1176), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1176), - [sym__expr_hack_at_ternary_binary_suffix] = STATE(2670), - [sym_expr_hack_at_ternary_binary_call] = STATE(2670), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1176), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1176), - [sym_dictionary_literal] = STATE(1176), - [sym__special_literal] = STATE(1176), - [sym__playground_literal] = STATE(1176), - [sym_lambda_literal] = STATE(1176), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1176), - [sym_key_path_expression] = STATE(1176), - [sym_key_path_string_expression] = STATE(1176), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1176), - [sym__equality_operator] = STATE(1176), - [sym__comparison_operator] = STATE(1176), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1176), - [sym__multiplicative_operator] = STATE(1176), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1176), - [sym__referenceable_operator] = STATE(1176), - [sym__eq_eq] = STATE(1176), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1431), - [sym_real_literal] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [sym_hex_literal] = ACTIONS(1433), - [sym_oct_literal] = ACTIONS(1433), - [sym_bin_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1431), - [anon_sym_POUNDfileID] = ACTIONS(1433), - [anon_sym_POUNDfilePath] = ACTIONS(1433), - [anon_sym_POUNDline] = ACTIONS(1433), - [anon_sym_POUNDcolumn] = ACTIONS(1433), - [anon_sym_POUNDfunction] = ACTIONS(1433), - [anon_sym_POUNDdsohandle] = ACTIONS(1433), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ] = ACTIONS(1431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1433), - [anon_sym_GT_GT] = ACTIONS(1433), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1433), - [sym__plus_then_ws] = ACTIONS(1433), - [sym__minus_then_ws] = ACTIONS(1433), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [342] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [343] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [344] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1310), - [sym_boolean_literal] = STATE(1310), - [sym__string_literal] = STATE(1310), - [sym_line_string_literal] = STATE(1310), - [sym_multi_line_string_literal] = STATE(1310), - [sym_raw_string_literal] = STATE(1310), - [sym_regex_literal] = STATE(1310), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1310), - [sym__unary_expression] = STATE(1310), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1310), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1310), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1310), - [sym_prefix_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_selector_expression] = STATE(1310), - [sym__binary_expression] = STATE(1310), - [sym_multiplicative_expression] = STATE(1310), - [sym_additive_expression] = STATE(1310), - [sym_range_expression] = STATE(1310), - [sym_infix_expression] = STATE(1310), - [sym_nil_coalescing_expression] = STATE(1310), - [sym_check_expression] = STATE(1310), - [sym_comparison_expression] = STATE(1310), - [sym_equality_expression] = STATE(1310), - [sym_conjunction_expression] = STATE(1310), - [sym_disjunction_expression] = STATE(1310), - [sym_bitwise_operation] = STATE(1310), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1310), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1310), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1310), - [sym_dictionary_literal] = STATE(1310), - [sym__dictionary_literal_item] = STATE(6046), - [sym__special_literal] = STATE(1310), - [sym__playground_literal] = STATE(1310), - [sym_lambda_literal] = STATE(1310), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1310), - [sym_key_path_expression] = STATE(1310), - [sym_key_path_string_expression] = STATE(1310), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1310), - [sym__equality_operator] = STATE(1310), - [sym__comparison_operator] = STATE(1310), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1310), - [sym__multiplicative_operator] = STATE(1310), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1310), - [sym__referenceable_operator] = STATE(1310), - [sym__eq_eq] = STATE(1310), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1121), - [sym_real_literal] = ACTIONS(1123), - [sym_integer_literal] = ACTIONS(1121), - [sym_hex_literal] = ACTIONS(1123), - [sym_oct_literal] = ACTIONS(1123), - [sym_bin_literal] = ACTIONS(1123), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1121), - [anon_sym_GT] = ACTIONS(1121), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1121), - [anon_sym_POUNDfileID] = ACTIONS(1123), - [anon_sym_POUNDfilePath] = ACTIONS(1123), - [anon_sym_POUNDline] = ACTIONS(1123), - [anon_sym_POUNDcolumn] = ACTIONS(1123), - [anon_sym_POUNDfunction] = ACTIONS(1123), - [anon_sym_POUNDdsohandle] = ACTIONS(1123), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ] = ACTIONS(1121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1123), - [anon_sym_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_EQ] = ACTIONS(1123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1121), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1123), - [anon_sym_CARET] = ACTIONS(1121), - [anon_sym_LT_LT] = ACTIONS(1123), - [anon_sym_GT_GT] = ACTIONS(1123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1123), - [sym__plus_then_ws] = ACTIONS(1123), - [sym__minus_then_ws] = ACTIONS(1123), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [345] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [346] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [347] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [348] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [349] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [350] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [351] = { - [sym_simple_identifier] = STATE(1713), - [sym__basic_literal] = STATE(1254), - [sym_boolean_literal] = STATE(1254), - [sym__string_literal] = STATE(1254), - [sym_line_string_literal] = STATE(1254), - [sym_multi_line_string_literal] = STATE(1254), - [sym_raw_string_literal] = STATE(1254), - [sym_regex_literal] = STATE(1254), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1254), - [sym__unary_expression] = STATE(1254), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1254), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1254), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1254), - [sym_prefix_expression] = STATE(1254), - [sym_as_expression] = STATE(1254), - [sym_selector_expression] = STATE(1254), - [sym__binary_expression] = STATE(1254), - [sym_multiplicative_expression] = STATE(1254), - [sym_additive_expression] = STATE(1254), - [sym_range_expression] = STATE(1254), - [sym_infix_expression] = STATE(1254), - [sym_nil_coalescing_expression] = STATE(1254), - [sym_check_expression] = STATE(1254), - [sym_comparison_expression] = STATE(1254), - [sym_equality_expression] = STATE(1254), - [sym_conjunction_expression] = STATE(1254), - [sym_disjunction_expression] = STATE(1254), - [sym_bitwise_operation] = STATE(1254), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1254), - [sym_await_expression] = STATE(1254), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1254), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1254), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1254), - [sym_dictionary_literal] = STATE(1254), - [sym__special_literal] = STATE(1254), - [sym__playground_literal] = STATE(1254), - [sym_lambda_literal] = STATE(1254), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1254), - [sym_key_path_expression] = STATE(1254), - [sym_key_path_string_expression] = STATE(1254), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1254), - [sym__equality_operator] = STATE(1254), - [sym__comparison_operator] = STATE(1254), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1254), - [sym__multiplicative_operator] = STATE(1254), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1254), - [sym__referenceable_operator] = STATE(1254), - [sym__eq_eq] = STATE(1254), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [aux_sym_value_argument_repeat1] = STATE(4324), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1497), - [sym_real_literal] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [sym_hex_literal] = ACTIONS(1499), - [sym_oct_literal] = ACTIONS(1499), - [sym_bin_literal] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1497), - [anon_sym_POUNDfileID] = ACTIONS(1499), - [anon_sym_POUNDfilePath] = ACTIONS(1499), - [anon_sym_POUNDline] = ACTIONS(1499), - [anon_sym_POUNDcolumn] = ACTIONS(1499), - [anon_sym_POUNDfunction] = ACTIONS(1499), - [anon_sym_POUNDdsohandle] = ACTIONS(1499), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1499), - [anon_sym_DASH_EQ] = ACTIONS(1499), - [anon_sym_STAR_EQ] = ACTIONS(1499), - [anon_sym_SLASH_EQ] = ACTIONS(1499), - [anon_sym_PERCENT_EQ] = ACTIONS(1499), - [anon_sym_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1499), - [sym__plus_then_ws] = ACTIONS(1499), - [sym__minus_then_ws] = ACTIONS(1499), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [352] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [353] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [354] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [355] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [356] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [357] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [358] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [359] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [360] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [361] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_RBRACK] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [362] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1246), - [sym_boolean_literal] = STATE(1246), - [sym__string_literal] = STATE(1246), - [sym_line_string_literal] = STATE(1246), - [sym_multi_line_string_literal] = STATE(1246), - [sym_raw_string_literal] = STATE(1246), - [sym_regex_literal] = STATE(1246), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1246), - [sym__unary_expression] = STATE(1246), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1246), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1246), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1246), - [sym_prefix_expression] = STATE(1246), - [sym_as_expression] = STATE(1246), - [sym_selector_expression] = STATE(1246), - [sym__binary_expression] = STATE(1246), - [sym_multiplicative_expression] = STATE(1246), - [sym_additive_expression] = STATE(1246), - [sym_range_expression] = STATE(1246), - [sym_infix_expression] = STATE(1246), - [sym_nil_coalescing_expression] = STATE(1246), - [sym_check_expression] = STATE(1246), - [sym_comparison_expression] = STATE(1246), - [sym_equality_expression] = STATE(1246), - [sym_conjunction_expression] = STATE(1246), - [sym_disjunction_expression] = STATE(1246), - [sym_bitwise_operation] = STATE(1246), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1246), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1246), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1246), - [sym_dictionary_literal] = STATE(1246), - [sym__special_literal] = STATE(1246), - [sym__playground_literal] = STATE(1246), - [sym_lambda_literal] = STATE(1246), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1246), - [sym_key_path_expression] = STATE(1246), - [sym_key_path_string_expression] = STATE(1246), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1246), - [sym__equality_operator] = STATE(1246), - [sym__comparison_operator] = STATE(1246), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1246), - [sym__multiplicative_operator] = STATE(1246), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1246), - [sym__referenceable_operator] = STATE(1246), - [sym__eq_eq] = STATE(1246), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1523), - [sym_real_literal] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1523), - [sym_hex_literal] = ACTIONS(1525), - [sym_oct_literal] = ACTIONS(1525), - [sym_bin_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1523), - [anon_sym_POUNDfileID] = ACTIONS(1525), - [anon_sym_POUNDfilePath] = ACTIONS(1525), - [anon_sym_POUNDline] = ACTIONS(1525), - [anon_sym_POUNDcolumn] = ACTIONS(1525), - [anon_sym_POUNDfunction] = ACTIONS(1525), - [anon_sym_POUNDdsohandle] = ACTIONS(1525), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_BANG_EQ] = ACTIONS(1523), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_LT_LT] = ACTIONS(1525), - [anon_sym_GT_GT] = ACTIONS(1525), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1525), - [sym__plus_then_ws] = ACTIONS(1525), - [sym__minus_then_ws] = ACTIONS(1525), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [363] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1168), - [sym_boolean_literal] = STATE(1168), - [sym__string_literal] = STATE(1168), - [sym_line_string_literal] = STATE(1168), - [sym_multi_line_string_literal] = STATE(1168), - [sym_raw_string_literal] = STATE(1168), - [sym_regex_literal] = STATE(1168), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1168), - [sym__unary_expression] = STATE(1168), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1168), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1168), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1168), - [sym_prefix_expression] = STATE(1168), - [sym_as_expression] = STATE(1168), - [sym_selector_expression] = STATE(1168), - [sym__binary_expression] = STATE(1168), - [sym_multiplicative_expression] = STATE(1168), - [sym_additive_expression] = STATE(1168), - [sym_range_expression] = STATE(1168), - [sym_infix_expression] = STATE(1168), - [sym_nil_coalescing_expression] = STATE(1168), - [sym_check_expression] = STATE(1168), - [sym_comparison_expression] = STATE(1168), - [sym_equality_expression] = STATE(1168), - [sym_conjunction_expression] = STATE(1168), - [sym_disjunction_expression] = STATE(1168), - [sym_bitwise_operation] = STATE(1168), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1168), - [sym_await_expression] = STATE(1168), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1168), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1168), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1168), - [sym_dictionary_literal] = STATE(1168), - [sym__special_literal] = STATE(1168), - [sym__playground_literal] = STATE(1168), - [sym_lambda_literal] = STATE(1168), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1168), - [sym_key_path_expression] = STATE(1168), - [sym_key_path_string_expression] = STATE(1168), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1168), - [sym__equality_operator] = STATE(1168), - [sym__comparison_operator] = STATE(1168), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1168), - [sym__multiplicative_operator] = STATE(1168), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1168), - [sym__referenceable_operator] = STATE(1168), - [sym__eq_eq] = STATE(1168), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), - [sym_integer_literal] = ACTIONS(1527), - [sym_hex_literal] = ACTIONS(1529), - [sym_oct_literal] = ACTIONS(1529), - [sym_bin_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1527), - [anon_sym_GT] = ACTIONS(1527), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1527), - [anon_sym_POUNDfileID] = ACTIONS(1529), - [anon_sym_POUNDfilePath] = ACTIONS(1529), - [anon_sym_POUNDline] = ACTIONS(1529), - [anon_sym_POUNDcolumn] = ACTIONS(1529), - [anon_sym_POUNDfunction] = ACTIONS(1529), - [anon_sym_POUNDdsohandle] = ACTIONS(1529), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PERCENT_EQ] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ] = ACTIONS(1527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1529), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_SLASH] = ACTIONS(1527), - [anon_sym_PERCENT] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1529), - [anon_sym_GT_GT] = ACTIONS(1529), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1529), - [sym__plus_then_ws] = ACTIONS(1529), - [sym__minus_then_ws] = ACTIONS(1529), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [364] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1177), - [sym_boolean_literal] = STATE(1177), - [sym__string_literal] = STATE(1177), - [sym_line_string_literal] = STATE(1177), - [sym_multi_line_string_literal] = STATE(1177), - [sym_raw_string_literal] = STATE(1177), - [sym_regex_literal] = STATE(1177), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1177), - [sym__unary_expression] = STATE(1177), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1177), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1177), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1177), - [sym_prefix_expression] = STATE(1177), - [sym_as_expression] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym__binary_expression] = STATE(1177), - [sym_multiplicative_expression] = STATE(1177), - [sym_additive_expression] = STATE(1177), - [sym_range_expression] = STATE(1177), - [sym_infix_expression] = STATE(1177), - [sym_nil_coalescing_expression] = STATE(1177), - [sym_check_expression] = STATE(1177), - [sym_comparison_expression] = STATE(1177), - [sym_equality_expression] = STATE(1177), - [sym_conjunction_expression] = STATE(1177), - [sym_disjunction_expression] = STATE(1177), - [sym_bitwise_operation] = STATE(1177), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1177), - [sym_await_expression] = STATE(1177), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1177), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1177), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1177), - [sym_dictionary_literal] = STATE(1177), - [sym__special_literal] = STATE(1177), - [sym__playground_literal] = STATE(1177), - [sym_lambda_literal] = STATE(1177), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1177), - [sym_key_path_expression] = STATE(1177), - [sym_key_path_string_expression] = STATE(1177), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1177), - [sym__equality_operator] = STATE(1177), - [sym__comparison_operator] = STATE(1177), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1177), - [sym__multiplicative_operator] = STATE(1177), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1177), - [sym__referenceable_operator] = STATE(1177), - [sym__eq_eq] = STATE(1177), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1531), - [sym_real_literal] = ACTIONS(1533), - [sym_integer_literal] = ACTIONS(1531), - [sym_hex_literal] = ACTIONS(1533), - [sym_oct_literal] = ACTIONS(1533), - [sym_bin_literal] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1531), - [anon_sym_POUNDfileID] = ACTIONS(1533), - [anon_sym_POUNDfilePath] = ACTIONS(1533), - [anon_sym_POUNDline] = ACTIONS(1533), - [anon_sym_POUNDcolumn] = ACTIONS(1533), - [anon_sym_POUNDfunction] = ACTIONS(1533), - [anon_sym_POUNDdsohandle] = ACTIONS(1533), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1533), - [anon_sym_DASH_EQ] = ACTIONS(1533), - [anon_sym_STAR_EQ] = ACTIONS(1533), - [anon_sym_SLASH_EQ] = ACTIONS(1533), - [anon_sym_PERCENT_EQ] = ACTIONS(1533), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1533), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_SLASH] = ACTIONS(1531), - [anon_sym_PERCENT] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1533), - [sym__plus_then_ws] = ACTIONS(1533), - [sym__minus_then_ws] = ACTIONS(1533), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [365] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(611), - [sym_boolean_literal] = STATE(611), - [sym__string_literal] = STATE(611), - [sym_line_string_literal] = STATE(611), - [sym_multi_line_string_literal] = STATE(611), - [sym_raw_string_literal] = STATE(611), - [sym_regex_literal] = STATE(611), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(611), - [sym__unary_expression] = STATE(611), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(611), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(611), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(611), - [sym_prefix_expression] = STATE(611), - [sym_as_expression] = STATE(611), - [sym_selector_expression] = STATE(611), - [sym__binary_expression] = STATE(611), - [sym_multiplicative_expression] = STATE(611), - [sym_additive_expression] = STATE(611), - [sym_range_expression] = STATE(611), - [sym_infix_expression] = STATE(611), - [sym_nil_coalescing_expression] = STATE(611), - [sym_check_expression] = STATE(611), - [sym_comparison_expression] = STATE(611), - [sym_equality_expression] = STATE(611), - [sym_conjunction_expression] = STATE(611), - [sym_disjunction_expression] = STATE(611), - [sym_bitwise_operation] = STATE(611), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(611), - [sym_await_expression] = STATE(611), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(611), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(611), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(611), - [sym_dictionary_literal] = STATE(611), - [sym__special_literal] = STATE(611), - [sym__playground_literal] = STATE(611), - [sym_lambda_literal] = STATE(611), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(611), - [sym_key_path_expression] = STATE(611), - [sym_key_path_string_expression] = STATE(611), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(611), - [sym__equality_operator] = STATE(611), - [sym__comparison_operator] = STATE(611), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(611), - [sym__multiplicative_operator] = STATE(611), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(611), - [sym__referenceable_operator] = STATE(611), - [sym__eq_eq] = STATE(611), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1535), - [sym_real_literal] = ACTIONS(1537), - [sym_integer_literal] = ACTIONS(1535), - [sym_hex_literal] = ACTIONS(1537), - [sym_oct_literal] = ACTIONS(1537), - [sym_bin_literal] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1535), - [anon_sym_GT] = ACTIONS(1535), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1535), - [anon_sym_POUNDfileID] = ACTIONS(1537), - [anon_sym_POUNDfilePath] = ACTIONS(1537), - [anon_sym_POUNDline] = ACTIONS(1537), - [anon_sym_POUNDcolumn] = ACTIONS(1537), - [anon_sym_POUNDfunction] = ACTIONS(1537), - [anon_sym_POUNDdsohandle] = ACTIONS(1537), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PERCENT_EQ] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1537), - [anon_sym_LT_EQ] = ACTIONS(1537), - [anon_sym_GT_EQ] = ACTIONS(1537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_SLASH] = ACTIONS(1535), - [anon_sym_PERCENT] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1537), - [anon_sym_GT_GT] = ACTIONS(1537), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1537), - [sym__plus_then_ws] = ACTIONS(1537), - [sym__minus_then_ws] = ACTIONS(1537), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [366] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1184), - [sym_boolean_literal] = STATE(1184), - [sym__string_literal] = STATE(1184), - [sym_line_string_literal] = STATE(1184), - [sym_multi_line_string_literal] = STATE(1184), - [sym_raw_string_literal] = STATE(1184), - [sym_regex_literal] = STATE(1184), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1184), - [sym__unary_expression] = STATE(1184), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1184), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1184), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1184), - [sym_prefix_expression] = STATE(1184), - [sym_as_expression] = STATE(1184), - [sym_selector_expression] = STATE(1184), - [sym__binary_expression] = STATE(1184), - [sym_multiplicative_expression] = STATE(1184), - [sym_additive_expression] = STATE(1184), - [sym_range_expression] = STATE(1184), - [sym_infix_expression] = STATE(1184), - [sym_nil_coalescing_expression] = STATE(1184), - [sym_check_expression] = STATE(1184), - [sym_comparison_expression] = STATE(1184), - [sym_equality_expression] = STATE(1184), - [sym_conjunction_expression] = STATE(1184), - [sym_disjunction_expression] = STATE(1184), - [sym_bitwise_operation] = STATE(1184), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1184), - [sym_await_expression] = STATE(1184), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1184), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1184), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1184), - [sym_dictionary_literal] = STATE(1184), - [sym__special_literal] = STATE(1184), - [sym__playground_literal] = STATE(1184), - [sym_lambda_literal] = STATE(1184), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1184), - [sym_key_path_expression] = STATE(1184), - [sym_key_path_string_expression] = STATE(1184), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1184), - [sym__equality_operator] = STATE(1184), - [sym__comparison_operator] = STATE(1184), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1184), - [sym__multiplicative_operator] = STATE(1184), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1184), - [sym__referenceable_operator] = STATE(1184), - [sym__eq_eq] = STATE(1184), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1539), - [sym_real_literal] = ACTIONS(1541), - [sym_integer_literal] = ACTIONS(1539), - [sym_hex_literal] = ACTIONS(1541), - [sym_oct_literal] = ACTIONS(1541), - [sym_bin_literal] = ACTIONS(1541), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1539), - [anon_sym_GT] = ACTIONS(1539), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1539), - [anon_sym_POUNDfileID] = ACTIONS(1541), - [anon_sym_POUNDfilePath] = ACTIONS(1541), - [anon_sym_POUNDline] = ACTIONS(1541), - [anon_sym_POUNDcolumn] = ACTIONS(1541), - [anon_sym_POUNDfunction] = ACTIONS(1541), - [anon_sym_POUNDdsohandle] = ACTIONS(1541), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1541), - [anon_sym_DASH_EQ] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1541), - [anon_sym_SLASH_EQ] = ACTIONS(1541), - [anon_sym_PERCENT_EQ] = ACTIONS(1541), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1541), - [anon_sym_LT_EQ] = ACTIONS(1541), - [anon_sym_GT_EQ] = ACTIONS(1541), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_SLASH] = ACTIONS(1539), - [anon_sym_PERCENT] = ACTIONS(1539), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1541), - [anon_sym_CARET] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1541), - [anon_sym_GT_GT] = ACTIONS(1541), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1541), - [sym__plus_then_ws] = ACTIONS(1541), - [sym__minus_then_ws] = ACTIONS(1541), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [367] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1259), - [sym_boolean_literal] = STATE(1259), - [sym__string_literal] = STATE(1259), - [sym_line_string_literal] = STATE(1259), - [sym_multi_line_string_literal] = STATE(1259), - [sym_raw_string_literal] = STATE(1259), - [sym_regex_literal] = STATE(1259), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1259), - [sym__unary_expression] = STATE(1259), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1259), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1259), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1259), - [sym_prefix_expression] = STATE(1259), - [sym_as_expression] = STATE(1259), - [sym_selector_expression] = STATE(1259), - [sym__binary_expression] = STATE(1259), - [sym_multiplicative_expression] = STATE(1259), - [sym_additive_expression] = STATE(1259), - [sym_range_expression] = STATE(1259), - [sym_infix_expression] = STATE(1259), - [sym_nil_coalescing_expression] = STATE(1259), - [sym_check_expression] = STATE(1259), - [sym_comparison_expression] = STATE(1259), - [sym_equality_expression] = STATE(1259), - [sym_conjunction_expression] = STATE(1259), - [sym_disjunction_expression] = STATE(1259), - [sym_bitwise_operation] = STATE(1259), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1259), - [sym_await_expression] = STATE(1259), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1259), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1259), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1259), - [sym_dictionary_literal] = STATE(1259), - [sym__special_literal] = STATE(1259), - [sym__playground_literal] = STATE(1259), - [sym_lambda_literal] = STATE(1259), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1259), - [sym_key_path_expression] = STATE(1259), - [sym_key_path_string_expression] = STATE(1259), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1259), - [sym__equality_operator] = STATE(1259), - [sym__comparison_operator] = STATE(1259), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1259), - [sym__multiplicative_operator] = STATE(1259), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1259), - [sym__referenceable_operator] = STATE(1259), - [sym__eq_eq] = STATE(1259), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1543), - [sym_real_literal] = ACTIONS(1545), - [sym_integer_literal] = ACTIONS(1543), - [sym_hex_literal] = ACTIONS(1545), - [sym_oct_literal] = ACTIONS(1545), - [sym_bin_literal] = ACTIONS(1545), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_GT] = ACTIONS(1543), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1543), - [anon_sym_POUNDfileID] = ACTIONS(1545), - [anon_sym_POUNDfilePath] = ACTIONS(1545), - [anon_sym_POUNDline] = ACTIONS(1545), - [anon_sym_POUNDcolumn] = ACTIONS(1545), - [anon_sym_POUNDfunction] = ACTIONS(1545), - [anon_sym_POUNDdsohandle] = ACTIONS(1545), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PERCENT_EQ] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_BANG_EQ] = ACTIONS(1543), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1545), - [anon_sym_LT_EQ] = ACTIONS(1545), - [anon_sym_GT_EQ] = ACTIONS(1545), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_PERCENT] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_LT_LT] = ACTIONS(1545), - [anon_sym_GT_GT] = ACTIONS(1545), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1545), - [sym__plus_then_ws] = ACTIONS(1545), - [sym__minus_then_ws] = ACTIONS(1545), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [368] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1256), - [sym_boolean_literal] = STATE(1256), - [sym__string_literal] = STATE(1256), - [sym_line_string_literal] = STATE(1256), - [sym_multi_line_string_literal] = STATE(1256), - [sym_raw_string_literal] = STATE(1256), - [sym_regex_literal] = STATE(1256), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1256), - [sym__unary_expression] = STATE(1256), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1256), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1256), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1256), - [sym_prefix_expression] = STATE(1256), - [sym_as_expression] = STATE(1256), - [sym_selector_expression] = STATE(1256), - [sym__binary_expression] = STATE(1256), - [sym_multiplicative_expression] = STATE(1256), - [sym_additive_expression] = STATE(1256), - [sym_range_expression] = STATE(1256), - [sym_infix_expression] = STATE(1256), - [sym_nil_coalescing_expression] = STATE(1256), - [sym_check_expression] = STATE(1256), - [sym_comparison_expression] = STATE(1256), - [sym_equality_expression] = STATE(1256), - [sym_conjunction_expression] = STATE(1256), - [sym_disjunction_expression] = STATE(1256), - [sym_bitwise_operation] = STATE(1256), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1256), - [sym_await_expression] = STATE(1256), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1256), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1256), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1256), - [sym_dictionary_literal] = STATE(1256), - [sym__special_literal] = STATE(1256), - [sym__playground_literal] = STATE(1256), - [sym_lambda_literal] = STATE(1256), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1256), - [sym_key_path_expression] = STATE(1256), - [sym_key_path_string_expression] = STATE(1256), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1256), - [sym__equality_operator] = STATE(1256), - [sym__comparison_operator] = STATE(1256), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1256), - [sym__multiplicative_operator] = STATE(1256), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1256), - [sym__referenceable_operator] = STATE(1256), - [sym__eq_eq] = STATE(1256), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1547), - [sym_real_literal] = ACTIONS(1549), - [sym_integer_literal] = ACTIONS(1547), - [sym_hex_literal] = ACTIONS(1549), - [sym_oct_literal] = ACTIONS(1549), - [sym_bin_literal] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1547), - [anon_sym_GT] = ACTIONS(1547), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1547), - [anon_sym_POUNDfileID] = ACTIONS(1549), - [anon_sym_POUNDfilePath] = ACTIONS(1549), - [anon_sym_POUNDline] = ACTIONS(1549), - [anon_sym_POUNDcolumn] = ACTIONS(1549), - [anon_sym_POUNDfunction] = ACTIONS(1549), - [anon_sym_POUNDdsohandle] = ACTIONS(1549), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1549), - [anon_sym_DASH_EQ] = ACTIONS(1549), - [anon_sym_STAR_EQ] = ACTIONS(1549), - [anon_sym_SLASH_EQ] = ACTIONS(1549), - [anon_sym_PERCENT_EQ] = ACTIONS(1549), - [anon_sym_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ] = ACTIONS(1547), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1549), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_SLASH] = ACTIONS(1547), - [anon_sym_PERCENT] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1549), - [anon_sym_CARET] = ACTIONS(1547), - [anon_sym_LT_LT] = ACTIONS(1549), - [anon_sym_GT_GT] = ACTIONS(1549), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1549), - [sym__plus_then_ws] = ACTIONS(1549), - [sym__minus_then_ws] = ACTIONS(1549), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [369] = { - [sym_simple_identifier] = STATE(1789), - [sym__basic_literal] = STATE(1228), - [sym_boolean_literal] = STATE(1228), - [sym__string_literal] = STATE(1228), - [sym_line_string_literal] = STATE(1228), - [sym_multi_line_string_literal] = STATE(1228), - [sym_raw_string_literal] = STATE(1228), - [sym_regex_literal] = STATE(1228), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1228), - [sym__unary_expression] = STATE(1228), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1228), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1228), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1228), - [sym_prefix_expression] = STATE(1228), - [sym_as_expression] = STATE(1228), - [sym_selector_expression] = STATE(1228), - [sym__binary_expression] = STATE(1228), - [sym_multiplicative_expression] = STATE(1228), - [sym_additive_expression] = STATE(1228), - [sym_range_expression] = STATE(1228), - [sym_infix_expression] = STATE(1228), - [sym_nil_coalescing_expression] = STATE(1228), - [sym_check_expression] = STATE(1228), - [sym_comparison_expression] = STATE(1228), - [sym_equality_expression] = STATE(1228), - [sym_conjunction_expression] = STATE(1228), - [sym_disjunction_expression] = STATE(1228), - [sym_bitwise_operation] = STATE(1228), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1228), - [sym_await_expression] = STATE(1228), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1228), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1228), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1228), - [sym_dictionary_literal] = STATE(1228), - [sym__special_literal] = STATE(1228), - [sym__playground_literal] = STATE(1228), - [sym_lambda_literal] = STATE(1228), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1228), - [sym_key_path_expression] = STATE(1228), - [sym_key_path_string_expression] = STATE(1228), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1228), - [sym__equality_operator] = STATE(1228), - [sym__comparison_operator] = STATE(1228), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1228), - [sym__multiplicative_operator] = STATE(1228), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1228), - [sym__referenceable_operator] = STATE(1228), - [sym__eq_eq] = STATE(1228), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1551), - [sym_real_literal] = ACTIONS(1553), - [sym_integer_literal] = ACTIONS(1551), - [sym_hex_literal] = ACTIONS(1553), - [sym_oct_literal] = ACTIONS(1553), - [sym_bin_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1551), - [anon_sym_POUNDfileID] = ACTIONS(1553), - [anon_sym_POUNDfilePath] = ACTIONS(1553), - [anon_sym_POUNDline] = ACTIONS(1553), - [anon_sym_POUNDcolumn] = ACTIONS(1553), - [anon_sym_POUNDfunction] = ACTIONS(1553), - [anon_sym_POUNDdsohandle] = ACTIONS(1553), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1553), - [anon_sym_DASH_EQ] = ACTIONS(1553), - [anon_sym_STAR_EQ] = ACTIONS(1553), - [anon_sym_SLASH_EQ] = ACTIONS(1553), - [anon_sym_PERCENT_EQ] = ACTIONS(1553), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_BANG_EQ] = ACTIONS(1551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1553), - [anon_sym_LT_EQ] = ACTIONS(1553), - [anon_sym_GT_EQ] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_SLASH] = ACTIONS(1551), - [anon_sym_PERCENT] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1551), - [anon_sym_LT_LT] = ACTIONS(1553), - [anon_sym_GT_GT] = ACTIONS(1553), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1553), - [sym__plus_then_ws] = ACTIONS(1553), - [sym__minus_then_ws] = ACTIONS(1553), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [370] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1224), - [sym_boolean_literal] = STATE(1224), - [sym__string_literal] = STATE(1224), - [sym_line_string_literal] = STATE(1224), - [sym_multi_line_string_literal] = STATE(1224), - [sym_raw_string_literal] = STATE(1224), - [sym_regex_literal] = STATE(1224), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(1224), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1224), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1224), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1224), - [sym_prefix_expression] = STATE(1224), - [sym_as_expression] = STATE(1224), - [sym_selector_expression] = STATE(1224), - [sym__binary_expression] = STATE(1224), - [sym_multiplicative_expression] = STATE(1224), - [sym_additive_expression] = STATE(1224), - [sym_range_expression] = STATE(1224), - [sym_infix_expression] = STATE(1224), - [sym_nil_coalescing_expression] = STATE(1224), - [sym_check_expression] = STATE(1224), - [sym_comparison_expression] = STATE(1224), - [sym_equality_expression] = STATE(1224), - [sym_conjunction_expression] = STATE(1224), - [sym_disjunction_expression] = STATE(1224), - [sym_bitwise_operation] = STATE(1224), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1224), - [sym_await_expression] = STATE(1224), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1224), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1224), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1224), - [sym_dictionary_literal] = STATE(1224), - [sym__special_literal] = STATE(1224), - [sym__playground_literal] = STATE(1224), - [sym_lambda_literal] = STATE(1224), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1224), - [sym_key_path_expression] = STATE(1224), - [sym_key_path_string_expression] = STATE(1224), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1224), - [sym__equality_operator] = STATE(1224), - [sym__comparison_operator] = STATE(1224), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1224), - [sym__multiplicative_operator] = STATE(1224), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1224), - [sym__referenceable_operator] = STATE(1224), - [sym__eq_eq] = STATE(1224), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1555), - [sym_real_literal] = ACTIONS(1557), - [sym_integer_literal] = ACTIONS(1555), - [sym_hex_literal] = ACTIONS(1557), - [sym_oct_literal] = ACTIONS(1557), - [sym_bin_literal] = ACTIONS(1557), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1555), - [anon_sym_POUNDfileID] = ACTIONS(1557), - [anon_sym_POUNDfilePath] = ACTIONS(1557), - [anon_sym_POUNDline] = ACTIONS(1557), - [anon_sym_POUNDcolumn] = ACTIONS(1557), - [anon_sym_POUNDfunction] = ACTIONS(1557), - [anon_sym_POUNDdsohandle] = ACTIONS(1557), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1557), - [anon_sym_DASH_EQ] = ACTIONS(1557), - [anon_sym_STAR_EQ] = ACTIONS(1557), - [anon_sym_SLASH_EQ] = ACTIONS(1557), - [anon_sym_PERCENT_EQ] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1557), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1557), - [anon_sym_LT_EQ] = ACTIONS(1557), - [anon_sym_GT_EQ] = ACTIONS(1557), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_SLASH] = ACTIONS(1555), - [anon_sym_PERCENT] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_CARET] = ACTIONS(1555), - [anon_sym_LT_LT] = ACTIONS(1557), - [anon_sym_GT_GT] = ACTIONS(1557), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1557), - [sym__plus_then_ws] = ACTIONS(1557), - [sym__minus_then_ws] = ACTIONS(1557), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [371] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1146), - [sym_boolean_literal] = STATE(1146), - [sym__string_literal] = STATE(1146), - [sym_line_string_literal] = STATE(1146), - [sym_multi_line_string_literal] = STATE(1146), - [sym_raw_string_literal] = STATE(1146), - [sym_regex_literal] = STATE(1146), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1146), - [sym__unary_expression] = STATE(1146), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1146), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1146), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1146), - [sym_prefix_expression] = STATE(1146), - [sym_as_expression] = STATE(1146), - [sym_selector_expression] = STATE(1146), - [sym__binary_expression] = STATE(1146), - [sym_multiplicative_expression] = STATE(1146), - [sym_additive_expression] = STATE(1146), - [sym_range_expression] = STATE(1146), - [sym_infix_expression] = STATE(1146), - [sym_nil_coalescing_expression] = STATE(1146), - [sym_check_expression] = STATE(1146), - [sym_comparison_expression] = STATE(1146), - [sym_equality_expression] = STATE(1146), - [sym_conjunction_expression] = STATE(1146), - [sym_disjunction_expression] = STATE(1146), - [sym_bitwise_operation] = STATE(1146), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1146), - [sym_await_expression] = STATE(1146), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1146), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1146), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1146), - [sym_dictionary_literal] = STATE(1146), - [sym__special_literal] = STATE(1146), - [sym__playground_literal] = STATE(1146), - [sym_lambda_literal] = STATE(1146), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1146), - [sym_key_path_expression] = STATE(1146), - [sym_key_path_string_expression] = STATE(1146), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1146), - [sym__equality_operator] = STATE(1146), - [sym__comparison_operator] = STATE(1146), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1146), - [sym__multiplicative_operator] = STATE(1146), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1146), - [sym__referenceable_operator] = STATE(1146), - [sym__eq_eq] = STATE(1146), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1559), - [sym_real_literal] = ACTIONS(1561), - [sym_integer_literal] = ACTIONS(1559), - [sym_hex_literal] = ACTIONS(1561), - [sym_oct_literal] = ACTIONS(1561), - [sym_bin_literal] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1559), - [anon_sym_POUNDfileID] = ACTIONS(1561), - [anon_sym_POUNDfilePath] = ACTIONS(1561), - [anon_sym_POUNDline] = ACTIONS(1561), - [anon_sym_POUNDcolumn] = ACTIONS(1561), - [anon_sym_POUNDfunction] = ACTIONS(1561), - [anon_sym_POUNDdsohandle] = ACTIONS(1561), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1561), - [anon_sym_DASH_EQ] = ACTIONS(1561), - [anon_sym_STAR_EQ] = ACTIONS(1561), - [anon_sym_SLASH_EQ] = ACTIONS(1561), - [anon_sym_PERCENT_EQ] = ACTIONS(1561), - [anon_sym_EQ] = ACTIONS(1559), - [anon_sym_BANG_EQ] = ACTIONS(1559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT_EQ] = ACTIONS(1561), - [anon_sym_GT_EQ] = ACTIONS(1561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_SLASH] = ACTIONS(1559), - [anon_sym_PERCENT] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1561), - [sym__plus_then_ws] = ACTIONS(1561), - [sym__minus_then_ws] = ACTIONS(1561), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [372] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1348), - [sym_boolean_literal] = STATE(1348), - [sym__string_literal] = STATE(1348), - [sym_line_string_literal] = STATE(1348), - [sym_multi_line_string_literal] = STATE(1348), - [sym_raw_string_literal] = STATE(1348), - [sym_regex_literal] = STATE(1348), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1348), - [sym__unary_expression] = STATE(1348), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1348), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1348), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1348), - [sym_prefix_expression] = STATE(1348), - [sym_as_expression] = STATE(1348), - [sym_selector_expression] = STATE(1348), - [sym__binary_expression] = STATE(1348), - [sym_multiplicative_expression] = STATE(1348), - [sym_additive_expression] = STATE(1348), - [sym_range_expression] = STATE(1348), - [sym_infix_expression] = STATE(1348), - [sym_nil_coalescing_expression] = STATE(1348), - [sym_check_expression] = STATE(1348), - [sym_comparison_expression] = STATE(1348), - [sym_equality_expression] = STATE(1348), - [sym_conjunction_expression] = STATE(1348), - [sym_disjunction_expression] = STATE(1348), - [sym_bitwise_operation] = STATE(1348), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1348), - [sym_await_expression] = STATE(1348), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1348), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1348), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1348), - [sym_dictionary_literal] = STATE(1348), - [sym__special_literal] = STATE(1348), - [sym__playground_literal] = STATE(1348), - [sym_lambda_literal] = STATE(1348), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1348), - [sym_key_path_expression] = STATE(1348), - [sym_key_path_string_expression] = STATE(1348), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1348), - [sym__equality_operator] = STATE(1348), - [sym__comparison_operator] = STATE(1348), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1348), - [sym__multiplicative_operator] = STATE(1348), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1348), - [sym__referenceable_operator] = STATE(1348), - [sym__eq_eq] = STATE(1348), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1563), - [sym_real_literal] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1563), - [sym_hex_literal] = ACTIONS(1565), - [sym_oct_literal] = ACTIONS(1565), - [sym_bin_literal] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_GT] = ACTIONS(1563), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1563), - [anon_sym_POUNDfileID] = ACTIONS(1565), - [anon_sym_POUNDfilePath] = ACTIONS(1565), - [anon_sym_POUNDline] = ACTIONS(1565), - [anon_sym_POUNDcolumn] = ACTIONS(1565), - [anon_sym_POUNDfunction] = ACTIONS(1565), - [anon_sym_POUNDdsohandle] = ACTIONS(1565), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1565), - [anon_sym_DASH_EQ] = ACTIONS(1565), - [anon_sym_STAR_EQ] = ACTIONS(1565), - [anon_sym_SLASH_EQ] = ACTIONS(1565), - [anon_sym_PERCENT_EQ] = ACTIONS(1565), - [anon_sym_EQ] = ACTIONS(1563), - [anon_sym_BANG_EQ] = ACTIONS(1563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1565), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1565), - [anon_sym_LT_EQ] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(1565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1563), - [anon_sym_PERCENT] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_LT_LT] = ACTIONS(1565), - [anon_sym_GT_GT] = ACTIONS(1565), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1565), - [sym__plus_then_ws] = ACTIONS(1565), - [sym__minus_then_ws] = ACTIONS(1565), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [373] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1260), - [sym_boolean_literal] = STATE(1260), - [sym__string_literal] = STATE(1260), - [sym_line_string_literal] = STATE(1260), - [sym_multi_line_string_literal] = STATE(1260), - [sym_raw_string_literal] = STATE(1260), - [sym_regex_literal] = STATE(1260), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1260), - [sym__unary_expression] = STATE(1260), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1260), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1260), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1260), - [sym_prefix_expression] = STATE(1260), - [sym_as_expression] = STATE(1260), - [sym_selector_expression] = STATE(1260), - [sym__binary_expression] = STATE(2620), - [sym_multiplicative_expression] = STATE(2620), - [sym_additive_expression] = STATE(2620), - [sym_range_expression] = STATE(2620), - [sym_infix_expression] = STATE(2620), - [sym_nil_coalescing_expression] = STATE(2620), - [sym_check_expression] = STATE(2620), - [sym_comparison_expression] = STATE(2620), - [sym_equality_expression] = STATE(2620), - [sym_conjunction_expression] = STATE(2620), - [sym_disjunction_expression] = STATE(2620), - [sym_bitwise_operation] = STATE(2620), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1260), - [sym_await_expression] = STATE(1260), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(2630), - [sym_call_expression] = STATE(1946), - [sym__primary_expression] = STATE(1260), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1260), - [sym_dictionary_literal] = STATE(1260), - [sym__special_literal] = STATE(1260), - [sym__playground_literal] = STATE(1260), - [sym_lambda_literal] = STATE(1260), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1260), - [sym_key_path_expression] = STATE(1260), - [sym_key_path_string_expression] = STATE(1260), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1260), - [sym__equality_operator] = STATE(1260), - [sym__comparison_operator] = STATE(1260), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1260), - [sym__multiplicative_operator] = STATE(1260), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1260), - [sym__referenceable_operator] = STATE(1260), - [sym__eq_eq] = STATE(1260), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1567), - [sym_real_literal] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1567), - [sym_hex_literal] = ACTIONS(1569), - [sym_oct_literal] = ACTIONS(1569), - [sym_bin_literal] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1567), - [anon_sym_POUNDfileID] = ACTIONS(1569), - [anon_sym_POUNDfilePath] = ACTIONS(1569), - [anon_sym_POUNDline] = ACTIONS(1569), - [anon_sym_POUNDcolumn] = ACTIONS(1569), - [anon_sym_POUNDfunction] = ACTIONS(1569), - [anon_sym_POUNDdsohandle] = ACTIONS(1569), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1569), - [anon_sym_DASH_EQ] = ACTIONS(1569), - [anon_sym_STAR_EQ] = ACTIONS(1569), - [anon_sym_SLASH_EQ] = ACTIONS(1569), - [anon_sym_PERCENT_EQ] = ACTIONS(1569), - [anon_sym_EQ] = ACTIONS(1567), - [anon_sym_BANG_EQ] = ACTIONS(1567), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1569), - [anon_sym_LT_EQ] = ACTIONS(1569), - [anon_sym_GT_EQ] = ACTIONS(1569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_PERCENT] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_CARET] = ACTIONS(1567), - [anon_sym_LT_LT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(1569), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1569), - [sym__plus_then_ws] = ACTIONS(1569), - [sym__minus_then_ws] = ACTIONS(1569), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [374] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1223), - [sym_boolean_literal] = STATE(1223), - [sym__string_literal] = STATE(1223), - [sym_line_string_literal] = STATE(1223), - [sym_multi_line_string_literal] = STATE(1223), - [sym_raw_string_literal] = STATE(1223), - [sym_regex_literal] = STATE(1223), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(1223), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1223), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1223), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1223), - [sym_prefix_expression] = STATE(1223), - [sym_as_expression] = STATE(1223), - [sym_selector_expression] = STATE(1223), - [sym__binary_expression] = STATE(1223), - [sym_multiplicative_expression] = STATE(1223), - [sym_additive_expression] = STATE(1223), - [sym_range_expression] = STATE(1223), - [sym_infix_expression] = STATE(1223), - [sym_nil_coalescing_expression] = STATE(1223), - [sym_check_expression] = STATE(1223), - [sym_comparison_expression] = STATE(1223), - [sym_equality_expression] = STATE(1223), - [sym_conjunction_expression] = STATE(1223), - [sym_disjunction_expression] = STATE(1223), - [sym_bitwise_operation] = STATE(1223), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1223), - [sym_await_expression] = STATE(1223), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1223), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1223), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1223), - [sym_dictionary_literal] = STATE(1223), - [sym__special_literal] = STATE(1223), - [sym__playground_literal] = STATE(1223), - [sym_lambda_literal] = STATE(1223), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1223), - [sym_key_path_expression] = STATE(1223), - [sym_key_path_string_expression] = STATE(1223), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1223), - [sym__equality_operator] = STATE(1223), - [sym__comparison_operator] = STATE(1223), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1223), - [sym__multiplicative_operator] = STATE(1223), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1223), - [sym__referenceable_operator] = STATE(1223), - [sym__eq_eq] = STATE(1223), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1571), - [sym_real_literal] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1571), - [sym_hex_literal] = ACTIONS(1573), - [sym_oct_literal] = ACTIONS(1573), - [sym_bin_literal] = ACTIONS(1573), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1571), - [anon_sym_POUNDfileID] = ACTIONS(1573), - [anon_sym_POUNDfilePath] = ACTIONS(1573), - [anon_sym_POUNDline] = ACTIONS(1573), - [anon_sym_POUNDcolumn] = ACTIONS(1573), - [anon_sym_POUNDfunction] = ACTIONS(1573), - [anon_sym_POUNDdsohandle] = ACTIONS(1573), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1573), - [anon_sym_DASH_EQ] = ACTIONS(1573), - [anon_sym_STAR_EQ] = ACTIONS(1573), - [anon_sym_SLASH_EQ] = ACTIONS(1573), - [anon_sym_PERCENT_EQ] = ACTIONS(1573), - [anon_sym_EQ] = ACTIONS(1571), - [anon_sym_BANG_EQ] = ACTIONS(1571), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1573), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_SLASH] = ACTIONS(1571), - [anon_sym_PERCENT] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(1573), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1573), - [sym__plus_then_ws] = ACTIONS(1573), - [sym__minus_then_ws] = ACTIONS(1573), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [375] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1255), - [sym_boolean_literal] = STATE(1255), - [sym__string_literal] = STATE(1255), - [sym_line_string_literal] = STATE(1255), - [sym_multi_line_string_literal] = STATE(1255), - [sym_raw_string_literal] = STATE(1255), - [sym_regex_literal] = STATE(1255), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1255), - [sym__unary_expression] = STATE(1255), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1255), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1255), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1255), - [sym_prefix_expression] = STATE(1255), - [sym_as_expression] = STATE(1255), - [sym_selector_expression] = STATE(1255), - [sym__binary_expression] = STATE(1255), - [sym_multiplicative_expression] = STATE(1255), - [sym_additive_expression] = STATE(1255), - [sym_range_expression] = STATE(1255), - [sym_infix_expression] = STATE(1255), - [sym_nil_coalescing_expression] = STATE(1255), - [sym_check_expression] = STATE(1255), - [sym_comparison_expression] = STATE(1255), - [sym_equality_expression] = STATE(1255), - [sym_conjunction_expression] = STATE(1255), - [sym_disjunction_expression] = STATE(1255), - [sym_bitwise_operation] = STATE(1255), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1255), - [sym_await_expression] = STATE(1255), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1255), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1255), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1255), - [sym_dictionary_literal] = STATE(1255), - [sym__special_literal] = STATE(1255), - [sym__playground_literal] = STATE(1255), - [sym_lambda_literal] = STATE(1255), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1255), - [sym_key_path_expression] = STATE(1255), - [sym_key_path_string_expression] = STATE(1255), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1255), - [sym__equality_operator] = STATE(1255), - [sym__comparison_operator] = STATE(1255), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1255), - [sym__multiplicative_operator] = STATE(1255), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1255), - [sym__referenceable_operator] = STATE(1255), - [sym__eq_eq] = STATE(1255), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(995), - [sym_real_literal] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(995), - [sym_hex_literal] = ACTIONS(997), - [sym_oct_literal] = ACTIONS(997), - [sym_bin_literal] = ACTIONS(997), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(995), - [anon_sym_POUNDfileID] = ACTIONS(997), - [anon_sym_POUNDfilePath] = ACTIONS(997), - [anon_sym_POUNDline] = ACTIONS(997), - [anon_sym_POUNDcolumn] = ACTIONS(997), - [anon_sym_POUNDfunction] = ACTIONS(997), - [anon_sym_POUNDdsohandle] = ACTIONS(997), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PERCENT_EQ] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ_EQ] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(997), - [sym__plus_then_ws] = ACTIONS(997), - [sym__minus_then_ws] = ACTIONS(997), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [376] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1345), - [sym_boolean_literal] = STATE(1345), - [sym__string_literal] = STATE(1345), - [sym_line_string_literal] = STATE(1345), - [sym_multi_line_string_literal] = STATE(1345), - [sym_raw_string_literal] = STATE(1345), - [sym_regex_literal] = STATE(1345), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1345), - [sym__unary_expression] = STATE(1345), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1345), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1345), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1345), - [sym_prefix_expression] = STATE(1345), - [sym_as_expression] = STATE(1345), - [sym_selector_expression] = STATE(1345), - [sym__binary_expression] = STATE(1345), - [sym_multiplicative_expression] = STATE(1345), - [sym_additive_expression] = STATE(1345), - [sym_range_expression] = STATE(1345), - [sym_infix_expression] = STATE(1345), - [sym_nil_coalescing_expression] = STATE(1345), - [sym_check_expression] = STATE(1345), - [sym_comparison_expression] = STATE(1345), - [sym_equality_expression] = STATE(1345), - [sym_conjunction_expression] = STATE(1345), - [sym_disjunction_expression] = STATE(1345), - [sym_bitwise_operation] = STATE(1345), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1345), - [sym_await_expression] = STATE(1345), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1345), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1345), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1345), - [sym_dictionary_literal] = STATE(1345), - [sym__special_literal] = STATE(1345), - [sym__playground_literal] = STATE(1345), - [sym_lambda_literal] = STATE(1345), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1345), - [sym_key_path_expression] = STATE(1345), - [sym_key_path_string_expression] = STATE(1345), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1345), - [sym__equality_operator] = STATE(1345), - [sym__comparison_operator] = STATE(1345), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1345), - [sym__multiplicative_operator] = STATE(1345), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1345), - [sym__referenceable_operator] = STATE(1345), - [sym__eq_eq] = STATE(1345), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1575), - [sym_real_literal] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1575), - [sym_hex_literal] = ACTIONS(1577), - [sym_oct_literal] = ACTIONS(1577), - [sym_bin_literal] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1575), - [anon_sym_POUNDfileID] = ACTIONS(1577), - [anon_sym_POUNDfilePath] = ACTIONS(1577), - [anon_sym_POUNDline] = ACTIONS(1577), - [anon_sym_POUNDcolumn] = ACTIONS(1577), - [anon_sym_POUNDfunction] = ACTIONS(1577), - [anon_sym_POUNDdsohandle] = ACTIONS(1577), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1577), - [anon_sym_DASH_EQ] = ACTIONS(1577), - [anon_sym_STAR_EQ] = ACTIONS(1577), - [anon_sym_SLASH_EQ] = ACTIONS(1577), - [anon_sym_PERCENT_EQ] = ACTIONS(1577), - [anon_sym_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ] = ACTIONS(1575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1577), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1577), - [anon_sym_LT_EQ] = ACTIONS(1577), - [anon_sym_GT_EQ] = ACTIONS(1577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_SLASH] = ACTIONS(1575), - [anon_sym_PERCENT] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1575), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(1577), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1577), - [sym__plus_then_ws] = ACTIONS(1577), - [sym__minus_then_ws] = ACTIONS(1577), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [377] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1262), - [sym_boolean_literal] = STATE(1262), - [sym__string_literal] = STATE(1262), - [sym_line_string_literal] = STATE(1262), - [sym_multi_line_string_literal] = STATE(1262), - [sym_raw_string_literal] = STATE(1262), - [sym_regex_literal] = STATE(1262), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(1262), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1262), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1262), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1262), - [sym_prefix_expression] = STATE(1262), - [sym_as_expression] = STATE(1262), - [sym_selector_expression] = STATE(1262), - [sym__binary_expression] = STATE(1262), - [sym_multiplicative_expression] = STATE(1262), - [sym_additive_expression] = STATE(1262), - [sym_range_expression] = STATE(1262), - [sym_infix_expression] = STATE(1262), - [sym_nil_coalescing_expression] = STATE(1262), - [sym_check_expression] = STATE(1262), - [sym_comparison_expression] = STATE(1262), - [sym_equality_expression] = STATE(1262), - [sym_conjunction_expression] = STATE(1262), - [sym_disjunction_expression] = STATE(1262), - [sym_bitwise_operation] = STATE(1262), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1262), - [sym_await_expression] = STATE(1262), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(2618), - [sym_call_expression] = STATE(1944), - [sym__primary_expression] = STATE(1262), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1262), - [sym_dictionary_literal] = STATE(1262), - [sym__special_literal] = STATE(1262), - [sym__playground_literal] = STATE(1262), - [sym_lambda_literal] = STATE(1262), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1262), - [sym_key_path_expression] = STATE(1262), - [sym_key_path_string_expression] = STATE(1262), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1262), - [sym__equality_operator] = STATE(1262), - [sym__comparison_operator] = STATE(1262), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1262), - [sym__multiplicative_operator] = STATE(1262), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1262), - [sym__referenceable_operator] = STATE(1262), - [sym__eq_eq] = STATE(1262), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1579), - [sym_real_literal] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1579), - [sym_hex_literal] = ACTIONS(1581), - [sym_oct_literal] = ACTIONS(1581), - [sym_bin_literal] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1579), - [anon_sym_POUNDfileID] = ACTIONS(1581), - [anon_sym_POUNDfilePath] = ACTIONS(1581), - [anon_sym_POUNDline] = ACTIONS(1581), - [anon_sym_POUNDcolumn] = ACTIONS(1581), - [anon_sym_POUNDfunction] = ACTIONS(1581), - [anon_sym_POUNDdsohandle] = ACTIONS(1581), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1581), - [anon_sym_DASH_EQ] = ACTIONS(1581), - [anon_sym_STAR_EQ] = ACTIONS(1581), - [anon_sym_SLASH_EQ] = ACTIONS(1581), - [anon_sym_PERCENT_EQ] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1579), - [anon_sym_BANG_EQ] = ACTIONS(1579), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1581), - [anon_sym_LT_EQ] = ACTIONS(1581), - [anon_sym_GT_EQ] = ACTIONS(1581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_CARET] = ACTIONS(1579), - [anon_sym_LT_LT] = ACTIONS(1581), - [anon_sym_GT_GT] = ACTIONS(1581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1581), - [sym__plus_then_ws] = ACTIONS(1581), - [sym__minus_then_ws] = ACTIONS(1581), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [378] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1324), - [sym_boolean_literal] = STATE(1324), - [sym__string_literal] = STATE(1324), - [sym_line_string_literal] = STATE(1324), - [sym_multi_line_string_literal] = STATE(1324), - [sym_raw_string_literal] = STATE(1324), - [sym_regex_literal] = STATE(1324), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1324), - [sym__unary_expression] = STATE(1324), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1324), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1324), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1324), - [sym_prefix_expression] = STATE(1324), - [sym_as_expression] = STATE(1324), - [sym_selector_expression] = STATE(1324), - [sym__binary_expression] = STATE(1324), - [sym_multiplicative_expression] = STATE(1324), - [sym_additive_expression] = STATE(1324), - [sym_range_expression] = STATE(1324), - [sym_infix_expression] = STATE(1324), - [sym_nil_coalescing_expression] = STATE(1324), - [sym_check_expression] = STATE(1324), - [sym_comparison_expression] = STATE(1324), - [sym_equality_expression] = STATE(1324), - [sym_conjunction_expression] = STATE(1324), - [sym_disjunction_expression] = STATE(1324), - [sym_bitwise_operation] = STATE(1324), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1324), - [sym_await_expression] = STATE(1324), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1324), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1324), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1324), - [sym_dictionary_literal] = STATE(1324), - [sym__special_literal] = STATE(1324), - [sym__playground_literal] = STATE(1324), - [sym_lambda_literal] = STATE(1324), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1324), - [sym_key_path_expression] = STATE(1324), - [sym_key_path_string_expression] = STATE(1324), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1324), - [sym__equality_operator] = STATE(1324), - [sym__comparison_operator] = STATE(1324), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1324), - [sym__multiplicative_operator] = STATE(1324), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1324), - [sym__referenceable_operator] = STATE(1324), - [sym__eq_eq] = STATE(1324), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1583), - [sym_real_literal] = ACTIONS(1585), - [sym_integer_literal] = ACTIONS(1583), - [sym_hex_literal] = ACTIONS(1585), - [sym_oct_literal] = ACTIONS(1585), - [sym_bin_literal] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1583), - [anon_sym_POUNDfileID] = ACTIONS(1585), - [anon_sym_POUNDfilePath] = ACTIONS(1585), - [anon_sym_POUNDline] = ACTIONS(1585), - [anon_sym_POUNDcolumn] = ACTIONS(1585), - [anon_sym_POUNDfunction] = ACTIONS(1585), - [anon_sym_POUNDdsohandle] = ACTIONS(1585), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1585), - [anon_sym_DASH_EQ] = ACTIONS(1585), - [anon_sym_STAR_EQ] = ACTIONS(1585), - [anon_sym_SLASH_EQ] = ACTIONS(1585), - [anon_sym_PERCENT_EQ] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_BANG_EQ] = ACTIONS(1583), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1585), - [anon_sym_GT_GT] = ACTIONS(1585), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1585), - [sym__plus_then_ws] = ACTIONS(1585), - [sym__minus_then_ws] = ACTIONS(1585), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [379] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1257), - [sym_boolean_literal] = STATE(1257), - [sym__string_literal] = STATE(1257), - [sym_line_string_literal] = STATE(1257), - [sym_multi_line_string_literal] = STATE(1257), - [sym_raw_string_literal] = STATE(1257), - [sym_regex_literal] = STATE(1257), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1257), - [sym__unary_expression] = STATE(1257), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1257), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1257), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1257), - [sym_prefix_expression] = STATE(1257), - [sym_as_expression] = STATE(1257), - [sym_selector_expression] = STATE(1257), - [sym__binary_expression] = STATE(1257), - [sym_multiplicative_expression] = STATE(1257), - [sym_additive_expression] = STATE(1257), - [sym_range_expression] = STATE(1257), - [sym_infix_expression] = STATE(1257), - [sym_nil_coalescing_expression] = STATE(1257), - [sym_check_expression] = STATE(1257), - [sym_comparison_expression] = STATE(1257), - [sym_equality_expression] = STATE(1257), - [sym_conjunction_expression] = STATE(1257), - [sym_disjunction_expression] = STATE(1257), - [sym_bitwise_operation] = STATE(1257), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1257), - [sym_await_expression] = STATE(1257), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1257), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1257), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1257), - [sym_dictionary_literal] = STATE(1257), - [sym__special_literal] = STATE(1257), - [sym__playground_literal] = STATE(1257), - [sym_lambda_literal] = STATE(1257), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1257), - [sym_key_path_expression] = STATE(1257), - [sym_key_path_string_expression] = STATE(1257), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1257), - [sym__equality_operator] = STATE(1257), - [sym__comparison_operator] = STATE(1257), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1257), - [sym__multiplicative_operator] = STATE(1257), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1257), - [sym__referenceable_operator] = STATE(1257), - [sym__eq_eq] = STATE(1257), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1587), - [sym_real_literal] = ACTIONS(1589), - [sym_integer_literal] = ACTIONS(1587), - [sym_hex_literal] = ACTIONS(1589), - [sym_oct_literal] = ACTIONS(1589), - [sym_bin_literal] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1587), - [anon_sym_POUNDfileID] = ACTIONS(1589), - [anon_sym_POUNDfilePath] = ACTIONS(1589), - [anon_sym_POUNDline] = ACTIONS(1589), - [anon_sym_POUNDcolumn] = ACTIONS(1589), - [anon_sym_POUNDfunction] = ACTIONS(1589), - [anon_sym_POUNDdsohandle] = ACTIONS(1589), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1589), - [anon_sym_DASH_EQ] = ACTIONS(1589), - [anon_sym_STAR_EQ] = ACTIONS(1589), - [anon_sym_SLASH_EQ] = ACTIONS(1589), - [anon_sym_PERCENT_EQ] = ACTIONS(1589), - [anon_sym_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ] = ACTIONS(1587), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1589), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT_EQ] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_PERCENT] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_LT_LT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(1589), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1589), - [sym__plus_then_ws] = ACTIONS(1589), - [sym__minus_then_ws] = ACTIONS(1589), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [380] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1141), - [sym_boolean_literal] = STATE(1141), - [sym__string_literal] = STATE(1141), - [sym_line_string_literal] = STATE(1141), - [sym_multi_line_string_literal] = STATE(1141), - [sym_raw_string_literal] = STATE(1141), - [sym_regex_literal] = STATE(1141), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1141), - [sym__unary_expression] = STATE(1141), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1141), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1141), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1141), - [sym_prefix_expression] = STATE(1141), - [sym_as_expression] = STATE(1141), - [sym_selector_expression] = STATE(1141), - [sym__binary_expression] = STATE(1141), - [sym_multiplicative_expression] = STATE(1141), - [sym_additive_expression] = STATE(1141), - [sym_range_expression] = STATE(1141), - [sym_infix_expression] = STATE(1141), - [sym_nil_coalescing_expression] = STATE(1141), - [sym_check_expression] = STATE(1141), - [sym_comparison_expression] = STATE(1141), - [sym_equality_expression] = STATE(1141), - [sym_conjunction_expression] = STATE(1141), - [sym_disjunction_expression] = STATE(1141), - [sym_bitwise_operation] = STATE(1141), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1141), - [sym_await_expression] = STATE(1141), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(2253), - [sym_call_expression] = STATE(1660), - [sym__primary_expression] = STATE(1141), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1141), - [sym_dictionary_literal] = STATE(1141), - [sym__special_literal] = STATE(1141), - [sym__playground_literal] = STATE(1141), - [sym_lambda_literal] = STATE(1141), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1141), - [sym_key_path_expression] = STATE(1141), - [sym_key_path_string_expression] = STATE(1141), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1141), - [sym__equality_operator] = STATE(1141), - [sym__comparison_operator] = STATE(1141), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1141), - [sym__multiplicative_operator] = STATE(1141), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1141), - [sym__referenceable_operator] = STATE(1141), - [sym__eq_eq] = STATE(1141), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1593), - [sym_integer_literal] = ACTIONS(1591), - [sym_hex_literal] = ACTIONS(1593), - [sym_oct_literal] = ACTIONS(1593), - [sym_bin_literal] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1591), - [anon_sym_GT] = ACTIONS(1591), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1591), - [anon_sym_POUNDfileID] = ACTIONS(1593), - [anon_sym_POUNDfilePath] = ACTIONS(1593), - [anon_sym_POUNDline] = ACTIONS(1593), - [anon_sym_POUNDcolumn] = ACTIONS(1593), - [anon_sym_POUNDfunction] = ACTIONS(1593), - [anon_sym_POUNDdsohandle] = ACTIONS(1593), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1593), - [anon_sym_DASH_EQ] = ACTIONS(1593), - [anon_sym_STAR_EQ] = ACTIONS(1593), - [anon_sym_SLASH_EQ] = ACTIONS(1593), - [anon_sym_PERCENT_EQ] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(1591), - [anon_sym_BANG_EQ] = ACTIONS(1591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1593), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1593), - [anon_sym_LT_EQ] = ACTIONS(1593), - [anon_sym_GT_EQ] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1591), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_PERCENT] = ACTIONS(1591), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_CARET] = ACTIONS(1591), - [anon_sym_LT_LT] = ACTIONS(1593), - [anon_sym_GT_GT] = ACTIONS(1593), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1593), - [sym__plus_then_ws] = ACTIONS(1593), - [sym__minus_then_ws] = ACTIONS(1593), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [381] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1263), - [sym_boolean_literal] = STATE(1263), - [sym__string_literal] = STATE(1263), - [sym_line_string_literal] = STATE(1263), - [sym_multi_line_string_literal] = STATE(1263), - [sym_raw_string_literal] = STATE(1263), - [sym_regex_literal] = STATE(1263), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(1263), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1263), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1263), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1263), - [sym_prefix_expression] = STATE(1263), - [sym_as_expression] = STATE(1263), - [sym_selector_expression] = STATE(1263), - [sym__binary_expression] = STATE(1263), - [sym_multiplicative_expression] = STATE(1263), - [sym_additive_expression] = STATE(1263), - [sym_range_expression] = STATE(1263), - [sym_infix_expression] = STATE(1263), - [sym_nil_coalescing_expression] = STATE(1263), - [sym_check_expression] = STATE(1263), - [sym_comparison_expression] = STATE(1263), - [sym_equality_expression] = STATE(1263), - [sym_conjunction_expression] = STATE(1263), - [sym_disjunction_expression] = STATE(1263), - [sym_bitwise_operation] = STATE(1263), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1263), - [sym_await_expression] = STATE(1263), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1263), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1263), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1263), - [sym_dictionary_literal] = STATE(1263), - [sym__special_literal] = STATE(1263), - [sym__playground_literal] = STATE(1263), - [sym_lambda_literal] = STATE(1263), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1263), - [sym_key_path_expression] = STATE(1263), - [sym_key_path_string_expression] = STATE(1263), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1263), - [sym__equality_operator] = STATE(1263), - [sym__comparison_operator] = STATE(1263), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1263), - [sym__multiplicative_operator] = STATE(1263), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1263), - [sym__referenceable_operator] = STATE(1263), - [sym__eq_eq] = STATE(1263), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1595), - [sym_real_literal] = ACTIONS(1597), - [sym_integer_literal] = ACTIONS(1595), - [sym_hex_literal] = ACTIONS(1597), - [sym_oct_literal] = ACTIONS(1597), - [sym_bin_literal] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1595), - [anon_sym_POUNDfileID] = ACTIONS(1597), - [anon_sym_POUNDfilePath] = ACTIONS(1597), - [anon_sym_POUNDline] = ACTIONS(1597), - [anon_sym_POUNDcolumn] = ACTIONS(1597), - [anon_sym_POUNDfunction] = ACTIONS(1597), - [anon_sym_POUNDdsohandle] = ACTIONS(1597), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1597), - [anon_sym_DASH_EQ] = ACTIONS(1597), - [anon_sym_STAR_EQ] = ACTIONS(1597), - [anon_sym_SLASH_EQ] = ACTIONS(1597), - [anon_sym_PERCENT_EQ] = ACTIONS(1597), - [anon_sym_EQ] = ACTIONS(1595), - [anon_sym_BANG_EQ] = ACTIONS(1595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1597), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT_EQ] = ACTIONS(1597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_PERCENT] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_LT_LT] = ACTIONS(1597), - [anon_sym_GT_GT] = ACTIONS(1597), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1597), - [sym__plus_then_ws] = ACTIONS(1597), - [sym__minus_then_ws] = ACTIONS(1597), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [382] = { - [sym_simple_identifier] = STATE(1787), - [sym__basic_literal] = STATE(1215), - [sym_boolean_literal] = STATE(1215), - [sym__string_literal] = STATE(1215), - [sym_line_string_literal] = STATE(1215), - [sym_multi_line_string_literal] = STATE(1215), - [sym_raw_string_literal] = STATE(1215), - [sym_regex_literal] = STATE(1215), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(1215), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1215), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1215), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1215), - [sym_prefix_expression] = STATE(1215), - [sym_as_expression] = STATE(1215), - [sym_selector_expression] = STATE(1215), - [sym__binary_expression] = STATE(1215), - [sym_multiplicative_expression] = STATE(1215), - [sym_additive_expression] = STATE(1215), - [sym_range_expression] = STATE(1215), - [sym_infix_expression] = STATE(1215), - [sym_nil_coalescing_expression] = STATE(1215), - [sym_check_expression] = STATE(1215), - [sym_comparison_expression] = STATE(1215), - [sym_equality_expression] = STATE(1215), - [sym_conjunction_expression] = STATE(1215), - [sym_disjunction_expression] = STATE(1215), - [sym_bitwise_operation] = STATE(1215), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1215), - [sym_await_expression] = STATE(1215), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1215), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1215), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1215), - [sym_dictionary_literal] = STATE(1215), - [sym__special_literal] = STATE(1215), - [sym__playground_literal] = STATE(1215), - [sym_lambda_literal] = STATE(1215), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1215), - [sym_key_path_expression] = STATE(1215), - [sym_key_path_string_expression] = STATE(1215), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1215), - [sym__equality_operator] = STATE(1215), - [sym__comparison_operator] = STATE(1215), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1215), - [sym__multiplicative_operator] = STATE(1215), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1215), - [sym__referenceable_operator] = STATE(1215), - [sym__eq_eq] = STATE(1215), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1599), - [sym_real_literal] = ACTIONS(1601), - [sym_integer_literal] = ACTIONS(1599), - [sym_hex_literal] = ACTIONS(1601), - [sym_oct_literal] = ACTIONS(1601), - [sym_bin_literal] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1599), - [anon_sym_GT] = ACTIONS(1599), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1599), - [anon_sym_POUNDfileID] = ACTIONS(1601), - [anon_sym_POUNDfilePath] = ACTIONS(1601), - [anon_sym_POUNDline] = ACTIONS(1601), - [anon_sym_POUNDcolumn] = ACTIONS(1601), - [anon_sym_POUNDfunction] = ACTIONS(1601), - [anon_sym_POUNDdsohandle] = ACTIONS(1601), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1601), - [anon_sym_DASH_EQ] = ACTIONS(1601), - [anon_sym_STAR_EQ] = ACTIONS(1601), - [anon_sym_SLASH_EQ] = ACTIONS(1601), - [anon_sym_PERCENT_EQ] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1601), - [anon_sym_LT_EQ] = ACTIONS(1601), - [anon_sym_GT_EQ] = ACTIONS(1601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_SLASH] = ACTIONS(1599), - [anon_sym_PERCENT] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_LT_LT] = ACTIONS(1601), - [anon_sym_GT_GT] = ACTIONS(1601), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1601), - [sym__plus_then_ws] = ACTIONS(1601), - [sym__minus_then_ws] = ACTIONS(1601), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [383] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1343), - [sym_boolean_literal] = STATE(1343), - [sym__string_literal] = STATE(1343), - [sym_line_string_literal] = STATE(1343), - [sym_multi_line_string_literal] = STATE(1343), - [sym_raw_string_literal] = STATE(1343), - [sym_regex_literal] = STATE(1343), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1343), - [sym__unary_expression] = STATE(1343), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1343), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1343), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1343), - [sym_prefix_expression] = STATE(1343), - [sym_as_expression] = STATE(1343), - [sym_selector_expression] = STATE(1343), - [sym__binary_expression] = STATE(1343), - [sym_multiplicative_expression] = STATE(1343), - [sym_additive_expression] = STATE(1343), - [sym_range_expression] = STATE(1343), - [sym_infix_expression] = STATE(1343), - [sym_nil_coalescing_expression] = STATE(1343), - [sym_check_expression] = STATE(1343), - [sym_comparison_expression] = STATE(1343), - [sym_equality_expression] = STATE(1343), - [sym_conjunction_expression] = STATE(1343), - [sym_disjunction_expression] = STATE(1343), - [sym_bitwise_operation] = STATE(1343), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1343), - [sym_await_expression] = STATE(1343), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1343), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1343), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1343), - [sym_dictionary_literal] = STATE(1343), - [sym__special_literal] = STATE(1343), - [sym__playground_literal] = STATE(1343), - [sym_lambda_literal] = STATE(1343), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1343), - [sym_key_path_expression] = STATE(1343), - [sym_key_path_string_expression] = STATE(1343), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1343), - [sym__equality_operator] = STATE(1343), - [sym__comparison_operator] = STATE(1343), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1343), - [sym__multiplicative_operator] = STATE(1343), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1343), - [sym__referenceable_operator] = STATE(1343), - [sym__eq_eq] = STATE(1343), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1603), - [sym_real_literal] = ACTIONS(1605), - [sym_integer_literal] = ACTIONS(1603), - [sym_hex_literal] = ACTIONS(1605), - [sym_oct_literal] = ACTIONS(1605), - [sym_bin_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1603), - [anon_sym_GT] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1603), - [anon_sym_POUNDfileID] = ACTIONS(1605), - [anon_sym_POUNDfilePath] = ACTIONS(1605), - [anon_sym_POUNDline] = ACTIONS(1605), - [anon_sym_POUNDcolumn] = ACTIONS(1605), - [anon_sym_POUNDfunction] = ACTIONS(1605), - [anon_sym_POUNDdsohandle] = ACTIONS(1605), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1605), - [anon_sym_DASH_EQ] = ACTIONS(1605), - [anon_sym_STAR_EQ] = ACTIONS(1605), - [anon_sym_SLASH_EQ] = ACTIONS(1605), - [anon_sym_PERCENT_EQ] = ACTIONS(1605), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_BANG_EQ] = ACTIONS(1603), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1605), - [anon_sym_LT_EQ] = ACTIONS(1605), - [anon_sym_GT_EQ] = ACTIONS(1605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1603), - [anon_sym_PERCENT] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_LT_LT] = ACTIONS(1605), - [anon_sym_GT_GT] = ACTIONS(1605), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1605), - [sym__plus_then_ws] = ACTIONS(1605), - [sym__minus_then_ws] = ACTIONS(1605), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [384] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1213), - [sym_boolean_literal] = STATE(1213), - [sym__string_literal] = STATE(1213), - [sym_line_string_literal] = STATE(1213), - [sym_multi_line_string_literal] = STATE(1213), - [sym_raw_string_literal] = STATE(1213), - [sym_regex_literal] = STATE(1213), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(1213), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1213), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1213), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1213), - [sym_prefix_expression] = STATE(1213), - [sym_as_expression] = STATE(1213), - [sym_selector_expression] = STATE(1213), - [sym__binary_expression] = STATE(1213), - [sym_multiplicative_expression] = STATE(1213), - [sym_additive_expression] = STATE(1213), - [sym_range_expression] = STATE(1213), - [sym_infix_expression] = STATE(1213), - [sym_nil_coalescing_expression] = STATE(1213), - [sym_check_expression] = STATE(1213), - [sym_comparison_expression] = STATE(1213), - [sym_equality_expression] = STATE(1213), - [sym_conjunction_expression] = STATE(1213), - [sym_disjunction_expression] = STATE(1213), - [sym_bitwise_operation] = STATE(1213), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1213), - [sym_await_expression] = STATE(1213), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1213), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1213), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1213), - [sym_dictionary_literal] = STATE(1213), - [sym__special_literal] = STATE(1213), - [sym__playground_literal] = STATE(1213), - [sym_lambda_literal] = STATE(1213), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1213), - [sym_key_path_expression] = STATE(1213), - [sym_key_path_string_expression] = STATE(1213), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1213), - [sym__equality_operator] = STATE(1213), - [sym__comparison_operator] = STATE(1213), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1213), - [sym__multiplicative_operator] = STATE(1213), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1213), - [sym__referenceable_operator] = STATE(1213), - [sym__eq_eq] = STATE(1213), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1607), - [sym_real_literal] = ACTIONS(1609), - [sym_integer_literal] = ACTIONS(1607), - [sym_hex_literal] = ACTIONS(1609), - [sym_oct_literal] = ACTIONS(1609), - [sym_bin_literal] = ACTIONS(1609), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1607), - [anon_sym_GT] = ACTIONS(1607), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1607), - [anon_sym_POUNDfileID] = ACTIONS(1609), - [anon_sym_POUNDfilePath] = ACTIONS(1609), - [anon_sym_POUNDline] = ACTIONS(1609), - [anon_sym_POUNDcolumn] = ACTIONS(1609), - [anon_sym_POUNDfunction] = ACTIONS(1609), - [anon_sym_POUNDdsohandle] = ACTIONS(1609), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ] = ACTIONS(1607), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1609), - [anon_sym_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_EQ] = ACTIONS(1609), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_PERCENT] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_LT_LT] = ACTIONS(1609), - [anon_sym_GT_GT] = ACTIONS(1609), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1609), - [sym__plus_then_ws] = ACTIONS(1609), - [sym__minus_then_ws] = ACTIONS(1609), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [385] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1208), - [sym_boolean_literal] = STATE(1208), - [sym__string_literal] = STATE(1208), - [sym_line_string_literal] = STATE(1208), - [sym_multi_line_string_literal] = STATE(1208), - [sym_raw_string_literal] = STATE(1208), - [sym_regex_literal] = STATE(1208), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(1208), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1208), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1208), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1208), - [sym_prefix_expression] = STATE(1208), - [sym_as_expression] = STATE(1208), - [sym_selector_expression] = STATE(1208), - [sym__binary_expression] = STATE(1208), - [sym_multiplicative_expression] = STATE(1208), - [sym_additive_expression] = STATE(1208), - [sym_range_expression] = STATE(1208), - [sym_infix_expression] = STATE(1208), - [sym_nil_coalescing_expression] = STATE(1208), - [sym_check_expression] = STATE(1208), - [sym_comparison_expression] = STATE(1208), - [sym_equality_expression] = STATE(1208), - [sym_conjunction_expression] = STATE(1208), - [sym_disjunction_expression] = STATE(1208), - [sym_bitwise_operation] = STATE(1208), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1208), - [sym_await_expression] = STATE(1208), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1208), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1208), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1208), - [sym_dictionary_literal] = STATE(1208), - [sym__special_literal] = STATE(1208), - [sym__playground_literal] = STATE(1208), - [sym_lambda_literal] = STATE(1208), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1208), - [sym_key_path_expression] = STATE(1208), - [sym_key_path_string_expression] = STATE(1208), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1208), - [sym__equality_operator] = STATE(1208), - [sym__comparison_operator] = STATE(1208), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1208), - [sym__multiplicative_operator] = STATE(1208), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1208), - [sym__referenceable_operator] = STATE(1208), - [sym__eq_eq] = STATE(1208), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1611), - [sym_real_literal] = ACTIONS(1613), - [sym_integer_literal] = ACTIONS(1611), - [sym_hex_literal] = ACTIONS(1613), - [sym_oct_literal] = ACTIONS(1613), - [sym_bin_literal] = ACTIONS(1613), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1611), - [anon_sym_GT] = ACTIONS(1611), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1611), - [anon_sym_POUNDfileID] = ACTIONS(1613), - [anon_sym_POUNDfilePath] = ACTIONS(1613), - [anon_sym_POUNDline] = ACTIONS(1613), - [anon_sym_POUNDcolumn] = ACTIONS(1613), - [anon_sym_POUNDfunction] = ACTIONS(1613), - [anon_sym_POUNDdsohandle] = ACTIONS(1613), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1613), - [anon_sym_DASH_EQ] = ACTIONS(1613), - [anon_sym_STAR_EQ] = ACTIONS(1613), - [anon_sym_SLASH_EQ] = ACTIONS(1613), - [anon_sym_PERCENT_EQ] = ACTIONS(1613), - [anon_sym_EQ] = ACTIONS(1611), - [anon_sym_BANG_EQ] = ACTIONS(1611), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1613), - [anon_sym_LT_EQ] = ACTIONS(1613), - [anon_sym_GT_EQ] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_SLASH] = ACTIONS(1611), - [anon_sym_PERCENT] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_LT_LT] = ACTIONS(1613), - [anon_sym_GT_GT] = ACTIONS(1613), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1613), - [sym__plus_then_ws] = ACTIONS(1613), - [sym__minus_then_ws] = ACTIONS(1613), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [386] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1147), - [sym_boolean_literal] = STATE(1147), - [sym__string_literal] = STATE(1147), - [sym_line_string_literal] = STATE(1147), - [sym_multi_line_string_literal] = STATE(1147), - [sym_raw_string_literal] = STATE(1147), - [sym_regex_literal] = STATE(1147), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1147), - [sym__unary_expression] = STATE(1147), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1147), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1147), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1147), - [sym_prefix_expression] = STATE(1147), - [sym_as_expression] = STATE(1147), - [sym_selector_expression] = STATE(1147), - [sym__binary_expression] = STATE(2276), - [sym_multiplicative_expression] = STATE(2276), - [sym_additive_expression] = STATE(2276), - [sym_range_expression] = STATE(2276), - [sym_infix_expression] = STATE(2276), - [sym_nil_coalescing_expression] = STATE(2276), - [sym_check_expression] = STATE(2276), - [sym_comparison_expression] = STATE(2276), - [sym_equality_expression] = STATE(2276), - [sym_conjunction_expression] = STATE(2276), - [sym_disjunction_expression] = STATE(2276), - [sym_bitwise_operation] = STATE(2276), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1147), - [sym_await_expression] = STATE(1147), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(2175), - [sym_call_expression] = STATE(1661), - [sym__primary_expression] = STATE(1147), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1147), - [sym_dictionary_literal] = STATE(1147), - [sym__special_literal] = STATE(1147), - [sym__playground_literal] = STATE(1147), - [sym_lambda_literal] = STATE(1147), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1147), - [sym_key_path_expression] = STATE(1147), - [sym_key_path_string_expression] = STATE(1147), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1147), - [sym__equality_operator] = STATE(1147), - [sym__comparison_operator] = STATE(1147), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1147), - [sym__multiplicative_operator] = STATE(1147), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1147), - [sym__referenceable_operator] = STATE(1147), - [sym__eq_eq] = STATE(1147), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1615), - [sym_real_literal] = ACTIONS(1617), - [sym_integer_literal] = ACTIONS(1615), - [sym_hex_literal] = ACTIONS(1617), - [sym_oct_literal] = ACTIONS(1617), - [sym_bin_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1615), - [anon_sym_GT] = ACTIONS(1615), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1615), - [anon_sym_POUNDfileID] = ACTIONS(1617), - [anon_sym_POUNDfilePath] = ACTIONS(1617), - [anon_sym_POUNDline] = ACTIONS(1617), - [anon_sym_POUNDcolumn] = ACTIONS(1617), - [anon_sym_POUNDfunction] = ACTIONS(1617), - [anon_sym_POUNDdsohandle] = ACTIONS(1617), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1617), - [anon_sym_DASH_EQ] = ACTIONS(1617), - [anon_sym_STAR_EQ] = ACTIONS(1617), - [anon_sym_SLASH_EQ] = ACTIONS(1617), - [anon_sym_PERCENT_EQ] = ACTIONS(1617), - [anon_sym_EQ] = ACTIONS(1615), - [anon_sym_BANG_EQ] = ACTIONS(1615), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1617), - [anon_sym_LT_EQ] = ACTIONS(1617), - [anon_sym_GT_EQ] = ACTIONS(1617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1615), - [anon_sym_PERCENT] = ACTIONS(1615), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1615), - [anon_sym_LT_LT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1617), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1617), - [sym__plus_then_ws] = ACTIONS(1617), - [sym__minus_then_ws] = ACTIONS(1617), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [387] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1336), - [sym_boolean_literal] = STATE(1336), - [sym__string_literal] = STATE(1336), - [sym_line_string_literal] = STATE(1336), - [sym_multi_line_string_literal] = STATE(1336), - [sym_raw_string_literal] = STATE(1336), - [sym_regex_literal] = STATE(1336), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1336), - [sym__unary_expression] = STATE(1336), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1336), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1336), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1336), - [sym_prefix_expression] = STATE(1336), - [sym_as_expression] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym__binary_expression] = STATE(1336), - [sym_multiplicative_expression] = STATE(1336), - [sym_additive_expression] = STATE(1336), - [sym_range_expression] = STATE(1336), - [sym_infix_expression] = STATE(1336), - [sym_nil_coalescing_expression] = STATE(1336), - [sym_check_expression] = STATE(1336), - [sym_comparison_expression] = STATE(1336), - [sym_equality_expression] = STATE(1336), - [sym_conjunction_expression] = STATE(1336), - [sym_disjunction_expression] = STATE(1336), - [sym_bitwise_operation] = STATE(1336), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1336), - [sym_await_expression] = STATE(1336), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1336), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1336), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1336), - [sym_dictionary_literal] = STATE(1336), - [sym__special_literal] = STATE(1336), - [sym__playground_literal] = STATE(1336), - [sym_lambda_literal] = STATE(1336), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1336), - [sym_key_path_expression] = STATE(1336), - [sym_key_path_string_expression] = STATE(1336), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1336), - [sym__equality_operator] = STATE(1336), - [sym__comparison_operator] = STATE(1336), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1336), - [sym__multiplicative_operator] = STATE(1336), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1336), - [sym__referenceable_operator] = STATE(1336), - [sym__eq_eq] = STATE(1336), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1619), - [sym_real_literal] = ACTIONS(1621), - [sym_integer_literal] = ACTIONS(1619), - [sym_hex_literal] = ACTIONS(1621), - [sym_oct_literal] = ACTIONS(1621), - [sym_bin_literal] = ACTIONS(1621), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1619), - [anon_sym_POUNDfileID] = ACTIONS(1621), - [anon_sym_POUNDfilePath] = ACTIONS(1621), - [anon_sym_POUNDline] = ACTIONS(1621), - [anon_sym_POUNDcolumn] = ACTIONS(1621), - [anon_sym_POUNDfunction] = ACTIONS(1621), - [anon_sym_POUNDdsohandle] = ACTIONS(1621), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1621), - [anon_sym_DASH_EQ] = ACTIONS(1621), - [anon_sym_STAR_EQ] = ACTIONS(1621), - [anon_sym_SLASH_EQ] = ACTIONS(1621), - [anon_sym_PERCENT_EQ] = ACTIONS(1621), - [anon_sym_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1621), - [anon_sym_LT_EQ] = ACTIONS(1621), - [anon_sym_GT_EQ] = ACTIONS(1621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1621), - [anon_sym_GT_GT] = ACTIONS(1621), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1621), - [sym__plus_then_ws] = ACTIONS(1621), - [sym__minus_then_ws] = ACTIONS(1621), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [388] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1316), - [sym_boolean_literal] = STATE(1316), - [sym__string_literal] = STATE(1316), - [sym_line_string_literal] = STATE(1316), - [sym_multi_line_string_literal] = STATE(1316), - [sym_raw_string_literal] = STATE(1316), - [sym_regex_literal] = STATE(1316), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1316), - [sym__unary_expression] = STATE(1316), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1316), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1316), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1316), - [sym_prefix_expression] = STATE(1316), - [sym_as_expression] = STATE(1316), - [sym_selector_expression] = STATE(1316), - [sym__binary_expression] = STATE(1316), - [sym_multiplicative_expression] = STATE(1316), - [sym_additive_expression] = STATE(1316), - [sym_range_expression] = STATE(1316), - [sym_infix_expression] = STATE(1316), - [sym_nil_coalescing_expression] = STATE(1316), - [sym_check_expression] = STATE(1316), - [sym_comparison_expression] = STATE(1316), - [sym_equality_expression] = STATE(1316), - [sym_conjunction_expression] = STATE(1316), - [sym_disjunction_expression] = STATE(1316), - [sym_bitwise_operation] = STATE(1316), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1316), - [sym_await_expression] = STATE(1316), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1316), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1316), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1316), - [sym_dictionary_literal] = STATE(1316), - [sym__special_literal] = STATE(1316), - [sym__playground_literal] = STATE(1316), - [sym_lambda_literal] = STATE(1316), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1316), - [sym_key_path_expression] = STATE(1316), - [sym_key_path_string_expression] = STATE(1316), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1316), - [sym__equality_operator] = STATE(1316), - [sym__comparison_operator] = STATE(1316), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1316), - [sym__multiplicative_operator] = STATE(1316), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1316), - [sym__referenceable_operator] = STATE(1316), - [sym__eq_eq] = STATE(1316), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1623), - [sym_real_literal] = ACTIONS(1625), - [sym_integer_literal] = ACTIONS(1623), - [sym_hex_literal] = ACTIONS(1625), - [sym_oct_literal] = ACTIONS(1625), - [sym_bin_literal] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1623), - [anon_sym_POUNDfileID] = ACTIONS(1625), - [anon_sym_POUNDfilePath] = ACTIONS(1625), - [anon_sym_POUNDline] = ACTIONS(1625), - [anon_sym_POUNDcolumn] = ACTIONS(1625), - [anon_sym_POUNDfunction] = ACTIONS(1625), - [anon_sym_POUNDdsohandle] = ACTIONS(1625), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1625), - [anon_sym_DASH_EQ] = ACTIONS(1625), - [anon_sym_STAR_EQ] = ACTIONS(1625), - [anon_sym_SLASH_EQ] = ACTIONS(1625), - [anon_sym_PERCENT_EQ] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ] = ACTIONS(1623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1625), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_SLASH] = ACTIONS(1623), - [anon_sym_PERCENT] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1623), - [anon_sym_LT_LT] = ACTIONS(1625), - [anon_sym_GT_GT] = ACTIONS(1625), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1625), - [sym__plus_then_ws] = ACTIONS(1625), - [sym__minus_then_ws] = ACTIONS(1625), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [389] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1239), - [sym_boolean_literal] = STATE(1239), - [sym__string_literal] = STATE(1239), - [sym_line_string_literal] = STATE(1239), - [sym_multi_line_string_literal] = STATE(1239), - [sym_raw_string_literal] = STATE(1239), - [sym_regex_literal] = STATE(1239), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1239), - [sym__unary_expression] = STATE(1239), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1239), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1239), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1239), - [sym_prefix_expression] = STATE(1239), - [sym_as_expression] = STATE(1239), - [sym_selector_expression] = STATE(1239), - [sym__binary_expression] = STATE(1239), - [sym_multiplicative_expression] = STATE(1239), - [sym_additive_expression] = STATE(1239), - [sym_range_expression] = STATE(1239), - [sym_infix_expression] = STATE(1239), - [sym_nil_coalescing_expression] = STATE(1239), - [sym_check_expression] = STATE(1239), - [sym_comparison_expression] = STATE(1239), - [sym_equality_expression] = STATE(1239), - [sym_conjunction_expression] = STATE(1239), - [sym_disjunction_expression] = STATE(1239), - [sym_bitwise_operation] = STATE(1239), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1239), - [sym_await_expression] = STATE(1239), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1239), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1239), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1239), - [sym_dictionary_literal] = STATE(1239), - [sym__special_literal] = STATE(1239), - [sym__playground_literal] = STATE(1239), - [sym_lambda_literal] = STATE(1239), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1239), - [sym_key_path_expression] = STATE(1239), - [sym_key_path_string_expression] = STATE(1239), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1239), - [sym__equality_operator] = STATE(1239), - [sym__comparison_operator] = STATE(1239), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1239), - [sym__multiplicative_operator] = STATE(1239), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1239), - [sym__referenceable_operator] = STATE(1239), - [sym__eq_eq] = STATE(1239), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1627), - [sym_real_literal] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1627), - [sym_hex_literal] = ACTIONS(1629), - [sym_oct_literal] = ACTIONS(1629), - [sym_bin_literal] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1627), - [anon_sym_GT] = ACTIONS(1627), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1627), - [anon_sym_POUNDfileID] = ACTIONS(1629), - [anon_sym_POUNDfilePath] = ACTIONS(1629), - [anon_sym_POUNDline] = ACTIONS(1629), - [anon_sym_POUNDcolumn] = ACTIONS(1629), - [anon_sym_POUNDfunction] = ACTIONS(1629), - [anon_sym_POUNDdsohandle] = ACTIONS(1629), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1629), - [anon_sym_DASH_EQ] = ACTIONS(1629), - [anon_sym_STAR_EQ] = ACTIONS(1629), - [anon_sym_SLASH_EQ] = ACTIONS(1629), - [anon_sym_PERCENT_EQ] = ACTIONS(1629), - [anon_sym_EQ] = ACTIONS(1627), - [anon_sym_BANG_EQ] = ACTIONS(1627), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1629), - [anon_sym_LT_EQ] = ACTIONS(1629), - [anon_sym_GT_EQ] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_SLASH] = ACTIONS(1627), - [anon_sym_PERCENT] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_CARET] = ACTIONS(1627), - [anon_sym_LT_LT] = ACTIONS(1629), - [anon_sym_GT_GT] = ACTIONS(1629), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1629), - [sym__plus_then_ws] = ACTIONS(1629), - [sym__minus_then_ws] = ACTIONS(1629), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [390] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1211), - [sym_boolean_literal] = STATE(1211), - [sym__string_literal] = STATE(1211), - [sym_line_string_literal] = STATE(1211), - [sym_multi_line_string_literal] = STATE(1211), - [sym_raw_string_literal] = STATE(1211), - [sym_regex_literal] = STATE(1211), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1211), - [sym__unary_expression] = STATE(1211), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1211), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1211), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1211), - [sym_prefix_expression] = STATE(1211), - [sym_as_expression] = STATE(1211), - [sym_selector_expression] = STATE(1211), - [sym__binary_expression] = STATE(1211), - [sym_multiplicative_expression] = STATE(1211), - [sym_additive_expression] = STATE(1211), - [sym_range_expression] = STATE(1211), - [sym_infix_expression] = STATE(1211), - [sym_nil_coalescing_expression] = STATE(1211), - [sym_check_expression] = STATE(1211), - [sym_comparison_expression] = STATE(1211), - [sym_equality_expression] = STATE(1211), - [sym_conjunction_expression] = STATE(1211), - [sym_disjunction_expression] = STATE(1211), - [sym_bitwise_operation] = STATE(1211), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1211), - [sym_await_expression] = STATE(1211), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1211), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1211), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1211), - [sym_dictionary_literal] = STATE(1211), - [sym__special_literal] = STATE(1211), - [sym__playground_literal] = STATE(1211), - [sym_lambda_literal] = STATE(1211), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1211), - [sym_key_path_expression] = STATE(1211), - [sym_key_path_string_expression] = STATE(1211), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1211), - [sym__equality_operator] = STATE(1211), - [sym__comparison_operator] = STATE(1211), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1211), - [sym__multiplicative_operator] = STATE(1211), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1211), - [sym__referenceable_operator] = STATE(1211), - [sym__eq_eq] = STATE(1211), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1631), - [sym_real_literal] = ACTIONS(1633), - [sym_integer_literal] = ACTIONS(1631), - [sym_hex_literal] = ACTIONS(1633), - [sym_oct_literal] = ACTIONS(1633), - [sym_bin_literal] = ACTIONS(1633), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1631), - [anon_sym_GT] = ACTIONS(1631), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1631), - [anon_sym_POUNDfileID] = ACTIONS(1633), - [anon_sym_POUNDfilePath] = ACTIONS(1633), - [anon_sym_POUNDline] = ACTIONS(1633), - [anon_sym_POUNDcolumn] = ACTIONS(1633), - [anon_sym_POUNDfunction] = ACTIONS(1633), - [anon_sym_POUNDdsohandle] = ACTIONS(1633), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1633), - [anon_sym_DASH_EQ] = ACTIONS(1633), - [anon_sym_STAR_EQ] = ACTIONS(1633), - [anon_sym_SLASH_EQ] = ACTIONS(1633), - [anon_sym_PERCENT_EQ] = ACTIONS(1633), - [anon_sym_EQ] = ACTIONS(1631), - [anon_sym_BANG_EQ] = ACTIONS(1631), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1633), - [anon_sym_LT_EQ] = ACTIONS(1633), - [anon_sym_GT_EQ] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_SLASH] = ACTIONS(1631), - [anon_sym_PERCENT] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1633), - [anon_sym_CARET] = ACTIONS(1631), - [anon_sym_LT_LT] = ACTIONS(1633), - [anon_sym_GT_GT] = ACTIONS(1633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1633), - [sym__plus_then_ws] = ACTIONS(1633), - [sym__minus_then_ws] = ACTIONS(1633), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [391] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1361), - [sym_boolean_literal] = STATE(1361), - [sym__string_literal] = STATE(1361), - [sym_line_string_literal] = STATE(1361), - [sym_multi_line_string_literal] = STATE(1361), - [sym_raw_string_literal] = STATE(1361), - [sym_regex_literal] = STATE(1361), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1361), - [sym__unary_expression] = STATE(1361), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1361), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1361), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1361), - [sym_prefix_expression] = STATE(1361), - [sym_as_expression] = STATE(1361), - [sym_selector_expression] = STATE(1361), - [sym__binary_expression] = STATE(1361), - [sym_multiplicative_expression] = STATE(1361), - [sym_additive_expression] = STATE(1361), - [sym_range_expression] = STATE(1361), - [sym_infix_expression] = STATE(1361), - [sym_nil_coalescing_expression] = STATE(1361), - [sym_check_expression] = STATE(1361), - [sym_comparison_expression] = STATE(1361), - [sym_equality_expression] = STATE(1361), - [sym_conjunction_expression] = STATE(1361), - [sym_disjunction_expression] = STATE(1361), - [sym_bitwise_operation] = STATE(1361), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1361), - [sym_await_expression] = STATE(1361), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1361), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1361), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1361), - [sym_dictionary_literal] = STATE(1361), - [sym__special_literal] = STATE(1361), - [sym__playground_literal] = STATE(1361), - [sym_lambda_literal] = STATE(1361), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1361), - [sym_key_path_expression] = STATE(1361), - [sym_key_path_string_expression] = STATE(1361), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1361), - [sym__equality_operator] = STATE(1361), - [sym__comparison_operator] = STATE(1361), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1361), - [sym__multiplicative_operator] = STATE(1361), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1361), - [sym__referenceable_operator] = STATE(1361), - [sym__eq_eq] = STATE(1361), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1635), - [sym_real_literal] = ACTIONS(1637), - [sym_integer_literal] = ACTIONS(1635), - [sym_hex_literal] = ACTIONS(1637), - [sym_oct_literal] = ACTIONS(1637), - [sym_bin_literal] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1635), - [anon_sym_GT] = ACTIONS(1635), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1635), - [anon_sym_POUNDfileID] = ACTIONS(1637), - [anon_sym_POUNDfilePath] = ACTIONS(1637), - [anon_sym_POUNDline] = ACTIONS(1637), - [anon_sym_POUNDcolumn] = ACTIONS(1637), - [anon_sym_POUNDfunction] = ACTIONS(1637), - [anon_sym_POUNDdsohandle] = ACTIONS(1637), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1637), - [anon_sym_DASH_EQ] = ACTIONS(1637), - [anon_sym_STAR_EQ] = ACTIONS(1637), - [anon_sym_SLASH_EQ] = ACTIONS(1637), - [anon_sym_PERCENT_EQ] = ACTIONS(1637), - [anon_sym_EQ] = ACTIONS(1635), - [anon_sym_BANG_EQ] = ACTIONS(1635), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1637), - [anon_sym_LT_EQ] = ACTIONS(1637), - [anon_sym_GT_EQ] = ACTIONS(1637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_SLASH] = ACTIONS(1635), - [anon_sym_PERCENT] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1637), - [anon_sym_CARET] = ACTIONS(1635), - [anon_sym_LT_LT] = ACTIONS(1637), - [anon_sym_GT_GT] = ACTIONS(1637), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1637), - [sym__plus_then_ws] = ACTIONS(1637), - [sym__minus_then_ws] = ACTIONS(1637), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [392] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1327), - [sym_boolean_literal] = STATE(1327), - [sym__string_literal] = STATE(1327), - [sym_line_string_literal] = STATE(1327), - [sym_multi_line_string_literal] = STATE(1327), - [sym_raw_string_literal] = STATE(1327), - [sym_regex_literal] = STATE(1327), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1327), - [sym__unary_expression] = STATE(1327), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1327), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1327), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1327), - [sym_prefix_expression] = STATE(1327), - [sym_as_expression] = STATE(1327), - [sym_selector_expression] = STATE(1327), - [sym__binary_expression] = STATE(1327), - [sym_multiplicative_expression] = STATE(1327), - [sym_additive_expression] = STATE(1327), - [sym_range_expression] = STATE(1327), - [sym_infix_expression] = STATE(1327), - [sym_nil_coalescing_expression] = STATE(1327), - [sym_check_expression] = STATE(1327), - [sym_comparison_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_conjunction_expression] = STATE(1327), - [sym_disjunction_expression] = STATE(1327), - [sym_bitwise_operation] = STATE(1327), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1327), - [sym_await_expression] = STATE(1327), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1327), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1327), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1327), - [sym_dictionary_literal] = STATE(1327), - [sym__special_literal] = STATE(1327), - [sym__playground_literal] = STATE(1327), - [sym_lambda_literal] = STATE(1327), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1327), - [sym_key_path_expression] = STATE(1327), - [sym_key_path_string_expression] = STATE(1327), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1327), - [sym__equality_operator] = STATE(1327), - [sym__comparison_operator] = STATE(1327), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1327), - [sym__multiplicative_operator] = STATE(1327), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1327), - [sym__referenceable_operator] = STATE(1327), - [sym__eq_eq] = STATE(1327), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1639), - [sym_real_literal] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1639), - [sym_hex_literal] = ACTIONS(1641), - [sym_oct_literal] = ACTIONS(1641), - [sym_bin_literal] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1639), - [anon_sym_POUNDfileID] = ACTIONS(1641), - [anon_sym_POUNDfilePath] = ACTIONS(1641), - [anon_sym_POUNDline] = ACTIONS(1641), - [anon_sym_POUNDcolumn] = ACTIONS(1641), - [anon_sym_POUNDfunction] = ACTIONS(1641), - [anon_sym_POUNDdsohandle] = ACTIONS(1641), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1641), - [anon_sym_DASH_EQ] = ACTIONS(1641), - [anon_sym_STAR_EQ] = ACTIONS(1641), - [anon_sym_SLASH_EQ] = ACTIONS(1641), - [anon_sym_PERCENT_EQ] = ACTIONS(1641), - [anon_sym_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1641), - [anon_sym_LT_EQ] = ACTIONS(1641), - [anon_sym_GT_EQ] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_SLASH] = ACTIONS(1639), - [anon_sym_PERCENT] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_LT_LT] = ACTIONS(1641), - [anon_sym_GT_GT] = ACTIONS(1641), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1641), - [sym__plus_then_ws] = ACTIONS(1641), - [sym__minus_then_ws] = ACTIONS(1641), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [393] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1187), - [sym_boolean_literal] = STATE(1187), - [sym__string_literal] = STATE(1187), - [sym_line_string_literal] = STATE(1187), - [sym_multi_line_string_literal] = STATE(1187), - [sym_raw_string_literal] = STATE(1187), - [sym_regex_literal] = STATE(1187), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(1187), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1187), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1187), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1187), - [sym_prefix_expression] = STATE(1187), - [sym_as_expression] = STATE(1187), - [sym_selector_expression] = STATE(1187), - [sym__binary_expression] = STATE(1187), - [sym_multiplicative_expression] = STATE(1187), - [sym_additive_expression] = STATE(1187), - [sym_range_expression] = STATE(1187), - [sym_infix_expression] = STATE(1187), - [sym_nil_coalescing_expression] = STATE(1187), - [sym_check_expression] = STATE(1187), - [sym_comparison_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_conjunction_expression] = STATE(1187), - [sym_disjunction_expression] = STATE(1187), - [sym_bitwise_operation] = STATE(1187), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1187), - [sym_await_expression] = STATE(1187), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1187), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1187), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1187), - [sym_dictionary_literal] = STATE(1187), - [sym__special_literal] = STATE(1187), - [sym__playground_literal] = STATE(1187), - [sym_lambda_literal] = STATE(1187), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1187), - [sym_key_path_expression] = STATE(1187), - [sym_key_path_string_expression] = STATE(1187), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1187), - [sym__equality_operator] = STATE(1187), - [sym__comparison_operator] = STATE(1187), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1187), - [sym__multiplicative_operator] = STATE(1187), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1187), - [sym__referenceable_operator] = STATE(1187), - [sym__eq_eq] = STATE(1187), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_hex_literal] = ACTIONS(1645), - [sym_oct_literal] = ACTIONS(1645), - [sym_bin_literal] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1643), - [anon_sym_GT] = ACTIONS(1643), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1643), - [anon_sym_POUNDfileID] = ACTIONS(1645), - [anon_sym_POUNDfilePath] = ACTIONS(1645), - [anon_sym_POUNDline] = ACTIONS(1645), - [anon_sym_POUNDcolumn] = ACTIONS(1645), - [anon_sym_POUNDfunction] = ACTIONS(1645), - [anon_sym_POUNDdsohandle] = ACTIONS(1645), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1645), - [anon_sym_DASH_EQ] = ACTIONS(1645), - [anon_sym_STAR_EQ] = ACTIONS(1645), - [anon_sym_SLASH_EQ] = ACTIONS(1645), - [anon_sym_PERCENT_EQ] = ACTIONS(1645), - [anon_sym_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1645), - [anon_sym_LT_EQ] = ACTIONS(1645), - [anon_sym_GT_EQ] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_SLASH] = ACTIONS(1643), - [anon_sym_PERCENT] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_LT_LT] = ACTIONS(1645), - [anon_sym_GT_GT] = ACTIONS(1645), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1645), - [sym__plus_then_ws] = ACTIONS(1645), - [sym__minus_then_ws] = ACTIONS(1645), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [394] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1347), - [sym_boolean_literal] = STATE(1347), - [sym__string_literal] = STATE(1347), - [sym_line_string_literal] = STATE(1347), - [sym_multi_line_string_literal] = STATE(1347), - [sym_raw_string_literal] = STATE(1347), - [sym_regex_literal] = STATE(1347), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1347), - [sym__unary_expression] = STATE(1347), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1347), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1347), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1347), - [sym_prefix_expression] = STATE(1347), - [sym_as_expression] = STATE(1347), - [sym_selector_expression] = STATE(1347), - [sym__binary_expression] = STATE(1347), - [sym_multiplicative_expression] = STATE(1347), - [sym_additive_expression] = STATE(1347), - [sym_range_expression] = STATE(1347), - [sym_infix_expression] = STATE(1347), - [sym_nil_coalescing_expression] = STATE(1347), - [sym_check_expression] = STATE(1347), - [sym_comparison_expression] = STATE(1347), - [sym_equality_expression] = STATE(1347), - [sym_conjunction_expression] = STATE(1347), - [sym_disjunction_expression] = STATE(1347), - [sym_bitwise_operation] = STATE(1347), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1347), - [sym_await_expression] = STATE(1347), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1347), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1347), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1347), - [sym_dictionary_literal] = STATE(1347), - [sym__special_literal] = STATE(1347), - [sym__playground_literal] = STATE(1347), - [sym_lambda_literal] = STATE(1347), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1347), - [sym_key_path_expression] = STATE(1347), - [sym_key_path_string_expression] = STATE(1347), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1347), - [sym__equality_operator] = STATE(1347), - [sym__comparison_operator] = STATE(1347), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1347), - [sym__multiplicative_operator] = STATE(1347), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1347), - [sym__referenceable_operator] = STATE(1347), - [sym__eq_eq] = STATE(1347), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1647), - [sym_real_literal] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1647), - [sym_hex_literal] = ACTIONS(1649), - [sym_oct_literal] = ACTIONS(1649), - [sym_bin_literal] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1647), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1647), - [anon_sym_POUNDfileID] = ACTIONS(1649), - [anon_sym_POUNDfilePath] = ACTIONS(1649), - [anon_sym_POUNDline] = ACTIONS(1649), - [anon_sym_POUNDcolumn] = ACTIONS(1649), - [anon_sym_POUNDfunction] = ACTIONS(1649), - [anon_sym_POUNDdsohandle] = ACTIONS(1649), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1649), - [anon_sym_DASH_EQ] = ACTIONS(1649), - [anon_sym_STAR_EQ] = ACTIONS(1649), - [anon_sym_SLASH_EQ] = ACTIONS(1649), - [anon_sym_PERCENT_EQ] = ACTIONS(1649), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1649), - [anon_sym_LT_EQ] = ACTIONS(1649), - [anon_sym_GT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_PERCENT] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1649), - [anon_sym_CARET] = ACTIONS(1647), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1649), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1649), - [sym__plus_then_ws] = ACTIONS(1649), - [sym__minus_then_ws] = ACTIONS(1649), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [395] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1143), - [sym_boolean_literal] = STATE(1143), - [sym__string_literal] = STATE(1143), - [sym_line_string_literal] = STATE(1143), - [sym_multi_line_string_literal] = STATE(1143), - [sym_raw_string_literal] = STATE(1143), - [sym_regex_literal] = STATE(1143), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1143), - [sym__unary_expression] = STATE(1143), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1143), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1143), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1143), - [sym_prefix_expression] = STATE(1143), - [sym_as_expression] = STATE(1143), - [sym_selector_expression] = STATE(1143), - [sym__binary_expression] = STATE(1143), - [sym_multiplicative_expression] = STATE(1143), - [sym_additive_expression] = STATE(1143), - [sym_range_expression] = STATE(1143), - [sym_infix_expression] = STATE(1143), - [sym_nil_coalescing_expression] = STATE(1143), - [sym_check_expression] = STATE(1143), - [sym_comparison_expression] = STATE(1143), - [sym_equality_expression] = STATE(1143), - [sym_conjunction_expression] = STATE(1143), - [sym_disjunction_expression] = STATE(1143), - [sym_bitwise_operation] = STATE(1143), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1143), - [sym_await_expression] = STATE(1143), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1143), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1143), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1143), - [sym_dictionary_literal] = STATE(1143), - [sym__special_literal] = STATE(1143), - [sym__playground_literal] = STATE(1143), - [sym_lambda_literal] = STATE(1143), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1143), - [sym_key_path_expression] = STATE(1143), - [sym_key_path_string_expression] = STATE(1143), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1143), - [sym__equality_operator] = STATE(1143), - [sym__comparison_operator] = STATE(1143), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1143), - [sym__multiplicative_operator] = STATE(1143), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1143), - [sym__referenceable_operator] = STATE(1143), - [sym__eq_eq] = STATE(1143), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1651), - [sym_real_literal] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1651), - [sym_hex_literal] = ACTIONS(1653), - [sym_oct_literal] = ACTIONS(1653), - [sym_bin_literal] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(1651), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1651), - [anon_sym_POUNDfileID] = ACTIONS(1653), - [anon_sym_POUNDfilePath] = ACTIONS(1653), - [anon_sym_POUNDline] = ACTIONS(1653), - [anon_sym_POUNDcolumn] = ACTIONS(1653), - [anon_sym_POUNDfunction] = ACTIONS(1653), - [anon_sym_POUNDdsohandle] = ACTIONS(1653), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ] = ACTIONS(1651), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), - [anon_sym_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_CARET] = ACTIONS(1651), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1653), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1653), - [sym__plus_then_ws] = ACTIONS(1653), - [sym__minus_then_ws] = ACTIONS(1653), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [396] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1252), - [sym_boolean_literal] = STATE(1252), - [sym__string_literal] = STATE(1252), - [sym_line_string_literal] = STATE(1252), - [sym_multi_line_string_literal] = STATE(1252), - [sym_raw_string_literal] = STATE(1252), - [sym_regex_literal] = STATE(1252), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1252), - [sym__unary_expression] = STATE(1252), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1252), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1252), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1252), - [sym_prefix_expression] = STATE(1252), - [sym_as_expression] = STATE(1252), - [sym_selector_expression] = STATE(1252), - [sym__binary_expression] = STATE(1252), - [sym_multiplicative_expression] = STATE(1252), - [sym_additive_expression] = STATE(1252), - [sym_range_expression] = STATE(1252), - [sym_infix_expression] = STATE(1252), - [sym_nil_coalescing_expression] = STATE(1252), - [sym_check_expression] = STATE(1252), - [sym_comparison_expression] = STATE(1252), - [sym_equality_expression] = STATE(1252), - [sym_conjunction_expression] = STATE(1252), - [sym_disjunction_expression] = STATE(1252), - [sym_bitwise_operation] = STATE(1252), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1252), - [sym_await_expression] = STATE(1252), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1252), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1252), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1252), - [sym_dictionary_literal] = STATE(1252), - [sym__special_literal] = STATE(1252), - [sym__playground_literal] = STATE(1252), - [sym_lambda_literal] = STATE(1252), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1252), - [sym_key_path_expression] = STATE(1252), - [sym_key_path_string_expression] = STATE(1252), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1252), - [sym__equality_operator] = STATE(1252), - [sym__comparison_operator] = STATE(1252), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1252), - [sym__multiplicative_operator] = STATE(1252), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1252), - [sym__referenceable_operator] = STATE(1252), - [sym__eq_eq] = STATE(1252), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1655), - [sym_real_literal] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1655), - [sym_hex_literal] = ACTIONS(1657), - [sym_oct_literal] = ACTIONS(1657), - [sym_bin_literal] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1655), - [anon_sym_POUNDfileID] = ACTIONS(1657), - [anon_sym_POUNDfilePath] = ACTIONS(1657), - [anon_sym_POUNDline] = ACTIONS(1657), - [anon_sym_POUNDcolumn] = ACTIONS(1657), - [anon_sym_POUNDfunction] = ACTIONS(1657), - [anon_sym_POUNDdsohandle] = ACTIONS(1657), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1657), - [anon_sym_DASH_EQ] = ACTIONS(1657), - [anon_sym_STAR_EQ] = ACTIONS(1657), - [anon_sym_SLASH_EQ] = ACTIONS(1657), - [anon_sym_PERCENT_EQ] = ACTIONS(1657), - [anon_sym_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1657), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1657), - [sym__plus_then_ws] = ACTIONS(1657), - [sym__minus_then_ws] = ACTIONS(1657), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [397] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1251), - [sym_boolean_literal] = STATE(1251), - [sym__string_literal] = STATE(1251), - [sym_line_string_literal] = STATE(1251), - [sym_multi_line_string_literal] = STATE(1251), - [sym_raw_string_literal] = STATE(1251), - [sym_regex_literal] = STATE(1251), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1251), - [sym__unary_expression] = STATE(1251), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1251), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1251), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1251), - [sym_prefix_expression] = STATE(1251), - [sym_as_expression] = STATE(1251), - [sym_selector_expression] = STATE(1251), - [sym__binary_expression] = STATE(1251), - [sym_multiplicative_expression] = STATE(1251), - [sym_additive_expression] = STATE(1251), - [sym_range_expression] = STATE(1251), - [sym_infix_expression] = STATE(1251), - [sym_nil_coalescing_expression] = STATE(1251), - [sym_check_expression] = STATE(1251), - [sym_comparison_expression] = STATE(1251), - [sym_equality_expression] = STATE(1251), - [sym_conjunction_expression] = STATE(1251), - [sym_disjunction_expression] = STATE(1251), - [sym_bitwise_operation] = STATE(1251), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1251), - [sym_await_expression] = STATE(1251), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1251), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1251), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1251), - [sym_dictionary_literal] = STATE(1251), - [sym__special_literal] = STATE(1251), - [sym__playground_literal] = STATE(1251), - [sym_lambda_literal] = STATE(1251), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1251), - [sym_key_path_expression] = STATE(1251), - [sym_key_path_string_expression] = STATE(1251), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1251), - [sym__equality_operator] = STATE(1251), - [sym__comparison_operator] = STATE(1251), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1251), - [sym__multiplicative_operator] = STATE(1251), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1251), - [sym__referenceable_operator] = STATE(1251), - [sym__eq_eq] = STATE(1251), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1659), - [sym_real_literal] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1659), - [sym_hex_literal] = ACTIONS(1661), - [sym_oct_literal] = ACTIONS(1661), - [sym_bin_literal] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1659), - [anon_sym_POUNDfileID] = ACTIONS(1661), - [anon_sym_POUNDfilePath] = ACTIONS(1661), - [anon_sym_POUNDline] = ACTIONS(1661), - [anon_sym_POUNDcolumn] = ACTIONS(1661), - [anon_sym_POUNDfunction] = ACTIONS(1661), - [anon_sym_POUNDdsohandle] = ACTIONS(1661), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1661), - [anon_sym_DASH_EQ] = ACTIONS(1661), - [anon_sym_STAR_EQ] = ACTIONS(1661), - [anon_sym_SLASH_EQ] = ACTIONS(1661), - [anon_sym_PERCENT_EQ] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(1659), - [anon_sym_BANG_EQ] = ACTIONS(1659), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_SLASH] = ACTIONS(1659), - [anon_sym_PERCENT] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1661), - [anon_sym_GT_GT] = ACTIONS(1661), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1661), - [sym__plus_then_ws] = ACTIONS(1661), - [sym__minus_then_ws] = ACTIONS(1661), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [398] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(593), - [sym_boolean_literal] = STATE(593), - [sym__string_literal] = STATE(593), - [sym_line_string_literal] = STATE(593), - [sym_multi_line_string_literal] = STATE(593), - [sym_raw_string_literal] = STATE(593), - [sym_regex_literal] = STATE(593), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(593), - [sym__unary_expression] = STATE(593), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(593), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(593), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(593), - [sym_prefix_expression] = STATE(593), - [sym_as_expression] = STATE(593), - [sym_selector_expression] = STATE(593), - [sym__binary_expression] = STATE(593), - [sym_multiplicative_expression] = STATE(593), - [sym_additive_expression] = STATE(593), - [sym_range_expression] = STATE(593), - [sym_infix_expression] = STATE(593), - [sym_nil_coalescing_expression] = STATE(593), - [sym_check_expression] = STATE(593), - [sym_comparison_expression] = STATE(593), - [sym_equality_expression] = STATE(593), - [sym_conjunction_expression] = STATE(593), - [sym_disjunction_expression] = STATE(593), - [sym_bitwise_operation] = STATE(593), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(593), - [sym_await_expression] = STATE(593), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(593), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(593), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(593), - [sym_dictionary_literal] = STATE(593), - [sym__special_literal] = STATE(593), - [sym__playground_literal] = STATE(593), - [sym_lambda_literal] = STATE(593), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(593), - [sym_key_path_expression] = STATE(593), - [sym_key_path_string_expression] = STATE(593), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(593), - [sym__equality_operator] = STATE(593), - [sym__comparison_operator] = STATE(593), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(593), - [sym__multiplicative_operator] = STATE(593), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(593), - [sym__referenceable_operator] = STATE(593), - [sym__eq_eq] = STATE(593), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1663), - [sym_real_literal] = ACTIONS(1665), - [sym_integer_literal] = ACTIONS(1663), - [sym_hex_literal] = ACTIONS(1665), - [sym_oct_literal] = ACTIONS(1665), - [sym_bin_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1663), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1663), - [anon_sym_POUNDfileID] = ACTIONS(1665), - [anon_sym_POUNDfilePath] = ACTIONS(1665), - [anon_sym_POUNDline] = ACTIONS(1665), - [anon_sym_POUNDcolumn] = ACTIONS(1665), - [anon_sym_POUNDfunction] = ACTIONS(1665), - [anon_sym_POUNDdsohandle] = ACTIONS(1665), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1665), - [anon_sym_DASH_EQ] = ACTIONS(1665), - [anon_sym_STAR_EQ] = ACTIONS(1665), - [anon_sym_SLASH_EQ] = ACTIONS(1665), - [anon_sym_PERCENT_EQ] = ACTIONS(1665), - [anon_sym_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), - [anon_sym_LT_EQ] = ACTIONS(1665), - [anon_sym_GT_EQ] = ACTIONS(1665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1663), - [anon_sym_PERCENT] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_LT_LT] = ACTIONS(1665), - [anon_sym_GT_GT] = ACTIONS(1665), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1665), - [sym__plus_then_ws] = ACTIONS(1665), - [sym__minus_then_ws] = ACTIONS(1665), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [399] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym__string_literal] = STATE(1328), - [sym_line_string_literal] = STATE(1328), - [sym_multi_line_string_literal] = STATE(1328), - [sym_raw_string_literal] = STATE(1328), - [sym_regex_literal] = STATE(1328), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1328), - [sym__unary_expression] = STATE(1328), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1328), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1328), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1328), - [sym_prefix_expression] = STATE(1328), - [sym_as_expression] = STATE(1328), - [sym_selector_expression] = STATE(1328), - [sym__binary_expression] = STATE(1328), - [sym_multiplicative_expression] = STATE(1328), - [sym_additive_expression] = STATE(1328), - [sym_range_expression] = STATE(1328), - [sym_infix_expression] = STATE(1328), - [sym_nil_coalescing_expression] = STATE(1328), - [sym_check_expression] = STATE(1328), - [sym_comparison_expression] = STATE(1328), - [sym_equality_expression] = STATE(1328), - [sym_conjunction_expression] = STATE(1328), - [sym_disjunction_expression] = STATE(1328), - [sym_bitwise_operation] = STATE(1328), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1328), - [sym_await_expression] = STATE(1328), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1328), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1328), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1328), - [sym_dictionary_literal] = STATE(1328), - [sym__special_literal] = STATE(1328), - [sym__playground_literal] = STATE(1328), - [sym_lambda_literal] = STATE(1328), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1328), - [sym_key_path_expression] = STATE(1328), - [sym_key_path_string_expression] = STATE(1328), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1328), - [sym__equality_operator] = STATE(1328), - [sym__comparison_operator] = STATE(1328), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1328), - [sym__multiplicative_operator] = STATE(1328), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1328), - [sym__referenceable_operator] = STATE(1328), - [sym__eq_eq] = STATE(1328), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1667), - [sym_real_literal] = ACTIONS(1669), - [sym_integer_literal] = ACTIONS(1667), - [sym_hex_literal] = ACTIONS(1669), - [sym_oct_literal] = ACTIONS(1669), - [sym_bin_literal] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1667), - [anon_sym_POUNDfileID] = ACTIONS(1669), - [anon_sym_POUNDfilePath] = ACTIONS(1669), - [anon_sym_POUNDline] = ACTIONS(1669), - [anon_sym_POUNDcolumn] = ACTIONS(1669), - [anon_sym_POUNDfunction] = ACTIONS(1669), - [anon_sym_POUNDdsohandle] = ACTIONS(1669), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1669), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_PERCENT] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_LT_LT] = ACTIONS(1669), - [anon_sym_GT_GT] = ACTIONS(1669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1669), - [sym__plus_then_ws] = ACTIONS(1669), - [sym__minus_then_ws] = ACTIONS(1669), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [400] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1308), - [sym_boolean_literal] = STATE(1308), - [sym__string_literal] = STATE(1308), - [sym_line_string_literal] = STATE(1308), - [sym_multi_line_string_literal] = STATE(1308), - [sym_raw_string_literal] = STATE(1308), - [sym_regex_literal] = STATE(1308), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1308), - [sym__unary_expression] = STATE(1308), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1308), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1308), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1308), - [sym_prefix_expression] = STATE(1308), - [sym_as_expression] = STATE(1308), - [sym_selector_expression] = STATE(1308), - [sym__binary_expression] = STATE(1308), - [sym_multiplicative_expression] = STATE(1308), - [sym_additive_expression] = STATE(1308), - [sym_range_expression] = STATE(1308), - [sym_infix_expression] = STATE(1308), - [sym_nil_coalescing_expression] = STATE(1308), - [sym_check_expression] = STATE(1308), - [sym_comparison_expression] = STATE(1308), - [sym_equality_expression] = STATE(1308), - [sym_conjunction_expression] = STATE(1308), - [sym_disjunction_expression] = STATE(1308), - [sym_bitwise_operation] = STATE(1308), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1308), - [sym_await_expression] = STATE(1308), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1308), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1308), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1308), - [sym_dictionary_literal] = STATE(1308), - [sym__special_literal] = STATE(1308), - [sym__playground_literal] = STATE(1308), - [sym_lambda_literal] = STATE(1308), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1308), - [sym_key_path_expression] = STATE(1308), - [sym_key_path_string_expression] = STATE(1308), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1308), - [sym__equality_operator] = STATE(1308), - [sym__comparison_operator] = STATE(1308), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1308), - [sym__multiplicative_operator] = STATE(1308), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1308), - [sym__referenceable_operator] = STATE(1308), - [sym__eq_eq] = STATE(1308), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1671), - [sym_real_literal] = ACTIONS(1673), - [sym_integer_literal] = ACTIONS(1671), - [sym_hex_literal] = ACTIONS(1673), - [sym_oct_literal] = ACTIONS(1673), - [sym_bin_literal] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1671), - [anon_sym_POUNDfileID] = ACTIONS(1673), - [anon_sym_POUNDfilePath] = ACTIONS(1673), - [anon_sym_POUNDline] = ACTIONS(1673), - [anon_sym_POUNDcolumn] = ACTIONS(1673), - [anon_sym_POUNDfunction] = ACTIONS(1673), - [anon_sym_POUNDdsohandle] = ACTIONS(1673), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1673), - [anon_sym_DASH_EQ] = ACTIONS(1673), - [anon_sym_STAR_EQ] = ACTIONS(1673), - [anon_sym_SLASH_EQ] = ACTIONS(1673), - [anon_sym_PERCENT_EQ] = ACTIONS(1673), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1671), - [anon_sym_PERCENT] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1673), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_GT_GT] = ACTIONS(1673), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1673), - [sym__plus_then_ws] = ACTIONS(1673), - [sym__minus_then_ws] = ACTIONS(1673), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [401] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(599), - [sym_boolean_literal] = STATE(599), - [sym__string_literal] = STATE(599), - [sym_line_string_literal] = STATE(599), - [sym_multi_line_string_literal] = STATE(599), - [sym_raw_string_literal] = STATE(599), - [sym_regex_literal] = STATE(599), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(599), - [sym__unary_expression] = STATE(599), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(599), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(599), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(599), - [sym_prefix_expression] = STATE(599), - [sym_as_expression] = STATE(599), - [sym_selector_expression] = STATE(599), - [sym__binary_expression] = STATE(599), - [sym_multiplicative_expression] = STATE(599), - [sym_additive_expression] = STATE(599), - [sym_range_expression] = STATE(599), - [sym_infix_expression] = STATE(599), - [sym_nil_coalescing_expression] = STATE(599), - [sym_check_expression] = STATE(599), - [sym_comparison_expression] = STATE(599), - [sym_equality_expression] = STATE(599), - [sym_conjunction_expression] = STATE(599), - [sym_disjunction_expression] = STATE(599), - [sym_bitwise_operation] = STATE(599), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(599), - [sym_await_expression] = STATE(599), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(599), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(599), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(599), - [sym_dictionary_literal] = STATE(599), - [sym__special_literal] = STATE(599), - [sym__playground_literal] = STATE(599), - [sym_lambda_literal] = STATE(599), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(599), - [sym_key_path_expression] = STATE(599), - [sym_key_path_string_expression] = STATE(599), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(599), - [sym__equality_operator] = STATE(599), - [sym__comparison_operator] = STATE(599), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(599), - [sym__multiplicative_operator] = STATE(599), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(599), - [sym__referenceable_operator] = STATE(599), - [sym__eq_eq] = STATE(599), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1675), - [sym_real_literal] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1675), - [sym_hex_literal] = ACTIONS(1677), - [sym_oct_literal] = ACTIONS(1677), - [sym_bin_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1675), - [anon_sym_GT] = ACTIONS(1675), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1675), - [anon_sym_POUNDfileID] = ACTIONS(1677), - [anon_sym_POUNDfilePath] = ACTIONS(1677), - [anon_sym_POUNDline] = ACTIONS(1677), - [anon_sym_POUNDcolumn] = ACTIONS(1677), - [anon_sym_POUNDfunction] = ACTIONS(1677), - [anon_sym_POUNDdsohandle] = ACTIONS(1677), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1677), - [anon_sym_DASH_EQ] = ACTIONS(1677), - [anon_sym_STAR_EQ] = ACTIONS(1677), - [anon_sym_SLASH_EQ] = ACTIONS(1677), - [anon_sym_PERCENT_EQ] = ACTIONS(1677), - [anon_sym_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ] = ACTIONS(1675), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1677), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1677), - [anon_sym_LT_EQ] = ACTIONS(1677), - [anon_sym_GT_EQ] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_SLASH] = ACTIONS(1675), - [anon_sym_PERCENT] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_CARET] = ACTIONS(1675), - [anon_sym_LT_LT] = ACTIONS(1677), - [anon_sym_GT_GT] = ACTIONS(1677), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1677), - [sym__plus_then_ws] = ACTIONS(1677), - [sym__minus_then_ws] = ACTIONS(1677), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [402] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1247), - [sym_boolean_literal] = STATE(1247), - [sym__string_literal] = STATE(1247), - [sym_line_string_literal] = STATE(1247), - [sym_multi_line_string_literal] = STATE(1247), - [sym_raw_string_literal] = STATE(1247), - [sym_regex_literal] = STATE(1247), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1247), - [sym__unary_expression] = STATE(1247), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1247), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1247), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1247), - [sym_prefix_expression] = STATE(1247), - [sym_as_expression] = STATE(1247), - [sym_selector_expression] = STATE(1247), - [sym__binary_expression] = STATE(1247), - [sym_multiplicative_expression] = STATE(1247), - [sym_additive_expression] = STATE(1247), - [sym_range_expression] = STATE(1247), - [sym_infix_expression] = STATE(1247), - [sym_nil_coalescing_expression] = STATE(1247), - [sym_check_expression] = STATE(1247), - [sym_comparison_expression] = STATE(1247), - [sym_equality_expression] = STATE(1247), - [sym_conjunction_expression] = STATE(1247), - [sym_disjunction_expression] = STATE(1247), - [sym_bitwise_operation] = STATE(1247), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1247), - [sym_await_expression] = STATE(1247), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1247), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1247), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1247), - [sym_dictionary_literal] = STATE(1247), - [sym__special_literal] = STATE(1247), - [sym__playground_literal] = STATE(1247), - [sym_lambda_literal] = STATE(1247), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1247), - [sym_key_path_expression] = STATE(1247), - [sym_key_path_string_expression] = STATE(1247), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1247), - [sym__equality_operator] = STATE(1247), - [sym__comparison_operator] = STATE(1247), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1247), - [sym__multiplicative_operator] = STATE(1247), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1247), - [sym__referenceable_operator] = STATE(1247), - [sym__eq_eq] = STATE(1247), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1679), - [sym_real_literal] = ACTIONS(1681), - [sym_integer_literal] = ACTIONS(1679), - [sym_hex_literal] = ACTIONS(1681), - [sym_oct_literal] = ACTIONS(1681), - [sym_bin_literal] = ACTIONS(1681), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1679), - [anon_sym_GT] = ACTIONS(1679), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1679), - [anon_sym_POUNDfileID] = ACTIONS(1681), - [anon_sym_POUNDfilePath] = ACTIONS(1681), - [anon_sym_POUNDline] = ACTIONS(1681), - [anon_sym_POUNDcolumn] = ACTIONS(1681), - [anon_sym_POUNDfunction] = ACTIONS(1681), - [anon_sym_POUNDdsohandle] = ACTIONS(1681), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1681), - [anon_sym_DASH_EQ] = ACTIONS(1681), - [anon_sym_STAR_EQ] = ACTIONS(1681), - [anon_sym_SLASH_EQ] = ACTIONS(1681), - [anon_sym_PERCENT_EQ] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1679), - [anon_sym_BANG_EQ] = ACTIONS(1679), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1681), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1681), - [anon_sym_GT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_CARET] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1681), - [sym__plus_then_ws] = ACTIONS(1681), - [sym__minus_then_ws] = ACTIONS(1681), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [403] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1188), - [sym_boolean_literal] = STATE(1188), - [sym__string_literal] = STATE(1188), - [sym_line_string_literal] = STATE(1188), - [sym_multi_line_string_literal] = STATE(1188), - [sym_raw_string_literal] = STATE(1188), - [sym_regex_literal] = STATE(1188), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(1188), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1188), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1188), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1188), - [sym_prefix_expression] = STATE(1188), - [sym_as_expression] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym__binary_expression] = STATE(1188), - [sym_multiplicative_expression] = STATE(1188), - [sym_additive_expression] = STATE(1188), - [sym_range_expression] = STATE(1188), - [sym_infix_expression] = STATE(1188), - [sym_nil_coalescing_expression] = STATE(1188), - [sym_check_expression] = STATE(1188), - [sym_comparison_expression] = STATE(1188), - [sym_equality_expression] = STATE(1188), - [sym_conjunction_expression] = STATE(1188), - [sym_disjunction_expression] = STATE(1188), - [sym_bitwise_operation] = STATE(1188), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1188), - [sym_await_expression] = STATE(1188), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1188), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1188), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1188), - [sym_dictionary_literal] = STATE(1188), - [sym__special_literal] = STATE(1188), - [sym__playground_literal] = STATE(1188), - [sym_lambda_literal] = STATE(1188), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1188), - [sym_key_path_expression] = STATE(1188), - [sym_key_path_string_expression] = STATE(1188), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1188), - [sym__equality_operator] = STATE(1188), - [sym__comparison_operator] = STATE(1188), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1188), - [sym__multiplicative_operator] = STATE(1188), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1188), - [sym__referenceable_operator] = STATE(1188), - [sym__eq_eq] = STATE(1188), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1683), - [sym_real_literal] = ACTIONS(1685), - [sym_integer_literal] = ACTIONS(1683), - [sym_hex_literal] = ACTIONS(1685), - [sym_oct_literal] = ACTIONS(1685), - [sym_bin_literal] = ACTIONS(1685), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1683), - [anon_sym_POUNDfileID] = ACTIONS(1685), - [anon_sym_POUNDfilePath] = ACTIONS(1685), - [anon_sym_POUNDline] = ACTIONS(1685), - [anon_sym_POUNDcolumn] = ACTIONS(1685), - [anon_sym_POUNDfunction] = ACTIONS(1685), - [anon_sym_POUNDdsohandle] = ACTIONS(1685), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1685), - [anon_sym_DASH_EQ] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1685), - [anon_sym_SLASH_EQ] = ACTIONS(1685), - [anon_sym_PERCENT_EQ] = ACTIONS(1685), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1685), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1685), - [anon_sym_LT_EQ] = ACTIONS(1685), - [anon_sym_GT_EQ] = ACTIONS(1685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1683), - [anon_sym_PERCENT] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1685), - [sym__plus_then_ws] = ACTIONS(1685), - [sym__minus_then_ws] = ACTIONS(1685), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [404] = { - [sym_simple_identifier] = STATE(1847), - [sym__basic_literal] = STATE(1207), - [sym_boolean_literal] = STATE(1207), - [sym__string_literal] = STATE(1207), - [sym_line_string_literal] = STATE(1207), - [sym_multi_line_string_literal] = STATE(1207), - [sym_raw_string_literal] = STATE(1207), - [sym_regex_literal] = STATE(1207), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(1207), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1207), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1207), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1207), - [sym_prefix_expression] = STATE(1207), - [sym_as_expression] = STATE(1207), - [sym_selector_expression] = STATE(1207), - [sym__binary_expression] = STATE(1207), - [sym_multiplicative_expression] = STATE(1207), - [sym_additive_expression] = STATE(1207), - [sym_range_expression] = STATE(1207), - [sym_infix_expression] = STATE(1207), - [sym_nil_coalescing_expression] = STATE(1207), - [sym_check_expression] = STATE(1207), - [sym_comparison_expression] = STATE(1207), - [sym_equality_expression] = STATE(1207), - [sym_conjunction_expression] = STATE(1207), - [sym_disjunction_expression] = STATE(1207), - [sym_bitwise_operation] = STATE(1207), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1207), - [sym_await_expression] = STATE(1207), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1207), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1207), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1207), - [sym_dictionary_literal] = STATE(1207), - [sym__special_literal] = STATE(1207), - [sym__playground_literal] = STATE(1207), - [sym_lambda_literal] = STATE(1207), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1207), - [sym_key_path_expression] = STATE(1207), - [sym_key_path_string_expression] = STATE(1207), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1207), - [sym__equality_operator] = STATE(1207), - [sym__comparison_operator] = STATE(1207), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1207), - [sym__multiplicative_operator] = STATE(1207), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1207), - [sym__referenceable_operator] = STATE(1207), - [sym__eq_eq] = STATE(1207), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1687), - [sym_real_literal] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1687), - [sym_hex_literal] = ACTIONS(1689), - [sym_oct_literal] = ACTIONS(1689), - [sym_bin_literal] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1687), - [anon_sym_GT] = ACTIONS(1687), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1687), - [anon_sym_POUNDfileID] = ACTIONS(1689), - [anon_sym_POUNDfilePath] = ACTIONS(1689), - [anon_sym_POUNDline] = ACTIONS(1689), - [anon_sym_POUNDcolumn] = ACTIONS(1689), - [anon_sym_POUNDfunction] = ACTIONS(1689), - [anon_sym_POUNDdsohandle] = ACTIONS(1689), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1689), - [anon_sym_DASH_EQ] = ACTIONS(1689), - [anon_sym_STAR_EQ] = ACTIONS(1689), - [anon_sym_SLASH_EQ] = ACTIONS(1689), - [anon_sym_PERCENT_EQ] = ACTIONS(1689), - [anon_sym_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_SLASH] = ACTIONS(1687), - [anon_sym_PERCENT] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1689), - [anon_sym_GT_GT] = ACTIONS(1689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1689), - [sym__plus_then_ws] = ACTIONS(1689), - [sym__minus_then_ws] = ACTIONS(1689), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [405] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1206), - [sym_boolean_literal] = STATE(1206), - [sym__string_literal] = STATE(1206), - [sym_line_string_literal] = STATE(1206), - [sym_multi_line_string_literal] = STATE(1206), - [sym_raw_string_literal] = STATE(1206), - [sym_regex_literal] = STATE(1206), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(1206), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1206), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1206), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1206), - [sym_prefix_expression] = STATE(1206), - [sym_as_expression] = STATE(1206), - [sym_selector_expression] = STATE(1206), - [sym__binary_expression] = STATE(1206), - [sym_multiplicative_expression] = STATE(1206), - [sym_additive_expression] = STATE(1206), - [sym_range_expression] = STATE(1206), - [sym_infix_expression] = STATE(1206), - [sym_nil_coalescing_expression] = STATE(1206), - [sym_check_expression] = STATE(1206), - [sym_comparison_expression] = STATE(1206), - [sym_equality_expression] = STATE(1206), - [sym_conjunction_expression] = STATE(1206), - [sym_disjunction_expression] = STATE(1206), - [sym_bitwise_operation] = STATE(1206), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1206), - [sym_await_expression] = STATE(1206), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1206), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1206), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1206), - [sym_dictionary_literal] = STATE(1206), - [sym__special_literal] = STATE(1206), - [sym__playground_literal] = STATE(1206), - [sym_lambda_literal] = STATE(1206), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1206), - [sym_key_path_expression] = STATE(1206), - [sym_key_path_string_expression] = STATE(1206), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1206), - [sym__equality_operator] = STATE(1206), - [sym__comparison_operator] = STATE(1206), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1206), - [sym__multiplicative_operator] = STATE(1206), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1206), - [sym__referenceable_operator] = STATE(1206), - [sym__eq_eq] = STATE(1206), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1691), - [sym_real_literal] = ACTIONS(1693), - [sym_integer_literal] = ACTIONS(1691), - [sym_hex_literal] = ACTIONS(1693), - [sym_oct_literal] = ACTIONS(1693), - [sym_bin_literal] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1691), - [anon_sym_POUNDfileID] = ACTIONS(1693), - [anon_sym_POUNDfilePath] = ACTIONS(1693), - [anon_sym_POUNDline] = ACTIONS(1693), - [anon_sym_POUNDcolumn] = ACTIONS(1693), - [anon_sym_POUNDfunction] = ACTIONS(1693), - [anon_sym_POUNDdsohandle] = ACTIONS(1693), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1693), - [anon_sym_DASH_EQ] = ACTIONS(1693), - [anon_sym_STAR_EQ] = ACTIONS(1693), - [anon_sym_SLASH_EQ] = ACTIONS(1693), - [anon_sym_PERCENT_EQ] = ACTIONS(1693), - [anon_sym_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1693), - [anon_sym_GT_EQ] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_SLASH] = ACTIONS(1691), - [anon_sym_PERCENT] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1693), - [anon_sym_GT_GT] = ACTIONS(1693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1693), - [sym__plus_then_ws] = ACTIONS(1693), - [sym__minus_then_ws] = ACTIONS(1693), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [406] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1344), - [sym_boolean_literal] = STATE(1344), - [sym__string_literal] = STATE(1344), - [sym_line_string_literal] = STATE(1344), - [sym_multi_line_string_literal] = STATE(1344), - [sym_raw_string_literal] = STATE(1344), - [sym_regex_literal] = STATE(1344), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1344), - [sym__unary_expression] = STATE(1344), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1344), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1344), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1344), - [sym_prefix_expression] = STATE(1344), - [sym_as_expression] = STATE(1344), - [sym_selector_expression] = STATE(1344), - [sym__binary_expression] = STATE(1344), - [sym_multiplicative_expression] = STATE(1344), - [sym_additive_expression] = STATE(1344), - [sym_range_expression] = STATE(1344), - [sym_infix_expression] = STATE(1344), - [sym_nil_coalescing_expression] = STATE(1344), - [sym_check_expression] = STATE(1344), - [sym_comparison_expression] = STATE(1344), - [sym_equality_expression] = STATE(1344), - [sym_conjunction_expression] = STATE(1344), - [sym_disjunction_expression] = STATE(1344), - [sym_bitwise_operation] = STATE(1344), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1344), - [sym_await_expression] = STATE(1344), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1344), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1344), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1344), - [sym_dictionary_literal] = STATE(1344), - [sym__special_literal] = STATE(1344), - [sym__playground_literal] = STATE(1344), - [sym_lambda_literal] = STATE(1344), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1344), - [sym_key_path_expression] = STATE(1344), - [sym_key_path_string_expression] = STATE(1344), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1344), - [sym__equality_operator] = STATE(1344), - [sym__comparison_operator] = STATE(1344), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1344), - [sym__multiplicative_operator] = STATE(1344), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1344), - [sym__referenceable_operator] = STATE(1344), - [sym__eq_eq] = STATE(1344), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1695), - [sym_real_literal] = ACTIONS(1697), - [sym_integer_literal] = ACTIONS(1695), - [sym_hex_literal] = ACTIONS(1697), - [sym_oct_literal] = ACTIONS(1697), - [sym_bin_literal] = ACTIONS(1697), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1695), - [anon_sym_GT] = ACTIONS(1695), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1695), - [anon_sym_POUNDfileID] = ACTIONS(1697), - [anon_sym_POUNDfilePath] = ACTIONS(1697), - [anon_sym_POUNDline] = ACTIONS(1697), - [anon_sym_POUNDcolumn] = ACTIONS(1697), - [anon_sym_POUNDfunction] = ACTIONS(1697), - [anon_sym_POUNDdsohandle] = ACTIONS(1697), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1697), - [anon_sym_DASH_EQ] = ACTIONS(1697), - [anon_sym_STAR_EQ] = ACTIONS(1697), - [anon_sym_SLASH_EQ] = ACTIONS(1697), - [anon_sym_PERCENT_EQ] = ACTIONS(1697), - [anon_sym_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1697), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1697), - [anon_sym_GT_EQ] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_SLASH] = ACTIONS(1695), - [anon_sym_PERCENT] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1697), - [sym__plus_then_ws] = ACTIONS(1697), - [sym__minus_then_ws] = ACTIONS(1697), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [407] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1341), - [sym_boolean_literal] = STATE(1341), - [sym__string_literal] = STATE(1341), - [sym_line_string_literal] = STATE(1341), - [sym_multi_line_string_literal] = STATE(1341), - [sym_raw_string_literal] = STATE(1341), - [sym_regex_literal] = STATE(1341), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1341), - [sym__unary_expression] = STATE(1341), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1341), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1341), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1341), - [sym_prefix_expression] = STATE(1341), - [sym_as_expression] = STATE(1341), - [sym_selector_expression] = STATE(1341), - [sym__binary_expression] = STATE(1341), - [sym_multiplicative_expression] = STATE(1341), - [sym_additive_expression] = STATE(1341), - [sym_range_expression] = STATE(1341), - [sym_infix_expression] = STATE(1341), - [sym_nil_coalescing_expression] = STATE(1341), - [sym_check_expression] = STATE(1341), - [sym_comparison_expression] = STATE(1341), - [sym_equality_expression] = STATE(1341), - [sym_conjunction_expression] = STATE(1341), - [sym_disjunction_expression] = STATE(1341), - [sym_bitwise_operation] = STATE(1341), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1341), - [sym_await_expression] = STATE(1341), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1341), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1341), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1341), - [sym_dictionary_literal] = STATE(1341), - [sym__special_literal] = STATE(1341), - [sym__playground_literal] = STATE(1341), - [sym_lambda_literal] = STATE(1341), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1341), - [sym_key_path_expression] = STATE(1341), - [sym_key_path_string_expression] = STATE(1341), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1341), - [sym__equality_operator] = STATE(1341), - [sym__comparison_operator] = STATE(1341), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1341), - [sym__multiplicative_operator] = STATE(1341), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1341), - [sym__referenceable_operator] = STATE(1341), - [sym__eq_eq] = STATE(1341), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1699), - [sym_real_literal] = ACTIONS(1701), - [sym_integer_literal] = ACTIONS(1699), - [sym_hex_literal] = ACTIONS(1701), - [sym_oct_literal] = ACTIONS(1701), - [sym_bin_literal] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1699), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1699), - [anon_sym_POUNDfileID] = ACTIONS(1701), - [anon_sym_POUNDfilePath] = ACTIONS(1701), - [anon_sym_POUNDline] = ACTIONS(1701), - [anon_sym_POUNDcolumn] = ACTIONS(1701), - [anon_sym_POUNDfunction] = ACTIONS(1701), - [anon_sym_POUNDdsohandle] = ACTIONS(1701), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_PERCENT] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_LT_LT] = ACTIONS(1701), - [anon_sym_GT_GT] = ACTIONS(1701), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1701), - [sym__plus_then_ws] = ACTIONS(1701), - [sym__minus_then_ws] = ACTIONS(1701), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [408] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1186), - [sym_boolean_literal] = STATE(1186), - [sym__string_literal] = STATE(1186), - [sym_line_string_literal] = STATE(1186), - [sym_multi_line_string_literal] = STATE(1186), - [sym_raw_string_literal] = STATE(1186), - [sym_regex_literal] = STATE(1186), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1186), - [sym__unary_expression] = STATE(1186), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1186), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1186), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1186), - [sym_prefix_expression] = STATE(1186), - [sym_as_expression] = STATE(1186), - [sym_selector_expression] = STATE(1186), - [sym__binary_expression] = STATE(1186), - [sym_multiplicative_expression] = STATE(1186), - [sym_additive_expression] = STATE(1186), - [sym_range_expression] = STATE(1186), - [sym_infix_expression] = STATE(1186), - [sym_nil_coalescing_expression] = STATE(1186), - [sym_check_expression] = STATE(1186), - [sym_comparison_expression] = STATE(1186), - [sym_equality_expression] = STATE(1186), - [sym_conjunction_expression] = STATE(1186), - [sym_disjunction_expression] = STATE(1186), - [sym_bitwise_operation] = STATE(1186), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1186), - [sym_await_expression] = STATE(1186), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1186), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1186), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1186), - [sym_dictionary_literal] = STATE(1186), - [sym__special_literal] = STATE(1186), - [sym__playground_literal] = STATE(1186), - [sym_lambda_literal] = STATE(1186), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1186), - [sym_key_path_expression] = STATE(1186), - [sym_key_path_string_expression] = STATE(1186), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1186), - [sym__equality_operator] = STATE(1186), - [sym__comparison_operator] = STATE(1186), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1186), - [sym__multiplicative_operator] = STATE(1186), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1186), - [sym__referenceable_operator] = STATE(1186), - [sym__eq_eq] = STATE(1186), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1703), - [sym_real_literal] = ACTIONS(1705), - [sym_integer_literal] = ACTIONS(1703), - [sym_hex_literal] = ACTIONS(1705), - [sym_oct_literal] = ACTIONS(1705), - [sym_bin_literal] = ACTIONS(1705), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1703), - [anon_sym_POUNDfileID] = ACTIONS(1705), - [anon_sym_POUNDfilePath] = ACTIONS(1705), - [anon_sym_POUNDline] = ACTIONS(1705), - [anon_sym_POUNDcolumn] = ACTIONS(1705), - [anon_sym_POUNDfunction] = ACTIONS(1705), - [anon_sym_POUNDdsohandle] = ACTIONS(1705), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1705), - [anon_sym_DASH_EQ] = ACTIONS(1705), - [anon_sym_STAR_EQ] = ACTIONS(1705), - [anon_sym_SLASH_EQ] = ACTIONS(1705), - [anon_sym_PERCENT_EQ] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1703), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1703), - [anon_sym_PERCENT] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1705), - [sym__plus_then_ws] = ACTIONS(1705), - [sym__minus_then_ws] = ACTIONS(1705), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [409] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(598), - [sym_boolean_literal] = STATE(598), - [sym__string_literal] = STATE(598), - [sym_line_string_literal] = STATE(598), - [sym_multi_line_string_literal] = STATE(598), - [sym_raw_string_literal] = STATE(598), - [sym_regex_literal] = STATE(598), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(598), - [sym__unary_expression] = STATE(598), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(598), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(598), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(598), - [sym_prefix_expression] = STATE(598), - [sym_as_expression] = STATE(598), - [sym_selector_expression] = STATE(598), - [sym__binary_expression] = STATE(598), - [sym_multiplicative_expression] = STATE(598), - [sym_additive_expression] = STATE(598), - [sym_range_expression] = STATE(598), - [sym_infix_expression] = STATE(598), - [sym_nil_coalescing_expression] = STATE(598), - [sym_check_expression] = STATE(598), - [sym_comparison_expression] = STATE(598), - [sym_equality_expression] = STATE(598), - [sym_conjunction_expression] = STATE(598), - [sym_disjunction_expression] = STATE(598), - [sym_bitwise_operation] = STATE(598), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(598), - [sym_await_expression] = STATE(598), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(598), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(598), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(598), - [sym_dictionary_literal] = STATE(598), - [sym__special_literal] = STATE(598), - [sym__playground_literal] = STATE(598), - [sym_lambda_literal] = STATE(598), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(598), - [sym_key_path_expression] = STATE(598), - [sym_key_path_string_expression] = STATE(598), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(598), - [sym__equality_operator] = STATE(598), - [sym__comparison_operator] = STATE(598), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(598), - [sym__multiplicative_operator] = STATE(598), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(598), - [sym__referenceable_operator] = STATE(598), - [sym__eq_eq] = STATE(598), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1707), - [sym_real_literal] = ACTIONS(1709), - [sym_integer_literal] = ACTIONS(1707), - [sym_hex_literal] = ACTIONS(1709), - [sym_oct_literal] = ACTIONS(1709), - [sym_bin_literal] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1707), - [anon_sym_POUNDfileID] = ACTIONS(1709), - [anon_sym_POUNDfilePath] = ACTIONS(1709), - [anon_sym_POUNDline] = ACTIONS(1709), - [anon_sym_POUNDcolumn] = ACTIONS(1709), - [anon_sym_POUNDfunction] = ACTIONS(1709), - [anon_sym_POUNDdsohandle] = ACTIONS(1709), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1709), - [anon_sym_DASH_EQ] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(1709), - [anon_sym_SLASH_EQ] = ACTIONS(1709), - [anon_sym_PERCENT_EQ] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_PERCENT] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1709), - [sym__plus_then_ws] = ACTIONS(1709), - [sym__minus_then_ws] = ACTIONS(1709), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [410] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1202), - [sym_boolean_literal] = STATE(1202), - [sym__string_literal] = STATE(1202), - [sym_line_string_literal] = STATE(1202), - [sym_multi_line_string_literal] = STATE(1202), - [sym_raw_string_literal] = STATE(1202), - [sym_regex_literal] = STATE(1202), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(1202), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1202), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1202), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1202), - [sym_prefix_expression] = STATE(1202), - [sym_as_expression] = STATE(1202), - [sym_selector_expression] = STATE(1202), - [sym__binary_expression] = STATE(1202), - [sym_multiplicative_expression] = STATE(1202), - [sym_additive_expression] = STATE(1202), - [sym_range_expression] = STATE(1202), - [sym_infix_expression] = STATE(1202), - [sym_nil_coalescing_expression] = STATE(1202), - [sym_check_expression] = STATE(1202), - [sym_comparison_expression] = STATE(1202), - [sym_equality_expression] = STATE(1202), - [sym_conjunction_expression] = STATE(1202), - [sym_disjunction_expression] = STATE(1202), - [sym_bitwise_operation] = STATE(1202), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1202), - [sym_await_expression] = STATE(1202), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1202), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1202), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1202), - [sym_dictionary_literal] = STATE(1202), - [sym__special_literal] = STATE(1202), - [sym__playground_literal] = STATE(1202), - [sym_lambda_literal] = STATE(1202), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1202), - [sym_key_path_expression] = STATE(1202), - [sym_key_path_string_expression] = STATE(1202), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1202), - [sym__equality_operator] = STATE(1202), - [sym__comparison_operator] = STATE(1202), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1202), - [sym__multiplicative_operator] = STATE(1202), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1202), - [sym__referenceable_operator] = STATE(1202), - [sym__eq_eq] = STATE(1202), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1711), - [sym_real_literal] = ACTIONS(1713), - [sym_integer_literal] = ACTIONS(1711), - [sym_hex_literal] = ACTIONS(1713), - [sym_oct_literal] = ACTIONS(1713), - [sym_bin_literal] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1711), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1711), - [anon_sym_POUNDfileID] = ACTIONS(1713), - [anon_sym_POUNDfilePath] = ACTIONS(1713), - [anon_sym_POUNDline] = ACTIONS(1713), - [anon_sym_POUNDcolumn] = ACTIONS(1713), - [anon_sym_POUNDfunction] = ACTIONS(1713), - [anon_sym_POUNDdsohandle] = ACTIONS(1713), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1711), - [anon_sym_BANG_EQ] = ACTIONS(1711), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1713), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1713), - [anon_sym_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_PERCENT] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_LT_LT] = ACTIONS(1713), - [anon_sym_GT_GT] = ACTIONS(1713), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1713), - [sym__plus_then_ws] = ACTIONS(1713), - [sym__minus_then_ws] = ACTIONS(1713), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [411] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(597), - [sym_boolean_literal] = STATE(597), - [sym__string_literal] = STATE(597), - [sym_line_string_literal] = STATE(597), - [sym_multi_line_string_literal] = STATE(597), - [sym_raw_string_literal] = STATE(597), - [sym_regex_literal] = STATE(597), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(597), - [sym__unary_expression] = STATE(597), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(597), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(597), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(597), - [sym_prefix_expression] = STATE(597), - [sym_as_expression] = STATE(597), - [sym_selector_expression] = STATE(597), - [sym__binary_expression] = STATE(597), - [sym_multiplicative_expression] = STATE(597), - [sym_additive_expression] = STATE(597), - [sym_range_expression] = STATE(597), - [sym_infix_expression] = STATE(597), - [sym_nil_coalescing_expression] = STATE(597), - [sym_check_expression] = STATE(597), - [sym_comparison_expression] = STATE(597), - [sym_equality_expression] = STATE(597), - [sym_conjunction_expression] = STATE(597), - [sym_disjunction_expression] = STATE(597), - [sym_bitwise_operation] = STATE(597), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(597), - [sym_await_expression] = STATE(597), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(597), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(597), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(597), - [sym_dictionary_literal] = STATE(597), - [sym__special_literal] = STATE(597), - [sym__playground_literal] = STATE(597), - [sym_lambda_literal] = STATE(597), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(597), - [sym_key_path_expression] = STATE(597), - [sym_key_path_string_expression] = STATE(597), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(597), - [sym__equality_operator] = STATE(597), - [sym__comparison_operator] = STATE(597), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(597), - [sym__multiplicative_operator] = STATE(597), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(597), - [sym__referenceable_operator] = STATE(597), - [sym__eq_eq] = STATE(597), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1715), - [sym_real_literal] = ACTIONS(1717), - [sym_integer_literal] = ACTIONS(1715), - [sym_hex_literal] = ACTIONS(1717), - [sym_oct_literal] = ACTIONS(1717), - [sym_bin_literal] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1715), - [anon_sym_POUNDfileID] = ACTIONS(1717), - [anon_sym_POUNDfilePath] = ACTIONS(1717), - [anon_sym_POUNDline] = ACTIONS(1717), - [anon_sym_POUNDcolumn] = ACTIONS(1717), - [anon_sym_POUNDfunction] = ACTIONS(1717), - [anon_sym_POUNDdsohandle] = ACTIONS(1717), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ] = ACTIONS(1715), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_PERCENT] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1717), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1717), - [sym__plus_then_ws] = ACTIONS(1717), - [sym__minus_then_ws] = ACTIONS(1717), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [412] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1299), - [sym_boolean_literal] = STATE(1299), - [sym__string_literal] = STATE(1299), - [sym_line_string_literal] = STATE(1299), - [sym_multi_line_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_regex_literal] = STATE(1299), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1299), - [sym__unary_expression] = STATE(1299), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1299), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1299), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1299), - [sym_prefix_expression] = STATE(1299), - [sym_as_expression] = STATE(1299), - [sym_selector_expression] = STATE(1299), - [sym__binary_expression] = STATE(1299), - [sym_multiplicative_expression] = STATE(1299), - [sym_additive_expression] = STATE(1299), - [sym_range_expression] = STATE(1299), - [sym_infix_expression] = STATE(1299), - [sym_nil_coalescing_expression] = STATE(1299), - [sym_check_expression] = STATE(1299), - [sym_comparison_expression] = STATE(1299), - [sym_equality_expression] = STATE(1299), - [sym_conjunction_expression] = STATE(1299), - [sym_disjunction_expression] = STATE(1299), - [sym_bitwise_operation] = STATE(1299), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1299), - [sym_await_expression] = STATE(1299), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1299), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1299), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1299), - [sym_dictionary_literal] = STATE(1299), - [sym__special_literal] = STATE(1299), - [sym__playground_literal] = STATE(1299), - [sym_lambda_literal] = STATE(1299), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1299), - [sym_key_path_expression] = STATE(1299), - [sym_key_path_string_expression] = STATE(1299), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1299), - [sym__equality_operator] = STATE(1299), - [sym__comparison_operator] = STATE(1299), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1299), - [sym__multiplicative_operator] = STATE(1299), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1299), - [sym__referenceable_operator] = STATE(1299), - [sym__eq_eq] = STATE(1299), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1719), - [sym_real_literal] = ACTIONS(1721), - [sym_integer_literal] = ACTIONS(1719), - [sym_hex_literal] = ACTIONS(1721), - [sym_oct_literal] = ACTIONS(1721), - [sym_bin_literal] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1719), - [anon_sym_POUNDfileID] = ACTIONS(1721), - [anon_sym_POUNDfilePath] = ACTIONS(1721), - [anon_sym_POUNDline] = ACTIONS(1721), - [anon_sym_POUNDcolumn] = ACTIONS(1721), - [anon_sym_POUNDfunction] = ACTIONS(1721), - [anon_sym_POUNDdsohandle] = ACTIONS(1721), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1721), - [anon_sym_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1721), - [sym__plus_then_ws] = ACTIONS(1721), - [sym__minus_then_ws] = ACTIONS(1721), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [413] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1258), - [sym_boolean_literal] = STATE(1258), - [sym__string_literal] = STATE(1258), - [sym_line_string_literal] = STATE(1258), - [sym_multi_line_string_literal] = STATE(1258), - [sym_raw_string_literal] = STATE(1258), - [sym_regex_literal] = STATE(1258), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1258), - [sym__unary_expression] = STATE(1258), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1258), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1258), - [sym__range_operator] = STATE(381), - [sym_open_end_range_expression] = STATE(1258), - [sym_prefix_expression] = STATE(1258), - [sym_as_expression] = STATE(1258), - [sym_selector_expression] = STATE(1258), - [sym__binary_expression] = STATE(1258), - [sym_multiplicative_expression] = STATE(1258), - [sym_additive_expression] = STATE(1258), - [sym_range_expression] = STATE(1258), - [sym_infix_expression] = STATE(1258), - [sym_nil_coalescing_expression] = STATE(1258), - [sym_check_expression] = STATE(1258), - [sym_comparison_expression] = STATE(1258), - [sym_equality_expression] = STATE(1258), - [sym_conjunction_expression] = STATE(1258), - [sym_disjunction_expression] = STATE(1258), - [sym_bitwise_operation] = STATE(1258), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1258), - [sym_await_expression] = STATE(1258), - [sym__await_operator] = STATE(377), - [sym_ternary_expression] = STATE(1258), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1258), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1258), - [sym_dictionary_literal] = STATE(1258), - [sym__special_literal] = STATE(1258), - [sym__playground_literal] = STATE(1258), - [sym_lambda_literal] = STATE(1258), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1258), - [sym_key_path_expression] = STATE(1258), - [sym_key_path_string_expression] = STATE(1258), - [sym__try_operator] = STATE(373), - [sym__assignment_and_operator] = STATE(1258), - [sym__equality_operator] = STATE(1258), - [sym__comparison_operator] = STATE(1258), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(381), - [sym__additive_operator] = STATE(1258), - [sym__multiplicative_operator] = STATE(1258), - [sym__prefix_unary_operator] = STATE(367), - [sym_directly_assignable_expression] = STATE(4528), - [sym_assignment] = STATE(1258), - [sym__referenceable_operator] = STATE(1258), - [sym__eq_eq] = STATE(1258), - [sym__dot] = STATE(367), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1723), - [sym_real_literal] = ACTIONS(1725), - [sym_integer_literal] = ACTIONS(1723), - [sym_hex_literal] = ACTIONS(1725), - [sym_oct_literal] = ACTIONS(1725), - [sym_bin_literal] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(789), - [anon_sym_POUNDfile] = ACTIONS(1723), - [anon_sym_POUNDfileID] = ACTIONS(1725), - [anon_sym_POUNDfilePath] = ACTIONS(1725), - [anon_sym_POUNDline] = ACTIONS(1725), - [anon_sym_POUNDcolumn] = ACTIONS(1725), - [anon_sym_POUNDfunction] = ACTIONS(1725), - [anon_sym_POUNDdsohandle] = ACTIONS(1725), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(803), - [anon_sym_try_BANG] = ACTIONS(805), - [anon_sym_try_QMARK] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1725), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1723), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(781), - [sym__eq_eq_custom] = ACTIONS(1725), - [sym__plus_then_ws] = ACTIONS(1725), - [sym__minus_then_ws] = ACTIONS(1725), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [414] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1237), - [sym_boolean_literal] = STATE(1237), - [sym__string_literal] = STATE(1237), - [sym_line_string_literal] = STATE(1237), - [sym_multi_line_string_literal] = STATE(1237), - [sym_raw_string_literal] = STATE(1237), - [sym_regex_literal] = STATE(1237), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1237), - [sym__unary_expression] = STATE(1237), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1237), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1237), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1237), - [sym_prefix_expression] = STATE(1237), - [sym_as_expression] = STATE(1237), - [sym_selector_expression] = STATE(1237), - [sym__binary_expression] = STATE(1237), - [sym_multiplicative_expression] = STATE(1237), - [sym_additive_expression] = STATE(1237), - [sym_range_expression] = STATE(1237), - [sym_infix_expression] = STATE(1237), - [sym_nil_coalescing_expression] = STATE(1237), - [sym_check_expression] = STATE(1237), - [sym_comparison_expression] = STATE(1237), - [sym_equality_expression] = STATE(1237), - [sym_conjunction_expression] = STATE(1237), - [sym_disjunction_expression] = STATE(1237), - [sym_bitwise_operation] = STATE(1237), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1237), - [sym_await_expression] = STATE(1237), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1237), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1237), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1237), - [sym_dictionary_literal] = STATE(1237), - [sym__special_literal] = STATE(1237), - [sym__playground_literal] = STATE(1237), - [sym_lambda_literal] = STATE(1237), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1237), - [sym_key_path_expression] = STATE(1237), - [sym_key_path_string_expression] = STATE(1237), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1237), - [sym__equality_operator] = STATE(1237), - [sym__comparison_operator] = STATE(1237), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1237), - [sym__multiplicative_operator] = STATE(1237), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1237), - [sym__referenceable_operator] = STATE(1237), - [sym__eq_eq] = STATE(1237), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1727), - [sym_real_literal] = ACTIONS(1729), - [sym_integer_literal] = ACTIONS(1727), - [sym_hex_literal] = ACTIONS(1729), - [sym_oct_literal] = ACTIONS(1729), - [sym_bin_literal] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1727), - [anon_sym_POUNDfileID] = ACTIONS(1729), - [anon_sym_POUNDfilePath] = ACTIONS(1729), - [anon_sym_POUNDline] = ACTIONS(1729), - [anon_sym_POUNDcolumn] = ACTIONS(1729), - [anon_sym_POUNDfunction] = ACTIONS(1729), - [anon_sym_POUNDdsohandle] = ACTIONS(1729), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1727), - [anon_sym_PERCENT] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1729), - [sym__plus_then_ws] = ACTIONS(1729), - [sym__minus_then_ws] = ACTIONS(1729), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [415] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1337), - [sym_boolean_literal] = STATE(1337), - [sym__string_literal] = STATE(1337), - [sym_line_string_literal] = STATE(1337), - [sym_multi_line_string_literal] = STATE(1337), - [sym_raw_string_literal] = STATE(1337), - [sym_regex_literal] = STATE(1337), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1337), - [sym__unary_expression] = STATE(1337), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1337), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1337), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1337), - [sym_prefix_expression] = STATE(1337), - [sym_as_expression] = STATE(1337), - [sym_selector_expression] = STATE(1337), - [sym__binary_expression] = STATE(1337), - [sym_multiplicative_expression] = STATE(1337), - [sym_additive_expression] = STATE(1337), - [sym_range_expression] = STATE(1337), - [sym_infix_expression] = STATE(1337), - [sym_nil_coalescing_expression] = STATE(1337), - [sym_check_expression] = STATE(1337), - [sym_comparison_expression] = STATE(1337), - [sym_equality_expression] = STATE(1337), - [sym_conjunction_expression] = STATE(1337), - [sym_disjunction_expression] = STATE(1337), - [sym_bitwise_operation] = STATE(1337), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1337), - [sym_await_expression] = STATE(1337), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1337), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1337), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1337), - [sym_dictionary_literal] = STATE(1337), - [sym__special_literal] = STATE(1337), - [sym__playground_literal] = STATE(1337), - [sym_lambda_literal] = STATE(1337), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1337), - [sym_key_path_expression] = STATE(1337), - [sym_key_path_string_expression] = STATE(1337), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1337), - [sym__equality_operator] = STATE(1337), - [sym__comparison_operator] = STATE(1337), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1337), - [sym__multiplicative_operator] = STATE(1337), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1337), - [sym__referenceable_operator] = STATE(1337), - [sym__eq_eq] = STATE(1337), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1731), - [sym_real_literal] = ACTIONS(1733), - [sym_integer_literal] = ACTIONS(1731), - [sym_hex_literal] = ACTIONS(1733), - [sym_oct_literal] = ACTIONS(1733), - [sym_bin_literal] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1731), - [anon_sym_POUNDfileID] = ACTIONS(1733), - [anon_sym_POUNDfilePath] = ACTIONS(1733), - [anon_sym_POUNDline] = ACTIONS(1733), - [anon_sym_POUNDcolumn] = ACTIONS(1733), - [anon_sym_POUNDfunction] = ACTIONS(1733), - [anon_sym_POUNDdsohandle] = ACTIONS(1733), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1733), - [anon_sym_DASH_EQ] = ACTIONS(1733), - [anon_sym_STAR_EQ] = ACTIONS(1733), - [anon_sym_SLASH_EQ] = ACTIONS(1733), - [anon_sym_PERCENT_EQ] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1733), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(1731), - [anon_sym_PERCENT] = ACTIONS(1731), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1733), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1733), - [sym__plus_then_ws] = ACTIONS(1733), - [sym__minus_then_ws] = ACTIONS(1733), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [416] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1197), - [sym_boolean_literal] = STATE(1197), - [sym__string_literal] = STATE(1197), - [sym_line_string_literal] = STATE(1197), - [sym_multi_line_string_literal] = STATE(1197), - [sym_raw_string_literal] = STATE(1197), - [sym_regex_literal] = STATE(1197), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1197), - [sym__unary_expression] = STATE(1197), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1197), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1197), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1197), - [sym_prefix_expression] = STATE(1197), - [sym_as_expression] = STATE(1197), - [sym_selector_expression] = STATE(1197), - [sym__binary_expression] = STATE(1197), - [sym_multiplicative_expression] = STATE(1197), - [sym_additive_expression] = STATE(1197), - [sym_range_expression] = STATE(1197), - [sym_infix_expression] = STATE(1197), - [sym_nil_coalescing_expression] = STATE(1197), - [sym_check_expression] = STATE(1197), - [sym_comparison_expression] = STATE(1197), - [sym_equality_expression] = STATE(1197), - [sym_conjunction_expression] = STATE(1197), - [sym_disjunction_expression] = STATE(1197), - [sym_bitwise_operation] = STATE(1197), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1197), - [sym_await_expression] = STATE(1197), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1197), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1197), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1197), - [sym_dictionary_literal] = STATE(1197), - [sym__special_literal] = STATE(1197), - [sym__playground_literal] = STATE(1197), - [sym_lambda_literal] = STATE(1197), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1197), - [sym_key_path_expression] = STATE(1197), - [sym_key_path_string_expression] = STATE(1197), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1197), - [sym__equality_operator] = STATE(1197), - [sym__comparison_operator] = STATE(1197), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1197), - [sym__multiplicative_operator] = STATE(1197), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1197), - [sym__referenceable_operator] = STATE(1197), - [sym__eq_eq] = STATE(1197), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1735), - [sym_real_literal] = ACTIONS(1737), - [sym_integer_literal] = ACTIONS(1735), - [sym_hex_literal] = ACTIONS(1737), - [sym_oct_literal] = ACTIONS(1737), - [sym_bin_literal] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1735), - [anon_sym_POUNDfileID] = ACTIONS(1737), - [anon_sym_POUNDfilePath] = ACTIONS(1737), - [anon_sym_POUNDline] = ACTIONS(1737), - [anon_sym_POUNDcolumn] = ACTIONS(1737), - [anon_sym_POUNDfunction] = ACTIONS(1737), - [anon_sym_POUNDdsohandle] = ACTIONS(1737), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_STAR_EQ] = ACTIONS(1737), - [anon_sym_SLASH_EQ] = ACTIONS(1737), - [anon_sym_PERCENT_EQ] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_PERCENT] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1737), - [anon_sym_GT_GT] = ACTIONS(1737), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1737), - [sym__plus_then_ws] = ACTIONS(1737), - [sym__minus_then_ws] = ACTIONS(1737), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [417] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1297), - [sym_boolean_literal] = STATE(1297), - [sym__string_literal] = STATE(1297), - [sym_line_string_literal] = STATE(1297), - [sym_multi_line_string_literal] = STATE(1297), - [sym_raw_string_literal] = STATE(1297), - [sym_regex_literal] = STATE(1297), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1297), - [sym__unary_expression] = STATE(1297), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1297), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1297), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1297), - [sym_prefix_expression] = STATE(1297), - [sym_as_expression] = STATE(1297), - [sym_selector_expression] = STATE(1297), - [sym__binary_expression] = STATE(1297), - [sym_multiplicative_expression] = STATE(1297), - [sym_additive_expression] = STATE(1297), - [sym_range_expression] = STATE(1297), - [sym_infix_expression] = STATE(1297), - [sym_nil_coalescing_expression] = STATE(1297), - [sym_check_expression] = STATE(1297), - [sym_comparison_expression] = STATE(1297), - [sym_equality_expression] = STATE(1297), - [sym_conjunction_expression] = STATE(1297), - [sym_disjunction_expression] = STATE(1297), - [sym_bitwise_operation] = STATE(1297), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1297), - [sym_await_expression] = STATE(1297), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1297), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1297), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1297), - [sym_dictionary_literal] = STATE(1297), - [sym__special_literal] = STATE(1297), - [sym__playground_literal] = STATE(1297), - [sym_lambda_literal] = STATE(1297), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1297), - [sym_key_path_expression] = STATE(1297), - [sym_key_path_string_expression] = STATE(1297), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1297), - [sym__equality_operator] = STATE(1297), - [sym__comparison_operator] = STATE(1297), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1297), - [sym__multiplicative_operator] = STATE(1297), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1297), - [sym__referenceable_operator] = STATE(1297), - [sym__eq_eq] = STATE(1297), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1739), - [sym_real_literal] = ACTIONS(1741), - [sym_integer_literal] = ACTIONS(1739), - [sym_hex_literal] = ACTIONS(1741), - [sym_oct_literal] = ACTIONS(1741), - [sym_bin_literal] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1739), - [anon_sym_POUNDfileID] = ACTIONS(1741), - [anon_sym_POUNDfilePath] = ACTIONS(1741), - [anon_sym_POUNDline] = ACTIONS(1741), - [anon_sym_POUNDcolumn] = ACTIONS(1741), - [anon_sym_POUNDfunction] = ACTIONS(1741), - [anon_sym_POUNDdsohandle] = ACTIONS(1741), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1741), - [anon_sym_DASH_EQ] = ACTIONS(1741), - [anon_sym_STAR_EQ] = ACTIONS(1741), - [anon_sym_SLASH_EQ] = ACTIONS(1741), - [anon_sym_PERCENT_EQ] = ACTIONS(1741), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1741), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(1741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1741), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1741), - [sym__plus_then_ws] = ACTIONS(1741), - [sym__minus_then_ws] = ACTIONS(1741), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [418] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(596), - [sym_boolean_literal] = STATE(596), - [sym__string_literal] = STATE(596), - [sym_line_string_literal] = STATE(596), - [sym_multi_line_string_literal] = STATE(596), - [sym_raw_string_literal] = STATE(596), - [sym_regex_literal] = STATE(596), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(596), - [sym__unary_expression] = STATE(596), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(596), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(596), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(596), - [sym_prefix_expression] = STATE(596), - [sym_as_expression] = STATE(596), - [sym_selector_expression] = STATE(596), - [sym__binary_expression] = STATE(596), - [sym_multiplicative_expression] = STATE(596), - [sym_additive_expression] = STATE(596), - [sym_range_expression] = STATE(596), - [sym_infix_expression] = STATE(596), - [sym_nil_coalescing_expression] = STATE(596), - [sym_check_expression] = STATE(596), - [sym_comparison_expression] = STATE(596), - [sym_equality_expression] = STATE(596), - [sym_conjunction_expression] = STATE(596), - [sym_disjunction_expression] = STATE(596), - [sym_bitwise_operation] = STATE(596), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(596), - [sym_await_expression] = STATE(596), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(596), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(596), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(596), - [sym_dictionary_literal] = STATE(596), - [sym__special_literal] = STATE(596), - [sym__playground_literal] = STATE(596), - [sym_lambda_literal] = STATE(596), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(596), - [sym_key_path_expression] = STATE(596), - [sym_key_path_string_expression] = STATE(596), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(596), - [sym__equality_operator] = STATE(596), - [sym__comparison_operator] = STATE(596), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(596), - [sym__multiplicative_operator] = STATE(596), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(596), - [sym__referenceable_operator] = STATE(596), - [sym__eq_eq] = STATE(596), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1743), - [sym_real_literal] = ACTIONS(1745), - [sym_integer_literal] = ACTIONS(1743), - [sym_hex_literal] = ACTIONS(1745), - [sym_oct_literal] = ACTIONS(1745), - [sym_bin_literal] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(1743), - [anon_sym_POUNDfileID] = ACTIONS(1745), - [anon_sym_POUNDfilePath] = ACTIONS(1745), - [anon_sym_POUNDline] = ACTIONS(1745), - [anon_sym_POUNDcolumn] = ACTIONS(1745), - [anon_sym_POUNDfunction] = ACTIONS(1745), - [anon_sym_POUNDdsohandle] = ACTIONS(1745), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(1745), - [anon_sym_DASH_EQ] = ACTIONS(1745), - [anon_sym_STAR_EQ] = ACTIONS(1745), - [anon_sym_SLASH_EQ] = ACTIONS(1745), - [anon_sym_PERCENT_EQ] = ACTIONS(1745), - [anon_sym_EQ] = ACTIONS(1743), - [anon_sym_BANG_EQ] = ACTIONS(1743), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1745), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1745), - [anon_sym_GT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_PERCENT] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1743), - [anon_sym_LT_LT] = ACTIONS(1745), - [anon_sym_GT_GT] = ACTIONS(1745), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(1745), - [sym__plus_then_ws] = ACTIONS(1745), - [sym__minus_then_ws] = ACTIONS(1745), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [419] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1149), - [sym_boolean_literal] = STATE(1149), - [sym__string_literal] = STATE(1149), - [sym_line_string_literal] = STATE(1149), - [sym_multi_line_string_literal] = STATE(1149), - [sym_raw_string_literal] = STATE(1149), - [sym_regex_literal] = STATE(1149), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1149), - [sym__unary_expression] = STATE(1149), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1149), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1149), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1149), - [sym_prefix_expression] = STATE(1149), - [sym_as_expression] = STATE(1149), - [sym_selector_expression] = STATE(1149), - [sym__binary_expression] = STATE(1149), - [sym_multiplicative_expression] = STATE(1149), - [sym_additive_expression] = STATE(1149), - [sym_range_expression] = STATE(1149), - [sym_infix_expression] = STATE(1149), - [sym_nil_coalescing_expression] = STATE(1149), - [sym_check_expression] = STATE(1149), - [sym_comparison_expression] = STATE(1149), - [sym_equality_expression] = STATE(1149), - [sym_conjunction_expression] = STATE(1149), - [sym_disjunction_expression] = STATE(1149), - [sym_bitwise_operation] = STATE(1149), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1149), - [sym_await_expression] = STATE(1149), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1149), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1149), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1149), - [sym_dictionary_literal] = STATE(1149), - [sym__special_literal] = STATE(1149), - [sym__playground_literal] = STATE(1149), - [sym_lambda_literal] = STATE(1149), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1149), - [sym_key_path_expression] = STATE(1149), - [sym_key_path_string_expression] = STATE(1149), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1149), - [sym__equality_operator] = STATE(1149), - [sym__comparison_operator] = STATE(1149), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1149), - [sym__multiplicative_operator] = STATE(1149), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1149), - [sym__referenceable_operator] = STATE(1149), - [sym__eq_eq] = STATE(1149), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1747), - [sym_real_literal] = ACTIONS(1749), - [sym_integer_literal] = ACTIONS(1747), - [sym_hex_literal] = ACTIONS(1749), - [sym_oct_literal] = ACTIONS(1749), - [sym_bin_literal] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1747), - [anon_sym_POUNDfileID] = ACTIONS(1749), - [anon_sym_POUNDfilePath] = ACTIONS(1749), - [anon_sym_POUNDline] = ACTIONS(1749), - [anon_sym_POUNDcolumn] = ACTIONS(1749), - [anon_sym_POUNDfunction] = ACTIONS(1749), - [anon_sym_POUNDdsohandle] = ACTIONS(1749), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1749), - [anon_sym_DASH_EQ] = ACTIONS(1749), - [anon_sym_STAR_EQ] = ACTIONS(1749), - [anon_sym_SLASH_EQ] = ACTIONS(1749), - [anon_sym_PERCENT_EQ] = ACTIONS(1749), - [anon_sym_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1749), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1749), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_SLASH] = ACTIONS(1747), - [anon_sym_PERCENT] = ACTIONS(1747), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_CARET] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1749), - [anon_sym_GT_GT] = ACTIONS(1749), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1749), - [sym__plus_then_ws] = ACTIONS(1749), - [sym__minus_then_ws] = ACTIONS(1749), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [420] = { - [sym_simple_identifier] = STATE(1813), - [sym__basic_literal] = STATE(1199), - [sym_boolean_literal] = STATE(1199), - [sym__string_literal] = STATE(1199), - [sym_line_string_literal] = STATE(1199), - [sym_multi_line_string_literal] = STATE(1199), - [sym_raw_string_literal] = STATE(1199), - [sym_regex_literal] = STATE(1199), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(1199), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1199), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1199), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1199), - [sym_prefix_expression] = STATE(1199), - [sym_as_expression] = STATE(1199), - [sym_selector_expression] = STATE(1199), - [sym__binary_expression] = STATE(1199), - [sym_multiplicative_expression] = STATE(1199), - [sym_additive_expression] = STATE(1199), - [sym_range_expression] = STATE(1199), - [sym_infix_expression] = STATE(1199), - [sym_nil_coalescing_expression] = STATE(1199), - [sym_check_expression] = STATE(1199), - [sym_comparison_expression] = STATE(1199), - [sym_equality_expression] = STATE(1199), - [sym_conjunction_expression] = STATE(1199), - [sym_disjunction_expression] = STATE(1199), - [sym_bitwise_operation] = STATE(1199), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1199), - [sym_await_expression] = STATE(1199), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1199), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1199), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1199), - [sym_dictionary_literal] = STATE(1199), - [sym__special_literal] = STATE(1199), - [sym__playground_literal] = STATE(1199), - [sym_lambda_literal] = STATE(1199), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1199), - [sym_key_path_expression] = STATE(1199), - [sym_key_path_string_expression] = STATE(1199), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1199), - [sym__equality_operator] = STATE(1199), - [sym__comparison_operator] = STATE(1199), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1199), - [sym__multiplicative_operator] = STATE(1199), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1199), - [sym__referenceable_operator] = STATE(1199), - [sym__eq_eq] = STATE(1199), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1751), - [sym_real_literal] = ACTIONS(1753), - [sym_integer_literal] = ACTIONS(1751), - [sym_hex_literal] = ACTIONS(1753), - [sym_oct_literal] = ACTIONS(1753), - [sym_bin_literal] = ACTIONS(1753), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1751), - [anon_sym_POUNDfileID] = ACTIONS(1753), - [anon_sym_POUNDfilePath] = ACTIONS(1753), - [anon_sym_POUNDline] = ACTIONS(1753), - [anon_sym_POUNDcolumn] = ACTIONS(1753), - [anon_sym_POUNDfunction] = ACTIONS(1753), - [anon_sym_POUNDdsohandle] = ACTIONS(1753), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1753), - [anon_sym_DASH_EQ] = ACTIONS(1753), - [anon_sym_STAR_EQ] = ACTIONS(1753), - [anon_sym_SLASH_EQ] = ACTIONS(1753), - [anon_sym_PERCENT_EQ] = ACTIONS(1753), - [anon_sym_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1753), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_SLASH] = ACTIONS(1751), - [anon_sym_PERCENT] = ACTIONS(1751), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1753), - [anon_sym_GT_GT] = ACTIONS(1753), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1753), - [sym__plus_then_ws] = ACTIONS(1753), - [sym__minus_then_ws] = ACTIONS(1753), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [421] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1290), - [sym_boolean_literal] = STATE(1290), - [sym__string_literal] = STATE(1290), - [sym_line_string_literal] = STATE(1290), - [sym_multi_line_string_literal] = STATE(1290), - [sym_raw_string_literal] = STATE(1290), - [sym_regex_literal] = STATE(1290), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1290), - [sym__unary_expression] = STATE(1290), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1290), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1290), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1290), - [sym_prefix_expression] = STATE(1290), - [sym_as_expression] = STATE(1290), - [sym_selector_expression] = STATE(1290), - [sym__binary_expression] = STATE(1290), - [sym_multiplicative_expression] = STATE(1290), - [sym_additive_expression] = STATE(1290), - [sym_range_expression] = STATE(1290), - [sym_infix_expression] = STATE(1290), - [sym_nil_coalescing_expression] = STATE(1290), - [sym_check_expression] = STATE(1290), - [sym_comparison_expression] = STATE(1290), - [sym_equality_expression] = STATE(1290), - [sym_conjunction_expression] = STATE(1290), - [sym_disjunction_expression] = STATE(1290), - [sym_bitwise_operation] = STATE(1290), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1290), - [sym_await_expression] = STATE(1290), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1290), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1290), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1290), - [sym_dictionary_literal] = STATE(1290), - [sym__special_literal] = STATE(1290), - [sym__playground_literal] = STATE(1290), - [sym_lambda_literal] = STATE(1290), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1290), - [sym_key_path_expression] = STATE(1290), - [sym_key_path_string_expression] = STATE(1290), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1290), - [sym__equality_operator] = STATE(1290), - [sym__comparison_operator] = STATE(1290), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1290), - [sym__multiplicative_operator] = STATE(1290), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1290), - [sym__referenceable_operator] = STATE(1290), - [sym__eq_eq] = STATE(1290), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1755), - [sym_real_literal] = ACTIONS(1757), - [sym_integer_literal] = ACTIONS(1755), - [sym_hex_literal] = ACTIONS(1757), - [sym_oct_literal] = ACTIONS(1757), - [sym_bin_literal] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_GT] = ACTIONS(1755), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1755), - [anon_sym_POUNDfileID] = ACTIONS(1757), - [anon_sym_POUNDfilePath] = ACTIONS(1757), - [anon_sym_POUNDline] = ACTIONS(1757), - [anon_sym_POUNDcolumn] = ACTIONS(1757), - [anon_sym_POUNDfunction] = ACTIONS(1757), - [anon_sym_POUNDdsohandle] = ACTIONS(1757), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1757), - [anon_sym_DASH_EQ] = ACTIONS(1757), - [anon_sym_STAR_EQ] = ACTIONS(1757), - [anon_sym_SLASH_EQ] = ACTIONS(1757), - [anon_sym_PERCENT_EQ] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1755), - [anon_sym_BANG_EQ] = ACTIONS(1755), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1757), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1757), - [anon_sym_LT_EQ] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_PERCENT] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1755), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1757), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1757), - [sym__plus_then_ws] = ACTIONS(1757), - [sym__minus_then_ws] = ACTIONS(1757), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [422] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1196), - [sym_boolean_literal] = STATE(1196), - [sym__string_literal] = STATE(1196), - [sym_line_string_literal] = STATE(1196), - [sym_multi_line_string_literal] = STATE(1196), - [sym_raw_string_literal] = STATE(1196), - [sym_regex_literal] = STATE(1196), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(1196), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1196), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1196), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1196), - [sym_prefix_expression] = STATE(1196), - [sym_as_expression] = STATE(1196), - [sym_selector_expression] = STATE(1196), - [sym__binary_expression] = STATE(1196), - [sym_multiplicative_expression] = STATE(1196), - [sym_additive_expression] = STATE(1196), - [sym_range_expression] = STATE(1196), - [sym_infix_expression] = STATE(1196), - [sym_nil_coalescing_expression] = STATE(1196), - [sym_check_expression] = STATE(1196), - [sym_comparison_expression] = STATE(1196), - [sym_equality_expression] = STATE(1196), - [sym_conjunction_expression] = STATE(1196), - [sym_disjunction_expression] = STATE(1196), - [sym_bitwise_operation] = STATE(1196), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1196), - [sym_await_expression] = STATE(1196), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1196), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1196), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1196), - [sym_dictionary_literal] = STATE(1196), - [sym__special_literal] = STATE(1196), - [sym__playground_literal] = STATE(1196), - [sym_lambda_literal] = STATE(1196), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1196), - [sym_key_path_expression] = STATE(1196), - [sym_key_path_string_expression] = STATE(1196), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1196), - [sym__equality_operator] = STATE(1196), - [sym__comparison_operator] = STATE(1196), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1196), - [sym__multiplicative_operator] = STATE(1196), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1196), - [sym__referenceable_operator] = STATE(1196), - [sym__eq_eq] = STATE(1196), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1759), - [sym_real_literal] = ACTIONS(1761), - [sym_integer_literal] = ACTIONS(1759), - [sym_hex_literal] = ACTIONS(1761), - [sym_oct_literal] = ACTIONS(1761), - [sym_bin_literal] = ACTIONS(1761), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_GT] = ACTIONS(1759), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1759), - [anon_sym_POUNDfileID] = ACTIONS(1761), - [anon_sym_POUNDfilePath] = ACTIONS(1761), - [anon_sym_POUNDline] = ACTIONS(1761), - [anon_sym_POUNDcolumn] = ACTIONS(1761), - [anon_sym_POUNDfunction] = ACTIONS(1761), - [anon_sym_POUNDdsohandle] = ACTIONS(1761), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1761), - [anon_sym_DASH_EQ] = ACTIONS(1761), - [anon_sym_STAR_EQ] = ACTIONS(1761), - [anon_sym_SLASH_EQ] = ACTIONS(1761), - [anon_sym_PERCENT_EQ] = ACTIONS(1761), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1761), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1761), - [anon_sym_LT_EQ] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_PERCENT] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(1761), - [anon_sym_GT_GT] = ACTIONS(1761), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1761), - [sym__plus_then_ws] = ACTIONS(1761), - [sym__minus_then_ws] = ACTIONS(1761), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [423] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1312), - [sym_boolean_literal] = STATE(1312), - [sym__string_literal] = STATE(1312), - [sym_line_string_literal] = STATE(1312), - [sym_multi_line_string_literal] = STATE(1312), - [sym_raw_string_literal] = STATE(1312), - [sym_regex_literal] = STATE(1312), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1312), - [sym__unary_expression] = STATE(1312), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1312), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1312), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1312), - [sym_prefix_expression] = STATE(1312), - [sym_as_expression] = STATE(1312), - [sym_selector_expression] = STATE(1312), - [sym__binary_expression] = STATE(1312), - [sym_multiplicative_expression] = STATE(1312), - [sym_additive_expression] = STATE(1312), - [sym_range_expression] = STATE(1312), - [sym_infix_expression] = STATE(1312), - [sym_nil_coalescing_expression] = STATE(1312), - [sym_check_expression] = STATE(1312), - [sym_comparison_expression] = STATE(1312), - [sym_equality_expression] = STATE(1312), - [sym_conjunction_expression] = STATE(1312), - [sym_disjunction_expression] = STATE(1312), - [sym_bitwise_operation] = STATE(1312), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1312), - [sym_await_expression] = STATE(1312), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1312), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1312), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1312), - [sym_dictionary_literal] = STATE(1312), - [sym__special_literal] = STATE(1312), - [sym__playground_literal] = STATE(1312), - [sym_lambda_literal] = STATE(1312), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1312), - [sym_key_path_expression] = STATE(1312), - [sym_key_path_string_expression] = STATE(1312), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1312), - [sym__equality_operator] = STATE(1312), - [sym__comparison_operator] = STATE(1312), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1312), - [sym__multiplicative_operator] = STATE(1312), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1312), - [sym__referenceable_operator] = STATE(1312), - [sym__eq_eq] = STATE(1312), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1763), - [sym_real_literal] = ACTIONS(1765), - [sym_integer_literal] = ACTIONS(1763), - [sym_hex_literal] = ACTIONS(1765), - [sym_oct_literal] = ACTIONS(1765), - [sym_bin_literal] = ACTIONS(1765), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1763), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1763), - [anon_sym_POUNDfileID] = ACTIONS(1765), - [anon_sym_POUNDfilePath] = ACTIONS(1765), - [anon_sym_POUNDline] = ACTIONS(1765), - [anon_sym_POUNDcolumn] = ACTIONS(1765), - [anon_sym_POUNDfunction] = ACTIONS(1765), - [anon_sym_POUNDdsohandle] = ACTIONS(1765), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1765), - [anon_sym_STAR_EQ] = ACTIONS(1765), - [anon_sym_SLASH_EQ] = ACTIONS(1765), - [anon_sym_PERCENT_EQ] = ACTIONS(1765), - [anon_sym_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1765), - [anon_sym_GT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_PERCENT] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1765), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1765), - [sym__plus_then_ws] = ACTIONS(1765), - [sym__minus_then_ws] = ACTIONS(1765), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [424] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1325), - [sym_boolean_literal] = STATE(1325), - [sym__string_literal] = STATE(1325), - [sym_line_string_literal] = STATE(1325), - [sym_multi_line_string_literal] = STATE(1325), - [sym_raw_string_literal] = STATE(1325), - [sym_regex_literal] = STATE(1325), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1325), - [sym__unary_expression] = STATE(1325), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1325), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1325), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1325), - [sym_prefix_expression] = STATE(1325), - [sym_as_expression] = STATE(1325), - [sym_selector_expression] = STATE(1325), - [sym__binary_expression] = STATE(1325), - [sym_multiplicative_expression] = STATE(1325), - [sym_additive_expression] = STATE(1325), - [sym_range_expression] = STATE(1325), - [sym_infix_expression] = STATE(1325), - [sym_nil_coalescing_expression] = STATE(1325), - [sym_check_expression] = STATE(1325), - [sym_comparison_expression] = STATE(1325), - [sym_equality_expression] = STATE(1325), - [sym_conjunction_expression] = STATE(1325), - [sym_disjunction_expression] = STATE(1325), - [sym_bitwise_operation] = STATE(1325), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1325), - [sym_await_expression] = STATE(1325), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1325), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1325), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1325), - [sym_dictionary_literal] = STATE(1325), - [sym__special_literal] = STATE(1325), - [sym__playground_literal] = STATE(1325), - [sym_lambda_literal] = STATE(1325), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1325), - [sym_key_path_expression] = STATE(1325), - [sym_key_path_string_expression] = STATE(1325), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1325), - [sym__equality_operator] = STATE(1325), - [sym__comparison_operator] = STATE(1325), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1325), - [sym__multiplicative_operator] = STATE(1325), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1325), - [sym__referenceable_operator] = STATE(1325), - [sym__eq_eq] = STATE(1325), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1767), - [sym_real_literal] = ACTIONS(1769), - [sym_integer_literal] = ACTIONS(1767), - [sym_hex_literal] = ACTIONS(1769), - [sym_oct_literal] = ACTIONS(1769), - [sym_bin_literal] = ACTIONS(1769), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1767), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1767), - [anon_sym_POUNDfileID] = ACTIONS(1769), - [anon_sym_POUNDfilePath] = ACTIONS(1769), - [anon_sym_POUNDline] = ACTIONS(1769), - [anon_sym_POUNDcolumn] = ACTIONS(1769), - [anon_sym_POUNDfunction] = ACTIONS(1769), - [anon_sym_POUNDdsohandle] = ACTIONS(1769), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1769), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_EQ] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_SLASH] = ACTIONS(1767), - [anon_sym_PERCENT] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_LT_LT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1769), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1769), - [sym__plus_then_ws] = ACTIONS(1769), - [sym__minus_then_ws] = ACTIONS(1769), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [425] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1276), - [sym_boolean_literal] = STATE(1276), - [sym__string_literal] = STATE(1276), - [sym_line_string_literal] = STATE(1276), - [sym_multi_line_string_literal] = STATE(1276), - [sym_raw_string_literal] = STATE(1276), - [sym_regex_literal] = STATE(1276), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1276), - [sym__unary_expression] = STATE(1276), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1276), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1276), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1276), - [sym_prefix_expression] = STATE(1276), - [sym_as_expression] = STATE(1276), - [sym_selector_expression] = STATE(1276), - [sym__binary_expression] = STATE(1276), - [sym_multiplicative_expression] = STATE(1276), - [sym_additive_expression] = STATE(1276), - [sym_range_expression] = STATE(1276), - [sym_infix_expression] = STATE(1276), - [sym_nil_coalescing_expression] = STATE(1276), - [sym_check_expression] = STATE(1276), - [sym_comparison_expression] = STATE(1276), - [sym_equality_expression] = STATE(1276), - [sym_conjunction_expression] = STATE(1276), - [sym_disjunction_expression] = STATE(1276), - [sym_bitwise_operation] = STATE(1276), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1276), - [sym_await_expression] = STATE(1276), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1276), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1276), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1276), - [sym_dictionary_literal] = STATE(1276), - [sym__special_literal] = STATE(1276), - [sym__playground_literal] = STATE(1276), - [sym_lambda_literal] = STATE(1276), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1276), - [sym_key_path_expression] = STATE(1276), - [sym_key_path_string_expression] = STATE(1276), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1276), - [sym__equality_operator] = STATE(1276), - [sym__comparison_operator] = STATE(1276), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1276), - [sym__multiplicative_operator] = STATE(1276), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1276), - [sym__referenceable_operator] = STATE(1276), - [sym__eq_eq] = STATE(1276), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1771), - [sym_real_literal] = ACTIONS(1773), - [sym_integer_literal] = ACTIONS(1771), - [sym_hex_literal] = ACTIONS(1773), - [sym_oct_literal] = ACTIONS(1773), - [sym_bin_literal] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_GT] = ACTIONS(1771), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1771), - [anon_sym_POUNDfileID] = ACTIONS(1773), - [anon_sym_POUNDfilePath] = ACTIONS(1773), - [anon_sym_POUNDline] = ACTIONS(1773), - [anon_sym_POUNDcolumn] = ACTIONS(1773), - [anon_sym_POUNDfunction] = ACTIONS(1773), - [anon_sym_POUNDdsohandle] = ACTIONS(1773), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1773), - [anon_sym_DASH_EQ] = ACTIONS(1773), - [anon_sym_STAR_EQ] = ACTIONS(1773), - [anon_sym_SLASH_EQ] = ACTIONS(1773), - [anon_sym_PERCENT_EQ] = ACTIONS(1773), - [anon_sym_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1773), - [anon_sym_LT_EQ] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1773), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_PERCENT] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1773), - [sym__plus_then_ws] = ACTIONS(1773), - [sym__minus_then_ws] = ACTIONS(1773), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [426] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1198), - [sym_boolean_literal] = STATE(1198), - [sym__string_literal] = STATE(1198), - [sym_line_string_literal] = STATE(1198), - [sym_multi_line_string_literal] = STATE(1198), - [sym_raw_string_literal] = STATE(1198), - [sym_regex_literal] = STATE(1198), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1198), - [sym__unary_expression] = STATE(1198), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1198), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1198), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1198), - [sym_prefix_expression] = STATE(1198), - [sym_as_expression] = STATE(1198), - [sym_selector_expression] = STATE(1198), - [sym__binary_expression] = STATE(1198), - [sym_multiplicative_expression] = STATE(1198), - [sym_additive_expression] = STATE(1198), - [sym_range_expression] = STATE(1198), - [sym_infix_expression] = STATE(1198), - [sym_nil_coalescing_expression] = STATE(1198), - [sym_check_expression] = STATE(1198), - [sym_comparison_expression] = STATE(1198), - [sym_equality_expression] = STATE(1198), - [sym_conjunction_expression] = STATE(1198), - [sym_disjunction_expression] = STATE(1198), - [sym_bitwise_operation] = STATE(1198), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1198), - [sym_await_expression] = STATE(1198), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1198), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1198), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1198), - [sym_dictionary_literal] = STATE(1198), - [sym__special_literal] = STATE(1198), - [sym__playground_literal] = STATE(1198), - [sym_lambda_literal] = STATE(1198), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1198), - [sym_key_path_expression] = STATE(1198), - [sym_key_path_string_expression] = STATE(1198), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1198), - [sym__equality_operator] = STATE(1198), - [sym__comparison_operator] = STATE(1198), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1198), - [sym__multiplicative_operator] = STATE(1198), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1198), - [sym__referenceable_operator] = STATE(1198), - [sym__eq_eq] = STATE(1198), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1775), - [sym_real_literal] = ACTIONS(1777), - [sym_integer_literal] = ACTIONS(1775), - [sym_hex_literal] = ACTIONS(1777), - [sym_oct_literal] = ACTIONS(1777), - [sym_bin_literal] = ACTIONS(1777), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_GT] = ACTIONS(1775), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1775), - [anon_sym_POUNDfileID] = ACTIONS(1777), - [anon_sym_POUNDfilePath] = ACTIONS(1777), - [anon_sym_POUNDline] = ACTIONS(1777), - [anon_sym_POUNDcolumn] = ACTIONS(1777), - [anon_sym_POUNDfunction] = ACTIONS(1777), - [anon_sym_POUNDdsohandle] = ACTIONS(1777), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1777), - [anon_sym_DASH_EQ] = ACTIONS(1777), - [anon_sym_STAR_EQ] = ACTIONS(1777), - [anon_sym_SLASH_EQ] = ACTIONS(1777), - [anon_sym_PERCENT_EQ] = ACTIONS(1777), - [anon_sym_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1777), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1777), - [anon_sym_LT_EQ] = ACTIONS(1777), - [anon_sym_GT_EQ] = ACTIONS(1777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1775), - [anon_sym_PERCENT] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_LT_LT] = ACTIONS(1777), - [anon_sym_GT_GT] = ACTIONS(1777), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1777), - [sym__plus_then_ws] = ACTIONS(1777), - [sym__minus_then_ws] = ACTIONS(1777), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [427] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1322), - [sym_boolean_literal] = STATE(1322), - [sym__string_literal] = STATE(1322), - [sym_line_string_literal] = STATE(1322), - [sym_multi_line_string_literal] = STATE(1322), - [sym_raw_string_literal] = STATE(1322), - [sym_regex_literal] = STATE(1322), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1322), - [sym__unary_expression] = STATE(1322), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1322), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1322), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1322), - [sym_prefix_expression] = STATE(1322), - [sym_as_expression] = STATE(1322), - [sym_selector_expression] = STATE(1322), - [sym__binary_expression] = STATE(1322), - [sym_multiplicative_expression] = STATE(1322), - [sym_additive_expression] = STATE(1322), - [sym_range_expression] = STATE(1322), - [sym_infix_expression] = STATE(1322), - [sym_nil_coalescing_expression] = STATE(1322), - [sym_check_expression] = STATE(1322), - [sym_comparison_expression] = STATE(1322), - [sym_equality_expression] = STATE(1322), - [sym_conjunction_expression] = STATE(1322), - [sym_disjunction_expression] = STATE(1322), - [sym_bitwise_operation] = STATE(1322), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1322), - [sym_await_expression] = STATE(1322), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1322), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1322), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1322), - [sym_dictionary_literal] = STATE(1322), - [sym__special_literal] = STATE(1322), - [sym__playground_literal] = STATE(1322), - [sym_lambda_literal] = STATE(1322), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1322), - [sym_key_path_expression] = STATE(1322), - [sym_key_path_string_expression] = STATE(1322), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1322), - [sym__equality_operator] = STATE(1322), - [sym__comparison_operator] = STATE(1322), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1322), - [sym__multiplicative_operator] = STATE(1322), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1322), - [sym__referenceable_operator] = STATE(1322), - [sym__eq_eq] = STATE(1322), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1779), - [sym_real_literal] = ACTIONS(1781), - [sym_integer_literal] = ACTIONS(1779), - [sym_hex_literal] = ACTIONS(1781), - [sym_oct_literal] = ACTIONS(1781), - [sym_bin_literal] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_GT] = ACTIONS(1779), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1779), - [anon_sym_POUNDfileID] = ACTIONS(1781), - [anon_sym_POUNDfilePath] = ACTIONS(1781), - [anon_sym_POUNDline] = ACTIONS(1781), - [anon_sym_POUNDcolumn] = ACTIONS(1781), - [anon_sym_POUNDfunction] = ACTIONS(1781), - [anon_sym_POUNDdsohandle] = ACTIONS(1781), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1781), - [anon_sym_DASH_EQ] = ACTIONS(1781), - [anon_sym_STAR_EQ] = ACTIONS(1781), - [anon_sym_SLASH_EQ] = ACTIONS(1781), - [anon_sym_PERCENT_EQ] = ACTIONS(1781), - [anon_sym_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ] = ACTIONS(1779), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1781), - [anon_sym_GT_EQ] = ACTIONS(1781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_PERCENT] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1779), - [anon_sym_LT_LT] = ACTIONS(1781), - [anon_sym_GT_GT] = ACTIONS(1781), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1781), - [sym__plus_then_ws] = ACTIONS(1781), - [sym__minus_then_ws] = ACTIONS(1781), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [428] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1349), - [sym_boolean_literal] = STATE(1349), - [sym__string_literal] = STATE(1349), - [sym_line_string_literal] = STATE(1349), - [sym_multi_line_string_literal] = STATE(1349), - [sym_raw_string_literal] = STATE(1349), - [sym_regex_literal] = STATE(1349), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1349), - [sym__unary_expression] = STATE(1349), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1349), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1349), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1349), - [sym_prefix_expression] = STATE(1349), - [sym_as_expression] = STATE(1349), - [sym_selector_expression] = STATE(1349), - [sym__binary_expression] = STATE(1349), - [sym_multiplicative_expression] = STATE(1349), - [sym_additive_expression] = STATE(1349), - [sym_range_expression] = STATE(1349), - [sym_infix_expression] = STATE(1349), - [sym_nil_coalescing_expression] = STATE(1349), - [sym_check_expression] = STATE(1349), - [sym_comparison_expression] = STATE(1349), - [sym_equality_expression] = STATE(1349), - [sym_conjunction_expression] = STATE(1349), - [sym_disjunction_expression] = STATE(1349), - [sym_bitwise_operation] = STATE(1349), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1349), - [sym_await_expression] = STATE(1349), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1349), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1349), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1349), - [sym_dictionary_literal] = STATE(1349), - [sym__special_literal] = STATE(1349), - [sym__playground_literal] = STATE(1349), - [sym_lambda_literal] = STATE(1349), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1349), - [sym_key_path_expression] = STATE(1349), - [sym_key_path_string_expression] = STATE(1349), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1349), - [sym__equality_operator] = STATE(1349), - [sym__comparison_operator] = STATE(1349), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1349), - [sym__multiplicative_operator] = STATE(1349), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1349), - [sym__referenceable_operator] = STATE(1349), - [sym__eq_eq] = STATE(1349), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1783), - [sym_real_literal] = ACTIONS(1785), - [sym_integer_literal] = ACTIONS(1783), - [sym_hex_literal] = ACTIONS(1785), - [sym_oct_literal] = ACTIONS(1785), - [sym_bin_literal] = ACTIONS(1785), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_GT] = ACTIONS(1783), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1783), - [anon_sym_POUNDfileID] = ACTIONS(1785), - [anon_sym_POUNDfilePath] = ACTIONS(1785), - [anon_sym_POUNDline] = ACTIONS(1785), - [anon_sym_POUNDcolumn] = ACTIONS(1785), - [anon_sym_POUNDfunction] = ACTIONS(1785), - [anon_sym_POUNDdsohandle] = ACTIONS(1785), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1785), - [anon_sym_DASH_EQ] = ACTIONS(1785), - [anon_sym_STAR_EQ] = ACTIONS(1785), - [anon_sym_SLASH_EQ] = ACTIONS(1785), - [anon_sym_PERCENT_EQ] = ACTIONS(1785), - [anon_sym_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1785), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1785), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1785), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1785), - [sym__plus_then_ws] = ACTIONS(1785), - [sym__minus_then_ws] = ACTIONS(1785), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [429] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1294), - [sym_boolean_literal] = STATE(1294), - [sym__string_literal] = STATE(1294), - [sym_line_string_literal] = STATE(1294), - [sym_multi_line_string_literal] = STATE(1294), - [sym_raw_string_literal] = STATE(1294), - [sym_regex_literal] = STATE(1294), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1294), - [sym__unary_expression] = STATE(1294), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1294), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1294), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1294), - [sym_prefix_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_selector_expression] = STATE(1294), - [sym__binary_expression] = STATE(1294), - [sym_multiplicative_expression] = STATE(1294), - [sym_additive_expression] = STATE(1294), - [sym_range_expression] = STATE(1294), - [sym_infix_expression] = STATE(1294), - [sym_nil_coalescing_expression] = STATE(1294), - [sym_check_expression] = STATE(1294), - [sym_comparison_expression] = STATE(1294), - [sym_equality_expression] = STATE(1294), - [sym_conjunction_expression] = STATE(1294), - [sym_disjunction_expression] = STATE(1294), - [sym_bitwise_operation] = STATE(1294), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1294), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1294), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1294), - [sym_dictionary_literal] = STATE(1294), - [sym__special_literal] = STATE(1294), - [sym__playground_literal] = STATE(1294), - [sym_lambda_literal] = STATE(1294), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1294), - [sym_key_path_expression] = STATE(1294), - [sym_key_path_string_expression] = STATE(1294), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1294), - [sym__equality_operator] = STATE(1294), - [sym__comparison_operator] = STATE(1294), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1294), - [sym__multiplicative_operator] = STATE(1294), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1294), - [sym__referenceable_operator] = STATE(1294), - [sym__eq_eq] = STATE(1294), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1477), - [sym_real_literal] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [sym_hex_literal] = ACTIONS(1479), - [sym_oct_literal] = ACTIONS(1479), - [sym_bin_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1477), - [anon_sym_POUNDfileID] = ACTIONS(1479), - [anon_sym_POUNDfilePath] = ACTIONS(1479), - [anon_sym_POUNDline] = ACTIONS(1479), - [anon_sym_POUNDcolumn] = ACTIONS(1479), - [anon_sym_POUNDfunction] = ACTIONS(1479), - [anon_sym_POUNDdsohandle] = ACTIONS(1479), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1479), - [sym__plus_then_ws] = ACTIONS(1479), - [sym__minus_then_ws] = ACTIONS(1479), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [430] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1359), - [sym_boolean_literal] = STATE(1359), - [sym__string_literal] = STATE(1359), - [sym_line_string_literal] = STATE(1359), - [sym_multi_line_string_literal] = STATE(1359), - [sym_raw_string_literal] = STATE(1359), - [sym_regex_literal] = STATE(1359), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1359), - [sym__unary_expression] = STATE(1359), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1359), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1359), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1359), - [sym_prefix_expression] = STATE(1359), - [sym_as_expression] = STATE(1359), - [sym_selector_expression] = STATE(1359), - [sym__binary_expression] = STATE(1359), - [sym_multiplicative_expression] = STATE(1359), - [sym_additive_expression] = STATE(1359), - [sym_range_expression] = STATE(1359), - [sym_infix_expression] = STATE(1359), - [sym_nil_coalescing_expression] = STATE(1359), - [sym_check_expression] = STATE(1359), - [sym_comparison_expression] = STATE(1359), - [sym_equality_expression] = STATE(1359), - [sym_conjunction_expression] = STATE(1359), - [sym_disjunction_expression] = STATE(1359), - [sym_bitwise_operation] = STATE(1359), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1359), - [sym_await_expression] = STATE(1359), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1359), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1359), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1359), - [sym_dictionary_literal] = STATE(1359), - [sym__special_literal] = STATE(1359), - [sym__playground_literal] = STATE(1359), - [sym_lambda_literal] = STATE(1359), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1359), - [sym_key_path_expression] = STATE(1359), - [sym_key_path_string_expression] = STATE(1359), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1359), - [sym__equality_operator] = STATE(1359), - [sym__comparison_operator] = STATE(1359), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1359), - [sym__multiplicative_operator] = STATE(1359), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1359), - [sym__referenceable_operator] = STATE(1359), - [sym__eq_eq] = STATE(1359), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1787), - [sym_real_literal] = ACTIONS(1789), - [sym_integer_literal] = ACTIONS(1787), - [sym_hex_literal] = ACTIONS(1789), - [sym_oct_literal] = ACTIONS(1789), - [sym_bin_literal] = ACTIONS(1789), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1787), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1787), - [anon_sym_POUNDfileID] = ACTIONS(1789), - [anon_sym_POUNDfilePath] = ACTIONS(1789), - [anon_sym_POUNDline] = ACTIONS(1789), - [anon_sym_POUNDcolumn] = ACTIONS(1789), - [anon_sym_POUNDfunction] = ACTIONS(1789), - [anon_sym_POUNDdsohandle] = ACTIONS(1789), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1789), - [anon_sym_DASH_EQ] = ACTIONS(1789), - [anon_sym_STAR_EQ] = ACTIONS(1789), - [anon_sym_SLASH_EQ] = ACTIONS(1789), - [anon_sym_PERCENT_EQ] = ACTIONS(1789), - [anon_sym_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_SLASH] = ACTIONS(1787), - [anon_sym_PERCENT] = ACTIONS(1787), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1789), - [anon_sym_CARET] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_GT_GT] = ACTIONS(1789), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1789), - [sym__plus_then_ws] = ACTIONS(1789), - [sym__minus_then_ws] = ACTIONS(1789), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [431] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1340), - [sym_boolean_literal] = STATE(1340), - [sym__string_literal] = STATE(1340), - [sym_line_string_literal] = STATE(1340), - [sym_multi_line_string_literal] = STATE(1340), - [sym_raw_string_literal] = STATE(1340), - [sym_regex_literal] = STATE(1340), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1340), - [sym__unary_expression] = STATE(1340), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1340), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1340), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1340), - [sym_prefix_expression] = STATE(1340), - [sym_as_expression] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym__binary_expression] = STATE(1340), - [sym_multiplicative_expression] = STATE(1340), - [sym_additive_expression] = STATE(1340), - [sym_range_expression] = STATE(1340), - [sym_infix_expression] = STATE(1340), - [sym_nil_coalescing_expression] = STATE(1340), - [sym_check_expression] = STATE(1340), - [sym_comparison_expression] = STATE(1340), - [sym_equality_expression] = STATE(1340), - [sym_conjunction_expression] = STATE(1340), - [sym_disjunction_expression] = STATE(1340), - [sym_bitwise_operation] = STATE(1340), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1340), - [sym_await_expression] = STATE(1340), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1340), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1340), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1340), - [sym_dictionary_literal] = STATE(1340), - [sym__special_literal] = STATE(1340), - [sym__playground_literal] = STATE(1340), - [sym_lambda_literal] = STATE(1340), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1340), - [sym_key_path_expression] = STATE(1340), - [sym_key_path_string_expression] = STATE(1340), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1340), - [sym__equality_operator] = STATE(1340), - [sym__comparison_operator] = STATE(1340), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1340), - [sym__multiplicative_operator] = STATE(1340), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1340), - [sym__referenceable_operator] = STATE(1340), - [sym__eq_eq] = STATE(1340), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1791), - [sym_real_literal] = ACTIONS(1793), - [sym_integer_literal] = ACTIONS(1791), - [sym_hex_literal] = ACTIONS(1793), - [sym_oct_literal] = ACTIONS(1793), - [sym_bin_literal] = ACTIONS(1793), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1791), - [anon_sym_POUNDfileID] = ACTIONS(1793), - [anon_sym_POUNDfilePath] = ACTIONS(1793), - [anon_sym_POUNDline] = ACTIONS(1793), - [anon_sym_POUNDcolumn] = ACTIONS(1793), - [anon_sym_POUNDfunction] = ACTIONS(1793), - [anon_sym_POUNDdsohandle] = ACTIONS(1793), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1793), - [anon_sym_DASH_EQ] = ACTIONS(1793), - [anon_sym_STAR_EQ] = ACTIONS(1793), - [anon_sym_SLASH_EQ] = ACTIONS(1793), - [anon_sym_PERCENT_EQ] = ACTIONS(1793), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1793), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1793), - [anon_sym_LT_EQ] = ACTIONS(1793), - [anon_sym_GT_EQ] = ACTIONS(1793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1793), - [anon_sym_GT_GT] = ACTIONS(1793), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1793), - [sym__plus_then_ws] = ACTIONS(1793), - [sym__minus_then_ws] = ACTIONS(1793), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [432] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1148), - [sym_boolean_literal] = STATE(1148), - [sym__string_literal] = STATE(1148), - [sym_line_string_literal] = STATE(1148), - [sym_multi_line_string_literal] = STATE(1148), - [sym_raw_string_literal] = STATE(1148), - [sym_regex_literal] = STATE(1148), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1148), - [sym__unary_expression] = STATE(1148), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1148), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1148), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1148), - [sym_prefix_expression] = STATE(1148), - [sym_as_expression] = STATE(1148), - [sym_selector_expression] = STATE(1148), - [sym__binary_expression] = STATE(1148), - [sym_multiplicative_expression] = STATE(1148), - [sym_additive_expression] = STATE(1148), - [sym_range_expression] = STATE(1148), - [sym_infix_expression] = STATE(1148), - [sym_nil_coalescing_expression] = STATE(1148), - [sym_check_expression] = STATE(1148), - [sym_comparison_expression] = STATE(1148), - [sym_equality_expression] = STATE(1148), - [sym_conjunction_expression] = STATE(1148), - [sym_disjunction_expression] = STATE(1148), - [sym_bitwise_operation] = STATE(1148), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1148), - [sym_await_expression] = STATE(1148), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1148), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1148), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1148), - [sym_dictionary_literal] = STATE(1148), - [sym__special_literal] = STATE(1148), - [sym__playground_literal] = STATE(1148), - [sym_lambda_literal] = STATE(1148), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1148), - [sym_key_path_expression] = STATE(1148), - [sym_key_path_string_expression] = STATE(1148), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1148), - [sym__equality_operator] = STATE(1148), - [sym__comparison_operator] = STATE(1148), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1148), - [sym__multiplicative_operator] = STATE(1148), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1148), - [sym__referenceable_operator] = STATE(1148), - [sym__eq_eq] = STATE(1148), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1795), - [sym_real_literal] = ACTIONS(1797), - [sym_integer_literal] = ACTIONS(1795), - [sym_hex_literal] = ACTIONS(1797), - [sym_oct_literal] = ACTIONS(1797), - [sym_bin_literal] = ACTIONS(1797), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_GT] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1795), - [anon_sym_POUNDfileID] = ACTIONS(1797), - [anon_sym_POUNDfilePath] = ACTIONS(1797), - [anon_sym_POUNDline] = ACTIONS(1797), - [anon_sym_POUNDcolumn] = ACTIONS(1797), - [anon_sym_POUNDfunction] = ACTIONS(1797), - [anon_sym_POUNDdsohandle] = ACTIONS(1797), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1797), - [anon_sym_DASH_EQ] = ACTIONS(1797), - [anon_sym_STAR_EQ] = ACTIONS(1797), - [anon_sym_SLASH_EQ] = ACTIONS(1797), - [anon_sym_PERCENT_EQ] = ACTIONS(1797), - [anon_sym_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1797), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1797), - [anon_sym_LT_EQ] = ACTIONS(1797), - [anon_sym_GT_EQ] = ACTIONS(1797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_SLASH] = ACTIONS(1795), - [anon_sym_PERCENT] = ACTIONS(1795), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1797), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1797), - [sym__plus_then_ws] = ACTIONS(1797), - [sym__minus_then_ws] = ACTIONS(1797), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [433] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1298), - [sym_boolean_literal] = STATE(1298), - [sym__string_literal] = STATE(1298), - [sym_line_string_literal] = STATE(1298), - [sym_multi_line_string_literal] = STATE(1298), - [sym_raw_string_literal] = STATE(1298), - [sym_regex_literal] = STATE(1298), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1298), - [sym__unary_expression] = STATE(1298), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1298), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1298), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1298), - [sym_prefix_expression] = STATE(1298), - [sym_as_expression] = STATE(1298), - [sym_selector_expression] = STATE(1298), - [sym__binary_expression] = STATE(1298), - [sym_multiplicative_expression] = STATE(1298), - [sym_additive_expression] = STATE(1298), - [sym_range_expression] = STATE(1298), - [sym_infix_expression] = STATE(1298), - [sym_nil_coalescing_expression] = STATE(1298), - [sym_check_expression] = STATE(1298), - [sym_comparison_expression] = STATE(1298), - [sym_equality_expression] = STATE(1298), - [sym_conjunction_expression] = STATE(1298), - [sym_disjunction_expression] = STATE(1298), - [sym_bitwise_operation] = STATE(1298), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1298), - [sym_await_expression] = STATE(1298), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1298), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1298), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1298), - [sym_dictionary_literal] = STATE(1298), - [sym__special_literal] = STATE(1298), - [sym__playground_literal] = STATE(1298), - [sym_lambda_literal] = STATE(1298), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1298), - [sym_key_path_expression] = STATE(1298), - [sym_key_path_string_expression] = STATE(1298), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1298), - [sym__equality_operator] = STATE(1298), - [sym__comparison_operator] = STATE(1298), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1298), - [sym__multiplicative_operator] = STATE(1298), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1298), - [sym__referenceable_operator] = STATE(1298), - [sym__eq_eq] = STATE(1298), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1799), - [sym_real_literal] = ACTIONS(1801), - [sym_integer_literal] = ACTIONS(1799), - [sym_hex_literal] = ACTIONS(1801), - [sym_oct_literal] = ACTIONS(1801), - [sym_bin_literal] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1799), - [anon_sym_POUNDfileID] = ACTIONS(1801), - [anon_sym_POUNDfilePath] = ACTIONS(1801), - [anon_sym_POUNDline] = ACTIONS(1801), - [anon_sym_POUNDcolumn] = ACTIONS(1801), - [anon_sym_POUNDfunction] = ACTIONS(1801), - [anon_sym_POUNDdsohandle] = ACTIONS(1801), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1801), - [anon_sym_DASH_EQ] = ACTIONS(1801), - [anon_sym_STAR_EQ] = ACTIONS(1801), - [anon_sym_SLASH_EQ] = ACTIONS(1801), - [anon_sym_PERCENT_EQ] = ACTIONS(1801), - [anon_sym_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1801), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), - [anon_sym_LT_EQ] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_SLASH] = ACTIONS(1799), - [anon_sym_PERCENT] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1799), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1801), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1801), - [sym__plus_then_ws] = ACTIONS(1801), - [sym__minus_then_ws] = ACTIONS(1801), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [434] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1317), - [sym_boolean_literal] = STATE(1317), - [sym__string_literal] = STATE(1317), - [sym_line_string_literal] = STATE(1317), - [sym_multi_line_string_literal] = STATE(1317), - [sym_raw_string_literal] = STATE(1317), - [sym_regex_literal] = STATE(1317), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1317), - [sym__unary_expression] = STATE(1317), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1317), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1317), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1317), - [sym_prefix_expression] = STATE(1317), - [sym_as_expression] = STATE(1317), - [sym_selector_expression] = STATE(1317), - [sym__binary_expression] = STATE(1317), - [sym_multiplicative_expression] = STATE(1317), - [sym_additive_expression] = STATE(1317), - [sym_range_expression] = STATE(1317), - [sym_infix_expression] = STATE(1317), - [sym_nil_coalescing_expression] = STATE(1317), - [sym_check_expression] = STATE(1317), - [sym_comparison_expression] = STATE(1317), - [sym_equality_expression] = STATE(1317), - [sym_conjunction_expression] = STATE(1317), - [sym_disjunction_expression] = STATE(1317), - [sym_bitwise_operation] = STATE(1317), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1317), - [sym_await_expression] = STATE(1317), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1317), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1317), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1317), - [sym_dictionary_literal] = STATE(1317), - [sym__special_literal] = STATE(1317), - [sym__playground_literal] = STATE(1317), - [sym_lambda_literal] = STATE(1317), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1317), - [sym_key_path_expression] = STATE(1317), - [sym_key_path_string_expression] = STATE(1317), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1317), - [sym__equality_operator] = STATE(1317), - [sym__comparison_operator] = STATE(1317), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1317), - [sym__multiplicative_operator] = STATE(1317), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1317), - [sym__referenceable_operator] = STATE(1317), - [sym__eq_eq] = STATE(1317), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1803), - [sym_real_literal] = ACTIONS(1805), - [sym_integer_literal] = ACTIONS(1803), - [sym_hex_literal] = ACTIONS(1805), - [sym_oct_literal] = ACTIONS(1805), - [sym_bin_literal] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1803), - [anon_sym_POUNDfileID] = ACTIONS(1805), - [anon_sym_POUNDfilePath] = ACTIONS(1805), - [anon_sym_POUNDline] = ACTIONS(1805), - [anon_sym_POUNDcolumn] = ACTIONS(1805), - [anon_sym_POUNDfunction] = ACTIONS(1805), - [anon_sym_POUNDdsohandle] = ACTIONS(1805), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1805), - [anon_sym_DASH_EQ] = ACTIONS(1805), - [anon_sym_STAR_EQ] = ACTIONS(1805), - [anon_sym_SLASH_EQ] = ACTIONS(1805), - [anon_sym_PERCENT_EQ] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1805), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_PERCENT] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(1803), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1805), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1805), - [sym__plus_then_ws] = ACTIONS(1805), - [sym__minus_then_ws] = ACTIONS(1805), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [435] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1277), - [sym_boolean_literal] = STATE(1277), - [sym__string_literal] = STATE(1277), - [sym_line_string_literal] = STATE(1277), - [sym_multi_line_string_literal] = STATE(1277), - [sym_raw_string_literal] = STATE(1277), - [sym_regex_literal] = STATE(1277), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1277), - [sym__unary_expression] = STATE(1277), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1277), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1277), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1277), - [sym_prefix_expression] = STATE(1277), - [sym_as_expression] = STATE(1277), - [sym_selector_expression] = STATE(1277), - [sym__binary_expression] = STATE(1277), - [sym_multiplicative_expression] = STATE(1277), - [sym_additive_expression] = STATE(1277), - [sym_range_expression] = STATE(1277), - [sym_infix_expression] = STATE(1277), - [sym_nil_coalescing_expression] = STATE(1277), - [sym_check_expression] = STATE(1277), - [sym_comparison_expression] = STATE(1277), - [sym_equality_expression] = STATE(1277), - [sym_conjunction_expression] = STATE(1277), - [sym_disjunction_expression] = STATE(1277), - [sym_bitwise_operation] = STATE(1277), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1277), - [sym_await_expression] = STATE(1277), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1277), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1277), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1277), - [sym_dictionary_literal] = STATE(1277), - [sym__special_literal] = STATE(1277), - [sym__playground_literal] = STATE(1277), - [sym_lambda_literal] = STATE(1277), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1277), - [sym_key_path_expression] = STATE(1277), - [sym_key_path_string_expression] = STATE(1277), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1277), - [sym__equality_operator] = STATE(1277), - [sym__comparison_operator] = STATE(1277), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1277), - [sym__multiplicative_operator] = STATE(1277), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1277), - [sym__referenceable_operator] = STATE(1277), - [sym__eq_eq] = STATE(1277), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1807), - [sym_real_literal] = ACTIONS(1809), - [sym_integer_literal] = ACTIONS(1807), - [sym_hex_literal] = ACTIONS(1809), - [sym_oct_literal] = ACTIONS(1809), - [sym_bin_literal] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1807), - [anon_sym_POUNDfileID] = ACTIONS(1809), - [anon_sym_POUNDfilePath] = ACTIONS(1809), - [anon_sym_POUNDline] = ACTIONS(1809), - [anon_sym_POUNDcolumn] = ACTIONS(1809), - [anon_sym_POUNDfunction] = ACTIONS(1809), - [anon_sym_POUNDdsohandle] = ACTIONS(1809), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1809), - [anon_sym_DASH_EQ] = ACTIONS(1809), - [anon_sym_STAR_EQ] = ACTIONS(1809), - [anon_sym_SLASH_EQ] = ACTIONS(1809), - [anon_sym_PERCENT_EQ] = ACTIONS(1809), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1809), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1809), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1809), - [sym__plus_then_ws] = ACTIONS(1809), - [sym__minus_then_ws] = ACTIONS(1809), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [436] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1331), - [sym_boolean_literal] = STATE(1331), - [sym__string_literal] = STATE(1331), - [sym_line_string_literal] = STATE(1331), - [sym_multi_line_string_literal] = STATE(1331), - [sym_raw_string_literal] = STATE(1331), - [sym_regex_literal] = STATE(1331), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1331), - [sym__unary_expression] = STATE(1331), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1331), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1331), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1331), - [sym_prefix_expression] = STATE(1331), - [sym_as_expression] = STATE(1331), - [sym_selector_expression] = STATE(1331), - [sym__binary_expression] = STATE(1331), - [sym_multiplicative_expression] = STATE(1331), - [sym_additive_expression] = STATE(1331), - [sym_range_expression] = STATE(1331), - [sym_infix_expression] = STATE(1331), - [sym_nil_coalescing_expression] = STATE(1331), - [sym_check_expression] = STATE(1331), - [sym_comparison_expression] = STATE(1331), - [sym_equality_expression] = STATE(1331), - [sym_conjunction_expression] = STATE(1331), - [sym_disjunction_expression] = STATE(1331), - [sym_bitwise_operation] = STATE(1331), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1331), - [sym_await_expression] = STATE(1331), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1331), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1331), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1331), - [sym_dictionary_literal] = STATE(1331), - [sym__special_literal] = STATE(1331), - [sym__playground_literal] = STATE(1331), - [sym_lambda_literal] = STATE(1331), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1331), - [sym_key_path_expression] = STATE(1331), - [sym_key_path_string_expression] = STATE(1331), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1331), - [sym__equality_operator] = STATE(1331), - [sym__comparison_operator] = STATE(1331), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1331), - [sym__multiplicative_operator] = STATE(1331), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1331), - [sym__referenceable_operator] = STATE(1331), - [sym__eq_eq] = STATE(1331), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1811), - [sym_real_literal] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1811), - [sym_hex_literal] = ACTIONS(1813), - [sym_oct_literal] = ACTIONS(1813), - [sym_bin_literal] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_GT] = ACTIONS(1811), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1811), - [anon_sym_POUNDfileID] = ACTIONS(1813), - [anon_sym_POUNDfilePath] = ACTIONS(1813), - [anon_sym_POUNDline] = ACTIONS(1813), - [anon_sym_POUNDcolumn] = ACTIONS(1813), - [anon_sym_POUNDfunction] = ACTIONS(1813), - [anon_sym_POUNDdsohandle] = ACTIONS(1813), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1813), - [anon_sym_DASH_EQ] = ACTIONS(1813), - [anon_sym_STAR_EQ] = ACTIONS(1813), - [anon_sym_SLASH_EQ] = ACTIONS(1813), - [anon_sym_PERCENT_EQ] = ACTIONS(1813), - [anon_sym_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1813), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1813), - [anon_sym_GT_EQ] = ACTIONS(1813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_PERCENT] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1813), - [sym__plus_then_ws] = ACTIONS(1813), - [sym__minus_then_ws] = ACTIONS(1813), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [437] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1280), - [sym_boolean_literal] = STATE(1280), - [sym__string_literal] = STATE(1280), - [sym_line_string_literal] = STATE(1280), - [sym_multi_line_string_literal] = STATE(1280), - [sym_raw_string_literal] = STATE(1280), - [sym_regex_literal] = STATE(1280), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1280), - [sym__unary_expression] = STATE(1280), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1280), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1280), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1280), - [sym_prefix_expression] = STATE(1280), - [sym_as_expression] = STATE(1280), - [sym_selector_expression] = STATE(1280), - [sym__binary_expression] = STATE(1280), - [sym_multiplicative_expression] = STATE(1280), - [sym_additive_expression] = STATE(1280), - [sym_range_expression] = STATE(1280), - [sym_infix_expression] = STATE(1280), - [sym_nil_coalescing_expression] = STATE(1280), - [sym_check_expression] = STATE(1280), - [sym_comparison_expression] = STATE(1280), - [sym_equality_expression] = STATE(1280), - [sym_conjunction_expression] = STATE(1280), - [sym_disjunction_expression] = STATE(1280), - [sym_bitwise_operation] = STATE(1280), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1280), - [sym_await_expression] = STATE(1280), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1280), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1280), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1280), - [sym_dictionary_literal] = STATE(1280), - [sym__special_literal] = STATE(1280), - [sym__playground_literal] = STATE(1280), - [sym_lambda_literal] = STATE(1280), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1280), - [sym_key_path_expression] = STATE(1280), - [sym_key_path_string_expression] = STATE(1280), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1280), - [sym__equality_operator] = STATE(1280), - [sym__comparison_operator] = STATE(1280), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1280), - [sym__multiplicative_operator] = STATE(1280), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1280), - [sym__referenceable_operator] = STATE(1280), - [sym__eq_eq] = STATE(1280), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1815), - [sym_real_literal] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1815), - [sym_hex_literal] = ACTIONS(1817), - [sym_oct_literal] = ACTIONS(1817), - [sym_bin_literal] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_GT] = ACTIONS(1815), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1815), - [anon_sym_POUNDfileID] = ACTIONS(1817), - [anon_sym_POUNDfilePath] = ACTIONS(1817), - [anon_sym_POUNDline] = ACTIONS(1817), - [anon_sym_POUNDcolumn] = ACTIONS(1817), - [anon_sym_POUNDfunction] = ACTIONS(1817), - [anon_sym_POUNDdsohandle] = ACTIONS(1817), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1817), - [anon_sym_DASH_EQ] = ACTIONS(1817), - [anon_sym_STAR_EQ] = ACTIONS(1817), - [anon_sym_SLASH_EQ] = ACTIONS(1817), - [anon_sym_PERCENT_EQ] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_PERCENT] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1817), - [sym__plus_then_ws] = ACTIONS(1817), - [sym__minus_then_ws] = ACTIONS(1817), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [438] = { - [sym_simple_identifier] = STATE(1802), - [sym__basic_literal] = STATE(1218), - [sym_boolean_literal] = STATE(1218), - [sym__string_literal] = STATE(1218), - [sym_line_string_literal] = STATE(1218), - [sym_multi_line_string_literal] = STATE(1218), - [sym_raw_string_literal] = STATE(1218), - [sym_regex_literal] = STATE(1218), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(1218), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1218), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1218), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1218), - [sym_prefix_expression] = STATE(1218), - [sym_as_expression] = STATE(1218), - [sym_selector_expression] = STATE(1218), - [sym__binary_expression] = STATE(1218), - [sym_multiplicative_expression] = STATE(1218), - [sym_additive_expression] = STATE(1218), - [sym_range_expression] = STATE(1218), - [sym_infix_expression] = STATE(1218), - [sym_nil_coalescing_expression] = STATE(1218), - [sym_check_expression] = STATE(1218), - [sym_comparison_expression] = STATE(1218), - [sym_equality_expression] = STATE(1218), - [sym_conjunction_expression] = STATE(1218), - [sym_disjunction_expression] = STATE(1218), - [sym_bitwise_operation] = STATE(1218), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1218), - [sym_await_expression] = STATE(1218), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1218), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1218), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1218), - [sym_dictionary_literal] = STATE(1218), - [sym__special_literal] = STATE(1218), - [sym__playground_literal] = STATE(1218), - [sym_lambda_literal] = STATE(1218), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1218), - [sym_key_path_expression] = STATE(1218), - [sym_key_path_string_expression] = STATE(1218), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1218), - [sym__equality_operator] = STATE(1218), - [sym__comparison_operator] = STATE(1218), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1218), - [sym__multiplicative_operator] = STATE(1218), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1218), - [sym__referenceable_operator] = STATE(1218), - [sym__eq_eq] = STATE(1218), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1819), - [sym_real_literal] = ACTIONS(1821), - [sym_integer_literal] = ACTIONS(1819), - [sym_hex_literal] = ACTIONS(1821), - [sym_oct_literal] = ACTIONS(1821), - [sym_bin_literal] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_GT] = ACTIONS(1819), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1819), - [anon_sym_POUNDfileID] = ACTIONS(1821), - [anon_sym_POUNDfilePath] = ACTIONS(1821), - [anon_sym_POUNDline] = ACTIONS(1821), - [anon_sym_POUNDcolumn] = ACTIONS(1821), - [anon_sym_POUNDfunction] = ACTIONS(1821), - [anon_sym_POUNDdsohandle] = ACTIONS(1821), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1821), - [anon_sym_DASH_EQ] = ACTIONS(1821), - [anon_sym_STAR_EQ] = ACTIONS(1821), - [anon_sym_SLASH_EQ] = ACTIONS(1821), - [anon_sym_PERCENT_EQ] = ACTIONS(1821), - [anon_sym_EQ] = ACTIONS(1819), - [anon_sym_BANG_EQ] = ACTIONS(1819), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1821), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1821), - [anon_sym_LT_EQ] = ACTIONS(1821), - [anon_sym_GT_EQ] = ACTIONS(1821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1819), - [anon_sym_PERCENT] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1821), - [anon_sym_GT_GT] = ACTIONS(1821), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1821), - [sym__plus_then_ws] = ACTIONS(1821), - [sym__minus_then_ws] = ACTIONS(1821), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [439] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1155), - [sym_boolean_literal] = STATE(1155), - [sym__string_literal] = STATE(1155), - [sym_line_string_literal] = STATE(1155), - [sym_multi_line_string_literal] = STATE(1155), - [sym_raw_string_literal] = STATE(1155), - [sym_regex_literal] = STATE(1155), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1155), - [sym__unary_expression] = STATE(1155), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1155), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1155), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1155), - [sym_prefix_expression] = STATE(1155), - [sym_as_expression] = STATE(1155), - [sym_selector_expression] = STATE(1155), - [sym__binary_expression] = STATE(1155), - [sym_multiplicative_expression] = STATE(1155), - [sym_additive_expression] = STATE(1155), - [sym_range_expression] = STATE(1155), - [sym_infix_expression] = STATE(1155), - [sym_nil_coalescing_expression] = STATE(1155), - [sym_check_expression] = STATE(1155), - [sym_comparison_expression] = STATE(1155), - [sym_equality_expression] = STATE(1155), - [sym_conjunction_expression] = STATE(1155), - [sym_disjunction_expression] = STATE(1155), - [sym_bitwise_operation] = STATE(1155), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1155), - [sym_await_expression] = STATE(1155), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1155), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1155), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1155), - [sym_dictionary_literal] = STATE(1155), - [sym__special_literal] = STATE(1155), - [sym__playground_literal] = STATE(1155), - [sym_lambda_literal] = STATE(1155), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1155), - [sym_key_path_expression] = STATE(1155), - [sym_key_path_string_expression] = STATE(1155), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1155), - [sym__equality_operator] = STATE(1155), - [sym__comparison_operator] = STATE(1155), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1155), - [sym__multiplicative_operator] = STATE(1155), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1155), - [sym__referenceable_operator] = STATE(1155), - [sym__eq_eq] = STATE(1155), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1823), - [sym_real_literal] = ACTIONS(1825), - [sym_integer_literal] = ACTIONS(1823), - [sym_hex_literal] = ACTIONS(1825), - [sym_oct_literal] = ACTIONS(1825), - [sym_bin_literal] = ACTIONS(1825), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1823), - [anon_sym_POUNDfileID] = ACTIONS(1825), - [anon_sym_POUNDfilePath] = ACTIONS(1825), - [anon_sym_POUNDline] = ACTIONS(1825), - [anon_sym_POUNDcolumn] = ACTIONS(1825), - [anon_sym_POUNDfunction] = ACTIONS(1825), - [anon_sym_POUNDdsohandle] = ACTIONS(1825), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1825), - [anon_sym_DASH_EQ] = ACTIONS(1825), - [anon_sym_STAR_EQ] = ACTIONS(1825), - [anon_sym_SLASH_EQ] = ACTIONS(1825), - [anon_sym_PERCENT_EQ] = ACTIONS(1825), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ] = ACTIONS(1823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1825), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1825), - [anon_sym_GT_EQ] = ACTIONS(1825), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_CARET] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1825), - [anon_sym_GT_GT] = ACTIONS(1825), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1825), - [sym__plus_then_ws] = ACTIONS(1825), - [sym__minus_then_ws] = ACTIONS(1825), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [440] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1281), - [sym_boolean_literal] = STATE(1281), - [sym__string_literal] = STATE(1281), - [sym_line_string_literal] = STATE(1281), - [sym_multi_line_string_literal] = STATE(1281), - [sym_raw_string_literal] = STATE(1281), - [sym_regex_literal] = STATE(1281), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1281), - [sym__unary_expression] = STATE(1281), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1281), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1281), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1281), - [sym_prefix_expression] = STATE(1281), - [sym_as_expression] = STATE(1281), - [sym_selector_expression] = STATE(1281), - [sym__binary_expression] = STATE(1281), - [sym_multiplicative_expression] = STATE(1281), - [sym_additive_expression] = STATE(1281), - [sym_range_expression] = STATE(1281), - [sym_infix_expression] = STATE(1281), - [sym_nil_coalescing_expression] = STATE(1281), - [sym_check_expression] = STATE(1281), - [sym_comparison_expression] = STATE(1281), - [sym_equality_expression] = STATE(1281), - [sym_conjunction_expression] = STATE(1281), - [sym_disjunction_expression] = STATE(1281), - [sym_bitwise_operation] = STATE(1281), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1281), - [sym_await_expression] = STATE(1281), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1281), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1281), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1281), - [sym_dictionary_literal] = STATE(1281), - [sym__special_literal] = STATE(1281), - [sym__playground_literal] = STATE(1281), - [sym_lambda_literal] = STATE(1281), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1281), - [sym_key_path_expression] = STATE(1281), - [sym_key_path_string_expression] = STATE(1281), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1281), - [sym__equality_operator] = STATE(1281), - [sym__comparison_operator] = STATE(1281), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1281), - [sym__multiplicative_operator] = STATE(1281), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1281), - [sym__referenceable_operator] = STATE(1281), - [sym__eq_eq] = STATE(1281), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1827), - [sym_real_literal] = ACTIONS(1829), - [sym_integer_literal] = ACTIONS(1827), - [sym_hex_literal] = ACTIONS(1829), - [sym_oct_literal] = ACTIONS(1829), - [sym_bin_literal] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1827), - [anon_sym_POUNDfileID] = ACTIONS(1829), - [anon_sym_POUNDfilePath] = ACTIONS(1829), - [anon_sym_POUNDline] = ACTIONS(1829), - [anon_sym_POUNDcolumn] = ACTIONS(1829), - [anon_sym_POUNDfunction] = ACTIONS(1829), - [anon_sym_POUNDdsohandle] = ACTIONS(1829), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1829), - [anon_sym_DASH_EQ] = ACTIONS(1829), - [anon_sym_STAR_EQ] = ACTIONS(1829), - [anon_sym_SLASH_EQ] = ACTIONS(1829), - [anon_sym_PERCENT_EQ] = ACTIONS(1829), - [anon_sym_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1829), - [anon_sym_LT_EQ] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_SLASH] = ACTIONS(1827), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1829), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1829), - [sym__plus_then_ws] = ACTIONS(1829), - [sym__minus_then_ws] = ACTIONS(1829), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [441] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1289), - [sym_boolean_literal] = STATE(1289), - [sym__string_literal] = STATE(1289), - [sym_line_string_literal] = STATE(1289), - [sym_multi_line_string_literal] = STATE(1289), - [sym_raw_string_literal] = STATE(1289), - [sym_regex_literal] = STATE(1289), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1289), - [sym__unary_expression] = STATE(1289), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1289), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1289), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1289), - [sym_prefix_expression] = STATE(1289), - [sym_as_expression] = STATE(1289), - [sym_selector_expression] = STATE(1289), - [sym__binary_expression] = STATE(1289), - [sym_multiplicative_expression] = STATE(1289), - [sym_additive_expression] = STATE(1289), - [sym_range_expression] = STATE(1289), - [sym_infix_expression] = STATE(1289), - [sym_nil_coalescing_expression] = STATE(1289), - [sym_check_expression] = STATE(1289), - [sym_comparison_expression] = STATE(1289), - [sym_equality_expression] = STATE(1289), - [sym_conjunction_expression] = STATE(1289), - [sym_disjunction_expression] = STATE(1289), - [sym_bitwise_operation] = STATE(1289), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1289), - [sym_await_expression] = STATE(1289), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1289), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1289), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1289), - [sym_dictionary_literal] = STATE(1289), - [sym__special_literal] = STATE(1289), - [sym__playground_literal] = STATE(1289), - [sym_lambda_literal] = STATE(1289), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1289), - [sym_key_path_expression] = STATE(1289), - [sym_key_path_string_expression] = STATE(1289), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1289), - [sym__equality_operator] = STATE(1289), - [sym__comparison_operator] = STATE(1289), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1289), - [sym__multiplicative_operator] = STATE(1289), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1289), - [sym__referenceable_operator] = STATE(1289), - [sym__eq_eq] = STATE(1289), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1831), - [sym_real_literal] = ACTIONS(1833), - [sym_integer_literal] = ACTIONS(1831), - [sym_hex_literal] = ACTIONS(1833), - [sym_oct_literal] = ACTIONS(1833), - [sym_bin_literal] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1831), - [anon_sym_POUNDfileID] = ACTIONS(1833), - [anon_sym_POUNDfilePath] = ACTIONS(1833), - [anon_sym_POUNDline] = ACTIONS(1833), - [anon_sym_POUNDcolumn] = ACTIONS(1833), - [anon_sym_POUNDfunction] = ACTIONS(1833), - [anon_sym_POUNDdsohandle] = ACTIONS(1833), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1833), - [anon_sym_DASH_EQ] = ACTIONS(1833), - [anon_sym_STAR_EQ] = ACTIONS(1833), - [anon_sym_SLASH_EQ] = ACTIONS(1833), - [anon_sym_PERCENT_EQ] = ACTIONS(1833), - [anon_sym_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1833), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_SLASH] = ACTIONS(1831), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1833), - [anon_sym_GT_GT] = ACTIONS(1833), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1833), - [sym__plus_then_ws] = ACTIONS(1833), - [sym__minus_then_ws] = ACTIONS(1833), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [442] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1195), - [sym_boolean_literal] = STATE(1195), - [sym__string_literal] = STATE(1195), - [sym_line_string_literal] = STATE(1195), - [sym_multi_line_string_literal] = STATE(1195), - [sym_raw_string_literal] = STATE(1195), - [sym_regex_literal] = STATE(1195), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(1195), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1195), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1195), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1195), - [sym_prefix_expression] = STATE(1195), - [sym_as_expression] = STATE(1195), - [sym_selector_expression] = STATE(1195), - [sym__binary_expression] = STATE(1195), - [sym_multiplicative_expression] = STATE(1195), - [sym_additive_expression] = STATE(1195), - [sym_range_expression] = STATE(1195), - [sym_infix_expression] = STATE(1195), - [sym_nil_coalescing_expression] = STATE(1195), - [sym_check_expression] = STATE(1195), - [sym_comparison_expression] = STATE(1195), - [sym_equality_expression] = STATE(1195), - [sym_conjunction_expression] = STATE(1195), - [sym_disjunction_expression] = STATE(1195), - [sym_bitwise_operation] = STATE(1195), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1195), - [sym_await_expression] = STATE(1195), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1195), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1195), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1195), - [sym_dictionary_literal] = STATE(1195), - [sym__special_literal] = STATE(1195), - [sym__playground_literal] = STATE(1195), - [sym_lambda_literal] = STATE(1195), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1195), - [sym_key_path_expression] = STATE(1195), - [sym_key_path_string_expression] = STATE(1195), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1195), - [sym__equality_operator] = STATE(1195), - [sym__comparison_operator] = STATE(1195), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1195), - [sym__multiplicative_operator] = STATE(1195), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1195), - [sym__referenceable_operator] = STATE(1195), - [sym__eq_eq] = STATE(1195), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1835), - [sym_real_literal] = ACTIONS(1837), - [sym_integer_literal] = ACTIONS(1835), - [sym_hex_literal] = ACTIONS(1837), - [sym_oct_literal] = ACTIONS(1837), - [sym_bin_literal] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1835), - [anon_sym_POUNDfileID] = ACTIONS(1837), - [anon_sym_POUNDfilePath] = ACTIONS(1837), - [anon_sym_POUNDline] = ACTIONS(1837), - [anon_sym_POUNDcolumn] = ACTIONS(1837), - [anon_sym_POUNDfunction] = ACTIONS(1837), - [anon_sym_POUNDdsohandle] = ACTIONS(1837), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1837), - [anon_sym_DASH_EQ] = ACTIONS(1837), - [anon_sym_STAR_EQ] = ACTIONS(1837), - [anon_sym_SLASH_EQ] = ACTIONS(1837), - [anon_sym_PERCENT_EQ] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1837), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1837), - [sym__plus_then_ws] = ACTIONS(1837), - [sym__minus_then_ws] = ACTIONS(1837), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [443] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1171), - [sym_boolean_literal] = STATE(1171), - [sym__string_literal] = STATE(1171), - [sym_line_string_literal] = STATE(1171), - [sym_multi_line_string_literal] = STATE(1171), - [sym_raw_string_literal] = STATE(1171), - [sym_regex_literal] = STATE(1171), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1171), - [sym__unary_expression] = STATE(1171), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1171), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1171), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1171), - [sym_prefix_expression] = STATE(1171), - [sym_as_expression] = STATE(1171), - [sym_selector_expression] = STATE(1171), - [sym__binary_expression] = STATE(1171), - [sym_multiplicative_expression] = STATE(1171), - [sym_additive_expression] = STATE(1171), - [sym_range_expression] = STATE(1171), - [sym_infix_expression] = STATE(1171), - [sym_nil_coalescing_expression] = STATE(1171), - [sym_check_expression] = STATE(1171), - [sym_comparison_expression] = STATE(1171), - [sym_equality_expression] = STATE(1171), - [sym_conjunction_expression] = STATE(1171), - [sym_disjunction_expression] = STATE(1171), - [sym_bitwise_operation] = STATE(1171), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1171), - [sym_await_expression] = STATE(1171), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1171), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1171), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1171), - [sym_dictionary_literal] = STATE(1171), - [sym__special_literal] = STATE(1171), - [sym__playground_literal] = STATE(1171), - [sym_lambda_literal] = STATE(1171), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1171), - [sym_key_path_expression] = STATE(1171), - [sym_key_path_string_expression] = STATE(1171), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1171), - [sym__equality_operator] = STATE(1171), - [sym__comparison_operator] = STATE(1171), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1171), - [sym__multiplicative_operator] = STATE(1171), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1171), - [sym__referenceable_operator] = STATE(1171), - [sym__eq_eq] = STATE(1171), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1839), - [sym_real_literal] = ACTIONS(1841), - [sym_integer_literal] = ACTIONS(1839), - [sym_hex_literal] = ACTIONS(1841), - [sym_oct_literal] = ACTIONS(1841), - [sym_bin_literal] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1839), - [anon_sym_POUNDfileID] = ACTIONS(1841), - [anon_sym_POUNDfilePath] = ACTIONS(1841), - [anon_sym_POUNDline] = ACTIONS(1841), - [anon_sym_POUNDcolumn] = ACTIONS(1841), - [anon_sym_POUNDfunction] = ACTIONS(1841), - [anon_sym_POUNDdsohandle] = ACTIONS(1841), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1841), - [anon_sym_DASH_EQ] = ACTIONS(1841), - [anon_sym_STAR_EQ] = ACTIONS(1841), - [anon_sym_SLASH_EQ] = ACTIONS(1841), - [anon_sym_PERCENT_EQ] = ACTIONS(1841), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1841), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1841), - [anon_sym_GT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_SLASH] = ACTIONS(1839), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1841), - [anon_sym_GT_GT] = ACTIONS(1841), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1841), - [sym__plus_then_ws] = ACTIONS(1841), - [sym__minus_then_ws] = ACTIONS(1841), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [444] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1225), - [sym_boolean_literal] = STATE(1225), - [sym__string_literal] = STATE(1225), - [sym_line_string_literal] = STATE(1225), - [sym_multi_line_string_literal] = STATE(1225), - [sym_raw_string_literal] = STATE(1225), - [sym_regex_literal] = STATE(1225), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(1225), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1225), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1225), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1225), - [sym_prefix_expression] = STATE(1225), - [sym_as_expression] = STATE(1225), - [sym_selector_expression] = STATE(1225), - [sym__binary_expression] = STATE(1225), - [sym_multiplicative_expression] = STATE(1225), - [sym_additive_expression] = STATE(1225), - [sym_range_expression] = STATE(1225), - [sym_infix_expression] = STATE(1225), - [sym_nil_coalescing_expression] = STATE(1225), - [sym_check_expression] = STATE(1225), - [sym_comparison_expression] = STATE(1225), - [sym_equality_expression] = STATE(1225), - [sym_conjunction_expression] = STATE(1225), - [sym_disjunction_expression] = STATE(1225), - [sym_bitwise_operation] = STATE(1225), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1225), - [sym_await_expression] = STATE(1225), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1225), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1225), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1225), - [sym_dictionary_literal] = STATE(1225), - [sym__special_literal] = STATE(1225), - [sym__playground_literal] = STATE(1225), - [sym_lambda_literal] = STATE(1225), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1225), - [sym_key_path_expression] = STATE(1225), - [sym_key_path_string_expression] = STATE(1225), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1225), - [sym__equality_operator] = STATE(1225), - [sym__comparison_operator] = STATE(1225), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1225), - [sym__multiplicative_operator] = STATE(1225), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1225), - [sym__referenceable_operator] = STATE(1225), - [sym__eq_eq] = STATE(1225), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1843), - [sym_real_literal] = ACTIONS(1845), - [sym_integer_literal] = ACTIONS(1843), - [sym_hex_literal] = ACTIONS(1845), - [sym_oct_literal] = ACTIONS(1845), - [sym_bin_literal] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1843), - [anon_sym_POUNDfileID] = ACTIONS(1845), - [anon_sym_POUNDfilePath] = ACTIONS(1845), - [anon_sym_POUNDline] = ACTIONS(1845), - [anon_sym_POUNDcolumn] = ACTIONS(1845), - [anon_sym_POUNDfunction] = ACTIONS(1845), - [anon_sym_POUNDdsohandle] = ACTIONS(1845), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1845), - [anon_sym_DASH_EQ] = ACTIONS(1845), - [anon_sym_STAR_EQ] = ACTIONS(1845), - [anon_sym_SLASH_EQ] = ACTIONS(1845), - [anon_sym_PERCENT_EQ] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1845), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1845), - [sym__plus_then_ws] = ACTIONS(1845), - [sym__minus_then_ws] = ACTIONS(1845), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [445] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1285), - [sym_boolean_literal] = STATE(1285), - [sym__string_literal] = STATE(1285), - [sym_line_string_literal] = STATE(1285), - [sym_multi_line_string_literal] = STATE(1285), - [sym_raw_string_literal] = STATE(1285), - [sym_regex_literal] = STATE(1285), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1285), - [sym__unary_expression] = STATE(1285), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1285), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1285), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1285), - [sym_prefix_expression] = STATE(1285), - [sym_as_expression] = STATE(1285), - [sym_selector_expression] = STATE(1285), - [sym__binary_expression] = STATE(1285), - [sym_multiplicative_expression] = STATE(1285), - [sym_additive_expression] = STATE(1285), - [sym_range_expression] = STATE(1285), - [sym_infix_expression] = STATE(1285), - [sym_nil_coalescing_expression] = STATE(1285), - [sym_check_expression] = STATE(1285), - [sym_comparison_expression] = STATE(1285), - [sym_equality_expression] = STATE(1285), - [sym_conjunction_expression] = STATE(1285), - [sym_disjunction_expression] = STATE(1285), - [sym_bitwise_operation] = STATE(1285), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1285), - [sym_await_expression] = STATE(1285), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1285), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1285), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1285), - [sym_dictionary_literal] = STATE(1285), - [sym__special_literal] = STATE(1285), - [sym__playground_literal] = STATE(1285), - [sym_lambda_literal] = STATE(1285), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1285), - [sym_key_path_expression] = STATE(1285), - [sym_key_path_string_expression] = STATE(1285), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1285), - [sym__equality_operator] = STATE(1285), - [sym__comparison_operator] = STATE(1285), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1285), - [sym__multiplicative_operator] = STATE(1285), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1285), - [sym__referenceable_operator] = STATE(1285), - [sym__eq_eq] = STATE(1285), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1847), - [sym_real_literal] = ACTIONS(1849), - [sym_integer_literal] = ACTIONS(1847), - [sym_hex_literal] = ACTIONS(1849), - [sym_oct_literal] = ACTIONS(1849), - [sym_bin_literal] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1847), - [anon_sym_POUNDfileID] = ACTIONS(1849), - [anon_sym_POUNDfilePath] = ACTIONS(1849), - [anon_sym_POUNDline] = ACTIONS(1849), - [anon_sym_POUNDcolumn] = ACTIONS(1849), - [anon_sym_POUNDfunction] = ACTIONS(1849), - [anon_sym_POUNDdsohandle] = ACTIONS(1849), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1849), - [anon_sym_DASH_EQ] = ACTIONS(1849), - [anon_sym_STAR_EQ] = ACTIONS(1849), - [anon_sym_SLASH_EQ] = ACTIONS(1849), - [anon_sym_PERCENT_EQ] = ACTIONS(1849), - [anon_sym_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1849), - [anon_sym_GT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1847), - [anon_sym_PERCENT] = ACTIONS(1847), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1849), - [anon_sym_GT_GT] = ACTIONS(1849), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1849), - [sym__plus_then_ws] = ACTIONS(1849), - [sym__minus_then_ws] = ACTIONS(1849), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [446] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1145), - [sym_boolean_literal] = STATE(1145), - [sym__string_literal] = STATE(1145), - [sym_line_string_literal] = STATE(1145), - [sym_multi_line_string_literal] = STATE(1145), - [sym_raw_string_literal] = STATE(1145), - [sym_regex_literal] = STATE(1145), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1145), - [sym__unary_expression] = STATE(1145), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1145), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1145), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1145), - [sym_prefix_expression] = STATE(1145), - [sym_as_expression] = STATE(1145), - [sym_selector_expression] = STATE(1145), - [sym__binary_expression] = STATE(1145), - [sym_multiplicative_expression] = STATE(1145), - [sym_additive_expression] = STATE(1145), - [sym_range_expression] = STATE(1145), - [sym_infix_expression] = STATE(1145), - [sym_nil_coalescing_expression] = STATE(1145), - [sym_check_expression] = STATE(1145), - [sym_comparison_expression] = STATE(1145), - [sym_equality_expression] = STATE(1145), - [sym_conjunction_expression] = STATE(1145), - [sym_disjunction_expression] = STATE(1145), - [sym_bitwise_operation] = STATE(1145), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1145), - [sym_await_expression] = STATE(1145), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1145), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1145), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1145), - [sym_dictionary_literal] = STATE(1145), - [sym__special_literal] = STATE(1145), - [sym__playground_literal] = STATE(1145), - [sym_lambda_literal] = STATE(1145), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1145), - [sym_key_path_expression] = STATE(1145), - [sym_key_path_string_expression] = STATE(1145), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1145), - [sym__equality_operator] = STATE(1145), - [sym__comparison_operator] = STATE(1145), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1145), - [sym__multiplicative_operator] = STATE(1145), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1145), - [sym__referenceable_operator] = STATE(1145), - [sym__eq_eq] = STATE(1145), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1851), - [sym_real_literal] = ACTIONS(1853), - [sym_integer_literal] = ACTIONS(1851), - [sym_hex_literal] = ACTIONS(1853), - [sym_oct_literal] = ACTIONS(1853), - [sym_bin_literal] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1851), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1851), - [anon_sym_POUNDfileID] = ACTIONS(1853), - [anon_sym_POUNDfilePath] = ACTIONS(1853), - [anon_sym_POUNDline] = ACTIONS(1853), - [anon_sym_POUNDcolumn] = ACTIONS(1853), - [anon_sym_POUNDfunction] = ACTIONS(1853), - [anon_sym_POUNDdsohandle] = ACTIONS(1853), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1853), - [anon_sym_DASH_EQ] = ACTIONS(1853), - [anon_sym_STAR_EQ] = ACTIONS(1853), - [anon_sym_SLASH_EQ] = ACTIONS(1853), - [anon_sym_PERCENT_EQ] = ACTIONS(1853), - [anon_sym_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ] = ACTIONS(1851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1851), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1853), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1853), - [sym__plus_then_ws] = ACTIONS(1853), - [sym__minus_then_ws] = ACTIONS(1853), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [447] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1245), - [sym_boolean_literal] = STATE(1245), - [sym__string_literal] = STATE(1245), - [sym_line_string_literal] = STATE(1245), - [sym_multi_line_string_literal] = STATE(1245), - [sym_raw_string_literal] = STATE(1245), - [sym_regex_literal] = STATE(1245), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1245), - [sym__unary_expression] = STATE(1245), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1245), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1245), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1245), - [sym_prefix_expression] = STATE(1245), - [sym_as_expression] = STATE(1245), - [sym_selector_expression] = STATE(1245), - [sym__binary_expression] = STATE(1245), - [sym_multiplicative_expression] = STATE(1245), - [sym_additive_expression] = STATE(1245), - [sym_range_expression] = STATE(1245), - [sym_infix_expression] = STATE(1245), - [sym_nil_coalescing_expression] = STATE(1245), - [sym_check_expression] = STATE(1245), - [sym_comparison_expression] = STATE(1245), - [sym_equality_expression] = STATE(1245), - [sym_conjunction_expression] = STATE(1245), - [sym_disjunction_expression] = STATE(1245), - [sym_bitwise_operation] = STATE(1245), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1245), - [sym_await_expression] = STATE(1245), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1245), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1245), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1245), - [sym_dictionary_literal] = STATE(1245), - [sym__special_literal] = STATE(1245), - [sym__playground_literal] = STATE(1245), - [sym_lambda_literal] = STATE(1245), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1245), - [sym_key_path_expression] = STATE(1245), - [sym_key_path_string_expression] = STATE(1245), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1245), - [sym__equality_operator] = STATE(1245), - [sym__comparison_operator] = STATE(1245), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1245), - [sym__multiplicative_operator] = STATE(1245), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1245), - [sym__referenceable_operator] = STATE(1245), - [sym__eq_eq] = STATE(1245), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1855), - [sym_real_literal] = ACTIONS(1857), - [sym_integer_literal] = ACTIONS(1855), - [sym_hex_literal] = ACTIONS(1857), - [sym_oct_literal] = ACTIONS(1857), - [sym_bin_literal] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1855), - [anon_sym_POUNDfileID] = ACTIONS(1857), - [anon_sym_POUNDfilePath] = ACTIONS(1857), - [anon_sym_POUNDline] = ACTIONS(1857), - [anon_sym_POUNDcolumn] = ACTIONS(1857), - [anon_sym_POUNDfunction] = ACTIONS(1857), - [anon_sym_POUNDdsohandle] = ACTIONS(1857), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1857), - [anon_sym_DASH_EQ] = ACTIONS(1857), - [anon_sym_STAR_EQ] = ACTIONS(1857), - [anon_sym_SLASH_EQ] = ACTIONS(1857), - [anon_sym_PERCENT_EQ] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), - [anon_sym_LT_EQ] = ACTIONS(1857), - [anon_sym_GT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1857), - [anon_sym_GT_GT] = ACTIONS(1857), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1857), - [sym__plus_then_ws] = ACTIONS(1857), - [sym__minus_then_ws] = ACTIONS(1857), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [448] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1288), - [sym_boolean_literal] = STATE(1288), - [sym__string_literal] = STATE(1288), - [sym_line_string_literal] = STATE(1288), - [sym_multi_line_string_literal] = STATE(1288), - [sym_raw_string_literal] = STATE(1288), - [sym_regex_literal] = STATE(1288), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1288), - [sym__unary_expression] = STATE(1288), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1288), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1288), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1288), - [sym_prefix_expression] = STATE(1288), - [sym_as_expression] = STATE(1288), - [sym_selector_expression] = STATE(1288), - [sym__binary_expression] = STATE(2739), - [sym_multiplicative_expression] = STATE(2739), - [sym_additive_expression] = STATE(2739), - [sym_range_expression] = STATE(2739), - [sym_infix_expression] = STATE(2739), - [sym_nil_coalescing_expression] = STATE(2739), - [sym_check_expression] = STATE(2739), - [sym_comparison_expression] = STATE(2739), - [sym_equality_expression] = STATE(2739), - [sym_conjunction_expression] = STATE(2739), - [sym_disjunction_expression] = STATE(2739), - [sym_bitwise_operation] = STATE(2739), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1288), - [sym_await_expression] = STATE(1288), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(2738), - [sym_call_expression] = STATE(1994), - [sym__primary_expression] = STATE(1288), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1288), - [sym_dictionary_literal] = STATE(1288), - [sym__special_literal] = STATE(1288), - [sym__playground_literal] = STATE(1288), - [sym_lambda_literal] = STATE(1288), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1288), - [sym_key_path_expression] = STATE(1288), - [sym_key_path_string_expression] = STATE(1288), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1288), - [sym__equality_operator] = STATE(1288), - [sym__comparison_operator] = STATE(1288), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1288), - [sym__multiplicative_operator] = STATE(1288), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1288), - [sym__referenceable_operator] = STATE(1288), - [sym__eq_eq] = STATE(1288), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1859), - [sym_real_literal] = ACTIONS(1861), - [sym_integer_literal] = ACTIONS(1859), - [sym_hex_literal] = ACTIONS(1861), - [sym_oct_literal] = ACTIONS(1861), - [sym_bin_literal] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1859), - [anon_sym_POUNDfileID] = ACTIONS(1861), - [anon_sym_POUNDfilePath] = ACTIONS(1861), - [anon_sym_POUNDline] = ACTIONS(1861), - [anon_sym_POUNDcolumn] = ACTIONS(1861), - [anon_sym_POUNDfunction] = ACTIONS(1861), - [anon_sym_POUNDdsohandle] = ACTIONS(1861), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1861), - [anon_sym_DASH_EQ] = ACTIONS(1861), - [anon_sym_STAR_EQ] = ACTIONS(1861), - [anon_sym_SLASH_EQ] = ACTIONS(1861), - [anon_sym_PERCENT_EQ] = ACTIONS(1861), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_BANG_EQ] = ACTIONS(1859), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_SLASH] = ACTIONS(1859), - [anon_sym_PERCENT] = ACTIONS(1859), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_CARET] = ACTIONS(1859), - [anon_sym_LT_LT] = ACTIONS(1861), - [anon_sym_GT_GT] = ACTIONS(1861), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1861), - [sym__plus_then_ws] = ACTIONS(1861), - [sym__minus_then_ws] = ACTIONS(1861), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [449] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1296), - [sym_boolean_literal] = STATE(1296), - [sym__string_literal] = STATE(1296), - [sym_line_string_literal] = STATE(1296), - [sym_multi_line_string_literal] = STATE(1296), - [sym_raw_string_literal] = STATE(1296), - [sym_regex_literal] = STATE(1296), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1296), - [sym__unary_expression] = STATE(1296), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1296), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1296), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1296), - [sym_prefix_expression] = STATE(1296), - [sym_as_expression] = STATE(1296), - [sym_selector_expression] = STATE(1296), - [sym__binary_expression] = STATE(1296), - [sym_multiplicative_expression] = STATE(1296), - [sym_additive_expression] = STATE(1296), - [sym_range_expression] = STATE(1296), - [sym_infix_expression] = STATE(1296), - [sym_nil_coalescing_expression] = STATE(1296), - [sym_check_expression] = STATE(1296), - [sym_comparison_expression] = STATE(1296), - [sym_equality_expression] = STATE(1296), - [sym_conjunction_expression] = STATE(1296), - [sym_disjunction_expression] = STATE(1296), - [sym_bitwise_operation] = STATE(1296), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1296), - [sym_await_expression] = STATE(1296), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(2744), - [sym_call_expression] = STATE(1998), - [sym__primary_expression] = STATE(1296), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1296), - [sym_dictionary_literal] = STATE(1296), - [sym__special_literal] = STATE(1296), - [sym__playground_literal] = STATE(1296), - [sym_lambda_literal] = STATE(1296), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1296), - [sym_key_path_expression] = STATE(1296), - [sym_key_path_string_expression] = STATE(1296), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1296), - [sym__equality_operator] = STATE(1296), - [sym__comparison_operator] = STATE(1296), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1296), - [sym__multiplicative_operator] = STATE(1296), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1296), - [sym__referenceable_operator] = STATE(1296), - [sym__eq_eq] = STATE(1296), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1863), - [sym_real_literal] = ACTIONS(1865), - [sym_integer_literal] = ACTIONS(1863), - [sym_hex_literal] = ACTIONS(1865), - [sym_oct_literal] = ACTIONS(1865), - [sym_bin_literal] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1863), - [anon_sym_POUNDfileID] = ACTIONS(1865), - [anon_sym_POUNDfilePath] = ACTIONS(1865), - [anon_sym_POUNDline] = ACTIONS(1865), - [anon_sym_POUNDcolumn] = ACTIONS(1865), - [anon_sym_POUNDfunction] = ACTIONS(1865), - [anon_sym_POUNDdsohandle] = ACTIONS(1865), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1865), - [anon_sym_DASH_EQ] = ACTIONS(1865), - [anon_sym_STAR_EQ] = ACTIONS(1865), - [anon_sym_SLASH_EQ] = ACTIONS(1865), - [anon_sym_PERCENT_EQ] = ACTIONS(1865), - [anon_sym_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1865), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1865), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_PERCENT] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1865), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1865), - [sym__plus_then_ws] = ACTIONS(1865), - [sym__minus_then_ws] = ACTIONS(1865), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [450] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym__string_literal] = STATE(1214), - [sym_line_string_literal] = STATE(1214), - [sym_multi_line_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_regex_literal] = STATE(1214), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(1214), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1214), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1214), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1214), - [sym_prefix_expression] = STATE(1214), - [sym_as_expression] = STATE(1214), - [sym_selector_expression] = STATE(1214), - [sym__binary_expression] = STATE(1214), - [sym_multiplicative_expression] = STATE(1214), - [sym_additive_expression] = STATE(1214), - [sym_range_expression] = STATE(1214), - [sym_infix_expression] = STATE(1214), - [sym_nil_coalescing_expression] = STATE(1214), - [sym_check_expression] = STATE(1214), - [sym_comparison_expression] = STATE(1214), - [sym_equality_expression] = STATE(1214), - [sym_conjunction_expression] = STATE(1214), - [sym_disjunction_expression] = STATE(1214), - [sym_bitwise_operation] = STATE(1214), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1214), - [sym_await_expression] = STATE(1214), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1214), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1214), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1214), - [sym_dictionary_literal] = STATE(1214), - [sym__special_literal] = STATE(1214), - [sym__playground_literal] = STATE(1214), - [sym_lambda_literal] = STATE(1214), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1214), - [sym_key_path_expression] = STATE(1214), - [sym_key_path_string_expression] = STATE(1214), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1214), - [sym__equality_operator] = STATE(1214), - [sym__comparison_operator] = STATE(1214), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1214), - [sym__multiplicative_operator] = STATE(1214), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1214), - [sym__referenceable_operator] = STATE(1214), - [sym__eq_eq] = STATE(1214), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1867), - [sym_real_literal] = ACTIONS(1869), - [sym_integer_literal] = ACTIONS(1867), - [sym_hex_literal] = ACTIONS(1869), - [sym_oct_literal] = ACTIONS(1869), - [sym_bin_literal] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_GT] = ACTIONS(1867), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1867), - [anon_sym_POUNDfileID] = ACTIONS(1869), - [anon_sym_POUNDfilePath] = ACTIONS(1869), - [anon_sym_POUNDline] = ACTIONS(1869), - [anon_sym_POUNDcolumn] = ACTIONS(1869), - [anon_sym_POUNDfunction] = ACTIONS(1869), - [anon_sym_POUNDdsohandle] = ACTIONS(1869), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1869), - [anon_sym_DASH_EQ] = ACTIONS(1869), - [anon_sym_STAR_EQ] = ACTIONS(1869), - [anon_sym_SLASH_EQ] = ACTIONS(1869), - [anon_sym_PERCENT_EQ] = ACTIONS(1869), - [anon_sym_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ] = ACTIONS(1867), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1869), - [anon_sym_LT_EQ] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_PERCENT] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1867), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1869), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1869), - [sym__plus_then_ws] = ACTIONS(1869), - [sym__minus_then_ws] = ACTIONS(1869), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [451] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1293), - [sym_boolean_literal] = STATE(1293), - [sym__string_literal] = STATE(1293), - [sym_line_string_literal] = STATE(1293), - [sym_multi_line_string_literal] = STATE(1293), - [sym_raw_string_literal] = STATE(1293), - [sym_regex_literal] = STATE(1293), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1293), - [sym__unary_expression] = STATE(1293), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1293), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1293), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1293), - [sym_prefix_expression] = STATE(1293), - [sym_as_expression] = STATE(1293), - [sym_selector_expression] = STATE(1293), - [sym__binary_expression] = STATE(1293), - [sym_multiplicative_expression] = STATE(1293), - [sym_additive_expression] = STATE(1293), - [sym_range_expression] = STATE(1293), - [sym_infix_expression] = STATE(1293), - [sym_nil_coalescing_expression] = STATE(1293), - [sym_check_expression] = STATE(1293), - [sym_comparison_expression] = STATE(1293), - [sym_equality_expression] = STATE(1293), - [sym_conjunction_expression] = STATE(1293), - [sym_disjunction_expression] = STATE(1293), - [sym_bitwise_operation] = STATE(1293), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1293), - [sym_await_expression] = STATE(1293), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1293), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1293), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1293), - [sym_dictionary_literal] = STATE(1293), - [sym__special_literal] = STATE(1293), - [sym__playground_literal] = STATE(1293), - [sym_lambda_literal] = STATE(1293), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1293), - [sym_key_path_expression] = STATE(1293), - [sym_key_path_string_expression] = STATE(1293), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1293), - [sym__equality_operator] = STATE(1293), - [sym__comparison_operator] = STATE(1293), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1293), - [sym__multiplicative_operator] = STATE(1293), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1293), - [sym__referenceable_operator] = STATE(1293), - [sym__eq_eq] = STATE(1293), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(1871), - [sym_real_literal] = ACTIONS(1873), - [sym_integer_literal] = ACTIONS(1871), - [sym_hex_literal] = ACTIONS(1873), - [sym_oct_literal] = ACTIONS(1873), - [sym_bin_literal] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_GT] = ACTIONS(1871), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(1871), - [anon_sym_POUNDfileID] = ACTIONS(1873), - [anon_sym_POUNDfilePath] = ACTIONS(1873), - [anon_sym_POUNDline] = ACTIONS(1873), - [anon_sym_POUNDcolumn] = ACTIONS(1873), - [anon_sym_POUNDfunction] = ACTIONS(1873), - [anon_sym_POUNDdsohandle] = ACTIONS(1873), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(1873), - [anon_sym_DASH_EQ] = ACTIONS(1873), - [anon_sym_STAR_EQ] = ACTIONS(1873), - [anon_sym_SLASH_EQ] = ACTIONS(1873), - [anon_sym_PERCENT_EQ] = ACTIONS(1873), - [anon_sym_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1873), - [anon_sym_LT_EQ] = ACTIONS(1873), - [anon_sym_GT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_PERCENT] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(1873), - [sym__plus_then_ws] = ACTIONS(1873), - [sym__minus_then_ws] = ACTIONS(1873), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [452] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1275), - [sym_boolean_literal] = STATE(1275), - [sym__string_literal] = STATE(1275), - [sym_line_string_literal] = STATE(1275), - [sym_multi_line_string_literal] = STATE(1275), - [sym_raw_string_literal] = STATE(1275), - [sym_regex_literal] = STATE(1275), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1275), - [sym__unary_expression] = STATE(1275), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1275), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1275), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1275), - [sym_prefix_expression] = STATE(1275), - [sym_as_expression] = STATE(1275), - [sym_selector_expression] = STATE(1275), - [sym__binary_expression] = STATE(1275), - [sym_multiplicative_expression] = STATE(1275), - [sym_additive_expression] = STATE(1275), - [sym_range_expression] = STATE(1275), - [sym_infix_expression] = STATE(1275), - [sym_nil_coalescing_expression] = STATE(1275), - [sym_check_expression] = STATE(1275), - [sym_comparison_expression] = STATE(1275), - [sym_equality_expression] = STATE(1275), - [sym_conjunction_expression] = STATE(1275), - [sym_disjunction_expression] = STATE(1275), - [sym_bitwise_operation] = STATE(1275), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1275), - [sym_await_expression] = STATE(1275), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1275), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1275), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1275), - [sym_dictionary_literal] = STATE(1275), - [sym__special_literal] = STATE(1275), - [sym__playground_literal] = STATE(1275), - [sym_lambda_literal] = STATE(1275), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1275), - [sym_key_path_expression] = STATE(1275), - [sym_key_path_string_expression] = STATE(1275), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1275), - [sym__equality_operator] = STATE(1275), - [sym__comparison_operator] = STATE(1275), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1275), - [sym__multiplicative_operator] = STATE(1275), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1275), - [sym__referenceable_operator] = STATE(1275), - [sym__eq_eq] = STATE(1275), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1875), - [sym_real_literal] = ACTIONS(1877), - [sym_integer_literal] = ACTIONS(1875), - [sym_hex_literal] = ACTIONS(1877), - [sym_oct_literal] = ACTIONS(1877), - [sym_bin_literal] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1875), - [anon_sym_POUNDfileID] = ACTIONS(1877), - [anon_sym_POUNDfilePath] = ACTIONS(1877), - [anon_sym_POUNDline] = ACTIONS(1877), - [anon_sym_POUNDcolumn] = ACTIONS(1877), - [anon_sym_POUNDfunction] = ACTIONS(1877), - [anon_sym_POUNDdsohandle] = ACTIONS(1877), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1877), - [anon_sym_DASH_EQ] = ACTIONS(1877), - [anon_sym_STAR_EQ] = ACTIONS(1877), - [anon_sym_SLASH_EQ] = ACTIONS(1877), - [anon_sym_PERCENT_EQ] = ACTIONS(1877), - [anon_sym_EQ] = ACTIONS(1875), - [anon_sym_BANG_EQ] = ACTIONS(1875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1877), - [anon_sym_LT_EQ] = ACTIONS(1877), - [anon_sym_GT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_PERCENT] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_CARET] = ACTIONS(1875), - [anon_sym_LT_LT] = ACTIONS(1877), - [anon_sym_GT_GT] = ACTIONS(1877), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1877), - [sym__plus_then_ws] = ACTIONS(1877), - [sym__minus_then_ws] = ACTIONS(1877), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [453] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1309), - [sym_boolean_literal] = STATE(1309), - [sym__string_literal] = STATE(1309), - [sym_line_string_literal] = STATE(1309), - [sym_multi_line_string_literal] = STATE(1309), - [sym_raw_string_literal] = STATE(1309), - [sym_regex_literal] = STATE(1309), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1309), - [sym__unary_expression] = STATE(1309), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1309), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1309), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1309), - [sym_prefix_expression] = STATE(1309), - [sym_as_expression] = STATE(1309), - [sym_selector_expression] = STATE(1309), - [sym__binary_expression] = STATE(1309), - [sym_multiplicative_expression] = STATE(1309), - [sym_additive_expression] = STATE(1309), - [sym_range_expression] = STATE(1309), - [sym_infix_expression] = STATE(1309), - [sym_nil_coalescing_expression] = STATE(1309), - [sym_check_expression] = STATE(1309), - [sym_comparison_expression] = STATE(1309), - [sym_equality_expression] = STATE(1309), - [sym_conjunction_expression] = STATE(1309), - [sym_disjunction_expression] = STATE(1309), - [sym_bitwise_operation] = STATE(1309), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1309), - [sym_await_expression] = STATE(1309), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1309), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1309), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1309), - [sym_dictionary_literal] = STATE(1309), - [sym__special_literal] = STATE(1309), - [sym__playground_literal] = STATE(1309), - [sym_lambda_literal] = STATE(1309), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1309), - [sym_key_path_expression] = STATE(1309), - [sym_key_path_string_expression] = STATE(1309), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1309), - [sym__equality_operator] = STATE(1309), - [sym__comparison_operator] = STATE(1309), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1309), - [sym__multiplicative_operator] = STATE(1309), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1309), - [sym__referenceable_operator] = STATE(1309), - [sym__eq_eq] = STATE(1309), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1879), - [sym_real_literal] = ACTIONS(1881), - [sym_integer_literal] = ACTIONS(1879), - [sym_hex_literal] = ACTIONS(1881), - [sym_oct_literal] = ACTIONS(1881), - [sym_bin_literal] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1879), - [anon_sym_POUNDfileID] = ACTIONS(1881), - [anon_sym_POUNDfilePath] = ACTIONS(1881), - [anon_sym_POUNDline] = ACTIONS(1881), - [anon_sym_POUNDcolumn] = ACTIONS(1881), - [anon_sym_POUNDfunction] = ACTIONS(1881), - [anon_sym_POUNDdsohandle] = ACTIONS(1881), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1881), - [anon_sym_DASH_EQ] = ACTIONS(1881), - [anon_sym_STAR_EQ] = ACTIONS(1881), - [anon_sym_SLASH_EQ] = ACTIONS(1881), - [anon_sym_PERCENT_EQ] = ACTIONS(1881), - [anon_sym_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1881), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1881), - [sym__plus_then_ws] = ACTIONS(1881), - [sym__minus_then_ws] = ACTIONS(1881), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [454] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1159), - [sym_boolean_literal] = STATE(1159), - [sym__string_literal] = STATE(1159), - [sym_line_string_literal] = STATE(1159), - [sym_multi_line_string_literal] = STATE(1159), - [sym_raw_string_literal] = STATE(1159), - [sym_regex_literal] = STATE(1159), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1159), - [sym__unary_expression] = STATE(1159), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1159), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1159), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1159), - [sym_prefix_expression] = STATE(1159), - [sym_as_expression] = STATE(1159), - [sym_selector_expression] = STATE(1159), - [sym__binary_expression] = STATE(1159), - [sym_multiplicative_expression] = STATE(1159), - [sym_additive_expression] = STATE(1159), - [sym_range_expression] = STATE(1159), - [sym_infix_expression] = STATE(1159), - [sym_nil_coalescing_expression] = STATE(1159), - [sym_check_expression] = STATE(1159), - [sym_comparison_expression] = STATE(1159), - [sym_equality_expression] = STATE(1159), - [sym_conjunction_expression] = STATE(1159), - [sym_disjunction_expression] = STATE(1159), - [sym_bitwise_operation] = STATE(1159), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1159), - [sym_await_expression] = STATE(1159), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1159), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1159), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1159), - [sym_dictionary_literal] = STATE(1159), - [sym__special_literal] = STATE(1159), - [sym__playground_literal] = STATE(1159), - [sym_lambda_literal] = STATE(1159), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1159), - [sym_key_path_expression] = STATE(1159), - [sym_key_path_string_expression] = STATE(1159), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1159), - [sym__equality_operator] = STATE(1159), - [sym__comparison_operator] = STATE(1159), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1159), - [sym__multiplicative_operator] = STATE(1159), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1159), - [sym__referenceable_operator] = STATE(1159), - [sym__eq_eq] = STATE(1159), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1883), - [sym_real_literal] = ACTIONS(1885), - [sym_integer_literal] = ACTIONS(1883), - [sym_hex_literal] = ACTIONS(1885), - [sym_oct_literal] = ACTIONS(1885), - [sym_bin_literal] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1883), - [anon_sym_GT] = ACTIONS(1883), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1883), - [anon_sym_POUNDfileID] = ACTIONS(1885), - [anon_sym_POUNDfilePath] = ACTIONS(1885), - [anon_sym_POUNDline] = ACTIONS(1885), - [anon_sym_POUNDcolumn] = ACTIONS(1885), - [anon_sym_POUNDfunction] = ACTIONS(1885), - [anon_sym_POUNDdsohandle] = ACTIONS(1885), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1885), - [anon_sym_DASH_EQ] = ACTIONS(1885), - [anon_sym_STAR_EQ] = ACTIONS(1885), - [anon_sym_SLASH_EQ] = ACTIONS(1885), - [anon_sym_PERCENT_EQ] = ACTIONS(1885), - [anon_sym_EQ] = ACTIONS(1883), - [anon_sym_BANG_EQ] = ACTIONS(1883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_SLASH] = ACTIONS(1883), - [anon_sym_PERCENT] = ACTIONS(1883), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_GT_GT] = ACTIONS(1885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1885), - [sym__plus_then_ws] = ACTIONS(1885), - [sym__minus_then_ws] = ACTIONS(1885), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [455] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1160), - [sym_boolean_literal] = STATE(1160), - [sym__string_literal] = STATE(1160), - [sym_line_string_literal] = STATE(1160), - [sym_multi_line_string_literal] = STATE(1160), - [sym_raw_string_literal] = STATE(1160), - [sym_regex_literal] = STATE(1160), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1160), - [sym__unary_expression] = STATE(1160), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1160), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1160), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1160), - [sym_prefix_expression] = STATE(1160), - [sym_as_expression] = STATE(1160), - [sym_selector_expression] = STATE(1160), - [sym__binary_expression] = STATE(1160), - [sym_multiplicative_expression] = STATE(1160), - [sym_additive_expression] = STATE(1160), - [sym_range_expression] = STATE(1160), - [sym_infix_expression] = STATE(1160), - [sym_nil_coalescing_expression] = STATE(1160), - [sym_check_expression] = STATE(1160), - [sym_comparison_expression] = STATE(1160), - [sym_equality_expression] = STATE(1160), - [sym_conjunction_expression] = STATE(1160), - [sym_disjunction_expression] = STATE(1160), - [sym_bitwise_operation] = STATE(1160), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1160), - [sym_await_expression] = STATE(1160), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1160), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1160), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1160), - [sym_dictionary_literal] = STATE(1160), - [sym__special_literal] = STATE(1160), - [sym__playground_literal] = STATE(1160), - [sym_lambda_literal] = STATE(1160), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1160), - [sym_key_path_expression] = STATE(1160), - [sym_key_path_string_expression] = STATE(1160), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1160), - [sym__equality_operator] = STATE(1160), - [sym__comparison_operator] = STATE(1160), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1160), - [sym__multiplicative_operator] = STATE(1160), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1160), - [sym__referenceable_operator] = STATE(1160), - [sym__eq_eq] = STATE(1160), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(1887), - [sym_real_literal] = ACTIONS(1889), - [sym_integer_literal] = ACTIONS(1887), - [sym_hex_literal] = ACTIONS(1889), - [sym_oct_literal] = ACTIONS(1889), - [sym_bin_literal] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_GT] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(1887), - [anon_sym_POUNDfileID] = ACTIONS(1889), - [anon_sym_POUNDfilePath] = ACTIONS(1889), - [anon_sym_POUNDline] = ACTIONS(1889), - [anon_sym_POUNDcolumn] = ACTIONS(1889), - [anon_sym_POUNDfunction] = ACTIONS(1889), - [anon_sym_POUNDdsohandle] = ACTIONS(1889), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_PERCENT] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(1889), - [sym__plus_then_ws] = ACTIONS(1889), - [sym__minus_then_ws] = ACTIONS(1889), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [456] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1235), - [sym_boolean_literal] = STATE(1235), - [sym__string_literal] = STATE(1235), - [sym_line_string_literal] = STATE(1235), - [sym_multi_line_string_literal] = STATE(1235), - [sym_raw_string_literal] = STATE(1235), - [sym_regex_literal] = STATE(1235), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1235), - [sym__unary_expression] = STATE(1235), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1235), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1235), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1235), - [sym_prefix_expression] = STATE(1235), - [sym_as_expression] = STATE(1235), - [sym_selector_expression] = STATE(1235), - [sym__binary_expression] = STATE(1235), - [sym_multiplicative_expression] = STATE(1235), - [sym_additive_expression] = STATE(1235), - [sym_range_expression] = STATE(1235), - [sym_infix_expression] = STATE(1235), - [sym_nil_coalescing_expression] = STATE(1235), - [sym_check_expression] = STATE(1235), - [sym_comparison_expression] = STATE(1235), - [sym_equality_expression] = STATE(1235), - [sym_conjunction_expression] = STATE(1235), - [sym_disjunction_expression] = STATE(1235), - [sym_bitwise_operation] = STATE(1235), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1235), - [sym_await_expression] = STATE(1235), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1235), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1235), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1235), - [sym_dictionary_literal] = STATE(1235), - [sym__special_literal] = STATE(1235), - [sym__playground_literal] = STATE(1235), - [sym_lambda_literal] = STATE(1235), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1235), - [sym_key_path_expression] = STATE(1235), - [sym_key_path_string_expression] = STATE(1235), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1235), - [sym__equality_operator] = STATE(1235), - [sym__comparison_operator] = STATE(1235), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1235), - [sym__multiplicative_operator] = STATE(1235), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1235), - [sym__referenceable_operator] = STATE(1235), - [sym__eq_eq] = STATE(1235), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1891), - [sym_real_literal] = ACTIONS(1893), - [sym_integer_literal] = ACTIONS(1891), - [sym_hex_literal] = ACTIONS(1893), - [sym_oct_literal] = ACTIONS(1893), - [sym_bin_literal] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1891), - [anon_sym_POUNDfileID] = ACTIONS(1893), - [anon_sym_POUNDfilePath] = ACTIONS(1893), - [anon_sym_POUNDline] = ACTIONS(1893), - [anon_sym_POUNDcolumn] = ACTIONS(1893), - [anon_sym_POUNDfunction] = ACTIONS(1893), - [anon_sym_POUNDdsohandle] = ACTIONS(1893), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1893), - [anon_sym_DASH_EQ] = ACTIONS(1893), - [anon_sym_STAR_EQ] = ACTIONS(1893), - [anon_sym_SLASH_EQ] = ACTIONS(1893), - [anon_sym_PERCENT_EQ] = ACTIONS(1893), - [anon_sym_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1893), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_SLASH] = ACTIONS(1891), - [anon_sym_PERCENT] = ACTIONS(1891), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym_LT_LT] = ACTIONS(1893), - [anon_sym_GT_GT] = ACTIONS(1893), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1893), - [sym__plus_then_ws] = ACTIONS(1893), - [sym__minus_then_ws] = ACTIONS(1893), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [457] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(615), - [sym_boolean_literal] = STATE(615), - [sym__string_literal] = STATE(615), - [sym_line_string_literal] = STATE(615), - [sym_multi_line_string_literal] = STATE(615), - [sym_raw_string_literal] = STATE(615), - [sym_regex_literal] = STATE(615), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(615), - [sym__unary_expression] = STATE(615), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(615), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(615), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(615), - [sym_prefix_expression] = STATE(615), - [sym_as_expression] = STATE(615), - [sym_selector_expression] = STATE(615), - [sym__binary_expression] = STATE(615), - [sym_multiplicative_expression] = STATE(615), - [sym_additive_expression] = STATE(615), - [sym_range_expression] = STATE(615), - [sym_infix_expression] = STATE(615), - [sym_nil_coalescing_expression] = STATE(615), - [sym_check_expression] = STATE(615), - [sym_comparison_expression] = STATE(615), - [sym_equality_expression] = STATE(615), - [sym_conjunction_expression] = STATE(615), - [sym_disjunction_expression] = STATE(615), - [sym_bitwise_operation] = STATE(615), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(615), - [sym_await_expression] = STATE(615), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(615), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(615), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(615), - [sym_dictionary_literal] = STATE(615), - [sym__special_literal] = STATE(615), - [sym__playground_literal] = STATE(615), - [sym_lambda_literal] = STATE(615), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(615), - [sym_key_path_expression] = STATE(615), - [sym_key_path_string_expression] = STATE(615), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(615), - [sym__equality_operator] = STATE(615), - [sym__comparison_operator] = STATE(615), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(615), - [sym__multiplicative_operator] = STATE(615), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(615), - [sym__referenceable_operator] = STATE(615), - [sym__eq_eq] = STATE(615), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1895), - [sym_real_literal] = ACTIONS(1897), - [sym_integer_literal] = ACTIONS(1895), - [sym_hex_literal] = ACTIONS(1897), - [sym_oct_literal] = ACTIONS(1897), - [sym_bin_literal] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_GT] = ACTIONS(1895), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1895), - [anon_sym_POUNDfileID] = ACTIONS(1897), - [anon_sym_POUNDfilePath] = ACTIONS(1897), - [anon_sym_POUNDline] = ACTIONS(1897), - [anon_sym_POUNDcolumn] = ACTIONS(1897), - [anon_sym_POUNDfunction] = ACTIONS(1897), - [anon_sym_POUNDdsohandle] = ACTIONS(1897), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1897), - [anon_sym_DASH_EQ] = ACTIONS(1897), - [anon_sym_STAR_EQ] = ACTIONS(1897), - [anon_sym_SLASH_EQ] = ACTIONS(1897), - [anon_sym_PERCENT_EQ] = ACTIONS(1897), - [anon_sym_EQ] = ACTIONS(1895), - [anon_sym_BANG_EQ] = ACTIONS(1895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_SLASH] = ACTIONS(1895), - [anon_sym_PERCENT] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1895), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1897), - [sym__plus_then_ws] = ACTIONS(1897), - [sym__minus_then_ws] = ACTIONS(1897), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [458] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1244), - [sym_boolean_literal] = STATE(1244), - [sym__string_literal] = STATE(1244), - [sym_line_string_literal] = STATE(1244), - [sym_multi_line_string_literal] = STATE(1244), - [sym_raw_string_literal] = STATE(1244), - [sym_regex_literal] = STATE(1244), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1244), - [sym__unary_expression] = STATE(1244), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1244), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1244), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1244), - [sym_prefix_expression] = STATE(1244), - [sym_as_expression] = STATE(1244), - [sym_selector_expression] = STATE(1244), - [sym__binary_expression] = STATE(1244), - [sym_multiplicative_expression] = STATE(1244), - [sym_additive_expression] = STATE(1244), - [sym_range_expression] = STATE(1244), - [sym_infix_expression] = STATE(1244), - [sym_nil_coalescing_expression] = STATE(1244), - [sym_check_expression] = STATE(1244), - [sym_comparison_expression] = STATE(1244), - [sym_equality_expression] = STATE(1244), - [sym_conjunction_expression] = STATE(1244), - [sym_disjunction_expression] = STATE(1244), - [sym_bitwise_operation] = STATE(1244), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1244), - [sym_await_expression] = STATE(1244), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1244), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1244), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1244), - [sym_dictionary_literal] = STATE(1244), - [sym__special_literal] = STATE(1244), - [sym__playground_literal] = STATE(1244), - [sym_lambda_literal] = STATE(1244), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1244), - [sym_key_path_expression] = STATE(1244), - [sym_key_path_string_expression] = STATE(1244), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1244), - [sym__equality_operator] = STATE(1244), - [sym__comparison_operator] = STATE(1244), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1244), - [sym__multiplicative_operator] = STATE(1244), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1244), - [sym__referenceable_operator] = STATE(1244), - [sym__eq_eq] = STATE(1244), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(1899), - [sym_real_literal] = ACTIONS(1901), - [sym_integer_literal] = ACTIONS(1899), - [sym_hex_literal] = ACTIONS(1901), - [sym_oct_literal] = ACTIONS(1901), - [sym_bin_literal] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(1899), - [anon_sym_POUNDfileID] = ACTIONS(1901), - [anon_sym_POUNDfilePath] = ACTIONS(1901), - [anon_sym_POUNDline] = ACTIONS(1901), - [anon_sym_POUNDcolumn] = ACTIONS(1901), - [anon_sym_POUNDfunction] = ACTIONS(1901), - [anon_sym_POUNDdsohandle] = ACTIONS(1901), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(1901), - [anon_sym_DASH_EQ] = ACTIONS(1901), - [anon_sym_STAR_EQ] = ACTIONS(1901), - [anon_sym_SLASH_EQ] = ACTIONS(1901), - [anon_sym_PERCENT_EQ] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1901), - [anon_sym_LT_EQ] = ACTIONS(1901), - [anon_sym_GT_EQ] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1901), - [anon_sym_GT_GT] = ACTIONS(1901), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(1901), - [sym__plus_then_ws] = ACTIONS(1901), - [sym__minus_then_ws] = ACTIONS(1901), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [459] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1192), - [sym_boolean_literal] = STATE(1192), - [sym__string_literal] = STATE(1192), - [sym_line_string_literal] = STATE(1192), - [sym_multi_line_string_literal] = STATE(1192), - [sym_raw_string_literal] = STATE(1192), - [sym_regex_literal] = STATE(1192), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1192), - [sym__unary_expression] = STATE(1192), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1192), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1192), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1192), - [sym_prefix_expression] = STATE(1192), - [sym_as_expression] = STATE(1192), - [sym_selector_expression] = STATE(1192), - [sym__binary_expression] = STATE(2476), - [sym_multiplicative_expression] = STATE(2476), - [sym_additive_expression] = STATE(2476), - [sym_range_expression] = STATE(2476), - [sym_infix_expression] = STATE(2476), - [sym_nil_coalescing_expression] = STATE(2476), - [sym_check_expression] = STATE(2476), - [sym_comparison_expression] = STATE(2476), - [sym_equality_expression] = STATE(2476), - [sym_conjunction_expression] = STATE(2476), - [sym_disjunction_expression] = STATE(2476), - [sym_bitwise_operation] = STATE(2476), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(2477), - [sym_call_expression] = STATE(1816), - [sym__primary_expression] = STATE(1192), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1192), - [sym_dictionary_literal] = STATE(1192), - [sym__special_literal] = STATE(1192), - [sym__playground_literal] = STATE(1192), - [sym_lambda_literal] = STATE(1192), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1192), - [sym_key_path_expression] = STATE(1192), - [sym_key_path_string_expression] = STATE(1192), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1192), - [sym__equality_operator] = STATE(1192), - [sym__comparison_operator] = STATE(1192), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1192), - [sym__multiplicative_operator] = STATE(1192), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1192), - [sym__referenceable_operator] = STATE(1192), - [sym__eq_eq] = STATE(1192), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1903), - [sym_real_literal] = ACTIONS(1905), - [sym_integer_literal] = ACTIONS(1903), - [sym_hex_literal] = ACTIONS(1905), - [sym_oct_literal] = ACTIONS(1905), - [sym_bin_literal] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_GT] = ACTIONS(1903), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1903), - [anon_sym_POUNDfileID] = ACTIONS(1905), - [anon_sym_POUNDfilePath] = ACTIONS(1905), - [anon_sym_POUNDline] = ACTIONS(1905), - [anon_sym_POUNDcolumn] = ACTIONS(1905), - [anon_sym_POUNDfunction] = ACTIONS(1905), - [anon_sym_POUNDdsohandle] = ACTIONS(1905), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1905), - [anon_sym_DASH_EQ] = ACTIONS(1905), - [anon_sym_STAR_EQ] = ACTIONS(1905), - [anon_sym_SLASH_EQ] = ACTIONS(1905), - [anon_sym_PERCENT_EQ] = ACTIONS(1905), - [anon_sym_EQ] = ACTIONS(1903), - [anon_sym_BANG_EQ] = ACTIONS(1903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1905), - [anon_sym_LT_EQ] = ACTIONS(1905), - [anon_sym_GT_EQ] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_PERCENT] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1903), - [anon_sym_LT_LT] = ACTIONS(1905), - [anon_sym_GT_GT] = ACTIONS(1905), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1905), - [sym__plus_then_ws] = ACTIONS(1905), - [sym__minus_then_ws] = ACTIONS(1905), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [460] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1353), - [sym_boolean_literal] = STATE(1353), - [sym__string_literal] = STATE(1353), - [sym_line_string_literal] = STATE(1353), - [sym_multi_line_string_literal] = STATE(1353), - [sym_raw_string_literal] = STATE(1353), - [sym_regex_literal] = STATE(1353), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1353), - [sym__unary_expression] = STATE(1353), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1353), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1353), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1353), - [sym_prefix_expression] = STATE(1353), - [sym_as_expression] = STATE(1353), - [sym_selector_expression] = STATE(1353), - [sym__binary_expression] = STATE(1353), - [sym_multiplicative_expression] = STATE(1353), - [sym_additive_expression] = STATE(1353), - [sym_range_expression] = STATE(1353), - [sym_infix_expression] = STATE(1353), - [sym_nil_coalescing_expression] = STATE(1353), - [sym_check_expression] = STATE(1353), - [sym_comparison_expression] = STATE(1353), - [sym_equality_expression] = STATE(1353), - [sym_conjunction_expression] = STATE(1353), - [sym_disjunction_expression] = STATE(1353), - [sym_bitwise_operation] = STATE(1353), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1353), - [sym_await_expression] = STATE(1353), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1353), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1353), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1353), - [sym_dictionary_literal] = STATE(1353), - [sym__special_literal] = STATE(1353), - [sym__playground_literal] = STATE(1353), - [sym_lambda_literal] = STATE(1353), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1353), - [sym_key_path_expression] = STATE(1353), - [sym_key_path_string_expression] = STATE(1353), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1353), - [sym__equality_operator] = STATE(1353), - [sym__comparison_operator] = STATE(1353), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1353), - [sym__multiplicative_operator] = STATE(1353), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1353), - [sym__referenceable_operator] = STATE(1353), - [sym__eq_eq] = STATE(1353), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1907), - [sym_real_literal] = ACTIONS(1909), - [sym_integer_literal] = ACTIONS(1907), - [sym_hex_literal] = ACTIONS(1909), - [sym_oct_literal] = ACTIONS(1909), - [sym_bin_literal] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1907), - [anon_sym_GT] = ACTIONS(1907), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1907), - [anon_sym_POUNDfileID] = ACTIONS(1909), - [anon_sym_POUNDfilePath] = ACTIONS(1909), - [anon_sym_POUNDline] = ACTIONS(1909), - [anon_sym_POUNDcolumn] = ACTIONS(1909), - [anon_sym_POUNDfunction] = ACTIONS(1909), - [anon_sym_POUNDdsohandle] = ACTIONS(1909), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1909), - [anon_sym_DASH_EQ] = ACTIONS(1909), - [anon_sym_STAR_EQ] = ACTIONS(1909), - [anon_sym_SLASH_EQ] = ACTIONS(1909), - [anon_sym_PERCENT_EQ] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1907), - [anon_sym_BANG_EQ] = ACTIONS(1907), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1909), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1909), - [anon_sym_LT_EQ] = ACTIONS(1909), - [anon_sym_GT_EQ] = ACTIONS(1909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_SLASH] = ACTIONS(1907), - [anon_sym_PERCENT] = ACTIONS(1907), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_LT_LT] = ACTIONS(1909), - [anon_sym_GT_GT] = ACTIONS(1909), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1909), - [sym__plus_then_ws] = ACTIONS(1909), - [sym__minus_then_ws] = ACTIONS(1909), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [461] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1360), - [sym_boolean_literal] = STATE(1360), - [sym__string_literal] = STATE(1360), - [sym_line_string_literal] = STATE(1360), - [sym_multi_line_string_literal] = STATE(1360), - [sym_raw_string_literal] = STATE(1360), - [sym_regex_literal] = STATE(1360), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1360), - [sym__unary_expression] = STATE(1360), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1360), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1360), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1360), - [sym_prefix_expression] = STATE(1360), - [sym_as_expression] = STATE(1360), - [sym_selector_expression] = STATE(1360), - [sym__binary_expression] = STATE(1360), - [sym_multiplicative_expression] = STATE(1360), - [sym_additive_expression] = STATE(1360), - [sym_range_expression] = STATE(1360), - [sym_infix_expression] = STATE(1360), - [sym_nil_coalescing_expression] = STATE(1360), - [sym_check_expression] = STATE(1360), - [sym_comparison_expression] = STATE(1360), - [sym_equality_expression] = STATE(1360), - [sym_conjunction_expression] = STATE(1360), - [sym_disjunction_expression] = STATE(1360), - [sym_bitwise_operation] = STATE(1360), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1360), - [sym_await_expression] = STATE(1360), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1360), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1360), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1360), - [sym_dictionary_literal] = STATE(1360), - [sym__special_literal] = STATE(1360), - [sym__playground_literal] = STATE(1360), - [sym_lambda_literal] = STATE(1360), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1360), - [sym_key_path_expression] = STATE(1360), - [sym_key_path_string_expression] = STATE(1360), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1360), - [sym__equality_operator] = STATE(1360), - [sym__comparison_operator] = STATE(1360), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1360), - [sym__multiplicative_operator] = STATE(1360), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1360), - [sym__referenceable_operator] = STATE(1360), - [sym__eq_eq] = STATE(1360), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1911), - [sym_real_literal] = ACTIONS(1913), - [sym_integer_literal] = ACTIONS(1911), - [sym_hex_literal] = ACTIONS(1913), - [sym_oct_literal] = ACTIONS(1913), - [sym_bin_literal] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1911), - [anon_sym_POUNDfileID] = ACTIONS(1913), - [anon_sym_POUNDfilePath] = ACTIONS(1913), - [anon_sym_POUNDline] = ACTIONS(1913), - [anon_sym_POUNDcolumn] = ACTIONS(1913), - [anon_sym_POUNDfunction] = ACTIONS(1913), - [anon_sym_POUNDdsohandle] = ACTIONS(1913), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1913), - [anon_sym_DASH_EQ] = ACTIONS(1913), - [anon_sym_STAR_EQ] = ACTIONS(1913), - [anon_sym_SLASH_EQ] = ACTIONS(1913), - [anon_sym_PERCENT_EQ] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1911), - [anon_sym_BANG_EQ] = ACTIONS(1911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1913), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1913), - [anon_sym_LT_EQ] = ACTIONS(1913), - [anon_sym_GT_EQ] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_PERCENT] = ACTIONS(1911), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym_LT_LT] = ACTIONS(1913), - [anon_sym_GT_GT] = ACTIONS(1913), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1913), - [sym__plus_then_ws] = ACTIONS(1913), - [sym__minus_then_ws] = ACTIONS(1913), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [462] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym__string_literal] = STATE(1273), - [sym_line_string_literal] = STATE(1273), - [sym_multi_line_string_literal] = STATE(1273), - [sym_raw_string_literal] = STATE(1273), - [sym_regex_literal] = STATE(1273), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1273), - [sym__unary_expression] = STATE(1273), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1273), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1273), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1273), - [sym_prefix_expression] = STATE(1273), - [sym_as_expression] = STATE(1273), - [sym_selector_expression] = STATE(1273), - [sym__binary_expression] = STATE(1273), - [sym_multiplicative_expression] = STATE(1273), - [sym_additive_expression] = STATE(1273), - [sym_range_expression] = STATE(1273), - [sym_infix_expression] = STATE(1273), - [sym_nil_coalescing_expression] = STATE(1273), - [sym_check_expression] = STATE(1273), - [sym_comparison_expression] = STATE(1273), - [sym_equality_expression] = STATE(1273), - [sym_conjunction_expression] = STATE(1273), - [sym_disjunction_expression] = STATE(1273), - [sym_bitwise_operation] = STATE(1273), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1273), - [sym_await_expression] = STATE(1273), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1273), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1273), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1273), - [sym_dictionary_literal] = STATE(1273), - [sym__special_literal] = STATE(1273), - [sym__playground_literal] = STATE(1273), - [sym_lambda_literal] = STATE(1273), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1273), - [sym_key_path_expression] = STATE(1273), - [sym_key_path_string_expression] = STATE(1273), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1273), - [sym__equality_operator] = STATE(1273), - [sym__comparison_operator] = STATE(1273), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1273), - [sym__multiplicative_operator] = STATE(1273), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1273), - [sym__referenceable_operator] = STATE(1273), - [sym__eq_eq] = STATE(1273), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1915), - [sym_real_literal] = ACTIONS(1917), - [sym_integer_literal] = ACTIONS(1915), - [sym_hex_literal] = ACTIONS(1917), - [sym_oct_literal] = ACTIONS(1917), - [sym_bin_literal] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_GT] = ACTIONS(1915), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1915), - [anon_sym_POUNDfileID] = ACTIONS(1917), - [anon_sym_POUNDfilePath] = ACTIONS(1917), - [anon_sym_POUNDline] = ACTIONS(1917), - [anon_sym_POUNDcolumn] = ACTIONS(1917), - [anon_sym_POUNDfunction] = ACTIONS(1917), - [anon_sym_POUNDdsohandle] = ACTIONS(1917), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1917), - [anon_sym_DASH_EQ] = ACTIONS(1917), - [anon_sym_STAR_EQ] = ACTIONS(1917), - [anon_sym_SLASH_EQ] = ACTIONS(1917), - [anon_sym_PERCENT_EQ] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ] = ACTIONS(1915), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1917), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1917), - [anon_sym_GT_EQ] = ACTIONS(1917), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1915), - [anon_sym_LT_LT] = ACTIONS(1917), - [anon_sym_GT_GT] = ACTIONS(1917), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1917), - [sym__plus_then_ws] = ACTIONS(1917), - [sym__minus_then_ws] = ACTIONS(1917), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [463] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1305), - [sym_boolean_literal] = STATE(1305), - [sym__string_literal] = STATE(1305), - [sym_line_string_literal] = STATE(1305), - [sym_multi_line_string_literal] = STATE(1305), - [sym_raw_string_literal] = STATE(1305), - [sym_regex_literal] = STATE(1305), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1305), - [sym__unary_expression] = STATE(1305), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1305), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1305), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1305), - [sym_prefix_expression] = STATE(1305), - [sym_as_expression] = STATE(1305), - [sym_selector_expression] = STATE(1305), - [sym__binary_expression] = STATE(1305), - [sym_multiplicative_expression] = STATE(1305), - [sym_additive_expression] = STATE(1305), - [sym_range_expression] = STATE(1305), - [sym_infix_expression] = STATE(1305), - [sym_nil_coalescing_expression] = STATE(1305), - [sym_check_expression] = STATE(1305), - [sym_comparison_expression] = STATE(1305), - [sym_equality_expression] = STATE(1305), - [sym_conjunction_expression] = STATE(1305), - [sym_disjunction_expression] = STATE(1305), - [sym_bitwise_operation] = STATE(1305), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1305), - [sym_await_expression] = STATE(1305), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1305), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1305), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1305), - [sym_dictionary_literal] = STATE(1305), - [sym__special_literal] = STATE(1305), - [sym__playground_literal] = STATE(1305), - [sym_lambda_literal] = STATE(1305), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1305), - [sym_key_path_expression] = STATE(1305), - [sym_key_path_string_expression] = STATE(1305), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1305), - [sym__equality_operator] = STATE(1305), - [sym__comparison_operator] = STATE(1305), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1305), - [sym__multiplicative_operator] = STATE(1305), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1305), - [sym__referenceable_operator] = STATE(1305), - [sym__eq_eq] = STATE(1305), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1029), - [sym_real_literal] = ACTIONS(1031), - [sym_integer_literal] = ACTIONS(1029), - [sym_hex_literal] = ACTIONS(1031), - [sym_oct_literal] = ACTIONS(1031), - [sym_bin_literal] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1029), - [anon_sym_POUNDfileID] = ACTIONS(1031), - [anon_sym_POUNDfilePath] = ACTIONS(1031), - [anon_sym_POUNDline] = ACTIONS(1031), - [anon_sym_POUNDcolumn] = ACTIONS(1031), - [anon_sym_POUNDfunction] = ACTIONS(1031), - [anon_sym_POUNDdsohandle] = ACTIONS(1031), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1031), - [anon_sym_DASH_EQ] = ACTIONS(1031), - [anon_sym_STAR_EQ] = ACTIONS(1031), - [anon_sym_SLASH_EQ] = ACTIONS(1031), - [anon_sym_PERCENT_EQ] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1031), - [anon_sym_LT_EQ] = ACTIONS(1031), - [anon_sym_GT_EQ] = ACTIONS(1031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_PERCENT] = ACTIONS(1029), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1031), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1031), - [anon_sym_GT_GT] = ACTIONS(1031), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1031), - [sym__plus_then_ws] = ACTIONS(1031), - [sym__minus_then_ws] = ACTIONS(1031), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [464] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1287), - [sym_boolean_literal] = STATE(1287), - [sym__string_literal] = STATE(1287), - [sym_line_string_literal] = STATE(1287), - [sym_multi_line_string_literal] = STATE(1287), - [sym_raw_string_literal] = STATE(1287), - [sym_regex_literal] = STATE(1287), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1287), - [sym__unary_expression] = STATE(1287), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1287), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1287), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1287), - [sym_prefix_expression] = STATE(1287), - [sym_as_expression] = STATE(1287), - [sym_selector_expression] = STATE(1287), - [sym__binary_expression] = STATE(1287), - [sym_multiplicative_expression] = STATE(1287), - [sym_additive_expression] = STATE(1287), - [sym_range_expression] = STATE(1287), - [sym_infix_expression] = STATE(1287), - [sym_nil_coalescing_expression] = STATE(1287), - [sym_check_expression] = STATE(1287), - [sym_comparison_expression] = STATE(1287), - [sym_equality_expression] = STATE(1287), - [sym_conjunction_expression] = STATE(1287), - [sym_disjunction_expression] = STATE(1287), - [sym_bitwise_operation] = STATE(1287), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1287), - [sym_await_expression] = STATE(1287), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1287), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1287), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1287), - [sym_dictionary_literal] = STATE(1287), - [sym__special_literal] = STATE(1287), - [sym__playground_literal] = STATE(1287), - [sym_lambda_literal] = STATE(1287), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1287), - [sym_key_path_expression] = STATE(1287), - [sym_key_path_string_expression] = STATE(1287), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1287), - [sym__equality_operator] = STATE(1287), - [sym__comparison_operator] = STATE(1287), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1287), - [sym__multiplicative_operator] = STATE(1287), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1287), - [sym__referenceable_operator] = STATE(1287), - [sym__eq_eq] = STATE(1287), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1919), - [sym_real_literal] = ACTIONS(1921), - [sym_integer_literal] = ACTIONS(1919), - [sym_hex_literal] = ACTIONS(1921), - [sym_oct_literal] = ACTIONS(1921), - [sym_bin_literal] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1919), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1919), - [anon_sym_POUNDfileID] = ACTIONS(1921), - [anon_sym_POUNDfilePath] = ACTIONS(1921), - [anon_sym_POUNDline] = ACTIONS(1921), - [anon_sym_POUNDcolumn] = ACTIONS(1921), - [anon_sym_POUNDfunction] = ACTIONS(1921), - [anon_sym_POUNDdsohandle] = ACTIONS(1921), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1921), - [anon_sym_DASH_EQ] = ACTIONS(1921), - [anon_sym_STAR_EQ] = ACTIONS(1921), - [anon_sym_SLASH_EQ] = ACTIONS(1921), - [anon_sym_PERCENT_EQ] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1919), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1921), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1921), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_SLASH] = ACTIONS(1919), - [anon_sym_PERCENT] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1921), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1921), - [sym__plus_then_ws] = ACTIONS(1921), - [sym__minus_then_ws] = ACTIONS(1921), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [465] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1266), - [sym_boolean_literal] = STATE(1266), - [sym__string_literal] = STATE(1266), - [sym_line_string_literal] = STATE(1266), - [sym_multi_line_string_literal] = STATE(1266), - [sym_raw_string_literal] = STATE(1266), - [sym_regex_literal] = STATE(1266), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1266), - [sym__unary_expression] = STATE(1266), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1266), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1266), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1266), - [sym_prefix_expression] = STATE(1266), - [sym_as_expression] = STATE(1266), - [sym_selector_expression] = STATE(1266), - [sym__binary_expression] = STATE(1266), - [sym_multiplicative_expression] = STATE(1266), - [sym_additive_expression] = STATE(1266), - [sym_range_expression] = STATE(1266), - [sym_infix_expression] = STATE(1266), - [sym_nil_coalescing_expression] = STATE(1266), - [sym_check_expression] = STATE(1266), - [sym_comparison_expression] = STATE(1266), - [sym_equality_expression] = STATE(1266), - [sym_conjunction_expression] = STATE(1266), - [sym_disjunction_expression] = STATE(1266), - [sym_bitwise_operation] = STATE(1266), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1266), - [sym_await_expression] = STATE(1266), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1266), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1266), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1266), - [sym_dictionary_literal] = STATE(1266), - [sym__special_literal] = STATE(1266), - [sym__playground_literal] = STATE(1266), - [sym_lambda_literal] = STATE(1266), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1266), - [sym_key_path_expression] = STATE(1266), - [sym_key_path_string_expression] = STATE(1266), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1266), - [sym__equality_operator] = STATE(1266), - [sym__comparison_operator] = STATE(1266), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1266), - [sym__multiplicative_operator] = STATE(1266), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1266), - [sym__referenceable_operator] = STATE(1266), - [sym__eq_eq] = STATE(1266), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1923), - [sym_real_literal] = ACTIONS(1925), - [sym_integer_literal] = ACTIONS(1923), - [sym_hex_literal] = ACTIONS(1925), - [sym_oct_literal] = ACTIONS(1925), - [sym_bin_literal] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1923), - [anon_sym_POUNDfileID] = ACTIONS(1925), - [anon_sym_POUNDfilePath] = ACTIONS(1925), - [anon_sym_POUNDline] = ACTIONS(1925), - [anon_sym_POUNDcolumn] = ACTIONS(1925), - [anon_sym_POUNDfunction] = ACTIONS(1925), - [anon_sym_POUNDdsohandle] = ACTIONS(1925), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1925), - [anon_sym_DASH_EQ] = ACTIONS(1925), - [anon_sym_STAR_EQ] = ACTIONS(1925), - [anon_sym_SLASH_EQ] = ACTIONS(1925), - [anon_sym_PERCENT_EQ] = ACTIONS(1925), - [anon_sym_EQ] = ACTIONS(1923), - [anon_sym_BANG_EQ] = ACTIONS(1923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1925), - [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_PERCENT] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1925), - [sym__plus_then_ws] = ACTIONS(1925), - [sym__minus_then_ws] = ACTIONS(1925), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [466] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(608), - [sym_boolean_literal] = STATE(608), - [sym__string_literal] = STATE(608), - [sym_line_string_literal] = STATE(608), - [sym_multi_line_string_literal] = STATE(608), - [sym_raw_string_literal] = STATE(608), - [sym_regex_literal] = STATE(608), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(608), - [sym__unary_expression] = STATE(608), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(608), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(608), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(608), - [sym_prefix_expression] = STATE(608), - [sym_as_expression] = STATE(608), - [sym_selector_expression] = STATE(608), - [sym__binary_expression] = STATE(608), - [sym_multiplicative_expression] = STATE(608), - [sym_additive_expression] = STATE(608), - [sym_range_expression] = STATE(608), - [sym_infix_expression] = STATE(608), - [sym_nil_coalescing_expression] = STATE(608), - [sym_check_expression] = STATE(608), - [sym_comparison_expression] = STATE(608), - [sym_equality_expression] = STATE(608), - [sym_conjunction_expression] = STATE(608), - [sym_disjunction_expression] = STATE(608), - [sym_bitwise_operation] = STATE(608), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(608), - [sym_await_expression] = STATE(608), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(608), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(608), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(608), - [sym_dictionary_literal] = STATE(608), - [sym__special_literal] = STATE(608), - [sym__playground_literal] = STATE(608), - [sym_lambda_literal] = STATE(608), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(608), - [sym_key_path_expression] = STATE(608), - [sym_key_path_string_expression] = STATE(608), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(608), - [sym__equality_operator] = STATE(608), - [sym__comparison_operator] = STATE(608), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(608), - [sym__multiplicative_operator] = STATE(608), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(608), - [sym__referenceable_operator] = STATE(608), - [sym__eq_eq] = STATE(608), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1927), - [sym_real_literal] = ACTIONS(1929), - [sym_integer_literal] = ACTIONS(1927), - [sym_hex_literal] = ACTIONS(1929), - [sym_oct_literal] = ACTIONS(1929), - [sym_bin_literal] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1927), - [anon_sym_POUNDfileID] = ACTIONS(1929), - [anon_sym_POUNDfilePath] = ACTIONS(1929), - [anon_sym_POUNDline] = ACTIONS(1929), - [anon_sym_POUNDcolumn] = ACTIONS(1929), - [anon_sym_POUNDfunction] = ACTIONS(1929), - [anon_sym_POUNDdsohandle] = ACTIONS(1929), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1929), - [anon_sym_DASH_EQ] = ACTIONS(1929), - [anon_sym_STAR_EQ] = ACTIONS(1929), - [anon_sym_SLASH_EQ] = ACTIONS(1929), - [anon_sym_PERCENT_EQ] = ACTIONS(1929), - [anon_sym_EQ] = ACTIONS(1927), - [anon_sym_BANG_EQ] = ACTIONS(1927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1929), - [anon_sym_LT_EQ] = ACTIONS(1929), - [anon_sym_GT_EQ] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_PERCENT] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_CARET] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1929), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1929), - [sym__plus_then_ws] = ACTIONS(1929), - [sym__minus_then_ws] = ACTIONS(1929), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [467] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(613), - [sym_boolean_literal] = STATE(613), - [sym__string_literal] = STATE(613), - [sym_line_string_literal] = STATE(613), - [sym_multi_line_string_literal] = STATE(613), - [sym_raw_string_literal] = STATE(613), - [sym_regex_literal] = STATE(613), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(613), - [sym__unary_expression] = STATE(613), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(613), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(613), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(613), - [sym_prefix_expression] = STATE(613), - [sym_as_expression] = STATE(613), - [sym_selector_expression] = STATE(613), - [sym__binary_expression] = STATE(1068), - [sym_multiplicative_expression] = STATE(1068), - [sym_additive_expression] = STATE(1068), - [sym_range_expression] = STATE(1068), - [sym_infix_expression] = STATE(1068), - [sym_nil_coalescing_expression] = STATE(1068), - [sym_check_expression] = STATE(1068), - [sym_comparison_expression] = STATE(1068), - [sym_equality_expression] = STATE(1068), - [sym_conjunction_expression] = STATE(1068), - [sym_disjunction_expression] = STATE(1068), - [sym_bitwise_operation] = STATE(1068), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(613), - [sym_await_expression] = STATE(613), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(1071), - [sym_call_expression] = STATE(884), - [sym__primary_expression] = STATE(613), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(613), - [sym_dictionary_literal] = STATE(613), - [sym__special_literal] = STATE(613), - [sym__playground_literal] = STATE(613), - [sym_lambda_literal] = STATE(613), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(613), - [sym_key_path_expression] = STATE(613), - [sym_key_path_string_expression] = STATE(613), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(613), - [sym__equality_operator] = STATE(613), - [sym__comparison_operator] = STATE(613), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(613), - [sym__multiplicative_operator] = STATE(613), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(613), - [sym__referenceable_operator] = STATE(613), - [sym__eq_eq] = STATE(613), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1931), - [sym_real_literal] = ACTIONS(1933), - [sym_integer_literal] = ACTIONS(1931), - [sym_hex_literal] = ACTIONS(1933), - [sym_oct_literal] = ACTIONS(1933), - [sym_bin_literal] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1931), - [anon_sym_GT] = ACTIONS(1931), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1931), - [anon_sym_POUNDfileID] = ACTIONS(1933), - [anon_sym_POUNDfilePath] = ACTIONS(1933), - [anon_sym_POUNDline] = ACTIONS(1933), - [anon_sym_POUNDcolumn] = ACTIONS(1933), - [anon_sym_POUNDfunction] = ACTIONS(1933), - [anon_sym_POUNDdsohandle] = ACTIONS(1933), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1933), - [anon_sym_DASH_EQ] = ACTIONS(1933), - [anon_sym_STAR_EQ] = ACTIONS(1933), - [anon_sym_SLASH_EQ] = ACTIONS(1933), - [anon_sym_PERCENT_EQ] = ACTIONS(1933), - [anon_sym_EQ] = ACTIONS(1931), - [anon_sym_BANG_EQ] = ACTIONS(1931), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1933), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1933), - [anon_sym_LT_EQ] = ACTIONS(1933), - [anon_sym_GT_EQ] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1931), - [anon_sym_SLASH] = ACTIONS(1931), - [anon_sym_PERCENT] = ACTIONS(1931), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(1931), - [anon_sym_LT_LT] = ACTIONS(1933), - [anon_sym_GT_GT] = ACTIONS(1933), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1933), - [sym__plus_then_ws] = ACTIONS(1933), - [sym__minus_then_ws] = ACTIONS(1933), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [468] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1191), - [sym_boolean_literal] = STATE(1191), - [sym__string_literal] = STATE(1191), - [sym_line_string_literal] = STATE(1191), - [sym_multi_line_string_literal] = STATE(1191), - [sym_raw_string_literal] = STATE(1191), - [sym_regex_literal] = STATE(1191), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(1191), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1191), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1191), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1191), - [sym_prefix_expression] = STATE(1191), - [sym_as_expression] = STATE(1191), - [sym_selector_expression] = STATE(1191), - [sym__binary_expression] = STATE(1191), - [sym_multiplicative_expression] = STATE(1191), - [sym_additive_expression] = STATE(1191), - [sym_range_expression] = STATE(1191), - [sym_infix_expression] = STATE(1191), - [sym_nil_coalescing_expression] = STATE(1191), - [sym_check_expression] = STATE(1191), - [sym_comparison_expression] = STATE(1191), - [sym_equality_expression] = STATE(1191), - [sym_conjunction_expression] = STATE(1191), - [sym_disjunction_expression] = STATE(1191), - [sym_bitwise_operation] = STATE(1191), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1191), - [sym_await_expression] = STATE(1191), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1191), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1191), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1191), - [sym_dictionary_literal] = STATE(1191), - [sym__special_literal] = STATE(1191), - [sym__playground_literal] = STATE(1191), - [sym_lambda_literal] = STATE(1191), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1191), - [sym_key_path_expression] = STATE(1191), - [sym_key_path_string_expression] = STATE(1191), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1191), - [sym__equality_operator] = STATE(1191), - [sym__comparison_operator] = STATE(1191), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1191), - [sym__multiplicative_operator] = STATE(1191), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1191), - [sym__referenceable_operator] = STATE(1191), - [sym__eq_eq] = STATE(1191), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1935), - [sym_real_literal] = ACTIONS(1937), - [sym_integer_literal] = ACTIONS(1935), - [sym_hex_literal] = ACTIONS(1937), - [sym_oct_literal] = ACTIONS(1937), - [sym_bin_literal] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1935), - [anon_sym_GT] = ACTIONS(1935), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1935), - [anon_sym_POUNDfileID] = ACTIONS(1937), - [anon_sym_POUNDfilePath] = ACTIONS(1937), - [anon_sym_POUNDline] = ACTIONS(1937), - [anon_sym_POUNDcolumn] = ACTIONS(1937), - [anon_sym_POUNDfunction] = ACTIONS(1937), - [anon_sym_POUNDdsohandle] = ACTIONS(1937), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1937), - [anon_sym_DASH_EQ] = ACTIONS(1937), - [anon_sym_STAR_EQ] = ACTIONS(1937), - [anon_sym_SLASH_EQ] = ACTIONS(1937), - [anon_sym_PERCENT_EQ] = ACTIONS(1937), - [anon_sym_EQ] = ACTIONS(1935), - [anon_sym_BANG_EQ] = ACTIONS(1935), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1937), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1937), - [anon_sym_LT_EQ] = ACTIONS(1937), - [anon_sym_GT_EQ] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1935), - [anon_sym_SLASH] = ACTIONS(1935), - [anon_sym_PERCENT] = ACTIONS(1935), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_CARET] = ACTIONS(1935), - [anon_sym_LT_LT] = ACTIONS(1937), - [anon_sym_GT_GT] = ACTIONS(1937), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1937), - [sym__plus_then_ws] = ACTIONS(1937), - [sym__minus_then_ws] = ACTIONS(1937), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [469] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1230), - [sym_boolean_literal] = STATE(1230), - [sym__string_literal] = STATE(1230), - [sym_line_string_literal] = STATE(1230), - [sym_multi_line_string_literal] = STATE(1230), - [sym_raw_string_literal] = STATE(1230), - [sym_regex_literal] = STATE(1230), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1230), - [sym__unary_expression] = STATE(1230), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1230), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1230), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1230), - [sym_prefix_expression] = STATE(1230), - [sym_as_expression] = STATE(1230), - [sym_selector_expression] = STATE(1230), - [sym__binary_expression] = STATE(1230), - [sym_multiplicative_expression] = STATE(1230), - [sym_additive_expression] = STATE(1230), - [sym_range_expression] = STATE(1230), - [sym_infix_expression] = STATE(1230), - [sym_nil_coalescing_expression] = STATE(1230), - [sym_check_expression] = STATE(1230), - [sym_comparison_expression] = STATE(1230), - [sym_equality_expression] = STATE(1230), - [sym_conjunction_expression] = STATE(1230), - [sym_disjunction_expression] = STATE(1230), - [sym_bitwise_operation] = STATE(1230), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1230), - [sym_await_expression] = STATE(1230), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1230), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1230), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1230), - [sym_dictionary_literal] = STATE(1230), - [sym__special_literal] = STATE(1230), - [sym__playground_literal] = STATE(1230), - [sym_lambda_literal] = STATE(1230), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1230), - [sym_key_path_expression] = STATE(1230), - [sym_key_path_string_expression] = STATE(1230), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1230), - [sym__equality_operator] = STATE(1230), - [sym__comparison_operator] = STATE(1230), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1230), - [sym__multiplicative_operator] = STATE(1230), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1230), - [sym__referenceable_operator] = STATE(1230), - [sym__eq_eq] = STATE(1230), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1939), - [sym_real_literal] = ACTIONS(1941), - [sym_integer_literal] = ACTIONS(1939), - [sym_hex_literal] = ACTIONS(1941), - [sym_oct_literal] = ACTIONS(1941), - [sym_bin_literal] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1939), - [anon_sym_GT] = ACTIONS(1939), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1939), - [anon_sym_POUNDfileID] = ACTIONS(1941), - [anon_sym_POUNDfilePath] = ACTIONS(1941), - [anon_sym_POUNDline] = ACTIONS(1941), - [anon_sym_POUNDcolumn] = ACTIONS(1941), - [anon_sym_POUNDfunction] = ACTIONS(1941), - [anon_sym_POUNDdsohandle] = ACTIONS(1941), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1941), - [anon_sym_DASH_EQ] = ACTIONS(1941), - [anon_sym_STAR_EQ] = ACTIONS(1941), - [anon_sym_SLASH_EQ] = ACTIONS(1941), - [anon_sym_PERCENT_EQ] = ACTIONS(1941), - [anon_sym_EQ] = ACTIONS(1939), - [anon_sym_BANG_EQ] = ACTIONS(1939), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1941), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1941), - [anon_sym_LT_EQ] = ACTIONS(1941), - [anon_sym_GT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1939), - [anon_sym_SLASH] = ACTIONS(1939), - [anon_sym_PERCENT] = ACTIONS(1939), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1939), - [anon_sym_LT_LT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1941), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1941), - [sym__plus_then_ws] = ACTIONS(1941), - [sym__minus_then_ws] = ACTIONS(1941), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [470] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1284), - [sym_boolean_literal] = STATE(1284), - [sym__string_literal] = STATE(1284), - [sym_line_string_literal] = STATE(1284), - [sym_multi_line_string_literal] = STATE(1284), - [sym_raw_string_literal] = STATE(1284), - [sym_regex_literal] = STATE(1284), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1284), - [sym__unary_expression] = STATE(1284), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1284), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1284), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1284), - [sym_prefix_expression] = STATE(1284), - [sym_as_expression] = STATE(1284), - [sym_selector_expression] = STATE(1284), - [sym__binary_expression] = STATE(1284), - [sym_multiplicative_expression] = STATE(1284), - [sym_additive_expression] = STATE(1284), - [sym_range_expression] = STATE(1284), - [sym_infix_expression] = STATE(1284), - [sym_nil_coalescing_expression] = STATE(1284), - [sym_check_expression] = STATE(1284), - [sym_comparison_expression] = STATE(1284), - [sym_equality_expression] = STATE(1284), - [sym_conjunction_expression] = STATE(1284), - [sym_disjunction_expression] = STATE(1284), - [sym_bitwise_operation] = STATE(1284), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1284), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1284), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1284), - [sym_dictionary_literal] = STATE(1284), - [sym__special_literal] = STATE(1284), - [sym__playground_literal] = STATE(1284), - [sym_lambda_literal] = STATE(1284), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1284), - [sym_key_path_expression] = STATE(1284), - [sym_key_path_string_expression] = STATE(1284), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1284), - [sym__equality_operator] = STATE(1284), - [sym__comparison_operator] = STATE(1284), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1284), - [sym__multiplicative_operator] = STATE(1284), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1284), - [sym__referenceable_operator] = STATE(1284), - [sym__eq_eq] = STATE(1284), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1943), - [sym_real_literal] = ACTIONS(1945), - [sym_integer_literal] = ACTIONS(1943), - [sym_hex_literal] = ACTIONS(1945), - [sym_oct_literal] = ACTIONS(1945), - [sym_bin_literal] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1943), - [anon_sym_GT] = ACTIONS(1943), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1943), - [anon_sym_POUNDfileID] = ACTIONS(1945), - [anon_sym_POUNDfilePath] = ACTIONS(1945), - [anon_sym_POUNDline] = ACTIONS(1945), - [anon_sym_POUNDcolumn] = ACTIONS(1945), - [anon_sym_POUNDfunction] = ACTIONS(1945), - [anon_sym_POUNDdsohandle] = ACTIONS(1945), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1945), - [anon_sym_DASH_EQ] = ACTIONS(1945), - [anon_sym_STAR_EQ] = ACTIONS(1945), - [anon_sym_SLASH_EQ] = ACTIONS(1945), - [anon_sym_PERCENT_EQ] = ACTIONS(1945), - [anon_sym_EQ] = ACTIONS(1943), - [anon_sym_BANG_EQ] = ACTIONS(1943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1945), - [anon_sym_LT_EQ] = ACTIONS(1945), - [anon_sym_GT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1943), - [anon_sym_SLASH] = ACTIONS(1943), - [anon_sym_PERCENT] = ACTIONS(1943), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1943), - [anon_sym_LT_LT] = ACTIONS(1945), - [anon_sym_GT_GT] = ACTIONS(1945), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1945), - [sym__plus_then_ws] = ACTIONS(1945), - [sym__minus_then_ws] = ACTIONS(1945), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [471] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1283), - [sym_boolean_literal] = STATE(1283), - [sym__string_literal] = STATE(1283), - [sym_line_string_literal] = STATE(1283), - [sym_multi_line_string_literal] = STATE(1283), - [sym_raw_string_literal] = STATE(1283), - [sym_regex_literal] = STATE(1283), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1283), - [sym__unary_expression] = STATE(1283), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1283), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1283), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1283), - [sym_prefix_expression] = STATE(1283), - [sym_as_expression] = STATE(1283), - [sym_selector_expression] = STATE(1283), - [sym__binary_expression] = STATE(1283), - [sym_multiplicative_expression] = STATE(1283), - [sym_additive_expression] = STATE(1283), - [sym_range_expression] = STATE(1283), - [sym_infix_expression] = STATE(1283), - [sym_nil_coalescing_expression] = STATE(1283), - [sym_check_expression] = STATE(1283), - [sym_comparison_expression] = STATE(1283), - [sym_equality_expression] = STATE(1283), - [sym_conjunction_expression] = STATE(1283), - [sym_disjunction_expression] = STATE(1283), - [sym_bitwise_operation] = STATE(1283), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1283), - [sym_await_expression] = STATE(1283), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1283), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1283), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1283), - [sym_dictionary_literal] = STATE(1283), - [sym__special_literal] = STATE(1283), - [sym__playground_literal] = STATE(1283), - [sym_lambda_literal] = STATE(1283), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1283), - [sym_key_path_expression] = STATE(1283), - [sym_key_path_string_expression] = STATE(1283), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1283), - [sym__equality_operator] = STATE(1283), - [sym__comparison_operator] = STATE(1283), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1283), - [sym__multiplicative_operator] = STATE(1283), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1283), - [sym__referenceable_operator] = STATE(1283), - [sym__eq_eq] = STATE(1283), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1947), - [sym_real_literal] = ACTIONS(1949), - [sym_integer_literal] = ACTIONS(1947), - [sym_hex_literal] = ACTIONS(1949), - [sym_oct_literal] = ACTIONS(1949), - [sym_bin_literal] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1947), - [anon_sym_GT] = ACTIONS(1947), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1947), - [anon_sym_POUNDfileID] = ACTIONS(1949), - [anon_sym_POUNDfilePath] = ACTIONS(1949), - [anon_sym_POUNDline] = ACTIONS(1949), - [anon_sym_POUNDcolumn] = ACTIONS(1949), - [anon_sym_POUNDfunction] = ACTIONS(1949), - [anon_sym_POUNDdsohandle] = ACTIONS(1949), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1949), - [anon_sym_DASH_EQ] = ACTIONS(1949), - [anon_sym_STAR_EQ] = ACTIONS(1949), - [anon_sym_SLASH_EQ] = ACTIONS(1949), - [anon_sym_PERCENT_EQ] = ACTIONS(1949), - [anon_sym_EQ] = ACTIONS(1947), - [anon_sym_BANG_EQ] = ACTIONS(1947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1949), - [anon_sym_LT_EQ] = ACTIONS(1949), - [anon_sym_GT_EQ] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1947), - [anon_sym_SLASH] = ACTIONS(1947), - [anon_sym_PERCENT] = ACTIONS(1947), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_CARET] = ACTIONS(1947), - [anon_sym_LT_LT] = ACTIONS(1949), - [anon_sym_GT_GT] = ACTIONS(1949), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1949), - [sym__plus_then_ws] = ACTIONS(1949), - [sym__minus_then_ws] = ACTIONS(1949), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [472] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1190), - [sym_boolean_literal] = STATE(1190), - [sym__string_literal] = STATE(1190), - [sym_line_string_literal] = STATE(1190), - [sym_multi_line_string_literal] = STATE(1190), - [sym_raw_string_literal] = STATE(1190), - [sym_regex_literal] = STATE(1190), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(1190), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1190), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1190), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1190), - [sym_prefix_expression] = STATE(1190), - [sym_as_expression] = STATE(1190), - [sym_selector_expression] = STATE(1190), - [sym__binary_expression] = STATE(1190), - [sym_multiplicative_expression] = STATE(1190), - [sym_additive_expression] = STATE(1190), - [sym_range_expression] = STATE(1190), - [sym_infix_expression] = STATE(1190), - [sym_nil_coalescing_expression] = STATE(1190), - [sym_check_expression] = STATE(1190), - [sym_comparison_expression] = STATE(1190), - [sym_equality_expression] = STATE(1190), - [sym_conjunction_expression] = STATE(1190), - [sym_disjunction_expression] = STATE(1190), - [sym_bitwise_operation] = STATE(1190), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1190), - [sym_await_expression] = STATE(1190), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(2475), - [sym_call_expression] = STATE(1815), - [sym__primary_expression] = STATE(1190), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1190), - [sym_dictionary_literal] = STATE(1190), - [sym__special_literal] = STATE(1190), - [sym__playground_literal] = STATE(1190), - [sym_lambda_literal] = STATE(1190), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1190), - [sym_key_path_expression] = STATE(1190), - [sym_key_path_string_expression] = STATE(1190), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1190), - [sym__equality_operator] = STATE(1190), - [sym__comparison_operator] = STATE(1190), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1190), - [sym__multiplicative_operator] = STATE(1190), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1190), - [sym__referenceable_operator] = STATE(1190), - [sym__eq_eq] = STATE(1190), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1951), - [sym_real_literal] = ACTIONS(1953), - [sym_integer_literal] = ACTIONS(1951), - [sym_hex_literal] = ACTIONS(1953), - [sym_oct_literal] = ACTIONS(1953), - [sym_bin_literal] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1951), - [anon_sym_POUNDfileID] = ACTIONS(1953), - [anon_sym_POUNDfilePath] = ACTIONS(1953), - [anon_sym_POUNDline] = ACTIONS(1953), - [anon_sym_POUNDcolumn] = ACTIONS(1953), - [anon_sym_POUNDfunction] = ACTIONS(1953), - [anon_sym_POUNDdsohandle] = ACTIONS(1953), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1953), - [anon_sym_DASH_EQ] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1953), - [anon_sym_SLASH_EQ] = ACTIONS(1953), - [anon_sym_PERCENT_EQ] = ACTIONS(1953), - [anon_sym_EQ] = ACTIONS(1951), - [anon_sym_BANG_EQ] = ACTIONS(1951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1951), - [anon_sym_SLASH] = ACTIONS(1951), - [anon_sym_PERCENT] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_LT_LT] = ACTIONS(1953), - [anon_sym_GT_GT] = ACTIONS(1953), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1953), - [sym__plus_then_ws] = ACTIONS(1953), - [sym__minus_then_ws] = ACTIONS(1953), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [473] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1250), - [sym_boolean_literal] = STATE(1250), - [sym__string_literal] = STATE(1250), - [sym_line_string_literal] = STATE(1250), - [sym_multi_line_string_literal] = STATE(1250), - [sym_raw_string_literal] = STATE(1250), - [sym_regex_literal] = STATE(1250), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1250), - [sym__unary_expression] = STATE(1250), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1250), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1250), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1250), - [sym_prefix_expression] = STATE(1250), - [sym_as_expression] = STATE(1250), - [sym_selector_expression] = STATE(1250), - [sym__binary_expression] = STATE(1250), - [sym_multiplicative_expression] = STATE(1250), - [sym_additive_expression] = STATE(1250), - [sym_range_expression] = STATE(1250), - [sym_infix_expression] = STATE(1250), - [sym_nil_coalescing_expression] = STATE(1250), - [sym_check_expression] = STATE(1250), - [sym_comparison_expression] = STATE(1250), - [sym_equality_expression] = STATE(1250), - [sym_conjunction_expression] = STATE(1250), - [sym_disjunction_expression] = STATE(1250), - [sym_bitwise_operation] = STATE(1250), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1250), - [sym_await_expression] = STATE(1250), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(2647), - [sym_call_expression] = STATE(1957), - [sym__primary_expression] = STATE(1250), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1250), - [sym_dictionary_literal] = STATE(1250), - [sym__special_literal] = STATE(1250), - [sym__playground_literal] = STATE(1250), - [sym_lambda_literal] = STATE(1250), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1250), - [sym_key_path_expression] = STATE(1250), - [sym_key_path_string_expression] = STATE(1250), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1250), - [sym__equality_operator] = STATE(1250), - [sym__comparison_operator] = STATE(1250), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1250), - [sym__multiplicative_operator] = STATE(1250), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1250), - [sym__referenceable_operator] = STATE(1250), - [sym__eq_eq] = STATE(1250), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1955), - [sym_real_literal] = ACTIONS(1957), - [sym_integer_literal] = ACTIONS(1955), - [sym_hex_literal] = ACTIONS(1957), - [sym_oct_literal] = ACTIONS(1957), - [sym_bin_literal] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1955), - [anon_sym_GT] = ACTIONS(1955), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1955), - [anon_sym_POUNDfileID] = ACTIONS(1957), - [anon_sym_POUNDfilePath] = ACTIONS(1957), - [anon_sym_POUNDline] = ACTIONS(1957), - [anon_sym_POUNDcolumn] = ACTIONS(1957), - [anon_sym_POUNDfunction] = ACTIONS(1957), - [anon_sym_POUNDdsohandle] = ACTIONS(1957), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(1957), - [anon_sym_DASH_EQ] = ACTIONS(1957), - [anon_sym_STAR_EQ] = ACTIONS(1957), - [anon_sym_SLASH_EQ] = ACTIONS(1957), - [anon_sym_PERCENT_EQ] = ACTIONS(1957), - [anon_sym_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1957), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1957), - [anon_sym_LT_EQ] = ACTIONS(1957), - [anon_sym_GT_EQ] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_SLASH] = ACTIONS(1955), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_LT_LT] = ACTIONS(1957), - [anon_sym_GT_GT] = ACTIONS(1957), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(1957), - [sym__plus_then_ws] = ACTIONS(1957), - [sym__minus_then_ws] = ACTIONS(1957), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [474] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1142), - [sym_boolean_literal] = STATE(1142), - [sym__string_literal] = STATE(1142), - [sym_line_string_literal] = STATE(1142), - [sym_multi_line_string_literal] = STATE(1142), - [sym_raw_string_literal] = STATE(1142), - [sym_regex_literal] = STATE(1142), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1142), - [sym__unary_expression] = STATE(1142), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1142), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1142), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1142), - [sym_prefix_expression] = STATE(1142), - [sym_as_expression] = STATE(1142), - [sym_selector_expression] = STATE(1142), - [sym__binary_expression] = STATE(1142), - [sym_multiplicative_expression] = STATE(1142), - [sym_additive_expression] = STATE(1142), - [sym_range_expression] = STATE(1142), - [sym_infix_expression] = STATE(1142), - [sym_nil_coalescing_expression] = STATE(1142), - [sym_check_expression] = STATE(1142), - [sym_comparison_expression] = STATE(1142), - [sym_equality_expression] = STATE(1142), - [sym_conjunction_expression] = STATE(1142), - [sym_disjunction_expression] = STATE(1142), - [sym_bitwise_operation] = STATE(1142), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1142), - [sym_await_expression] = STATE(1142), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1142), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1142), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1142), - [sym_dictionary_literal] = STATE(1142), - [sym__special_literal] = STATE(1142), - [sym__playground_literal] = STATE(1142), - [sym_lambda_literal] = STATE(1142), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1142), - [sym_key_path_expression] = STATE(1142), - [sym_key_path_string_expression] = STATE(1142), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1142), - [sym__equality_operator] = STATE(1142), - [sym__comparison_operator] = STATE(1142), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1142), - [sym__multiplicative_operator] = STATE(1142), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1142), - [sym__referenceable_operator] = STATE(1142), - [sym__eq_eq] = STATE(1142), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(1959), - [sym_real_literal] = ACTIONS(1961), - [sym_integer_literal] = ACTIONS(1959), - [sym_hex_literal] = ACTIONS(1961), - [sym_oct_literal] = ACTIONS(1961), - [sym_bin_literal] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(1959), - [anon_sym_POUNDfileID] = ACTIONS(1961), - [anon_sym_POUNDfilePath] = ACTIONS(1961), - [anon_sym_POUNDline] = ACTIONS(1961), - [anon_sym_POUNDcolumn] = ACTIONS(1961), - [anon_sym_POUNDfunction] = ACTIONS(1961), - [anon_sym_POUNDdsohandle] = ACTIONS(1961), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(1961), - [anon_sym_DASH_EQ] = ACTIONS(1961), - [anon_sym_STAR_EQ] = ACTIONS(1961), - [anon_sym_SLASH_EQ] = ACTIONS(1961), - [anon_sym_PERCENT_EQ] = ACTIONS(1961), - [anon_sym_EQ] = ACTIONS(1959), - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1961), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1961), - [anon_sym_LT_EQ] = ACTIONS(1961), - [anon_sym_GT_EQ] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(1959), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1961), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(1961), - [sym__plus_then_ws] = ACTIONS(1961), - [sym__minus_then_ws] = ACTIONS(1961), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [475] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1189), - [sym_boolean_literal] = STATE(1189), - [sym__string_literal] = STATE(1189), - [sym_line_string_literal] = STATE(1189), - [sym_multi_line_string_literal] = STATE(1189), - [sym_raw_string_literal] = STATE(1189), - [sym_regex_literal] = STATE(1189), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(1189), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1189), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1189), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1189), - [sym_prefix_expression] = STATE(1189), - [sym_as_expression] = STATE(1189), - [sym_selector_expression] = STATE(1189), - [sym__binary_expression] = STATE(1189), - [sym_multiplicative_expression] = STATE(1189), - [sym_additive_expression] = STATE(1189), - [sym_range_expression] = STATE(1189), - [sym_infix_expression] = STATE(1189), - [sym_nil_coalescing_expression] = STATE(1189), - [sym_check_expression] = STATE(1189), - [sym_comparison_expression] = STATE(1189), - [sym_equality_expression] = STATE(1189), - [sym_conjunction_expression] = STATE(1189), - [sym_disjunction_expression] = STATE(1189), - [sym_bitwise_operation] = STATE(1189), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1189), - [sym_await_expression] = STATE(1189), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1189), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1189), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1189), - [sym_dictionary_literal] = STATE(1189), - [sym__special_literal] = STATE(1189), - [sym__playground_literal] = STATE(1189), - [sym_lambda_literal] = STATE(1189), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1189), - [sym_key_path_expression] = STATE(1189), - [sym_key_path_string_expression] = STATE(1189), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1189), - [sym__equality_operator] = STATE(1189), - [sym__comparison_operator] = STATE(1189), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1189), - [sym__multiplicative_operator] = STATE(1189), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1189), - [sym__referenceable_operator] = STATE(1189), - [sym__eq_eq] = STATE(1189), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(1963), - [sym_real_literal] = ACTIONS(1965), - [sym_integer_literal] = ACTIONS(1963), - [sym_hex_literal] = ACTIONS(1965), - [sym_oct_literal] = ACTIONS(1965), - [sym_bin_literal] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(1963), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(1963), - [anon_sym_POUNDfileID] = ACTIONS(1965), - [anon_sym_POUNDfilePath] = ACTIONS(1965), - [anon_sym_POUNDline] = ACTIONS(1965), - [anon_sym_POUNDcolumn] = ACTIONS(1965), - [anon_sym_POUNDfunction] = ACTIONS(1965), - [anon_sym_POUNDdsohandle] = ACTIONS(1965), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(1965), - [anon_sym_DASH_EQ] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1965), - [anon_sym_SLASH_EQ] = ACTIONS(1965), - [anon_sym_PERCENT_EQ] = ACTIONS(1965), - [anon_sym_EQ] = ACTIONS(1963), - [anon_sym_BANG_EQ] = ACTIONS(1963), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1965), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1963), - [anon_sym_SLASH] = ACTIONS(1963), - [anon_sym_PERCENT] = ACTIONS(1963), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1963), - [anon_sym_LT_LT] = ACTIONS(1965), - [anon_sym_GT_GT] = ACTIONS(1965), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(1965), - [sym__plus_then_ws] = ACTIONS(1965), - [sym__minus_then_ws] = ACTIONS(1965), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [476] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1267), - [sym_boolean_literal] = STATE(1267), - [sym__string_literal] = STATE(1267), - [sym_line_string_literal] = STATE(1267), - [sym_multi_line_string_literal] = STATE(1267), - [sym_raw_string_literal] = STATE(1267), - [sym_regex_literal] = STATE(1267), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1267), - [sym__unary_expression] = STATE(1267), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1267), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1267), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1267), - [sym_prefix_expression] = STATE(1267), - [sym_as_expression] = STATE(1267), - [sym_selector_expression] = STATE(1267), - [sym__binary_expression] = STATE(1267), - [sym_multiplicative_expression] = STATE(1267), - [sym_additive_expression] = STATE(1267), - [sym_range_expression] = STATE(1267), - [sym_infix_expression] = STATE(1267), - [sym_nil_coalescing_expression] = STATE(1267), - [sym_check_expression] = STATE(1267), - [sym_comparison_expression] = STATE(1267), - [sym_equality_expression] = STATE(1267), - [sym_conjunction_expression] = STATE(1267), - [sym_disjunction_expression] = STATE(1267), - [sym_bitwise_operation] = STATE(1267), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1267), - [sym_await_expression] = STATE(1267), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1267), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1267), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1267), - [sym_dictionary_literal] = STATE(1267), - [sym__special_literal] = STATE(1267), - [sym__playground_literal] = STATE(1267), - [sym_lambda_literal] = STATE(1267), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1267), - [sym_key_path_expression] = STATE(1267), - [sym_key_path_string_expression] = STATE(1267), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1267), - [sym__equality_operator] = STATE(1267), - [sym__comparison_operator] = STATE(1267), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1267), - [sym__multiplicative_operator] = STATE(1267), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1267), - [sym__referenceable_operator] = STATE(1267), - [sym__eq_eq] = STATE(1267), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1967), - [sym_real_literal] = ACTIONS(1969), - [sym_integer_literal] = ACTIONS(1967), - [sym_hex_literal] = ACTIONS(1969), - [sym_oct_literal] = ACTIONS(1969), - [sym_bin_literal] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1967), - [anon_sym_GT] = ACTIONS(1967), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1967), - [anon_sym_POUNDfileID] = ACTIONS(1969), - [anon_sym_POUNDfilePath] = ACTIONS(1969), - [anon_sym_POUNDline] = ACTIONS(1969), - [anon_sym_POUNDcolumn] = ACTIONS(1969), - [anon_sym_POUNDfunction] = ACTIONS(1969), - [anon_sym_POUNDdsohandle] = ACTIONS(1969), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1969), - [anon_sym_DASH_EQ] = ACTIONS(1969), - [anon_sym_STAR_EQ] = ACTIONS(1969), - [anon_sym_SLASH_EQ] = ACTIONS(1969), - [anon_sym_PERCENT_EQ] = ACTIONS(1969), - [anon_sym_EQ] = ACTIONS(1967), - [anon_sym_BANG_EQ] = ACTIONS(1967), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1969), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1969), - [anon_sym_LT_EQ] = ACTIONS(1969), - [anon_sym_GT_EQ] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1967), - [anon_sym_SLASH] = ACTIONS(1967), - [anon_sym_PERCENT] = ACTIONS(1967), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_CARET] = ACTIONS(1967), - [anon_sym_LT_LT] = ACTIONS(1969), - [anon_sym_GT_GT] = ACTIONS(1969), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1969), - [sym__plus_then_ws] = ACTIONS(1969), - [sym__minus_then_ws] = ACTIONS(1969), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [477] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1201), - [sym_boolean_literal] = STATE(1201), - [sym__string_literal] = STATE(1201), - [sym_line_string_literal] = STATE(1201), - [sym_multi_line_string_literal] = STATE(1201), - [sym_raw_string_literal] = STATE(1201), - [sym_regex_literal] = STATE(1201), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(1201), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1201), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1201), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1201), - [sym_prefix_expression] = STATE(1201), - [sym_as_expression] = STATE(1201), - [sym_selector_expression] = STATE(1201), - [sym__binary_expression] = STATE(1201), - [sym_multiplicative_expression] = STATE(1201), - [sym_additive_expression] = STATE(1201), - [sym_range_expression] = STATE(1201), - [sym_infix_expression] = STATE(1201), - [sym_nil_coalescing_expression] = STATE(1201), - [sym_check_expression] = STATE(1201), - [sym_comparison_expression] = STATE(1201), - [sym_equality_expression] = STATE(1201), - [sym_conjunction_expression] = STATE(1201), - [sym_disjunction_expression] = STATE(1201), - [sym_bitwise_operation] = STATE(1201), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1201), - [sym_await_expression] = STATE(1201), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1201), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1201), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1201), - [sym_dictionary_literal] = STATE(1201), - [sym__special_literal] = STATE(1201), - [sym__playground_literal] = STATE(1201), - [sym_lambda_literal] = STATE(1201), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1201), - [sym_key_path_expression] = STATE(1201), - [sym_key_path_string_expression] = STATE(1201), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1201), - [sym__equality_operator] = STATE(1201), - [sym__comparison_operator] = STATE(1201), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1201), - [sym__multiplicative_operator] = STATE(1201), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1201), - [sym__referenceable_operator] = STATE(1201), - [sym__eq_eq] = STATE(1201), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1971), - [sym_real_literal] = ACTIONS(1973), - [sym_integer_literal] = ACTIONS(1971), - [sym_hex_literal] = ACTIONS(1973), - [sym_oct_literal] = ACTIONS(1973), - [sym_bin_literal] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1971), - [anon_sym_POUNDfileID] = ACTIONS(1973), - [anon_sym_POUNDfilePath] = ACTIONS(1973), - [anon_sym_POUNDline] = ACTIONS(1973), - [anon_sym_POUNDcolumn] = ACTIONS(1973), - [anon_sym_POUNDfunction] = ACTIONS(1973), - [anon_sym_POUNDdsohandle] = ACTIONS(1973), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1973), - [anon_sym_DASH_EQ] = ACTIONS(1973), - [anon_sym_STAR_EQ] = ACTIONS(1973), - [anon_sym_SLASH_EQ] = ACTIONS(1973), - [anon_sym_PERCENT_EQ] = ACTIONS(1973), - [anon_sym_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1973), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(1973), - [anon_sym_GT_EQ] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1973), - [anon_sym_GT_GT] = ACTIONS(1973), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1973), - [sym__plus_then_ws] = ACTIONS(1973), - [sym__minus_then_ws] = ACTIONS(1973), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [478] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(610), - [sym_boolean_literal] = STATE(610), - [sym__string_literal] = STATE(610), - [sym_line_string_literal] = STATE(610), - [sym_multi_line_string_literal] = STATE(610), - [sym_raw_string_literal] = STATE(610), - [sym_regex_literal] = STATE(610), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(610), - [sym__unary_expression] = STATE(610), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(610), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(610), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(610), - [sym_prefix_expression] = STATE(610), - [sym_as_expression] = STATE(610), - [sym_selector_expression] = STATE(610), - [sym__binary_expression] = STATE(610), - [sym_multiplicative_expression] = STATE(610), - [sym_additive_expression] = STATE(610), - [sym_range_expression] = STATE(610), - [sym_infix_expression] = STATE(610), - [sym_nil_coalescing_expression] = STATE(610), - [sym_check_expression] = STATE(610), - [sym_comparison_expression] = STATE(610), - [sym_equality_expression] = STATE(610), - [sym_conjunction_expression] = STATE(610), - [sym_disjunction_expression] = STATE(610), - [sym_bitwise_operation] = STATE(610), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(610), - [sym_await_expression] = STATE(610), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(1063), - [sym_call_expression] = STATE(883), - [sym__primary_expression] = STATE(610), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(610), - [sym_dictionary_literal] = STATE(610), - [sym__special_literal] = STATE(610), - [sym__playground_literal] = STATE(610), - [sym_lambda_literal] = STATE(610), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(610), - [sym_key_path_expression] = STATE(610), - [sym_key_path_string_expression] = STATE(610), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(610), - [sym__equality_operator] = STATE(610), - [sym__comparison_operator] = STATE(610), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(610), - [sym__multiplicative_operator] = STATE(610), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(610), - [sym__referenceable_operator] = STATE(610), - [sym__eq_eq] = STATE(610), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1975), - [sym_real_literal] = ACTIONS(1977), - [sym_integer_literal] = ACTIONS(1975), - [sym_hex_literal] = ACTIONS(1977), - [sym_oct_literal] = ACTIONS(1977), - [sym_bin_literal] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1975), - [anon_sym_GT] = ACTIONS(1975), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1975), - [anon_sym_POUNDfileID] = ACTIONS(1977), - [anon_sym_POUNDfilePath] = ACTIONS(1977), - [anon_sym_POUNDline] = ACTIONS(1977), - [anon_sym_POUNDcolumn] = ACTIONS(1977), - [anon_sym_POUNDfunction] = ACTIONS(1977), - [anon_sym_POUNDdsohandle] = ACTIONS(1977), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1977), - [anon_sym_DASH_EQ] = ACTIONS(1977), - [anon_sym_STAR_EQ] = ACTIONS(1977), - [anon_sym_SLASH_EQ] = ACTIONS(1977), - [anon_sym_PERCENT_EQ] = ACTIONS(1977), - [anon_sym_EQ] = ACTIONS(1975), - [anon_sym_BANG_EQ] = ACTIONS(1975), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1977), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1977), - [anon_sym_LT_EQ] = ACTIONS(1977), - [anon_sym_GT_EQ] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_SLASH] = ACTIONS(1975), - [anon_sym_PERCENT] = ACTIONS(1975), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1977), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_LT_LT] = ACTIONS(1977), - [anon_sym_GT_GT] = ACTIONS(1977), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1977), - [sym__plus_then_ws] = ACTIONS(1977), - [sym__minus_then_ws] = ACTIONS(1977), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [479] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1354), - [sym_boolean_literal] = STATE(1354), - [sym__string_literal] = STATE(1354), - [sym_line_string_literal] = STATE(1354), - [sym_multi_line_string_literal] = STATE(1354), - [sym_raw_string_literal] = STATE(1354), - [sym_regex_literal] = STATE(1354), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1354), - [sym__unary_expression] = STATE(1354), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1354), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1354), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1354), - [sym_prefix_expression] = STATE(1354), - [sym_as_expression] = STATE(1354), - [sym_selector_expression] = STATE(1354), - [sym__binary_expression] = STATE(1354), - [sym_multiplicative_expression] = STATE(1354), - [sym_additive_expression] = STATE(1354), - [sym_range_expression] = STATE(1354), - [sym_infix_expression] = STATE(1354), - [sym_nil_coalescing_expression] = STATE(1354), - [sym_check_expression] = STATE(1354), - [sym_comparison_expression] = STATE(1354), - [sym_equality_expression] = STATE(1354), - [sym_conjunction_expression] = STATE(1354), - [sym_disjunction_expression] = STATE(1354), - [sym_bitwise_operation] = STATE(1354), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1354), - [sym_await_expression] = STATE(1354), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1354), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1354), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1354), - [sym_dictionary_literal] = STATE(1354), - [sym__special_literal] = STATE(1354), - [sym__playground_literal] = STATE(1354), - [sym_lambda_literal] = STATE(1354), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1354), - [sym_key_path_expression] = STATE(1354), - [sym_key_path_string_expression] = STATE(1354), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1354), - [sym__equality_operator] = STATE(1354), - [sym__comparison_operator] = STATE(1354), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1354), - [sym__multiplicative_operator] = STATE(1354), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1354), - [sym__referenceable_operator] = STATE(1354), - [sym__eq_eq] = STATE(1354), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1979), - [sym_real_literal] = ACTIONS(1981), - [sym_integer_literal] = ACTIONS(1979), - [sym_hex_literal] = ACTIONS(1981), - [sym_oct_literal] = ACTIONS(1981), - [sym_bin_literal] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1979), - [anon_sym_GT] = ACTIONS(1979), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(1979), - [anon_sym_POUNDfileID] = ACTIONS(1981), - [anon_sym_POUNDfilePath] = ACTIONS(1981), - [anon_sym_POUNDline] = ACTIONS(1981), - [anon_sym_POUNDcolumn] = ACTIONS(1981), - [anon_sym_POUNDfunction] = ACTIONS(1981), - [anon_sym_POUNDdsohandle] = ACTIONS(1981), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(1981), - [anon_sym_DASH_EQ] = ACTIONS(1981), - [anon_sym_STAR_EQ] = ACTIONS(1981), - [anon_sym_SLASH_EQ] = ACTIONS(1981), - [anon_sym_PERCENT_EQ] = ACTIONS(1981), - [anon_sym_EQ] = ACTIONS(1979), - [anon_sym_BANG_EQ] = ACTIONS(1979), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1981), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1981), - [anon_sym_LT_EQ] = ACTIONS(1981), - [anon_sym_GT_EQ] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1979), - [anon_sym_SLASH] = ACTIONS(1979), - [anon_sym_PERCENT] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_LT_LT] = ACTIONS(1981), - [anon_sym_GT_GT] = ACTIONS(1981), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(1981), - [sym__plus_then_ws] = ACTIONS(1981), - [sym__minus_then_ws] = ACTIONS(1981), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [480] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(612), - [sym_boolean_literal] = STATE(612), - [sym__string_literal] = STATE(612), - [sym_line_string_literal] = STATE(612), - [sym_multi_line_string_literal] = STATE(612), - [sym_raw_string_literal] = STATE(612), - [sym_regex_literal] = STATE(612), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(612), - [sym__unary_expression] = STATE(612), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(612), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(612), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(612), - [sym_prefix_expression] = STATE(612), - [sym_as_expression] = STATE(612), - [sym_selector_expression] = STATE(612), - [sym__binary_expression] = STATE(612), - [sym_multiplicative_expression] = STATE(612), - [sym_additive_expression] = STATE(612), - [sym_range_expression] = STATE(612), - [sym_infix_expression] = STATE(612), - [sym_nil_coalescing_expression] = STATE(612), - [sym_check_expression] = STATE(612), - [sym_comparison_expression] = STATE(612), - [sym_equality_expression] = STATE(612), - [sym_conjunction_expression] = STATE(612), - [sym_disjunction_expression] = STATE(612), - [sym_bitwise_operation] = STATE(612), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(612), - [sym_await_expression] = STATE(612), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(612), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(612), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(612), - [sym_dictionary_literal] = STATE(612), - [sym__special_literal] = STATE(612), - [sym__playground_literal] = STATE(612), - [sym_lambda_literal] = STATE(612), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(612), - [sym_key_path_expression] = STATE(612), - [sym_key_path_string_expression] = STATE(612), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(612), - [sym__equality_operator] = STATE(612), - [sym__comparison_operator] = STATE(612), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(612), - [sym__multiplicative_operator] = STATE(612), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(612), - [sym__referenceable_operator] = STATE(612), - [sym__eq_eq] = STATE(612), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1983), - [sym_real_literal] = ACTIONS(1985), - [sym_integer_literal] = ACTIONS(1983), - [sym_hex_literal] = ACTIONS(1985), - [sym_oct_literal] = ACTIONS(1985), - [sym_bin_literal] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1983), - [anon_sym_GT] = ACTIONS(1983), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1983), - [anon_sym_POUNDfileID] = ACTIONS(1985), - [anon_sym_POUNDfilePath] = ACTIONS(1985), - [anon_sym_POUNDline] = ACTIONS(1985), - [anon_sym_POUNDcolumn] = ACTIONS(1985), - [anon_sym_POUNDfunction] = ACTIONS(1985), - [anon_sym_POUNDdsohandle] = ACTIONS(1985), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1985), - [anon_sym_DASH_EQ] = ACTIONS(1985), - [anon_sym_STAR_EQ] = ACTIONS(1985), - [anon_sym_SLASH_EQ] = ACTIONS(1985), - [anon_sym_PERCENT_EQ] = ACTIONS(1985), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_BANG_EQ] = ACTIONS(1983), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1985), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1985), - [anon_sym_LT_EQ] = ACTIONS(1985), - [anon_sym_GT_EQ] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1983), - [anon_sym_SLASH] = ACTIONS(1983), - [anon_sym_PERCENT] = ACTIONS(1983), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_CARET] = ACTIONS(1983), - [anon_sym_LT_LT] = ACTIONS(1985), - [anon_sym_GT_GT] = ACTIONS(1985), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1985), - [sym__plus_then_ws] = ACTIONS(1985), - [sym__minus_then_ws] = ACTIONS(1985), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [481] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(641), - [sym_boolean_literal] = STATE(641), - [sym__string_literal] = STATE(641), - [sym_line_string_literal] = STATE(641), - [sym_multi_line_string_literal] = STATE(641), - [sym_raw_string_literal] = STATE(641), - [sym_regex_literal] = STATE(641), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(641), - [sym__unary_expression] = STATE(641), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(641), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(641), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(641), - [sym_prefix_expression] = STATE(641), - [sym_as_expression] = STATE(641), - [sym_selector_expression] = STATE(641), - [sym__binary_expression] = STATE(641), - [sym_multiplicative_expression] = STATE(641), - [sym_additive_expression] = STATE(641), - [sym_range_expression] = STATE(641), - [sym_infix_expression] = STATE(641), - [sym_nil_coalescing_expression] = STATE(641), - [sym_check_expression] = STATE(641), - [sym_comparison_expression] = STATE(641), - [sym_equality_expression] = STATE(641), - [sym_conjunction_expression] = STATE(641), - [sym_disjunction_expression] = STATE(641), - [sym_bitwise_operation] = STATE(641), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(641), - [sym_await_expression] = STATE(641), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(641), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(641), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(641), - [sym_dictionary_literal] = STATE(641), - [sym__special_literal] = STATE(641), - [sym__playground_literal] = STATE(641), - [sym_lambda_literal] = STATE(641), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(641), - [sym_key_path_expression] = STATE(641), - [sym_key_path_string_expression] = STATE(641), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(641), - [sym__equality_operator] = STATE(641), - [sym__comparison_operator] = STATE(641), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(641), - [sym__multiplicative_operator] = STATE(641), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(641), - [sym__referenceable_operator] = STATE(641), - [sym__eq_eq] = STATE(641), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(1987), - [sym_real_literal] = ACTIONS(1989), - [sym_integer_literal] = ACTIONS(1987), - [sym_hex_literal] = ACTIONS(1989), - [sym_oct_literal] = ACTIONS(1989), - [sym_bin_literal] = ACTIONS(1989), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(1987), - [anon_sym_GT] = ACTIONS(1987), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(1987), - [anon_sym_POUNDfileID] = ACTIONS(1989), - [anon_sym_POUNDfilePath] = ACTIONS(1989), - [anon_sym_POUNDline] = ACTIONS(1989), - [anon_sym_POUNDcolumn] = ACTIONS(1989), - [anon_sym_POUNDfunction] = ACTIONS(1989), - [anon_sym_POUNDdsohandle] = ACTIONS(1989), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(1989), - [anon_sym_DASH_EQ] = ACTIONS(1989), - [anon_sym_STAR_EQ] = ACTIONS(1989), - [anon_sym_SLASH_EQ] = ACTIONS(1989), - [anon_sym_PERCENT_EQ] = ACTIONS(1989), - [anon_sym_EQ] = ACTIONS(1987), - [anon_sym_BANG_EQ] = ACTIONS(1987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1989), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1989), - [anon_sym_LT_EQ] = ACTIONS(1989), - [anon_sym_GT_EQ] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(1987), - [anon_sym_SLASH] = ACTIONS(1987), - [anon_sym_PERCENT] = ACTIONS(1987), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_LT_LT] = ACTIONS(1989), - [anon_sym_GT_GT] = ACTIONS(1989), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(1989), - [sym__plus_then_ws] = ACTIONS(1989), - [sym__minus_then_ws] = ACTIONS(1989), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [482] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(616), - [sym_boolean_literal] = STATE(616), - [sym__string_literal] = STATE(616), - [sym_line_string_literal] = STATE(616), - [sym_multi_line_string_literal] = STATE(616), - [sym_raw_string_literal] = STATE(616), - [sym_regex_literal] = STATE(616), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(616), - [sym__unary_expression] = STATE(616), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(616), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(616), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(616), - [sym_prefix_expression] = STATE(616), - [sym_as_expression] = STATE(616), - [sym_selector_expression] = STATE(616), - [sym__binary_expression] = STATE(616), - [sym_multiplicative_expression] = STATE(616), - [sym_additive_expression] = STATE(616), - [sym_range_expression] = STATE(616), - [sym_infix_expression] = STATE(616), - [sym_nil_coalescing_expression] = STATE(616), - [sym_check_expression] = STATE(616), - [sym_comparison_expression] = STATE(616), - [sym_equality_expression] = STATE(616), - [sym_conjunction_expression] = STATE(616), - [sym_disjunction_expression] = STATE(616), - [sym_bitwise_operation] = STATE(616), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(616), - [sym_await_expression] = STATE(616), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(616), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(616), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(616), - [sym_dictionary_literal] = STATE(616), - [sym__special_literal] = STATE(616), - [sym__playground_literal] = STATE(616), - [sym_lambda_literal] = STATE(616), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(616), - [sym_key_path_expression] = STATE(616), - [sym_key_path_string_expression] = STATE(616), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(616), - [sym__equality_operator] = STATE(616), - [sym__comparison_operator] = STATE(616), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(616), - [sym__multiplicative_operator] = STATE(616), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(616), - [sym__referenceable_operator] = STATE(616), - [sym__eq_eq] = STATE(616), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(1991), - [sym_real_literal] = ACTIONS(1993), - [sym_integer_literal] = ACTIONS(1991), - [sym_hex_literal] = ACTIONS(1993), - [sym_oct_literal] = ACTIONS(1993), - [sym_bin_literal] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1991), - [anon_sym_GT] = ACTIONS(1991), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(1991), - [anon_sym_POUNDfileID] = ACTIONS(1993), - [anon_sym_POUNDfilePath] = ACTIONS(1993), - [anon_sym_POUNDline] = ACTIONS(1993), - [anon_sym_POUNDcolumn] = ACTIONS(1993), - [anon_sym_POUNDfunction] = ACTIONS(1993), - [anon_sym_POUNDdsohandle] = ACTIONS(1993), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(1993), - [anon_sym_DASH_EQ] = ACTIONS(1993), - [anon_sym_STAR_EQ] = ACTIONS(1993), - [anon_sym_SLASH_EQ] = ACTIONS(1993), - [anon_sym_PERCENT_EQ] = ACTIONS(1993), - [anon_sym_EQ] = ACTIONS(1991), - [anon_sym_BANG_EQ] = ACTIONS(1991), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1993), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1993), - [anon_sym_LT_EQ] = ACTIONS(1993), - [anon_sym_GT_EQ] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1991), - [anon_sym_SLASH] = ACTIONS(1991), - [anon_sym_PERCENT] = ACTIONS(1991), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1993), - [anon_sym_CARET] = ACTIONS(1991), - [anon_sym_LT_LT] = ACTIONS(1993), - [anon_sym_GT_GT] = ACTIONS(1993), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(1993), - [sym__plus_then_ws] = ACTIONS(1993), - [sym__minus_then_ws] = ACTIONS(1993), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [483] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1315), - [sym_boolean_literal] = STATE(1315), - [sym__string_literal] = STATE(1315), - [sym_line_string_literal] = STATE(1315), - [sym_multi_line_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_regex_literal] = STATE(1315), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1315), - [sym__unary_expression] = STATE(1315), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1315), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1315), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1315), - [sym_prefix_expression] = STATE(1315), - [sym_as_expression] = STATE(1315), - [sym_selector_expression] = STATE(1315), - [sym__binary_expression] = STATE(1315), - [sym_multiplicative_expression] = STATE(1315), - [sym_additive_expression] = STATE(1315), - [sym_range_expression] = STATE(1315), - [sym_infix_expression] = STATE(1315), - [sym_nil_coalescing_expression] = STATE(1315), - [sym_check_expression] = STATE(1315), - [sym_comparison_expression] = STATE(1315), - [sym_equality_expression] = STATE(1315), - [sym_conjunction_expression] = STATE(1315), - [sym_disjunction_expression] = STATE(1315), - [sym_bitwise_operation] = STATE(1315), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1315), - [sym_await_expression] = STATE(1315), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1315), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1315), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1315), - [sym_dictionary_literal] = STATE(1315), - [sym__special_literal] = STATE(1315), - [sym__playground_literal] = STATE(1315), - [sym_lambda_literal] = STATE(1315), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1315), - [sym_key_path_expression] = STATE(1315), - [sym_key_path_string_expression] = STATE(1315), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1315), - [sym__equality_operator] = STATE(1315), - [sym__comparison_operator] = STATE(1315), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1315), - [sym__multiplicative_operator] = STATE(1315), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1315), - [sym__referenceable_operator] = STATE(1315), - [sym__eq_eq] = STATE(1315), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1995), - [sym_real_literal] = ACTIONS(1997), - [sym_integer_literal] = ACTIONS(1995), - [sym_hex_literal] = ACTIONS(1997), - [sym_oct_literal] = ACTIONS(1997), - [sym_bin_literal] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1995), - [anon_sym_GT] = ACTIONS(1995), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1995), - [anon_sym_POUNDfileID] = ACTIONS(1997), - [anon_sym_POUNDfilePath] = ACTIONS(1997), - [anon_sym_POUNDline] = ACTIONS(1997), - [anon_sym_POUNDcolumn] = ACTIONS(1997), - [anon_sym_POUNDfunction] = ACTIONS(1997), - [anon_sym_POUNDdsohandle] = ACTIONS(1997), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1997), - [anon_sym_DASH_EQ] = ACTIONS(1997), - [anon_sym_STAR_EQ] = ACTIONS(1997), - [anon_sym_SLASH_EQ] = ACTIONS(1997), - [anon_sym_PERCENT_EQ] = ACTIONS(1997), - [anon_sym_EQ] = ACTIONS(1995), - [anon_sym_BANG_EQ] = ACTIONS(1995), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1997), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1997), - [anon_sym_LT_EQ] = ACTIONS(1997), - [anon_sym_GT_EQ] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1995), - [anon_sym_SLASH] = ACTIONS(1995), - [anon_sym_PERCENT] = ACTIONS(1995), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_CARET] = ACTIONS(1995), - [anon_sym_LT_LT] = ACTIONS(1997), - [anon_sym_GT_GT] = ACTIONS(1997), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1997), - [sym__plus_then_ws] = ACTIONS(1997), - [sym__minus_then_ws] = ACTIONS(1997), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [484] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1249), - [sym_boolean_literal] = STATE(1249), - [sym__string_literal] = STATE(1249), - [sym_line_string_literal] = STATE(1249), - [sym_multi_line_string_literal] = STATE(1249), - [sym_raw_string_literal] = STATE(1249), - [sym_regex_literal] = STATE(1249), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1249), - [sym__unary_expression] = STATE(1249), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1249), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1249), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1249), - [sym_prefix_expression] = STATE(1249), - [sym_as_expression] = STATE(1249), - [sym_selector_expression] = STATE(1249), - [sym__binary_expression] = STATE(2638), - [sym_multiplicative_expression] = STATE(2638), - [sym_additive_expression] = STATE(2638), - [sym_range_expression] = STATE(2638), - [sym_infix_expression] = STATE(2638), - [sym_nil_coalescing_expression] = STATE(2638), - [sym_check_expression] = STATE(2638), - [sym_comparison_expression] = STATE(2638), - [sym_equality_expression] = STATE(2638), - [sym_conjunction_expression] = STATE(2638), - [sym_disjunction_expression] = STATE(2638), - [sym_bitwise_operation] = STATE(2638), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1249), - [sym_await_expression] = STATE(1249), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(2636), - [sym_call_expression] = STATE(1951), - [sym__primary_expression] = STATE(1249), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1249), - [sym_dictionary_literal] = STATE(1249), - [sym__special_literal] = STATE(1249), - [sym__playground_literal] = STATE(1249), - [sym_lambda_literal] = STATE(1249), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1249), - [sym_key_path_expression] = STATE(1249), - [sym_key_path_string_expression] = STATE(1249), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1249), - [sym__equality_operator] = STATE(1249), - [sym__comparison_operator] = STATE(1249), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1249), - [sym__multiplicative_operator] = STATE(1249), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1249), - [sym__referenceable_operator] = STATE(1249), - [sym__eq_eq] = STATE(1249), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(1999), - [sym_real_literal] = ACTIONS(2001), - [sym_integer_literal] = ACTIONS(1999), - [sym_hex_literal] = ACTIONS(2001), - [sym_oct_literal] = ACTIONS(2001), - [sym_bin_literal] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_GT] = ACTIONS(1999), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(1999), - [anon_sym_POUNDfileID] = ACTIONS(2001), - [anon_sym_POUNDfilePath] = ACTIONS(2001), - [anon_sym_POUNDline] = ACTIONS(2001), - [anon_sym_POUNDcolumn] = ACTIONS(2001), - [anon_sym_POUNDfunction] = ACTIONS(2001), - [anon_sym_POUNDdsohandle] = ACTIONS(2001), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(2001), - [anon_sym_DASH_EQ] = ACTIONS(2001), - [anon_sym_STAR_EQ] = ACTIONS(2001), - [anon_sym_SLASH_EQ] = ACTIONS(2001), - [anon_sym_PERCENT_EQ] = ACTIONS(2001), - [anon_sym_EQ] = ACTIONS(1999), - [anon_sym_BANG_EQ] = ACTIONS(1999), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2001), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2001), - [anon_sym_LT_EQ] = ACTIONS(2001), - [anon_sym_GT_EQ] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_SLASH] = ACTIONS(1999), - [anon_sym_PERCENT] = ACTIONS(1999), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(2001), - [anon_sym_CARET] = ACTIONS(1999), - [anon_sym_LT_LT] = ACTIONS(2001), - [anon_sym_GT_GT] = ACTIONS(2001), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(2001), - [sym__plus_then_ws] = ACTIONS(2001), - [sym__minus_then_ws] = ACTIONS(2001), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [485] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1333), - [sym_boolean_literal] = STATE(1333), - [sym__string_literal] = STATE(1333), - [sym_line_string_literal] = STATE(1333), - [sym_multi_line_string_literal] = STATE(1333), - [sym_raw_string_literal] = STATE(1333), - [sym_regex_literal] = STATE(1333), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1333), - [sym__unary_expression] = STATE(1333), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1333), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1333), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1333), - [sym_prefix_expression] = STATE(1333), - [sym_as_expression] = STATE(1333), - [sym_selector_expression] = STATE(1333), - [sym__binary_expression] = STATE(1333), - [sym_multiplicative_expression] = STATE(1333), - [sym_additive_expression] = STATE(1333), - [sym_range_expression] = STATE(1333), - [sym_infix_expression] = STATE(1333), - [sym_nil_coalescing_expression] = STATE(1333), - [sym_check_expression] = STATE(1333), - [sym_comparison_expression] = STATE(1333), - [sym_equality_expression] = STATE(1333), - [sym_conjunction_expression] = STATE(1333), - [sym_disjunction_expression] = STATE(1333), - [sym_bitwise_operation] = STATE(1333), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1333), - [sym_await_expression] = STATE(1333), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1333), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1333), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1333), - [sym_dictionary_literal] = STATE(1333), - [sym__special_literal] = STATE(1333), - [sym__playground_literal] = STATE(1333), - [sym_lambda_literal] = STATE(1333), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1333), - [sym_key_path_expression] = STATE(1333), - [sym_key_path_string_expression] = STATE(1333), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1333), - [sym__equality_operator] = STATE(1333), - [sym__comparison_operator] = STATE(1333), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1333), - [sym__multiplicative_operator] = STATE(1333), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1333), - [sym__referenceable_operator] = STATE(1333), - [sym__eq_eq] = STATE(1333), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1051), - [sym_real_literal] = ACTIONS(1053), - [sym_integer_literal] = ACTIONS(1051), - [sym_hex_literal] = ACTIONS(1053), - [sym_oct_literal] = ACTIONS(1053), - [sym_bin_literal] = ACTIONS(1053), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1051), - [anon_sym_POUNDfileID] = ACTIONS(1053), - [anon_sym_POUNDfilePath] = ACTIONS(1053), - [anon_sym_POUNDline] = ACTIONS(1053), - [anon_sym_POUNDcolumn] = ACTIONS(1053), - [anon_sym_POUNDfunction] = ACTIONS(1053), - [anon_sym_POUNDdsohandle] = ACTIONS(1053), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1053), - [anon_sym_DASH_EQ] = ACTIONS(1053), - [anon_sym_STAR_EQ] = ACTIONS(1053), - [anon_sym_SLASH_EQ] = ACTIONS(1053), - [anon_sym_PERCENT_EQ] = ACTIONS(1053), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1053), - [anon_sym_LT_EQ] = ACTIONS(1053), - [anon_sym_GT_EQ] = ACTIONS(1053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1053), - [anon_sym_GT_GT] = ACTIONS(1053), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1053), - [sym__plus_then_ws] = ACTIONS(1053), - [sym__minus_then_ws] = ACTIONS(1053), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [486] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1179), - [sym_boolean_literal] = STATE(1179), - [sym__string_literal] = STATE(1179), - [sym_line_string_literal] = STATE(1179), - [sym_multi_line_string_literal] = STATE(1179), - [sym_raw_string_literal] = STATE(1179), - [sym_regex_literal] = STATE(1179), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1179), - [sym__unary_expression] = STATE(1179), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1179), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1179), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1179), - [sym_prefix_expression] = STATE(1179), - [sym_as_expression] = STATE(1179), - [sym_selector_expression] = STATE(1179), - [sym__binary_expression] = STATE(1179), - [sym_multiplicative_expression] = STATE(1179), - [sym_additive_expression] = STATE(1179), - [sym_range_expression] = STATE(1179), - [sym_infix_expression] = STATE(1179), - [sym_nil_coalescing_expression] = STATE(1179), - [sym_check_expression] = STATE(1179), - [sym_comparison_expression] = STATE(1179), - [sym_equality_expression] = STATE(1179), - [sym_conjunction_expression] = STATE(1179), - [sym_disjunction_expression] = STATE(1179), - [sym_bitwise_operation] = STATE(1179), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1179), - [sym_await_expression] = STATE(1179), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1179), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1179), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1179), - [sym_dictionary_literal] = STATE(1179), - [sym__special_literal] = STATE(1179), - [sym__playground_literal] = STATE(1179), - [sym_lambda_literal] = STATE(1179), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1179), - [sym_key_path_expression] = STATE(1179), - [sym_key_path_string_expression] = STATE(1179), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1179), - [sym__equality_operator] = STATE(1179), - [sym__comparison_operator] = STATE(1179), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1179), - [sym__multiplicative_operator] = STATE(1179), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1179), - [sym__referenceable_operator] = STATE(1179), - [sym__eq_eq] = STATE(1179), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(2003), - [sym_real_literal] = ACTIONS(2005), - [sym_integer_literal] = ACTIONS(2003), - [sym_hex_literal] = ACTIONS(2005), - [sym_oct_literal] = ACTIONS(2005), - [sym_bin_literal] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_GT] = ACTIONS(2003), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(2003), - [anon_sym_POUNDfileID] = ACTIONS(2005), - [anon_sym_POUNDfilePath] = ACTIONS(2005), - [anon_sym_POUNDline] = ACTIONS(2005), - [anon_sym_POUNDcolumn] = ACTIONS(2005), - [anon_sym_POUNDfunction] = ACTIONS(2005), - [anon_sym_POUNDdsohandle] = ACTIONS(2005), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(2005), - [anon_sym_DASH_EQ] = ACTIONS(2005), - [anon_sym_STAR_EQ] = ACTIONS(2005), - [anon_sym_SLASH_EQ] = ACTIONS(2005), - [anon_sym_PERCENT_EQ] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ] = ACTIONS(2003), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2005), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT_EQ] = ACTIONS(2005), - [anon_sym_GT_EQ] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_SLASH] = ACTIONS(2003), - [anon_sym_PERCENT] = ACTIONS(2003), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2005), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(2005), - [sym__plus_then_ws] = ACTIONS(2005), - [sym__minus_then_ws] = ACTIONS(2005), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [487] = { - [sym_simple_identifier] = STATE(1785), - [sym__basic_literal] = STATE(1271), - [sym_boolean_literal] = STATE(1271), - [sym__string_literal] = STATE(1271), - [sym_line_string_literal] = STATE(1271), - [sym_multi_line_string_literal] = STATE(1271), - [sym_raw_string_literal] = STATE(1271), - [sym_regex_literal] = STATE(1271), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1271), - [sym__unary_expression] = STATE(1271), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1271), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1271), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1271), - [sym_prefix_expression] = STATE(1271), - [sym_as_expression] = STATE(1271), - [sym_selector_expression] = STATE(1271), - [sym__binary_expression] = STATE(1271), - [sym_multiplicative_expression] = STATE(1271), - [sym_additive_expression] = STATE(1271), - [sym_range_expression] = STATE(1271), - [sym_infix_expression] = STATE(1271), - [sym_nil_coalescing_expression] = STATE(1271), - [sym_check_expression] = STATE(1271), - [sym_comparison_expression] = STATE(1271), - [sym_equality_expression] = STATE(1271), - [sym_conjunction_expression] = STATE(1271), - [sym_disjunction_expression] = STATE(1271), - [sym_bitwise_operation] = STATE(1271), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1271), - [sym_await_expression] = STATE(1271), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1271), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1271), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1271), - [sym_dictionary_literal] = STATE(1271), - [sym__special_literal] = STATE(1271), - [sym__playground_literal] = STATE(1271), - [sym_lambda_literal] = STATE(1271), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1271), - [sym_key_path_expression] = STATE(1271), - [sym_key_path_string_expression] = STATE(1271), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1271), - [sym__equality_operator] = STATE(1271), - [sym__comparison_operator] = STATE(1271), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1271), - [sym__multiplicative_operator] = STATE(1271), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1271), - [sym__referenceable_operator] = STATE(1271), - [sym__eq_eq] = STATE(1271), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2007), - [sym_real_literal] = ACTIONS(2009), - [sym_integer_literal] = ACTIONS(2007), - [sym_hex_literal] = ACTIONS(2009), - [sym_oct_literal] = ACTIONS(2009), - [sym_bin_literal] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(2007), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2007), - [anon_sym_POUNDfileID] = ACTIONS(2009), - [anon_sym_POUNDfilePath] = ACTIONS(2009), - [anon_sym_POUNDline] = ACTIONS(2009), - [anon_sym_POUNDcolumn] = ACTIONS(2009), - [anon_sym_POUNDfunction] = ACTIONS(2009), - [anon_sym_POUNDdsohandle] = ACTIONS(2009), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2009), - [anon_sym_DASH_EQ] = ACTIONS(2009), - [anon_sym_STAR_EQ] = ACTIONS(2009), - [anon_sym_SLASH_EQ] = ACTIONS(2009), - [anon_sym_PERCENT_EQ] = ACTIONS(2009), - [anon_sym_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ] = ACTIONS(2007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2009), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_SLASH] = ACTIONS(2007), - [anon_sym_PERCENT] = ACTIONS(2007), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2009), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2009), - [sym__plus_then_ws] = ACTIONS(2009), - [sym__minus_then_ws] = ACTIONS(2009), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [488] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1169), - [sym_boolean_literal] = STATE(1169), - [sym__string_literal] = STATE(1169), - [sym_line_string_literal] = STATE(1169), - [sym_multi_line_string_literal] = STATE(1169), - [sym_raw_string_literal] = STATE(1169), - [sym_regex_literal] = STATE(1169), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1169), - [sym__unary_expression] = STATE(1169), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1169), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1169), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1169), - [sym_prefix_expression] = STATE(1169), - [sym_as_expression] = STATE(1169), - [sym_selector_expression] = STATE(1169), - [sym__binary_expression] = STATE(1169), - [sym_multiplicative_expression] = STATE(1169), - [sym_additive_expression] = STATE(1169), - [sym_range_expression] = STATE(1169), - [sym_infix_expression] = STATE(1169), - [sym_nil_coalescing_expression] = STATE(1169), - [sym_check_expression] = STATE(1169), - [sym_comparison_expression] = STATE(1169), - [sym_equality_expression] = STATE(1169), - [sym_conjunction_expression] = STATE(1169), - [sym_disjunction_expression] = STATE(1169), - [sym_bitwise_operation] = STATE(1169), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1169), - [sym_await_expression] = STATE(1169), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1169), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1169), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1169), - [sym_dictionary_literal] = STATE(1169), - [sym__special_literal] = STATE(1169), - [sym__playground_literal] = STATE(1169), - [sym_lambda_literal] = STATE(1169), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1169), - [sym_key_path_expression] = STATE(1169), - [sym_key_path_string_expression] = STATE(1169), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1169), - [sym__equality_operator] = STATE(1169), - [sym__comparison_operator] = STATE(1169), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1169), - [sym__multiplicative_operator] = STATE(1169), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1169), - [sym__referenceable_operator] = STATE(1169), - [sym__eq_eq] = STATE(1169), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(2011), - [sym_real_literal] = ACTIONS(2013), - [sym_integer_literal] = ACTIONS(2011), - [sym_hex_literal] = ACTIONS(2013), - [sym_oct_literal] = ACTIONS(2013), - [sym_bin_literal] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(2011), - [anon_sym_POUNDfileID] = ACTIONS(2013), - [anon_sym_POUNDfilePath] = ACTIONS(2013), - [anon_sym_POUNDline] = ACTIONS(2013), - [anon_sym_POUNDcolumn] = ACTIONS(2013), - [anon_sym_POUNDfunction] = ACTIONS(2013), - [anon_sym_POUNDdsohandle] = ACTIONS(2013), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(2013), - [anon_sym_DASH_EQ] = ACTIONS(2013), - [anon_sym_STAR_EQ] = ACTIONS(2013), - [anon_sym_SLASH_EQ] = ACTIONS(2013), - [anon_sym_PERCENT_EQ] = ACTIONS(2013), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2013), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2013), - [anon_sym_LT_EQ] = ACTIONS(2013), - [anon_sym_GT_EQ] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_GT_GT] = ACTIONS(2013), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(2013), - [sym__plus_then_ws] = ACTIONS(2013), - [sym__minus_then_ws] = ACTIONS(2013), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [489] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1172), - [sym_boolean_literal] = STATE(1172), - [sym__string_literal] = STATE(1172), - [sym_line_string_literal] = STATE(1172), - [sym_multi_line_string_literal] = STATE(1172), - [sym_raw_string_literal] = STATE(1172), - [sym_regex_literal] = STATE(1172), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1172), - [sym__unary_expression] = STATE(1172), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1172), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1172), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1172), - [sym_prefix_expression] = STATE(1172), - [sym_as_expression] = STATE(1172), - [sym_selector_expression] = STATE(1172), - [sym__binary_expression] = STATE(1172), - [sym_multiplicative_expression] = STATE(1172), - [sym_additive_expression] = STATE(1172), - [sym_range_expression] = STATE(1172), - [sym_infix_expression] = STATE(1172), - [sym_nil_coalescing_expression] = STATE(1172), - [sym_check_expression] = STATE(1172), - [sym_comparison_expression] = STATE(1172), - [sym_equality_expression] = STATE(1172), - [sym_conjunction_expression] = STATE(1172), - [sym_disjunction_expression] = STATE(1172), - [sym_bitwise_operation] = STATE(1172), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1172), - [sym_await_expression] = STATE(1172), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(754), - [sym_call_expression] = STATE(670), - [sym__primary_expression] = STATE(1172), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1172), - [sym_dictionary_literal] = STATE(1172), - [sym__special_literal] = STATE(1172), - [sym__playground_literal] = STATE(1172), - [sym_lambda_literal] = STATE(1172), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1172), - [sym_key_path_expression] = STATE(1172), - [sym_key_path_string_expression] = STATE(1172), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1172), - [sym__equality_operator] = STATE(1172), - [sym__comparison_operator] = STATE(1172), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1172), - [sym__multiplicative_operator] = STATE(1172), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1172), - [sym__referenceable_operator] = STATE(1172), - [sym__eq_eq] = STATE(1172), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2015), - [sym_real_literal] = ACTIONS(2017), - [sym_integer_literal] = ACTIONS(2015), - [sym_hex_literal] = ACTIONS(2017), - [sym_oct_literal] = ACTIONS(2017), - [sym_bin_literal] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_GT] = ACTIONS(2015), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2015), - [anon_sym_POUNDfileID] = ACTIONS(2017), - [anon_sym_POUNDfilePath] = ACTIONS(2017), - [anon_sym_POUNDline] = ACTIONS(2017), - [anon_sym_POUNDcolumn] = ACTIONS(2017), - [anon_sym_POUNDfunction] = ACTIONS(2017), - [anon_sym_POUNDdsohandle] = ACTIONS(2017), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2017), - [anon_sym_DASH_EQ] = ACTIONS(2017), - [anon_sym_STAR_EQ] = ACTIONS(2017), - [anon_sym_SLASH_EQ] = ACTIONS(2017), - [anon_sym_PERCENT_EQ] = ACTIONS(2017), - [anon_sym_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ] = ACTIONS(2015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2017), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2017), - [anon_sym_LT_EQ] = ACTIONS(2017), - [anon_sym_GT_EQ] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_SLASH] = ACTIONS(2015), - [anon_sym_PERCENT] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2017), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2017), - [sym__plus_then_ws] = ACTIONS(2017), - [sym__minus_then_ws] = ACTIONS(2017), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [490] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1314), - [sym_boolean_literal] = STATE(1314), - [sym__string_literal] = STATE(1314), - [sym_line_string_literal] = STATE(1314), - [sym_multi_line_string_literal] = STATE(1314), - [sym_raw_string_literal] = STATE(1314), - [sym_regex_literal] = STATE(1314), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1314), - [sym__unary_expression] = STATE(1314), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1314), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1314), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1314), - [sym_prefix_expression] = STATE(1314), - [sym_as_expression] = STATE(1314), - [sym_selector_expression] = STATE(1314), - [sym__binary_expression] = STATE(1314), - [sym_multiplicative_expression] = STATE(1314), - [sym_additive_expression] = STATE(1314), - [sym_range_expression] = STATE(1314), - [sym_infix_expression] = STATE(1314), - [sym_nil_coalescing_expression] = STATE(1314), - [sym_check_expression] = STATE(1314), - [sym_comparison_expression] = STATE(1314), - [sym_equality_expression] = STATE(1314), - [sym_conjunction_expression] = STATE(1314), - [sym_disjunction_expression] = STATE(1314), - [sym_bitwise_operation] = STATE(1314), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1314), - [sym_await_expression] = STATE(1314), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1314), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1314), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1314), - [sym_dictionary_literal] = STATE(1314), - [sym__special_literal] = STATE(1314), - [sym__playground_literal] = STATE(1314), - [sym_lambda_literal] = STATE(1314), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1314), - [sym_key_path_expression] = STATE(1314), - [sym_key_path_string_expression] = STATE(1314), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1314), - [sym__equality_operator] = STATE(1314), - [sym__comparison_operator] = STATE(1314), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1314), - [sym__multiplicative_operator] = STATE(1314), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1314), - [sym__referenceable_operator] = STATE(1314), - [sym__eq_eq] = STATE(1314), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2019), - [sym_real_literal] = ACTIONS(2021), - [sym_integer_literal] = ACTIONS(2019), - [sym_hex_literal] = ACTIONS(2021), - [sym_oct_literal] = ACTIONS(2021), - [sym_bin_literal] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_GT] = ACTIONS(2019), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2019), - [anon_sym_POUNDfileID] = ACTIONS(2021), - [anon_sym_POUNDfilePath] = ACTIONS(2021), - [anon_sym_POUNDline] = ACTIONS(2021), - [anon_sym_POUNDcolumn] = ACTIONS(2021), - [anon_sym_POUNDfunction] = ACTIONS(2021), - [anon_sym_POUNDdsohandle] = ACTIONS(2021), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2021), - [anon_sym_DASH_EQ] = ACTIONS(2021), - [anon_sym_STAR_EQ] = ACTIONS(2021), - [anon_sym_SLASH_EQ] = ACTIONS(2021), - [anon_sym_PERCENT_EQ] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(2019), - [anon_sym_BANG_EQ] = ACTIONS(2019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2021), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2021), - [anon_sym_LT_EQ] = ACTIONS(2021), - [anon_sym_GT_EQ] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_SLASH] = ACTIONS(2019), - [anon_sym_PERCENT] = ACTIONS(2019), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_CARET] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2021), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2021), - [sym__plus_then_ws] = ACTIONS(2021), - [sym__minus_then_ws] = ACTIONS(2021), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [491] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1175), - [sym_boolean_literal] = STATE(1175), - [sym__string_literal] = STATE(1175), - [sym_line_string_literal] = STATE(1175), - [sym_multi_line_string_literal] = STATE(1175), - [sym_raw_string_literal] = STATE(1175), - [sym_regex_literal] = STATE(1175), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1175), - [sym__unary_expression] = STATE(1175), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1175), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1175), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1175), - [sym_prefix_expression] = STATE(1175), - [sym_as_expression] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym__binary_expression] = STATE(755), - [sym_multiplicative_expression] = STATE(755), - [sym_additive_expression] = STATE(755), - [sym_range_expression] = STATE(755), - [sym_infix_expression] = STATE(755), - [sym_nil_coalescing_expression] = STATE(755), - [sym_check_expression] = STATE(755), - [sym_comparison_expression] = STATE(755), - [sym_equality_expression] = STATE(755), - [sym_conjunction_expression] = STATE(755), - [sym_disjunction_expression] = STATE(755), - [sym_bitwise_operation] = STATE(755), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1175), - [sym_await_expression] = STATE(1175), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(756), - [sym_call_expression] = STATE(673), - [sym__primary_expression] = STATE(1175), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1175), - [sym_dictionary_literal] = STATE(1175), - [sym__special_literal] = STATE(1175), - [sym__playground_literal] = STATE(1175), - [sym_lambda_literal] = STATE(1175), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1175), - [sym_key_path_expression] = STATE(1175), - [sym_key_path_string_expression] = STATE(1175), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1175), - [sym__equality_operator] = STATE(1175), - [sym__comparison_operator] = STATE(1175), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1175), - [sym__multiplicative_operator] = STATE(1175), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1175), - [sym__referenceable_operator] = STATE(1175), - [sym__eq_eq] = STATE(1175), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2023), - [sym_real_literal] = ACTIONS(2025), - [sym_integer_literal] = ACTIONS(2023), - [sym_hex_literal] = ACTIONS(2025), - [sym_oct_literal] = ACTIONS(2025), - [sym_bin_literal] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_GT] = ACTIONS(2023), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2023), - [anon_sym_POUNDfileID] = ACTIONS(2025), - [anon_sym_POUNDfilePath] = ACTIONS(2025), - [anon_sym_POUNDline] = ACTIONS(2025), - [anon_sym_POUNDcolumn] = ACTIONS(2025), - [anon_sym_POUNDfunction] = ACTIONS(2025), - [anon_sym_POUNDdsohandle] = ACTIONS(2025), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2025), - [anon_sym_DASH_EQ] = ACTIONS(2025), - [anon_sym_STAR_EQ] = ACTIONS(2025), - [anon_sym_SLASH_EQ] = ACTIONS(2025), - [anon_sym_PERCENT_EQ] = ACTIONS(2025), - [anon_sym_EQ] = ACTIONS(2023), - [anon_sym_BANG_EQ] = ACTIONS(2023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2025), - [anon_sym_LT_EQ] = ACTIONS(2025), - [anon_sym_GT_EQ] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_SLASH] = ACTIONS(2023), - [anon_sym_PERCENT] = ACTIONS(2023), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_CARET] = ACTIONS(2023), - [anon_sym_LT_LT] = ACTIONS(2025), - [anon_sym_GT_GT] = ACTIONS(2025), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2025), - [sym__plus_then_ws] = ACTIONS(2025), - [sym__minus_then_ws] = ACTIONS(2025), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [492] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1356), - [sym_boolean_literal] = STATE(1356), - [sym__string_literal] = STATE(1356), - [sym_line_string_literal] = STATE(1356), - [sym_multi_line_string_literal] = STATE(1356), - [sym_raw_string_literal] = STATE(1356), - [sym_regex_literal] = STATE(1356), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1356), - [sym__unary_expression] = STATE(1356), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1356), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1356), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1356), - [sym_prefix_expression] = STATE(1356), - [sym_as_expression] = STATE(1356), - [sym_selector_expression] = STATE(1356), - [sym__binary_expression] = STATE(755), - [sym_multiplicative_expression] = STATE(755), - [sym_additive_expression] = STATE(755), - [sym_range_expression] = STATE(755), - [sym_infix_expression] = STATE(755), - [sym_nil_coalescing_expression] = STATE(755), - [sym_check_expression] = STATE(755), - [sym_comparison_expression] = STATE(755), - [sym_equality_expression] = STATE(755), - [sym_conjunction_expression] = STATE(755), - [sym_disjunction_expression] = STATE(755), - [sym_bitwise_operation] = STATE(755), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1356), - [sym_await_expression] = STATE(1356), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(756), - [sym_call_expression] = STATE(673), - [sym__primary_expression] = STATE(1356), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1356), - [sym_dictionary_literal] = STATE(1356), - [sym__special_literal] = STATE(1356), - [sym__playground_literal] = STATE(1356), - [sym_lambda_literal] = STATE(1356), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1356), - [sym_key_path_expression] = STATE(1356), - [sym_key_path_string_expression] = STATE(1356), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1356), - [sym__equality_operator] = STATE(1356), - [sym__comparison_operator] = STATE(1356), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1356), - [sym__multiplicative_operator] = STATE(1356), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1356), - [sym__referenceable_operator] = STATE(1356), - [sym__eq_eq] = STATE(1356), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2027), - [sym_real_literal] = ACTIONS(2029), - [sym_integer_literal] = ACTIONS(2027), - [sym_hex_literal] = ACTIONS(2029), - [sym_oct_literal] = ACTIONS(2029), - [sym_bin_literal] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(2027), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(2027), - [anon_sym_POUNDfileID] = ACTIONS(2029), - [anon_sym_POUNDfilePath] = ACTIONS(2029), - [anon_sym_POUNDline] = ACTIONS(2029), - [anon_sym_POUNDcolumn] = ACTIONS(2029), - [anon_sym_POUNDfunction] = ACTIONS(2029), - [anon_sym_POUNDdsohandle] = ACTIONS(2029), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(2029), - [anon_sym_DASH_EQ] = ACTIONS(2029), - [anon_sym_STAR_EQ] = ACTIONS(2029), - [anon_sym_SLASH_EQ] = ACTIONS(2029), - [anon_sym_PERCENT_EQ] = ACTIONS(2029), - [anon_sym_EQ] = ACTIONS(2027), - [anon_sym_BANG_EQ] = ACTIONS(2027), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2029), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2029), - [anon_sym_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_EQ] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_SLASH] = ACTIONS(2027), - [anon_sym_PERCENT] = ACTIONS(2027), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(2029), - [anon_sym_GT_GT] = ACTIONS(2029), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(2029), - [sym__plus_then_ws] = ACTIONS(2029), - [sym__minus_then_ws] = ACTIONS(2029), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [493] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1248), - [sym_boolean_literal] = STATE(1248), - [sym__string_literal] = STATE(1248), - [sym_line_string_literal] = STATE(1248), - [sym_multi_line_string_literal] = STATE(1248), - [sym_raw_string_literal] = STATE(1248), - [sym_regex_literal] = STATE(1248), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1248), - [sym__unary_expression] = STATE(1248), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1248), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1248), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1248), - [sym_prefix_expression] = STATE(1248), - [sym_as_expression] = STATE(1248), - [sym_selector_expression] = STATE(1248), - [sym__binary_expression] = STATE(1248), - [sym_multiplicative_expression] = STATE(1248), - [sym_additive_expression] = STATE(1248), - [sym_range_expression] = STATE(1248), - [sym_infix_expression] = STATE(1248), - [sym_nil_coalescing_expression] = STATE(1248), - [sym_check_expression] = STATE(1248), - [sym_comparison_expression] = STATE(1248), - [sym_equality_expression] = STATE(1248), - [sym_conjunction_expression] = STATE(1248), - [sym_disjunction_expression] = STATE(1248), - [sym_bitwise_operation] = STATE(1248), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1248), - [sym_await_expression] = STATE(1248), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1248), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1248), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1248), - [sym_dictionary_literal] = STATE(1248), - [sym__special_literal] = STATE(1248), - [sym__playground_literal] = STATE(1248), - [sym_lambda_literal] = STATE(1248), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1248), - [sym_key_path_expression] = STATE(1248), - [sym_key_path_string_expression] = STATE(1248), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1248), - [sym__equality_operator] = STATE(1248), - [sym__comparison_operator] = STATE(1248), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1248), - [sym__multiplicative_operator] = STATE(1248), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1248), - [sym__referenceable_operator] = STATE(1248), - [sym__eq_eq] = STATE(1248), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(2031), - [sym_real_literal] = ACTIONS(2033), - [sym_integer_literal] = ACTIONS(2031), - [sym_hex_literal] = ACTIONS(2033), - [sym_oct_literal] = ACTIONS(2033), - [sym_bin_literal] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_GT] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(2031), - [anon_sym_POUNDfileID] = ACTIONS(2033), - [anon_sym_POUNDfilePath] = ACTIONS(2033), - [anon_sym_POUNDline] = ACTIONS(2033), - [anon_sym_POUNDcolumn] = ACTIONS(2033), - [anon_sym_POUNDfunction] = ACTIONS(2033), - [anon_sym_POUNDdsohandle] = ACTIONS(2033), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(2033), - [anon_sym_DASH_EQ] = ACTIONS(2033), - [anon_sym_STAR_EQ] = ACTIONS(2033), - [anon_sym_SLASH_EQ] = ACTIONS(2033), - [anon_sym_PERCENT_EQ] = ACTIONS(2033), - [anon_sym_EQ] = ACTIONS(2031), - [anon_sym_BANG_EQ] = ACTIONS(2031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2033), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2033), - [anon_sym_LT_EQ] = ACTIONS(2033), - [anon_sym_GT_EQ] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_SLASH] = ACTIONS(2031), - [anon_sym_PERCENT] = ACTIONS(2031), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_CARET] = ACTIONS(2031), - [anon_sym_LT_LT] = ACTIONS(2033), - [anon_sym_GT_GT] = ACTIONS(2033), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(2033), - [sym__plus_then_ws] = ACTIONS(2033), - [sym__minus_then_ws] = ACTIONS(2033), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [494] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1282), - [sym_boolean_literal] = STATE(1282), - [sym__string_literal] = STATE(1282), - [sym_line_string_literal] = STATE(1282), - [sym_multi_line_string_literal] = STATE(1282), - [sym_raw_string_literal] = STATE(1282), - [sym_regex_literal] = STATE(1282), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1282), - [sym__unary_expression] = STATE(1282), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1282), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1282), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1282), - [sym_prefix_expression] = STATE(1282), - [sym_as_expression] = STATE(1282), - [sym_selector_expression] = STATE(1282), - [sym__binary_expression] = STATE(1282), - [sym_multiplicative_expression] = STATE(1282), - [sym_additive_expression] = STATE(1282), - [sym_range_expression] = STATE(1282), - [sym_infix_expression] = STATE(1282), - [sym_nil_coalescing_expression] = STATE(1282), - [sym_check_expression] = STATE(1282), - [sym_comparison_expression] = STATE(1282), - [sym_equality_expression] = STATE(1282), - [sym_conjunction_expression] = STATE(1282), - [sym_disjunction_expression] = STATE(1282), - [sym_bitwise_operation] = STATE(1282), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1282), - [sym_await_expression] = STATE(1282), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1282), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1282), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1282), - [sym_dictionary_literal] = STATE(1282), - [sym__special_literal] = STATE(1282), - [sym__playground_literal] = STATE(1282), - [sym_lambda_literal] = STATE(1282), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1282), - [sym_key_path_expression] = STATE(1282), - [sym_key_path_string_expression] = STATE(1282), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1282), - [sym__equality_operator] = STATE(1282), - [sym__comparison_operator] = STATE(1282), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1282), - [sym__multiplicative_operator] = STATE(1282), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1282), - [sym__referenceable_operator] = STATE(1282), - [sym__eq_eq] = STATE(1282), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2035), - [sym_real_literal] = ACTIONS(2037), - [sym_integer_literal] = ACTIONS(2035), - [sym_hex_literal] = ACTIONS(2037), - [sym_oct_literal] = ACTIONS(2037), - [sym_bin_literal] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_GT] = ACTIONS(2035), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2035), - [anon_sym_POUNDfileID] = ACTIONS(2037), - [anon_sym_POUNDfilePath] = ACTIONS(2037), - [anon_sym_POUNDline] = ACTIONS(2037), - [anon_sym_POUNDcolumn] = ACTIONS(2037), - [anon_sym_POUNDfunction] = ACTIONS(2037), - [anon_sym_POUNDdsohandle] = ACTIONS(2037), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2037), - [anon_sym_DASH_EQ] = ACTIONS(2037), - [anon_sym_STAR_EQ] = ACTIONS(2037), - [anon_sym_SLASH_EQ] = ACTIONS(2037), - [anon_sym_PERCENT_EQ] = ACTIONS(2037), - [anon_sym_EQ] = ACTIONS(2035), - [anon_sym_BANG_EQ] = ACTIONS(2035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2037), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2037), - [anon_sym_LT_EQ] = ACTIONS(2037), - [anon_sym_GT_EQ] = ACTIONS(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_SLASH] = ACTIONS(2035), - [anon_sym_PERCENT] = ACTIONS(2035), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_CARET] = ACTIONS(2035), - [anon_sym_LT_LT] = ACTIONS(2037), - [anon_sym_GT_GT] = ACTIONS(2037), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2037), - [sym__plus_then_ws] = ACTIONS(2037), - [sym__minus_then_ws] = ACTIONS(2037), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [495] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(624), - [sym_boolean_literal] = STATE(624), - [sym__string_literal] = STATE(624), - [sym_line_string_literal] = STATE(624), - [sym_multi_line_string_literal] = STATE(624), - [sym_raw_string_literal] = STATE(624), - [sym_regex_literal] = STATE(624), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(624), - [sym__unary_expression] = STATE(624), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(624), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(624), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(624), - [sym_prefix_expression] = STATE(624), - [sym_as_expression] = STATE(624), - [sym_selector_expression] = STATE(624), - [sym__binary_expression] = STATE(624), - [sym_multiplicative_expression] = STATE(624), - [sym_additive_expression] = STATE(624), - [sym_range_expression] = STATE(624), - [sym_infix_expression] = STATE(624), - [sym_nil_coalescing_expression] = STATE(624), - [sym_check_expression] = STATE(624), - [sym_comparison_expression] = STATE(624), - [sym_equality_expression] = STATE(624), - [sym_conjunction_expression] = STATE(624), - [sym_disjunction_expression] = STATE(624), - [sym_bitwise_operation] = STATE(624), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(624), - [sym_await_expression] = STATE(624), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(624), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(624), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(624), - [sym_dictionary_literal] = STATE(624), - [sym__special_literal] = STATE(624), - [sym__playground_literal] = STATE(624), - [sym_lambda_literal] = STATE(624), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(624), - [sym_key_path_expression] = STATE(624), - [sym_key_path_string_expression] = STATE(624), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(624), - [sym__equality_operator] = STATE(624), - [sym__comparison_operator] = STATE(624), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(624), - [sym__multiplicative_operator] = STATE(624), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(624), - [sym__referenceable_operator] = STATE(624), - [sym__eq_eq] = STATE(624), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2039), - [sym_real_literal] = ACTIONS(2041), - [sym_integer_literal] = ACTIONS(2039), - [sym_hex_literal] = ACTIONS(2041), - [sym_oct_literal] = ACTIONS(2041), - [sym_bin_literal] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_GT] = ACTIONS(2039), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2039), - [anon_sym_POUNDfileID] = ACTIONS(2041), - [anon_sym_POUNDfilePath] = ACTIONS(2041), - [anon_sym_POUNDline] = ACTIONS(2041), - [anon_sym_POUNDcolumn] = ACTIONS(2041), - [anon_sym_POUNDfunction] = ACTIONS(2041), - [anon_sym_POUNDdsohandle] = ACTIONS(2041), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2041), - [anon_sym_DASH_EQ] = ACTIONS(2041), - [anon_sym_STAR_EQ] = ACTIONS(2041), - [anon_sym_SLASH_EQ] = ACTIONS(2041), - [anon_sym_PERCENT_EQ] = ACTIONS(2041), - [anon_sym_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(2039), - [anon_sym_PERCENT] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_GT_GT] = ACTIONS(2041), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2041), - [sym__plus_then_ws] = ACTIONS(2041), - [sym__minus_then_ws] = ACTIONS(2041), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [496] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1193), - [sym_boolean_literal] = STATE(1193), - [sym__string_literal] = STATE(1193), - [sym_line_string_literal] = STATE(1193), - [sym_multi_line_string_literal] = STATE(1193), - [sym_raw_string_literal] = STATE(1193), - [sym_regex_literal] = STATE(1193), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(1193), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1193), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1193), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1193), - [sym_prefix_expression] = STATE(1193), - [sym_as_expression] = STATE(1193), - [sym_selector_expression] = STATE(1193), - [sym__binary_expression] = STATE(1193), - [sym_multiplicative_expression] = STATE(1193), - [sym_additive_expression] = STATE(1193), - [sym_range_expression] = STATE(1193), - [sym_infix_expression] = STATE(1193), - [sym_nil_coalescing_expression] = STATE(1193), - [sym_check_expression] = STATE(1193), - [sym_comparison_expression] = STATE(1193), - [sym_equality_expression] = STATE(1193), - [sym_conjunction_expression] = STATE(1193), - [sym_disjunction_expression] = STATE(1193), - [sym_bitwise_operation] = STATE(1193), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1193), - [sym_await_expression] = STATE(1193), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1193), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1193), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1193), - [sym_dictionary_literal] = STATE(1193), - [sym__special_literal] = STATE(1193), - [sym__playground_literal] = STATE(1193), - [sym_lambda_literal] = STATE(1193), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1193), - [sym_key_path_expression] = STATE(1193), - [sym_key_path_string_expression] = STATE(1193), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1193), - [sym__equality_operator] = STATE(1193), - [sym__comparison_operator] = STATE(1193), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1193), - [sym__multiplicative_operator] = STATE(1193), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1193), - [sym__referenceable_operator] = STATE(1193), - [sym__eq_eq] = STATE(1193), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(2043), - [sym_real_literal] = ACTIONS(2045), - [sym_integer_literal] = ACTIONS(2043), - [sym_hex_literal] = ACTIONS(2045), - [sym_oct_literal] = ACTIONS(2045), - [sym_bin_literal] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_GT] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(2043), - [anon_sym_POUNDfileID] = ACTIONS(2045), - [anon_sym_POUNDfilePath] = ACTIONS(2045), - [anon_sym_POUNDline] = ACTIONS(2045), - [anon_sym_POUNDcolumn] = ACTIONS(2045), - [anon_sym_POUNDfunction] = ACTIONS(2045), - [anon_sym_POUNDdsohandle] = ACTIONS(2045), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(2045), - [anon_sym_DASH_EQ] = ACTIONS(2045), - [anon_sym_STAR_EQ] = ACTIONS(2045), - [anon_sym_SLASH_EQ] = ACTIONS(2045), - [anon_sym_PERCENT_EQ] = ACTIONS(2045), - [anon_sym_EQ] = ACTIONS(2043), - [anon_sym_BANG_EQ] = ACTIONS(2043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2045), - [anon_sym_LT_EQ] = ACTIONS(2045), - [anon_sym_GT_EQ] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_SLASH] = ACTIONS(2043), - [anon_sym_PERCENT] = ACTIONS(2043), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2043), - [anon_sym_LT_LT] = ACTIONS(2045), - [anon_sym_GT_GT] = ACTIONS(2045), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(2045), - [sym__plus_then_ws] = ACTIONS(2045), - [sym__minus_then_ws] = ACTIONS(2045), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [497] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(588), - [sym_boolean_literal] = STATE(588), - [sym__string_literal] = STATE(588), - [sym_line_string_literal] = STATE(588), - [sym_multi_line_string_literal] = STATE(588), - [sym_raw_string_literal] = STATE(588), - [sym_regex_literal] = STATE(588), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(588), - [sym__unary_expression] = STATE(588), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(588), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(588), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(588), - [sym_prefix_expression] = STATE(588), - [sym_as_expression] = STATE(588), - [sym_selector_expression] = STATE(588), - [sym__binary_expression] = STATE(588), - [sym_multiplicative_expression] = STATE(588), - [sym_additive_expression] = STATE(588), - [sym_range_expression] = STATE(588), - [sym_infix_expression] = STATE(588), - [sym_nil_coalescing_expression] = STATE(588), - [sym_check_expression] = STATE(588), - [sym_comparison_expression] = STATE(588), - [sym_equality_expression] = STATE(588), - [sym_conjunction_expression] = STATE(588), - [sym_disjunction_expression] = STATE(588), - [sym_bitwise_operation] = STATE(588), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(588), - [sym_await_expression] = STATE(588), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(588), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(588), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(588), - [sym_dictionary_literal] = STATE(588), - [sym__special_literal] = STATE(588), - [sym__playground_literal] = STATE(588), - [sym_lambda_literal] = STATE(588), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(588), - [sym_key_path_expression] = STATE(588), - [sym_key_path_string_expression] = STATE(588), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(588), - [sym__equality_operator] = STATE(588), - [sym__comparison_operator] = STATE(588), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(588), - [sym__multiplicative_operator] = STATE(588), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(588), - [sym__referenceable_operator] = STATE(588), - [sym__eq_eq] = STATE(588), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2047), - [sym_real_literal] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(2047), - [sym_hex_literal] = ACTIONS(2049), - [sym_oct_literal] = ACTIONS(2049), - [sym_bin_literal] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_GT] = ACTIONS(2047), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(2047), - [anon_sym_POUNDfileID] = ACTIONS(2049), - [anon_sym_POUNDfilePath] = ACTIONS(2049), - [anon_sym_POUNDline] = ACTIONS(2049), - [anon_sym_POUNDcolumn] = ACTIONS(2049), - [anon_sym_POUNDfunction] = ACTIONS(2049), - [anon_sym_POUNDdsohandle] = ACTIONS(2049), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(2049), - [anon_sym_DASH_EQ] = ACTIONS(2049), - [anon_sym_STAR_EQ] = ACTIONS(2049), - [anon_sym_SLASH_EQ] = ACTIONS(2049), - [anon_sym_PERCENT_EQ] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(2047), - [anon_sym_BANG_EQ] = ACTIONS(2047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2049), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2049), - [anon_sym_LT_EQ] = ACTIONS(2049), - [anon_sym_GT_EQ] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_SLASH] = ACTIONS(2047), - [anon_sym_PERCENT] = ACTIONS(2047), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_CARET] = ACTIONS(2047), - [anon_sym_LT_LT] = ACTIONS(2049), - [anon_sym_GT_GT] = ACTIONS(2049), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(2049), - [sym__plus_then_ws] = ACTIONS(2049), - [sym__minus_then_ws] = ACTIONS(2049), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [498] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1181), - [sym_boolean_literal] = STATE(1181), - [sym__string_literal] = STATE(1181), - [sym_line_string_literal] = STATE(1181), - [sym_multi_line_string_literal] = STATE(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_regex_literal] = STATE(1181), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1181), - [sym__unary_expression] = STATE(1181), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1181), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1181), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1181), - [sym_prefix_expression] = STATE(1181), - [sym_as_expression] = STATE(1181), - [sym_selector_expression] = STATE(1181), - [sym__binary_expression] = STATE(1181), - [sym_multiplicative_expression] = STATE(1181), - [sym_additive_expression] = STATE(1181), - [sym_range_expression] = STATE(1181), - [sym_infix_expression] = STATE(1181), - [sym_nil_coalescing_expression] = STATE(1181), - [sym_check_expression] = STATE(1181), - [sym_comparison_expression] = STATE(1181), - [sym_equality_expression] = STATE(1181), - [sym_conjunction_expression] = STATE(1181), - [sym_disjunction_expression] = STATE(1181), - [sym_bitwise_operation] = STATE(1181), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1181), - [sym_await_expression] = STATE(1181), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1181), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1181), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1181), - [sym_dictionary_literal] = STATE(1181), - [sym__special_literal] = STATE(1181), - [sym__playground_literal] = STATE(1181), - [sym_lambda_literal] = STATE(1181), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1181), - [sym_key_path_expression] = STATE(1181), - [sym_key_path_string_expression] = STATE(1181), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1181), - [sym__equality_operator] = STATE(1181), - [sym__comparison_operator] = STATE(1181), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1181), - [sym__multiplicative_operator] = STATE(1181), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1181), - [sym__referenceable_operator] = STATE(1181), - [sym__eq_eq] = STATE(1181), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2051), - [sym_real_literal] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(2051), - [sym_hex_literal] = ACTIONS(2053), - [sym_oct_literal] = ACTIONS(2053), - [sym_bin_literal] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_GT] = ACTIONS(2051), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2051), - [anon_sym_POUNDfileID] = ACTIONS(2053), - [anon_sym_POUNDfilePath] = ACTIONS(2053), - [anon_sym_POUNDline] = ACTIONS(2053), - [anon_sym_POUNDcolumn] = ACTIONS(2053), - [anon_sym_POUNDfunction] = ACTIONS(2053), - [anon_sym_POUNDdsohandle] = ACTIONS(2053), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2053), - [anon_sym_DASH_EQ] = ACTIONS(2053), - [anon_sym_STAR_EQ] = ACTIONS(2053), - [anon_sym_SLASH_EQ] = ACTIONS(2053), - [anon_sym_PERCENT_EQ] = ACTIONS(2053), - [anon_sym_EQ] = ACTIONS(2051), - [anon_sym_BANG_EQ] = ACTIONS(2051), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2053), - [anon_sym_LT_EQ] = ACTIONS(2053), - [anon_sym_GT_EQ] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2051), - [anon_sym_SLASH] = ACTIONS(2051), - [anon_sym_PERCENT] = ACTIONS(2051), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_CARET] = ACTIONS(2051), - [anon_sym_LT_LT] = ACTIONS(2053), - [anon_sym_GT_GT] = ACTIONS(2053), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2053), - [sym__plus_then_ws] = ACTIONS(2053), - [sym__minus_then_ws] = ACTIONS(2053), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [499] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(630), - [sym_boolean_literal] = STATE(630), - [sym__string_literal] = STATE(630), - [sym_line_string_literal] = STATE(630), - [sym_multi_line_string_literal] = STATE(630), - [sym_raw_string_literal] = STATE(630), - [sym_regex_literal] = STATE(630), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(630), - [sym__unary_expression] = STATE(630), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(630), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(630), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(630), - [sym_prefix_expression] = STATE(630), - [sym_as_expression] = STATE(630), - [sym_selector_expression] = STATE(630), - [sym__binary_expression] = STATE(630), - [sym_multiplicative_expression] = STATE(630), - [sym_additive_expression] = STATE(630), - [sym_range_expression] = STATE(630), - [sym_infix_expression] = STATE(630), - [sym_nil_coalescing_expression] = STATE(630), - [sym_check_expression] = STATE(630), - [sym_comparison_expression] = STATE(630), - [sym_equality_expression] = STATE(630), - [sym_conjunction_expression] = STATE(630), - [sym_disjunction_expression] = STATE(630), - [sym_bitwise_operation] = STATE(630), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(630), - [sym_await_expression] = STATE(630), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(630), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(630), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(630), - [sym_dictionary_literal] = STATE(630), - [sym__special_literal] = STATE(630), - [sym__playground_literal] = STATE(630), - [sym_lambda_literal] = STATE(630), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(630), - [sym_key_path_expression] = STATE(630), - [sym_key_path_string_expression] = STATE(630), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(630), - [sym__equality_operator] = STATE(630), - [sym__comparison_operator] = STATE(630), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(630), - [sym__multiplicative_operator] = STATE(630), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(630), - [sym__referenceable_operator] = STATE(630), - [sym__eq_eq] = STATE(630), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2055), - [sym_real_literal] = ACTIONS(2057), - [sym_integer_literal] = ACTIONS(2055), - [sym_hex_literal] = ACTIONS(2057), - [sym_oct_literal] = ACTIONS(2057), - [sym_bin_literal] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2055), - [anon_sym_POUNDfileID] = ACTIONS(2057), - [anon_sym_POUNDfilePath] = ACTIONS(2057), - [anon_sym_POUNDline] = ACTIONS(2057), - [anon_sym_POUNDcolumn] = ACTIONS(2057), - [anon_sym_POUNDfunction] = ACTIONS(2057), - [anon_sym_POUNDdsohandle] = ACTIONS(2057), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2057), - [anon_sym_DASH_EQ] = ACTIONS(2057), - [anon_sym_STAR_EQ] = ACTIONS(2057), - [anon_sym_SLASH_EQ] = ACTIONS(2057), - [anon_sym_PERCENT_EQ] = ACTIONS(2057), - [anon_sym_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2057), - [anon_sym_GT_GT] = ACTIONS(2057), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2057), - [sym__plus_then_ws] = ACTIONS(2057), - [sym__minus_then_ws] = ACTIONS(2057), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [500] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1261), - [sym_boolean_literal] = STATE(1261), - [sym__string_literal] = STATE(1261), - [sym_line_string_literal] = STATE(1261), - [sym_multi_line_string_literal] = STATE(1261), - [sym_raw_string_literal] = STATE(1261), - [sym_regex_literal] = STATE(1261), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1261), - [sym__unary_expression] = STATE(1261), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1261), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1261), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1261), - [sym_prefix_expression] = STATE(1261), - [sym_as_expression] = STATE(1261), - [sym_selector_expression] = STATE(1261), - [sym__binary_expression] = STATE(1261), - [sym_multiplicative_expression] = STATE(1261), - [sym_additive_expression] = STATE(1261), - [sym_range_expression] = STATE(1261), - [sym_infix_expression] = STATE(1261), - [sym_nil_coalescing_expression] = STATE(1261), - [sym_check_expression] = STATE(1261), - [sym_comparison_expression] = STATE(1261), - [sym_equality_expression] = STATE(1261), - [sym_conjunction_expression] = STATE(1261), - [sym_disjunction_expression] = STATE(1261), - [sym_bitwise_operation] = STATE(1261), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1261), - [sym_await_expression] = STATE(1261), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1261), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1261), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1261), - [sym_dictionary_literal] = STATE(1261), - [sym__special_literal] = STATE(1261), - [sym__playground_literal] = STATE(1261), - [sym_lambda_literal] = STATE(1261), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1261), - [sym_key_path_expression] = STATE(1261), - [sym_key_path_string_expression] = STATE(1261), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1261), - [sym__equality_operator] = STATE(1261), - [sym__comparison_operator] = STATE(1261), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1261), - [sym__multiplicative_operator] = STATE(1261), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1261), - [sym__referenceable_operator] = STATE(1261), - [sym__eq_eq] = STATE(1261), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2059), - [sym_real_literal] = ACTIONS(2061), - [sym_integer_literal] = ACTIONS(2059), - [sym_hex_literal] = ACTIONS(2061), - [sym_oct_literal] = ACTIONS(2061), - [sym_bin_literal] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2059), - [anon_sym_POUNDfileID] = ACTIONS(2061), - [anon_sym_POUNDfilePath] = ACTIONS(2061), - [anon_sym_POUNDline] = ACTIONS(2061), - [anon_sym_POUNDcolumn] = ACTIONS(2061), - [anon_sym_POUNDfunction] = ACTIONS(2061), - [anon_sym_POUNDdsohandle] = ACTIONS(2061), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2061), - [anon_sym_DASH_EQ] = ACTIONS(2061), - [anon_sym_STAR_EQ] = ACTIONS(2061), - [anon_sym_SLASH_EQ] = ACTIONS(2061), - [anon_sym_PERCENT_EQ] = ACTIONS(2061), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2061), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2061), - [anon_sym_LT_EQ] = ACTIONS(2061), - [anon_sym_GT_EQ] = ACTIONS(2061), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_SLASH] = ACTIONS(2059), - [anon_sym_PERCENT] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(2061), - [anon_sym_GT_GT] = ACTIONS(2061), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2061), - [sym__plus_then_ws] = ACTIONS(2061), - [sym__minus_then_ws] = ACTIONS(2061), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [501] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1302), - [sym_boolean_literal] = STATE(1302), - [sym__string_literal] = STATE(1302), - [sym_line_string_literal] = STATE(1302), - [sym_multi_line_string_literal] = STATE(1302), - [sym_raw_string_literal] = STATE(1302), - [sym_regex_literal] = STATE(1302), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1302), - [sym__unary_expression] = STATE(1302), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1302), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1302), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1302), - [sym_prefix_expression] = STATE(1302), - [sym_as_expression] = STATE(1302), - [sym_selector_expression] = STATE(1302), - [sym__binary_expression] = STATE(2620), - [sym_multiplicative_expression] = STATE(2620), - [sym_additive_expression] = STATE(2620), - [sym_range_expression] = STATE(2620), - [sym_infix_expression] = STATE(2620), - [sym_nil_coalescing_expression] = STATE(2620), - [sym_check_expression] = STATE(2620), - [sym_comparison_expression] = STATE(2620), - [sym_equality_expression] = STATE(2620), - [sym_conjunction_expression] = STATE(2620), - [sym_disjunction_expression] = STATE(2620), - [sym_bitwise_operation] = STATE(2620), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1302), - [sym_await_expression] = STATE(1302), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(2630), - [sym_call_expression] = STATE(1946), - [sym__primary_expression] = STATE(1302), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1302), - [sym_dictionary_literal] = STATE(1302), - [sym__special_literal] = STATE(1302), - [sym__playground_literal] = STATE(1302), - [sym_lambda_literal] = STATE(1302), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1302), - [sym_key_path_expression] = STATE(1302), - [sym_key_path_string_expression] = STATE(1302), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1302), - [sym__equality_operator] = STATE(1302), - [sym__comparison_operator] = STATE(1302), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1302), - [sym__multiplicative_operator] = STATE(1302), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1302), - [sym__referenceable_operator] = STATE(1302), - [sym__eq_eq] = STATE(1302), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2063), - [sym_real_literal] = ACTIONS(2065), - [sym_integer_literal] = ACTIONS(2063), - [sym_hex_literal] = ACTIONS(2065), - [sym_oct_literal] = ACTIONS(2065), - [sym_bin_literal] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2063), - [anon_sym_GT] = ACTIONS(2063), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2063), - [anon_sym_POUNDfileID] = ACTIONS(2065), - [anon_sym_POUNDfilePath] = ACTIONS(2065), - [anon_sym_POUNDline] = ACTIONS(2065), - [anon_sym_POUNDcolumn] = ACTIONS(2065), - [anon_sym_POUNDfunction] = ACTIONS(2065), - [anon_sym_POUNDdsohandle] = ACTIONS(2065), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2065), - [anon_sym_DASH_EQ] = ACTIONS(2065), - [anon_sym_STAR_EQ] = ACTIONS(2065), - [anon_sym_SLASH_EQ] = ACTIONS(2065), - [anon_sym_PERCENT_EQ] = ACTIONS(2065), - [anon_sym_EQ] = ACTIONS(2063), - [anon_sym_BANG_EQ] = ACTIONS(2063), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2065), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2065), - [anon_sym_LT_EQ] = ACTIONS(2065), - [anon_sym_GT_EQ] = ACTIONS(2065), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_SLASH] = ACTIONS(2063), - [anon_sym_PERCENT] = ACTIONS(2063), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_CARET] = ACTIONS(2063), - [anon_sym_LT_LT] = ACTIONS(2065), - [anon_sym_GT_GT] = ACTIONS(2065), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2065), - [sym__plus_then_ws] = ACTIONS(2065), - [sym__minus_then_ws] = ACTIONS(2065), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [502] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1311), - [sym_boolean_literal] = STATE(1311), - [sym__string_literal] = STATE(1311), - [sym_line_string_literal] = STATE(1311), - [sym_multi_line_string_literal] = STATE(1311), - [sym_raw_string_literal] = STATE(1311), - [sym_regex_literal] = STATE(1311), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1311), - [sym__unary_expression] = STATE(1311), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1311), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1311), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1311), - [sym_prefix_expression] = STATE(1311), - [sym_as_expression] = STATE(1311), - [sym_selector_expression] = STATE(1311), - [sym__binary_expression] = STATE(1311), - [sym_multiplicative_expression] = STATE(1311), - [sym_additive_expression] = STATE(1311), - [sym_range_expression] = STATE(1311), - [sym_infix_expression] = STATE(1311), - [sym_nil_coalescing_expression] = STATE(1311), - [sym_check_expression] = STATE(1311), - [sym_comparison_expression] = STATE(1311), - [sym_equality_expression] = STATE(1311), - [sym_conjunction_expression] = STATE(1311), - [sym_disjunction_expression] = STATE(1311), - [sym_bitwise_operation] = STATE(1311), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1311), - [sym_await_expression] = STATE(1311), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1311), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1311), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1311), - [sym_dictionary_literal] = STATE(1311), - [sym__special_literal] = STATE(1311), - [sym__playground_literal] = STATE(1311), - [sym_lambda_literal] = STATE(1311), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1311), - [sym_key_path_expression] = STATE(1311), - [sym_key_path_string_expression] = STATE(1311), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1311), - [sym__equality_operator] = STATE(1311), - [sym__comparison_operator] = STATE(1311), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1311), - [sym__multiplicative_operator] = STATE(1311), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1311), - [sym__referenceable_operator] = STATE(1311), - [sym__eq_eq] = STATE(1311), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2067), - [sym_real_literal] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(2067), - [sym_hex_literal] = ACTIONS(2069), - [sym_oct_literal] = ACTIONS(2069), - [sym_bin_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2067), - [anon_sym_POUNDfileID] = ACTIONS(2069), - [anon_sym_POUNDfilePath] = ACTIONS(2069), - [anon_sym_POUNDline] = ACTIONS(2069), - [anon_sym_POUNDcolumn] = ACTIONS(2069), - [anon_sym_POUNDfunction] = ACTIONS(2069), - [anon_sym_POUNDdsohandle] = ACTIONS(2069), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2069), - [anon_sym_DASH_EQ] = ACTIONS(2069), - [anon_sym_STAR_EQ] = ACTIONS(2069), - [anon_sym_SLASH_EQ] = ACTIONS(2069), - [anon_sym_PERCENT_EQ] = ACTIONS(2069), - [anon_sym_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2069), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2069), - [sym__plus_then_ws] = ACTIONS(2069), - [sym__minus_then_ws] = ACTIONS(2069), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [503] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(590), - [sym_boolean_literal] = STATE(590), - [sym__string_literal] = STATE(590), - [sym_line_string_literal] = STATE(590), - [sym_multi_line_string_literal] = STATE(590), - [sym_raw_string_literal] = STATE(590), - [sym_regex_literal] = STATE(590), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(590), - [sym__unary_expression] = STATE(590), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(590), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(590), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(590), - [sym_prefix_expression] = STATE(590), - [sym_as_expression] = STATE(590), - [sym_selector_expression] = STATE(590), - [sym__binary_expression] = STATE(590), - [sym_multiplicative_expression] = STATE(590), - [sym_additive_expression] = STATE(590), - [sym_range_expression] = STATE(590), - [sym_infix_expression] = STATE(590), - [sym_nil_coalescing_expression] = STATE(590), - [sym_check_expression] = STATE(590), - [sym_comparison_expression] = STATE(590), - [sym_equality_expression] = STATE(590), - [sym_conjunction_expression] = STATE(590), - [sym_disjunction_expression] = STATE(590), - [sym_bitwise_operation] = STATE(590), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(590), - [sym_await_expression] = STATE(590), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(754), - [sym_call_expression] = STATE(670), - [sym__primary_expression] = STATE(590), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(590), - [sym_dictionary_literal] = STATE(590), - [sym__special_literal] = STATE(590), - [sym__playground_literal] = STATE(590), - [sym_lambda_literal] = STATE(590), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(590), - [sym_key_path_expression] = STATE(590), - [sym_key_path_string_expression] = STATE(590), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(590), - [sym__equality_operator] = STATE(590), - [sym__comparison_operator] = STATE(590), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(590), - [sym__multiplicative_operator] = STATE(590), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(590), - [sym__referenceable_operator] = STATE(590), - [sym__eq_eq] = STATE(590), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2071), - [sym_real_literal] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2071), - [sym_hex_literal] = ACTIONS(2073), - [sym_oct_literal] = ACTIONS(2073), - [sym_bin_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_GT] = ACTIONS(2071), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(2071), - [anon_sym_POUNDfileID] = ACTIONS(2073), - [anon_sym_POUNDfilePath] = ACTIONS(2073), - [anon_sym_POUNDline] = ACTIONS(2073), - [anon_sym_POUNDcolumn] = ACTIONS(2073), - [anon_sym_POUNDfunction] = ACTIONS(2073), - [anon_sym_POUNDdsohandle] = ACTIONS(2073), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(2073), - [anon_sym_DASH_EQ] = ACTIONS(2073), - [anon_sym_STAR_EQ] = ACTIONS(2073), - [anon_sym_SLASH_EQ] = ACTIONS(2073), - [anon_sym_PERCENT_EQ] = ACTIONS(2073), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_BANG_EQ] = ACTIONS(2071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2073), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), - [anon_sym_LT_EQ] = ACTIONS(2073), - [anon_sym_GT_EQ] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(2071), - [anon_sym_PERCENT] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(2073), - [anon_sym_CARET] = ACTIONS(2071), - [anon_sym_LT_LT] = ACTIONS(2073), - [anon_sym_GT_GT] = ACTIONS(2073), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(2073), - [sym__plus_then_ws] = ACTIONS(2073), - [sym__minus_then_ws] = ACTIONS(2073), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [504] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(595), - [sym_boolean_literal] = STATE(595), - [sym__string_literal] = STATE(595), - [sym_line_string_literal] = STATE(595), - [sym_multi_line_string_literal] = STATE(595), - [sym_raw_string_literal] = STATE(595), - [sym_regex_literal] = STATE(595), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(595), - [sym__unary_expression] = STATE(595), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(595), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(595), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(595), - [sym_prefix_expression] = STATE(595), - [sym_as_expression] = STATE(595), - [sym_selector_expression] = STATE(595), - [sym__binary_expression] = STATE(755), - [sym_multiplicative_expression] = STATE(755), - [sym_additive_expression] = STATE(755), - [sym_range_expression] = STATE(755), - [sym_infix_expression] = STATE(755), - [sym_nil_coalescing_expression] = STATE(755), - [sym_check_expression] = STATE(755), - [sym_comparison_expression] = STATE(755), - [sym_equality_expression] = STATE(755), - [sym_conjunction_expression] = STATE(755), - [sym_disjunction_expression] = STATE(755), - [sym_bitwise_operation] = STATE(755), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(595), - [sym_await_expression] = STATE(595), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(756), - [sym_call_expression] = STATE(673), - [sym__primary_expression] = STATE(595), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(595), - [sym_dictionary_literal] = STATE(595), - [sym__special_literal] = STATE(595), - [sym__playground_literal] = STATE(595), - [sym_lambda_literal] = STATE(595), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(595), - [sym_key_path_expression] = STATE(595), - [sym_key_path_string_expression] = STATE(595), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(595), - [sym__equality_operator] = STATE(595), - [sym__comparison_operator] = STATE(595), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(595), - [sym__multiplicative_operator] = STATE(595), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(595), - [sym__referenceable_operator] = STATE(595), - [sym__eq_eq] = STATE(595), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2075), - [sym_real_literal] = ACTIONS(2077), - [sym_integer_literal] = ACTIONS(2075), - [sym_hex_literal] = ACTIONS(2077), - [sym_oct_literal] = ACTIONS(2077), - [sym_bin_literal] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_GT] = ACTIONS(2075), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(2075), - [anon_sym_POUNDfileID] = ACTIONS(2077), - [anon_sym_POUNDfilePath] = ACTIONS(2077), - [anon_sym_POUNDline] = ACTIONS(2077), - [anon_sym_POUNDcolumn] = ACTIONS(2077), - [anon_sym_POUNDfunction] = ACTIONS(2077), - [anon_sym_POUNDdsohandle] = ACTIONS(2077), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(2077), - [anon_sym_DASH_EQ] = ACTIONS(2077), - [anon_sym_STAR_EQ] = ACTIONS(2077), - [anon_sym_SLASH_EQ] = ACTIONS(2077), - [anon_sym_PERCENT_EQ] = ACTIONS(2077), - [anon_sym_EQ] = ACTIONS(2075), - [anon_sym_BANG_EQ] = ACTIONS(2075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_SLASH] = ACTIONS(2075), - [anon_sym_PERCENT] = ACTIONS(2075), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2075), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(2077), - [sym__plus_then_ws] = ACTIONS(2077), - [sym__minus_then_ws] = ACTIONS(2077), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [505] = { - [sym_simple_identifier] = STATE(1777), - [sym__basic_literal] = STATE(1209), - [sym_boolean_literal] = STATE(1209), - [sym__string_literal] = STATE(1209), - [sym_line_string_literal] = STATE(1209), - [sym_multi_line_string_literal] = STATE(1209), - [sym_raw_string_literal] = STATE(1209), - [sym_regex_literal] = STATE(1209), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(1209), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1209), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1209), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1209), - [sym_prefix_expression] = STATE(1209), - [sym_as_expression] = STATE(1209), - [sym_selector_expression] = STATE(1209), - [sym__binary_expression] = STATE(1209), - [sym_multiplicative_expression] = STATE(1209), - [sym_additive_expression] = STATE(1209), - [sym_range_expression] = STATE(1209), - [sym_infix_expression] = STATE(1209), - [sym_nil_coalescing_expression] = STATE(1209), - [sym_check_expression] = STATE(1209), - [sym_comparison_expression] = STATE(1209), - [sym_equality_expression] = STATE(1209), - [sym_conjunction_expression] = STATE(1209), - [sym_disjunction_expression] = STATE(1209), - [sym_bitwise_operation] = STATE(1209), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1209), - [sym_await_expression] = STATE(1209), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1209), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1209), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1209), - [sym_dictionary_literal] = STATE(1209), - [sym__special_literal] = STATE(1209), - [sym__playground_literal] = STATE(1209), - [sym_lambda_literal] = STATE(1209), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1209), - [sym_key_path_expression] = STATE(1209), - [sym_key_path_string_expression] = STATE(1209), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1209), - [sym__equality_operator] = STATE(1209), - [sym__comparison_operator] = STATE(1209), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1209), - [sym__multiplicative_operator] = STATE(1209), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1209), - [sym__referenceable_operator] = STATE(1209), - [sym__eq_eq] = STATE(1209), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(1039), - [sym_real_literal] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1039), - [sym_hex_literal] = ACTIONS(1041), - [sym_oct_literal] = ACTIONS(1041), - [sym_bin_literal] = ACTIONS(1041), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(1039), - [anon_sym_POUNDfileID] = ACTIONS(1041), - [anon_sym_POUNDfilePath] = ACTIONS(1041), - [anon_sym_POUNDline] = ACTIONS(1041), - [anon_sym_POUNDcolumn] = ACTIONS(1041), - [anon_sym_POUNDfunction] = ACTIONS(1041), - [anon_sym_POUNDdsohandle] = ACTIONS(1041), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(1041), - [anon_sym_DASH_EQ] = ACTIONS(1041), - [anon_sym_STAR_EQ] = ACTIONS(1041), - [anon_sym_SLASH_EQ] = ACTIONS(1041), - [anon_sym_PERCENT_EQ] = ACTIONS(1041), - [anon_sym_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ] = ACTIONS(1039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1041), - [anon_sym_LT_EQ] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(1039), - [anon_sym_SLASH] = ACTIONS(1039), - [anon_sym_PERCENT] = ACTIONS(1039), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(1041), - [sym__plus_then_ws] = ACTIONS(1041), - [sym__minus_then_ws] = ACTIONS(1041), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [506] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1335), - [sym_boolean_literal] = STATE(1335), - [sym__string_literal] = STATE(1335), - [sym_line_string_literal] = STATE(1335), - [sym_multi_line_string_literal] = STATE(1335), - [sym_raw_string_literal] = STATE(1335), - [sym_regex_literal] = STATE(1335), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1335), - [sym__unary_expression] = STATE(1335), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1335), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1335), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1335), - [sym_prefix_expression] = STATE(1335), - [sym_as_expression] = STATE(1335), - [sym_selector_expression] = STATE(1335), - [sym__binary_expression] = STATE(1335), - [sym_multiplicative_expression] = STATE(1335), - [sym_additive_expression] = STATE(1335), - [sym_range_expression] = STATE(1335), - [sym_infix_expression] = STATE(1335), - [sym_nil_coalescing_expression] = STATE(1335), - [sym_check_expression] = STATE(1335), - [sym_comparison_expression] = STATE(1335), - [sym_equality_expression] = STATE(1335), - [sym_conjunction_expression] = STATE(1335), - [sym_disjunction_expression] = STATE(1335), - [sym_bitwise_operation] = STATE(1335), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1335), - [sym_await_expression] = STATE(1335), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1335), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1335), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1335), - [sym_dictionary_literal] = STATE(1335), - [sym__special_literal] = STATE(1335), - [sym__playground_literal] = STATE(1335), - [sym_lambda_literal] = STATE(1335), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1335), - [sym_key_path_expression] = STATE(1335), - [sym_key_path_string_expression] = STATE(1335), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1335), - [sym__equality_operator] = STATE(1335), - [sym__comparison_operator] = STATE(1335), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1335), - [sym__multiplicative_operator] = STATE(1335), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1335), - [sym__referenceable_operator] = STATE(1335), - [sym__eq_eq] = STATE(1335), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2079), - [sym_real_literal] = ACTIONS(2081), - [sym_integer_literal] = ACTIONS(2079), - [sym_hex_literal] = ACTIONS(2081), - [sym_oct_literal] = ACTIONS(2081), - [sym_bin_literal] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_GT] = ACTIONS(2079), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2079), - [anon_sym_POUNDfileID] = ACTIONS(2081), - [anon_sym_POUNDfilePath] = ACTIONS(2081), - [anon_sym_POUNDline] = ACTIONS(2081), - [anon_sym_POUNDcolumn] = ACTIONS(2081), - [anon_sym_POUNDfunction] = ACTIONS(2081), - [anon_sym_POUNDdsohandle] = ACTIONS(2081), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2081), - [anon_sym_DASH_EQ] = ACTIONS(2081), - [anon_sym_STAR_EQ] = ACTIONS(2081), - [anon_sym_SLASH_EQ] = ACTIONS(2081), - [anon_sym_PERCENT_EQ] = ACTIONS(2081), - [anon_sym_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ] = ACTIONS(2079), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2081), - [anon_sym_LT_EQ] = ACTIONS(2081), - [anon_sym_GT_EQ] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_SLASH] = ACTIONS(2079), - [anon_sym_PERCENT] = ACTIONS(2079), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_CARET] = ACTIONS(2079), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_GT_GT] = ACTIONS(2081), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2081), - [sym__plus_then_ws] = ACTIONS(2081), - [sym__minus_then_ws] = ACTIONS(2081), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [507] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1318), - [sym_boolean_literal] = STATE(1318), - [sym__string_literal] = STATE(1318), - [sym_line_string_literal] = STATE(1318), - [sym_multi_line_string_literal] = STATE(1318), - [sym_raw_string_literal] = STATE(1318), - [sym_regex_literal] = STATE(1318), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1318), - [sym__unary_expression] = STATE(1318), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1318), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1318), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1318), - [sym_prefix_expression] = STATE(1318), - [sym_as_expression] = STATE(1318), - [sym_selector_expression] = STATE(1318), - [sym__binary_expression] = STATE(1318), - [sym_multiplicative_expression] = STATE(1318), - [sym_additive_expression] = STATE(1318), - [sym_range_expression] = STATE(1318), - [sym_infix_expression] = STATE(1318), - [sym_nil_coalescing_expression] = STATE(1318), - [sym_check_expression] = STATE(1318), - [sym_comparison_expression] = STATE(1318), - [sym_equality_expression] = STATE(1318), - [sym_conjunction_expression] = STATE(1318), - [sym_disjunction_expression] = STATE(1318), - [sym_bitwise_operation] = STATE(1318), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1318), - [sym_await_expression] = STATE(1318), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1318), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1318), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1318), - [sym_dictionary_literal] = STATE(1318), - [sym__special_literal] = STATE(1318), - [sym__playground_literal] = STATE(1318), - [sym_lambda_literal] = STATE(1318), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1318), - [sym_key_path_expression] = STATE(1318), - [sym_key_path_string_expression] = STATE(1318), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1318), - [sym__equality_operator] = STATE(1318), - [sym__comparison_operator] = STATE(1318), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1318), - [sym__multiplicative_operator] = STATE(1318), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1318), - [sym__referenceable_operator] = STATE(1318), - [sym__eq_eq] = STATE(1318), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2083), - [sym_real_literal] = ACTIONS(2085), - [sym_integer_literal] = ACTIONS(2083), - [sym_hex_literal] = ACTIONS(2085), - [sym_oct_literal] = ACTIONS(2085), - [sym_bin_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_GT] = ACTIONS(2083), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2083), - [anon_sym_POUNDfileID] = ACTIONS(2085), - [anon_sym_POUNDfilePath] = ACTIONS(2085), - [anon_sym_POUNDline] = ACTIONS(2085), - [anon_sym_POUNDcolumn] = ACTIONS(2085), - [anon_sym_POUNDfunction] = ACTIONS(2085), - [anon_sym_POUNDdsohandle] = ACTIONS(2085), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2085), - [anon_sym_DASH_EQ] = ACTIONS(2085), - [anon_sym_STAR_EQ] = ACTIONS(2085), - [anon_sym_SLASH_EQ] = ACTIONS(2085), - [anon_sym_PERCENT_EQ] = ACTIONS(2085), - [anon_sym_EQ] = ACTIONS(2083), - [anon_sym_BANG_EQ] = ACTIONS(2083), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2085), - [anon_sym_GT_EQ] = ACTIONS(2085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2083), - [anon_sym_SLASH] = ACTIONS(2083), - [anon_sym_PERCENT] = ACTIONS(2083), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_CARET] = ACTIONS(2083), - [anon_sym_LT_LT] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2085), - [sym__plus_then_ws] = ACTIONS(2085), - [sym__minus_then_ws] = ACTIONS(2085), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [508] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(594), - [sym_boolean_literal] = STATE(594), - [sym__string_literal] = STATE(594), - [sym_line_string_literal] = STATE(594), - [sym_multi_line_string_literal] = STATE(594), - [sym_raw_string_literal] = STATE(594), - [sym_regex_literal] = STATE(594), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(594), - [sym__unary_expression] = STATE(594), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(594), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(594), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(594), - [sym_prefix_expression] = STATE(594), - [sym_as_expression] = STATE(594), - [sym_selector_expression] = STATE(594), - [sym__binary_expression] = STATE(594), - [sym_multiplicative_expression] = STATE(594), - [sym_additive_expression] = STATE(594), - [sym_range_expression] = STATE(594), - [sym_infix_expression] = STATE(594), - [sym_nil_coalescing_expression] = STATE(594), - [sym_check_expression] = STATE(594), - [sym_comparison_expression] = STATE(594), - [sym_equality_expression] = STATE(594), - [sym_conjunction_expression] = STATE(594), - [sym_disjunction_expression] = STATE(594), - [sym_bitwise_operation] = STATE(594), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(594), - [sym_await_expression] = STATE(594), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(594), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(594), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(594), - [sym_dictionary_literal] = STATE(594), - [sym__special_literal] = STATE(594), - [sym__playground_literal] = STATE(594), - [sym_lambda_literal] = STATE(594), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(594), - [sym_key_path_expression] = STATE(594), - [sym_key_path_string_expression] = STATE(594), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(594), - [sym__equality_operator] = STATE(594), - [sym__comparison_operator] = STATE(594), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(594), - [sym__multiplicative_operator] = STATE(594), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(594), - [sym__referenceable_operator] = STATE(594), - [sym__eq_eq] = STATE(594), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2087), - [sym_real_literal] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(2087), - [sym_hex_literal] = ACTIONS(2089), - [sym_oct_literal] = ACTIONS(2089), - [sym_bin_literal] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(2087), - [anon_sym_GT] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(2087), - [anon_sym_POUNDfileID] = ACTIONS(2089), - [anon_sym_POUNDfilePath] = ACTIONS(2089), - [anon_sym_POUNDline] = ACTIONS(2089), - [anon_sym_POUNDcolumn] = ACTIONS(2089), - [anon_sym_POUNDfunction] = ACTIONS(2089), - [anon_sym_POUNDdsohandle] = ACTIONS(2089), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(2089), - [anon_sym_DASH_EQ] = ACTIONS(2089), - [anon_sym_STAR_EQ] = ACTIONS(2089), - [anon_sym_SLASH_EQ] = ACTIONS(2089), - [anon_sym_PERCENT_EQ] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_SLASH] = ACTIONS(2087), - [anon_sym_PERCENT] = ACTIONS(2087), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2089), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(2089), - [sym__plus_then_ws] = ACTIONS(2089), - [sym__minus_then_ws] = ACTIONS(2089), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [509] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1342), - [sym_boolean_literal] = STATE(1342), - [sym__string_literal] = STATE(1342), - [sym_line_string_literal] = STATE(1342), - [sym_multi_line_string_literal] = STATE(1342), - [sym_raw_string_literal] = STATE(1342), - [sym_regex_literal] = STATE(1342), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1342), - [sym__unary_expression] = STATE(1342), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1342), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1342), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1342), - [sym_prefix_expression] = STATE(1342), - [sym_as_expression] = STATE(1342), - [sym_selector_expression] = STATE(1342), - [sym__binary_expression] = STATE(1342), - [sym_multiplicative_expression] = STATE(1342), - [sym_additive_expression] = STATE(1342), - [sym_range_expression] = STATE(1342), - [sym_infix_expression] = STATE(1342), - [sym_nil_coalescing_expression] = STATE(1342), - [sym_check_expression] = STATE(1342), - [sym_comparison_expression] = STATE(1342), - [sym_equality_expression] = STATE(1342), - [sym_conjunction_expression] = STATE(1342), - [sym_disjunction_expression] = STATE(1342), - [sym_bitwise_operation] = STATE(1342), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1342), - [sym_await_expression] = STATE(1342), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1342), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1342), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1342), - [sym_dictionary_literal] = STATE(1342), - [sym__special_literal] = STATE(1342), - [sym__playground_literal] = STATE(1342), - [sym_lambda_literal] = STATE(1342), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1342), - [sym_key_path_expression] = STATE(1342), - [sym_key_path_string_expression] = STATE(1342), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1342), - [sym__equality_operator] = STATE(1342), - [sym__comparison_operator] = STATE(1342), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1342), - [sym__multiplicative_operator] = STATE(1342), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1342), - [sym__referenceable_operator] = STATE(1342), - [sym__eq_eq] = STATE(1342), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2091), - [sym_real_literal] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(2091), - [sym_hex_literal] = ACTIONS(2093), - [sym_oct_literal] = ACTIONS(2093), - [sym_bin_literal] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2091), - [anon_sym_POUNDfileID] = ACTIONS(2093), - [anon_sym_POUNDfilePath] = ACTIONS(2093), - [anon_sym_POUNDline] = ACTIONS(2093), - [anon_sym_POUNDcolumn] = ACTIONS(2093), - [anon_sym_POUNDfunction] = ACTIONS(2093), - [anon_sym_POUNDdsohandle] = ACTIONS(2093), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2093), - [anon_sym_DASH_EQ] = ACTIONS(2093), - [anon_sym_STAR_EQ] = ACTIONS(2093), - [anon_sym_SLASH_EQ] = ACTIONS(2093), - [anon_sym_PERCENT_EQ] = ACTIONS(2093), - [anon_sym_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ] = ACTIONS(2091), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_SLASH] = ACTIONS(2091), - [anon_sym_PERCENT] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2093), - [sym__plus_then_ws] = ACTIONS(2093), - [sym__minus_then_ws] = ACTIONS(2093), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [510] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(628), - [sym_boolean_literal] = STATE(628), - [sym__string_literal] = STATE(628), - [sym_line_string_literal] = STATE(628), - [sym_multi_line_string_literal] = STATE(628), - [sym_raw_string_literal] = STATE(628), - [sym_regex_literal] = STATE(628), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(628), - [sym__unary_expression] = STATE(628), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(628), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(628), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(628), - [sym_prefix_expression] = STATE(628), - [sym_as_expression] = STATE(628), - [sym_selector_expression] = STATE(628), - [sym__binary_expression] = STATE(628), - [sym_multiplicative_expression] = STATE(628), - [sym_additive_expression] = STATE(628), - [sym_range_expression] = STATE(628), - [sym_infix_expression] = STATE(628), - [sym_nil_coalescing_expression] = STATE(628), - [sym_check_expression] = STATE(628), - [sym_comparison_expression] = STATE(628), - [sym_equality_expression] = STATE(628), - [sym_conjunction_expression] = STATE(628), - [sym_disjunction_expression] = STATE(628), - [sym_bitwise_operation] = STATE(628), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(628), - [sym_await_expression] = STATE(628), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(628), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(628), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(628), - [sym_dictionary_literal] = STATE(628), - [sym__special_literal] = STATE(628), - [sym__playground_literal] = STATE(628), - [sym_lambda_literal] = STATE(628), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(628), - [sym_key_path_expression] = STATE(628), - [sym_key_path_string_expression] = STATE(628), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(628), - [sym__equality_operator] = STATE(628), - [sym__comparison_operator] = STATE(628), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(628), - [sym__multiplicative_operator] = STATE(628), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(628), - [sym__referenceable_operator] = STATE(628), - [sym__eq_eq] = STATE(628), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2095), - [sym_real_literal] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2095), - [sym_hex_literal] = ACTIONS(2097), - [sym_oct_literal] = ACTIONS(2097), - [sym_bin_literal] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_GT] = ACTIONS(2095), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2095), - [anon_sym_POUNDfileID] = ACTIONS(2097), - [anon_sym_POUNDfilePath] = ACTIONS(2097), - [anon_sym_POUNDline] = ACTIONS(2097), - [anon_sym_POUNDcolumn] = ACTIONS(2097), - [anon_sym_POUNDfunction] = ACTIONS(2097), - [anon_sym_POUNDdsohandle] = ACTIONS(2097), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [anon_sym_DASH_EQ] = ACTIONS(2097), - [anon_sym_STAR_EQ] = ACTIONS(2097), - [anon_sym_SLASH_EQ] = ACTIONS(2097), - [anon_sym_PERCENT_EQ] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ] = ACTIONS(2095), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2097), - [anon_sym_LT_EQ] = ACTIONS(2097), - [anon_sym_GT_EQ] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_SLASH] = ACTIONS(2095), - [anon_sym_PERCENT] = ACTIONS(2095), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_LT_LT] = ACTIONS(2097), - [anon_sym_GT_GT] = ACTIONS(2097), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2097), - [sym__plus_then_ws] = ACTIONS(2097), - [sym__minus_then_ws] = ACTIONS(2097), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [511] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1153), - [sym_boolean_literal] = STATE(1153), - [sym__string_literal] = STATE(1153), - [sym_line_string_literal] = STATE(1153), - [sym_multi_line_string_literal] = STATE(1153), - [sym_raw_string_literal] = STATE(1153), - [sym_regex_literal] = STATE(1153), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1153), - [sym__unary_expression] = STATE(1153), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1153), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1153), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1153), - [sym_prefix_expression] = STATE(1153), - [sym_as_expression] = STATE(1153), - [sym_selector_expression] = STATE(1153), - [sym__binary_expression] = STATE(1153), - [sym_multiplicative_expression] = STATE(1153), - [sym_additive_expression] = STATE(1153), - [sym_range_expression] = STATE(1153), - [sym_infix_expression] = STATE(1153), - [sym_nil_coalescing_expression] = STATE(1153), - [sym_check_expression] = STATE(1153), - [sym_comparison_expression] = STATE(1153), - [sym_equality_expression] = STATE(1153), - [sym_conjunction_expression] = STATE(1153), - [sym_disjunction_expression] = STATE(1153), - [sym_bitwise_operation] = STATE(1153), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1153), - [sym_await_expression] = STATE(1153), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1153), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1153), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1153), - [sym_dictionary_literal] = STATE(1153), - [sym__special_literal] = STATE(1153), - [sym__playground_literal] = STATE(1153), - [sym_lambda_literal] = STATE(1153), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1153), - [sym_key_path_expression] = STATE(1153), - [sym_key_path_string_expression] = STATE(1153), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1153), - [sym__equality_operator] = STATE(1153), - [sym__comparison_operator] = STATE(1153), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1153), - [sym__multiplicative_operator] = STATE(1153), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1153), - [sym__referenceable_operator] = STATE(1153), - [sym__eq_eq] = STATE(1153), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2099), - [sym_real_literal] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2099), - [sym_hex_literal] = ACTIONS(2101), - [sym_oct_literal] = ACTIONS(2101), - [sym_bin_literal] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_GT] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2099), - [anon_sym_POUNDfileID] = ACTIONS(2101), - [anon_sym_POUNDfilePath] = ACTIONS(2101), - [anon_sym_POUNDline] = ACTIONS(2101), - [anon_sym_POUNDcolumn] = ACTIONS(2101), - [anon_sym_POUNDfunction] = ACTIONS(2101), - [anon_sym_POUNDdsohandle] = ACTIONS(2101), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2101), - [anon_sym_DASH_EQ] = ACTIONS(2101), - [anon_sym_STAR_EQ] = ACTIONS(2101), - [anon_sym_SLASH_EQ] = ACTIONS(2101), - [anon_sym_PERCENT_EQ] = ACTIONS(2101), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ] = ACTIONS(2099), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2101), - [anon_sym_LT_EQ] = ACTIONS(2101), - [anon_sym_GT_EQ] = ACTIONS(2101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_SLASH] = ACTIONS(2099), - [anon_sym_PERCENT] = ACTIONS(2099), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_LT_LT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2101), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2101), - [sym__plus_then_ws] = ACTIONS(2101), - [sym__minus_then_ws] = ACTIONS(2101), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [512] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1233), - [sym_boolean_literal] = STATE(1233), - [sym__string_literal] = STATE(1233), - [sym_line_string_literal] = STATE(1233), - [sym_multi_line_string_literal] = STATE(1233), - [sym_raw_string_literal] = STATE(1233), - [sym_regex_literal] = STATE(1233), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(1233), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1233), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1233), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1233), - [sym_prefix_expression] = STATE(1233), - [sym_as_expression] = STATE(1233), - [sym_selector_expression] = STATE(1233), - [sym__binary_expression] = STATE(1233), - [sym_multiplicative_expression] = STATE(1233), - [sym_additive_expression] = STATE(1233), - [sym_range_expression] = STATE(1233), - [sym_infix_expression] = STATE(1233), - [sym_nil_coalescing_expression] = STATE(1233), - [sym_check_expression] = STATE(1233), - [sym_comparison_expression] = STATE(1233), - [sym_equality_expression] = STATE(1233), - [sym_conjunction_expression] = STATE(1233), - [sym_disjunction_expression] = STATE(1233), - [sym_bitwise_operation] = STATE(1233), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1233), - [sym_await_expression] = STATE(1233), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1233), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1233), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1233), - [sym_dictionary_literal] = STATE(1233), - [sym__special_literal] = STATE(1233), - [sym__playground_literal] = STATE(1233), - [sym_lambda_literal] = STATE(1233), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1233), - [sym_key_path_expression] = STATE(1233), - [sym_key_path_string_expression] = STATE(1233), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1233), - [sym__equality_operator] = STATE(1233), - [sym__comparison_operator] = STATE(1233), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1233), - [sym__multiplicative_operator] = STATE(1233), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1233), - [sym__referenceable_operator] = STATE(1233), - [sym__eq_eq] = STATE(1233), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2103), - [sym_real_literal] = ACTIONS(2105), - [sym_integer_literal] = ACTIONS(2103), - [sym_hex_literal] = ACTIONS(2105), - [sym_oct_literal] = ACTIONS(2105), - [sym_bin_literal] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_GT] = ACTIONS(2103), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2103), - [anon_sym_POUNDfileID] = ACTIONS(2105), - [anon_sym_POUNDfilePath] = ACTIONS(2105), - [anon_sym_POUNDline] = ACTIONS(2105), - [anon_sym_POUNDcolumn] = ACTIONS(2105), - [anon_sym_POUNDfunction] = ACTIONS(2105), - [anon_sym_POUNDdsohandle] = ACTIONS(2105), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2105), - [anon_sym_DASH_EQ] = ACTIONS(2105), - [anon_sym_STAR_EQ] = ACTIONS(2105), - [anon_sym_SLASH_EQ] = ACTIONS(2105), - [anon_sym_PERCENT_EQ] = ACTIONS(2105), - [anon_sym_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ] = ACTIONS(2103), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_SLASH] = ACTIONS(2103), - [anon_sym_PERCENT] = ACTIONS(2103), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2105), - [sym__plus_then_ws] = ACTIONS(2105), - [sym__minus_then_ws] = ACTIONS(2105), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [513] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1217), - [sym_boolean_literal] = STATE(1217), - [sym__string_literal] = STATE(1217), - [sym_line_string_literal] = STATE(1217), - [sym_multi_line_string_literal] = STATE(1217), - [sym_raw_string_literal] = STATE(1217), - [sym_regex_literal] = STATE(1217), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(1217), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1217), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1217), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1217), - [sym_prefix_expression] = STATE(1217), - [sym_as_expression] = STATE(1217), - [sym_selector_expression] = STATE(1217), - [sym__binary_expression] = STATE(1217), - [sym_multiplicative_expression] = STATE(1217), - [sym_additive_expression] = STATE(1217), - [sym_range_expression] = STATE(1217), - [sym_infix_expression] = STATE(1217), - [sym_nil_coalescing_expression] = STATE(1217), - [sym_check_expression] = STATE(1217), - [sym_comparison_expression] = STATE(1217), - [sym_equality_expression] = STATE(1217), - [sym_conjunction_expression] = STATE(1217), - [sym_disjunction_expression] = STATE(1217), - [sym_bitwise_operation] = STATE(1217), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1217), - [sym_await_expression] = STATE(1217), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1217), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1217), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1217), - [sym_dictionary_literal] = STATE(1217), - [sym__special_literal] = STATE(1217), - [sym__playground_literal] = STATE(1217), - [sym_lambda_literal] = STATE(1217), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1217), - [sym_key_path_expression] = STATE(1217), - [sym_key_path_string_expression] = STATE(1217), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1217), - [sym__equality_operator] = STATE(1217), - [sym__comparison_operator] = STATE(1217), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1217), - [sym__multiplicative_operator] = STATE(1217), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1217), - [sym__referenceable_operator] = STATE(1217), - [sym__eq_eq] = STATE(1217), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2107), - [sym_real_literal] = ACTIONS(2109), - [sym_integer_literal] = ACTIONS(2107), - [sym_hex_literal] = ACTIONS(2109), - [sym_oct_literal] = ACTIONS(2109), - [sym_bin_literal] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_GT] = ACTIONS(2107), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2107), - [anon_sym_POUNDfileID] = ACTIONS(2109), - [anon_sym_POUNDfilePath] = ACTIONS(2109), - [anon_sym_POUNDline] = ACTIONS(2109), - [anon_sym_POUNDcolumn] = ACTIONS(2109), - [anon_sym_POUNDfunction] = ACTIONS(2109), - [anon_sym_POUNDdsohandle] = ACTIONS(2109), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2109), - [anon_sym_DASH_EQ] = ACTIONS(2109), - [anon_sym_STAR_EQ] = ACTIONS(2109), - [anon_sym_SLASH_EQ] = ACTIONS(2109), - [anon_sym_PERCENT_EQ] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ] = ACTIONS(2107), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_SLASH] = ACTIONS(2107), - [anon_sym_PERCENT] = ACTIONS(2107), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2107), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2109), - [sym__plus_then_ws] = ACTIONS(2109), - [sym__minus_then_ws] = ACTIONS(2109), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [514] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1339), - [sym_boolean_literal] = STATE(1339), - [sym__string_literal] = STATE(1339), - [sym_line_string_literal] = STATE(1339), - [sym_multi_line_string_literal] = STATE(1339), - [sym_raw_string_literal] = STATE(1339), - [sym_regex_literal] = STATE(1339), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1339), - [sym__unary_expression] = STATE(1339), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1339), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1339), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1339), - [sym_prefix_expression] = STATE(1339), - [sym_as_expression] = STATE(1339), - [sym_selector_expression] = STATE(1339), - [sym__binary_expression] = STATE(1339), - [sym_multiplicative_expression] = STATE(1339), - [sym_additive_expression] = STATE(1339), - [sym_range_expression] = STATE(1339), - [sym_infix_expression] = STATE(1339), - [sym_nil_coalescing_expression] = STATE(1339), - [sym_check_expression] = STATE(1339), - [sym_comparison_expression] = STATE(1339), - [sym_equality_expression] = STATE(1339), - [sym_conjunction_expression] = STATE(1339), - [sym_disjunction_expression] = STATE(1339), - [sym_bitwise_operation] = STATE(1339), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1339), - [sym_await_expression] = STATE(1339), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1339), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1339), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1339), - [sym_dictionary_literal] = STATE(1339), - [sym__special_literal] = STATE(1339), - [sym__playground_literal] = STATE(1339), - [sym_lambda_literal] = STATE(1339), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1339), - [sym_key_path_expression] = STATE(1339), - [sym_key_path_string_expression] = STATE(1339), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1339), - [sym__equality_operator] = STATE(1339), - [sym__comparison_operator] = STATE(1339), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1339), - [sym__multiplicative_operator] = STATE(1339), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1339), - [sym__referenceable_operator] = STATE(1339), - [sym__eq_eq] = STATE(1339), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2111), - [sym_real_literal] = ACTIONS(2113), - [sym_integer_literal] = ACTIONS(2111), - [sym_hex_literal] = ACTIONS(2113), - [sym_oct_literal] = ACTIONS(2113), - [sym_bin_literal] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2111), - [anon_sym_POUNDfileID] = ACTIONS(2113), - [anon_sym_POUNDfilePath] = ACTIONS(2113), - [anon_sym_POUNDline] = ACTIONS(2113), - [anon_sym_POUNDcolumn] = ACTIONS(2113), - [anon_sym_POUNDfunction] = ACTIONS(2113), - [anon_sym_POUNDdsohandle] = ACTIONS(2113), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2113), - [anon_sym_DASH_EQ] = ACTIONS(2113), - [anon_sym_STAR_EQ] = ACTIONS(2113), - [anon_sym_SLASH_EQ] = ACTIONS(2113), - [anon_sym_PERCENT_EQ] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ] = ACTIONS(2111), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2113), - [anon_sym_LT_EQ] = ACTIONS(2113), - [anon_sym_GT_EQ] = ACTIONS(2113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2111), - [anon_sym_PERCENT] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2113), - [anon_sym_CARET] = ACTIONS(2111), - [anon_sym_LT_LT] = ACTIONS(2113), - [anon_sym_GT_GT] = ACTIONS(2113), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2113), - [sym__plus_then_ws] = ACTIONS(2113), - [sym__minus_then_ws] = ACTIONS(2113), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [515] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1243), - [sym_boolean_literal] = STATE(1243), - [sym__string_literal] = STATE(1243), - [sym_line_string_literal] = STATE(1243), - [sym_multi_line_string_literal] = STATE(1243), - [sym_raw_string_literal] = STATE(1243), - [sym_regex_literal] = STATE(1243), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1243), - [sym__unary_expression] = STATE(1243), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1243), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1243), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1243), - [sym_prefix_expression] = STATE(1243), - [sym_as_expression] = STATE(1243), - [sym_selector_expression] = STATE(1243), - [sym__binary_expression] = STATE(1243), - [sym_multiplicative_expression] = STATE(1243), - [sym_additive_expression] = STATE(1243), - [sym_range_expression] = STATE(1243), - [sym_infix_expression] = STATE(1243), - [sym_nil_coalescing_expression] = STATE(1243), - [sym_check_expression] = STATE(1243), - [sym_comparison_expression] = STATE(1243), - [sym_equality_expression] = STATE(1243), - [sym_conjunction_expression] = STATE(1243), - [sym_disjunction_expression] = STATE(1243), - [sym_bitwise_operation] = STATE(1243), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1243), - [sym_await_expression] = STATE(1243), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1243), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1243), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1243), - [sym_dictionary_literal] = STATE(1243), - [sym__special_literal] = STATE(1243), - [sym__playground_literal] = STATE(1243), - [sym_lambda_literal] = STATE(1243), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1243), - [sym_key_path_expression] = STATE(1243), - [sym_key_path_string_expression] = STATE(1243), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1243), - [sym__equality_operator] = STATE(1243), - [sym__comparison_operator] = STATE(1243), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1243), - [sym__multiplicative_operator] = STATE(1243), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1243), - [sym__referenceable_operator] = STATE(1243), - [sym__eq_eq] = STATE(1243), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(2115), - [sym_real_literal] = ACTIONS(2117), - [sym_integer_literal] = ACTIONS(2115), - [sym_hex_literal] = ACTIONS(2117), - [sym_oct_literal] = ACTIONS(2117), - [sym_bin_literal] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(2115), - [anon_sym_POUNDfileID] = ACTIONS(2117), - [anon_sym_POUNDfilePath] = ACTIONS(2117), - [anon_sym_POUNDline] = ACTIONS(2117), - [anon_sym_POUNDcolumn] = ACTIONS(2117), - [anon_sym_POUNDfunction] = ACTIONS(2117), - [anon_sym_POUNDdsohandle] = ACTIONS(2117), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(2117), - [anon_sym_DASH_EQ] = ACTIONS(2117), - [anon_sym_STAR_EQ] = ACTIONS(2117), - [anon_sym_SLASH_EQ] = ACTIONS(2117), - [anon_sym_PERCENT_EQ] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ] = ACTIONS(2115), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2117), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2117), - [anon_sym_GT_EQ] = ACTIONS(2117), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2115), - [anon_sym_PERCENT] = ACTIONS(2115), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(2117), - [anon_sym_GT_GT] = ACTIONS(2117), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(2117), - [sym__plus_then_ws] = ACTIONS(2117), - [sym__minus_then_ws] = ACTIONS(2117), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [516] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1242), - [sym_boolean_literal] = STATE(1242), - [sym__string_literal] = STATE(1242), - [sym_line_string_literal] = STATE(1242), - [sym_multi_line_string_literal] = STATE(1242), - [sym_raw_string_literal] = STATE(1242), - [sym_regex_literal] = STATE(1242), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1242), - [sym__unary_expression] = STATE(1242), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1242), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1242), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1242), - [sym_prefix_expression] = STATE(1242), - [sym_as_expression] = STATE(1242), - [sym_selector_expression] = STATE(1242), - [sym__binary_expression] = STATE(1242), - [sym_multiplicative_expression] = STATE(1242), - [sym_additive_expression] = STATE(1242), - [sym_range_expression] = STATE(1242), - [sym_infix_expression] = STATE(1242), - [sym_nil_coalescing_expression] = STATE(1242), - [sym_check_expression] = STATE(1242), - [sym_comparison_expression] = STATE(1242), - [sym_equality_expression] = STATE(1242), - [sym_conjunction_expression] = STATE(1242), - [sym_disjunction_expression] = STATE(1242), - [sym_bitwise_operation] = STATE(1242), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1242), - [sym_await_expression] = STATE(1242), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1242), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1242), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1242), - [sym_dictionary_literal] = STATE(1242), - [sym__special_literal] = STATE(1242), - [sym__playground_literal] = STATE(1242), - [sym_lambda_literal] = STATE(1242), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1242), - [sym_key_path_expression] = STATE(1242), - [sym_key_path_string_expression] = STATE(1242), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1242), - [sym__equality_operator] = STATE(1242), - [sym__comparison_operator] = STATE(1242), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1242), - [sym__multiplicative_operator] = STATE(1242), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1242), - [sym__referenceable_operator] = STATE(1242), - [sym__eq_eq] = STATE(1242), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(2119), - [sym_real_literal] = ACTIONS(2121), - [sym_integer_literal] = ACTIONS(2119), - [sym_hex_literal] = ACTIONS(2121), - [sym_oct_literal] = ACTIONS(2121), - [sym_bin_literal] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(2119), - [anon_sym_POUNDfileID] = ACTIONS(2121), - [anon_sym_POUNDfilePath] = ACTIONS(2121), - [anon_sym_POUNDline] = ACTIONS(2121), - [anon_sym_POUNDcolumn] = ACTIONS(2121), - [anon_sym_POUNDfunction] = ACTIONS(2121), - [anon_sym_POUNDdsohandle] = ACTIONS(2121), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(2121), - [anon_sym_DASH_EQ] = ACTIONS(2121), - [anon_sym_STAR_EQ] = ACTIONS(2121), - [anon_sym_SLASH_EQ] = ACTIONS(2121), - [anon_sym_PERCENT_EQ] = ACTIONS(2121), - [anon_sym_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2121), - [anon_sym_LT_EQ] = ACTIONS(2121), - [anon_sym_GT_EQ] = ACTIONS(2121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2121), - [anon_sym_GT_GT] = ACTIONS(2121), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(2121), - [sym__plus_then_ws] = ACTIONS(2121), - [sym__minus_then_ws] = ACTIONS(2121), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [517] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1220), - [sym_boolean_literal] = STATE(1220), - [sym__string_literal] = STATE(1220), - [sym_line_string_literal] = STATE(1220), - [sym_multi_line_string_literal] = STATE(1220), - [sym_raw_string_literal] = STATE(1220), - [sym_regex_literal] = STATE(1220), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(1220), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1220), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1220), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1220), - [sym_prefix_expression] = STATE(1220), - [sym_as_expression] = STATE(1220), - [sym_selector_expression] = STATE(1220), - [sym__binary_expression] = STATE(1220), - [sym_multiplicative_expression] = STATE(1220), - [sym_additive_expression] = STATE(1220), - [sym_range_expression] = STATE(1220), - [sym_infix_expression] = STATE(1220), - [sym_nil_coalescing_expression] = STATE(1220), - [sym_check_expression] = STATE(1220), - [sym_comparison_expression] = STATE(1220), - [sym_equality_expression] = STATE(1220), - [sym_conjunction_expression] = STATE(1220), - [sym_disjunction_expression] = STATE(1220), - [sym_bitwise_operation] = STATE(1220), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1220), - [sym_await_expression] = STATE(1220), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1220), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1220), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1220), - [sym_dictionary_literal] = STATE(1220), - [sym__special_literal] = STATE(1220), - [sym__playground_literal] = STATE(1220), - [sym_lambda_literal] = STATE(1220), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1220), - [sym_key_path_expression] = STATE(1220), - [sym_key_path_string_expression] = STATE(1220), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1220), - [sym__equality_operator] = STATE(1220), - [sym__comparison_operator] = STATE(1220), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1220), - [sym__multiplicative_operator] = STATE(1220), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1220), - [sym__referenceable_operator] = STATE(1220), - [sym__eq_eq] = STATE(1220), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2123), - [sym_real_literal] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2123), - [sym_hex_literal] = ACTIONS(2125), - [sym_oct_literal] = ACTIONS(2125), - [sym_bin_literal] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_GT] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2123), - [anon_sym_POUNDfileID] = ACTIONS(2125), - [anon_sym_POUNDfilePath] = ACTIONS(2125), - [anon_sym_POUNDline] = ACTIONS(2125), - [anon_sym_POUNDcolumn] = ACTIONS(2125), - [anon_sym_POUNDfunction] = ACTIONS(2125), - [anon_sym_POUNDdsohandle] = ACTIONS(2125), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2125), - [anon_sym_DASH_EQ] = ACTIONS(2125), - [anon_sym_STAR_EQ] = ACTIONS(2125), - [anon_sym_SLASH_EQ] = ACTIONS(2125), - [anon_sym_PERCENT_EQ] = ACTIONS(2125), - [anon_sym_EQ] = ACTIONS(2123), - [anon_sym_BANG_EQ] = ACTIONS(2123), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), - [anon_sym_LT_EQ] = ACTIONS(2125), - [anon_sym_GT_EQ] = ACTIONS(2125), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_SLASH] = ACTIONS(2123), - [anon_sym_PERCENT] = ACTIONS(2123), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_CARET] = ACTIONS(2123), - [anon_sym_LT_LT] = ACTIONS(2125), - [anon_sym_GT_GT] = ACTIONS(2125), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2125), - [sym__plus_then_ws] = ACTIONS(2125), - [sym__minus_then_ws] = ACTIONS(2125), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [518] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1200), - [sym_boolean_literal] = STATE(1200), - [sym__string_literal] = STATE(1200), - [sym_line_string_literal] = STATE(1200), - [sym_multi_line_string_literal] = STATE(1200), - [sym_raw_string_literal] = STATE(1200), - [sym_regex_literal] = STATE(1200), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(1200), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1200), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1200), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1200), - [sym_prefix_expression] = STATE(1200), - [sym_as_expression] = STATE(1200), - [sym_selector_expression] = STATE(1200), - [sym__binary_expression] = STATE(1200), - [sym_multiplicative_expression] = STATE(1200), - [sym_additive_expression] = STATE(1200), - [sym_range_expression] = STATE(1200), - [sym_infix_expression] = STATE(1200), - [sym_nil_coalescing_expression] = STATE(1200), - [sym_check_expression] = STATE(1200), - [sym_comparison_expression] = STATE(1200), - [sym_equality_expression] = STATE(1200), - [sym_conjunction_expression] = STATE(1200), - [sym_disjunction_expression] = STATE(1200), - [sym_bitwise_operation] = STATE(1200), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1200), - [sym_await_expression] = STATE(1200), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1200), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1200), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1200), - [sym_dictionary_literal] = STATE(1200), - [sym__special_literal] = STATE(1200), - [sym__playground_literal] = STATE(1200), - [sym_lambda_literal] = STATE(1200), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1200), - [sym_key_path_expression] = STATE(1200), - [sym_key_path_string_expression] = STATE(1200), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1200), - [sym__equality_operator] = STATE(1200), - [sym__comparison_operator] = STATE(1200), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1200), - [sym__multiplicative_operator] = STATE(1200), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1200), - [sym__referenceable_operator] = STATE(1200), - [sym__eq_eq] = STATE(1200), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2127), - [sym_real_literal] = ACTIONS(2129), - [sym_integer_literal] = ACTIONS(2127), - [sym_hex_literal] = ACTIONS(2129), - [sym_oct_literal] = ACTIONS(2129), - [sym_bin_literal] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2127), - [anon_sym_POUNDfileID] = ACTIONS(2129), - [anon_sym_POUNDfilePath] = ACTIONS(2129), - [anon_sym_POUNDline] = ACTIONS(2129), - [anon_sym_POUNDcolumn] = ACTIONS(2129), - [anon_sym_POUNDfunction] = ACTIONS(2129), - [anon_sym_POUNDdsohandle] = ACTIONS(2129), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2129), - [anon_sym_DASH_EQ] = ACTIONS(2129), - [anon_sym_STAR_EQ] = ACTIONS(2129), - [anon_sym_SLASH_EQ] = ACTIONS(2129), - [anon_sym_PERCENT_EQ] = ACTIONS(2129), - [anon_sym_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ] = ACTIONS(2127), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2129), - [anon_sym_LT_EQ] = ACTIONS(2129), - [anon_sym_GT_EQ] = ACTIONS(2129), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2129), - [anon_sym_CARET] = ACTIONS(2127), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_GT_GT] = ACTIONS(2129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2129), - [sym__plus_then_ws] = ACTIONS(2129), - [sym__minus_then_ws] = ACTIONS(2129), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [519] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1300), - [sym_boolean_literal] = STATE(1300), - [sym__string_literal] = STATE(1300), - [sym_line_string_literal] = STATE(1300), - [sym_multi_line_string_literal] = STATE(1300), - [sym_raw_string_literal] = STATE(1300), - [sym_regex_literal] = STATE(1300), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1300), - [sym__unary_expression] = STATE(1300), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1300), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1300), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1300), - [sym_prefix_expression] = STATE(1300), - [sym_as_expression] = STATE(1300), - [sym_selector_expression] = STATE(1300), - [sym__binary_expression] = STATE(1300), - [sym_multiplicative_expression] = STATE(1300), - [sym_additive_expression] = STATE(1300), - [sym_range_expression] = STATE(1300), - [sym_infix_expression] = STATE(1300), - [sym_nil_coalescing_expression] = STATE(1300), - [sym_check_expression] = STATE(1300), - [sym_comparison_expression] = STATE(1300), - [sym_equality_expression] = STATE(1300), - [sym_conjunction_expression] = STATE(1300), - [sym_disjunction_expression] = STATE(1300), - [sym_bitwise_operation] = STATE(1300), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1300), - [sym_await_expression] = STATE(1300), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1300), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1300), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1300), - [sym_dictionary_literal] = STATE(1300), - [sym__special_literal] = STATE(1300), - [sym__playground_literal] = STATE(1300), - [sym_lambda_literal] = STATE(1300), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1300), - [sym_key_path_expression] = STATE(1300), - [sym_key_path_string_expression] = STATE(1300), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1300), - [sym__equality_operator] = STATE(1300), - [sym__comparison_operator] = STATE(1300), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1300), - [sym__multiplicative_operator] = STATE(1300), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1300), - [sym__referenceable_operator] = STATE(1300), - [sym__eq_eq] = STATE(1300), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2131), - [sym_real_literal] = ACTIONS(2133), - [sym_integer_literal] = ACTIONS(2131), - [sym_hex_literal] = ACTIONS(2133), - [sym_oct_literal] = ACTIONS(2133), - [sym_bin_literal] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2131), - [anon_sym_GT] = ACTIONS(2131), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2131), - [anon_sym_POUNDfileID] = ACTIONS(2133), - [anon_sym_POUNDfilePath] = ACTIONS(2133), - [anon_sym_POUNDline] = ACTIONS(2133), - [anon_sym_POUNDcolumn] = ACTIONS(2133), - [anon_sym_POUNDfunction] = ACTIONS(2133), - [anon_sym_POUNDdsohandle] = ACTIONS(2133), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2133), - [anon_sym_DASH_EQ] = ACTIONS(2133), - [anon_sym_STAR_EQ] = ACTIONS(2133), - [anon_sym_SLASH_EQ] = ACTIONS(2133), - [anon_sym_PERCENT_EQ] = ACTIONS(2133), - [anon_sym_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ] = ACTIONS(2131), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2133), - [anon_sym_LT_EQ] = ACTIONS(2133), - [anon_sym_GT_EQ] = ACTIONS(2133), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_SLASH] = ACTIONS(2131), - [anon_sym_PERCENT] = ACTIONS(2131), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_CARET] = ACTIONS(2131), - [anon_sym_LT_LT] = ACTIONS(2133), - [anon_sym_GT_GT] = ACTIONS(2133), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2133), - [sym__plus_then_ws] = ACTIONS(2133), - [sym__minus_then_ws] = ACTIONS(2133), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [520] = { - [sym_simple_identifier] = STATE(1773), - [sym__basic_literal] = STATE(1291), - [sym_boolean_literal] = STATE(1291), - [sym__string_literal] = STATE(1291), - [sym_line_string_literal] = STATE(1291), - [sym_multi_line_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_regex_literal] = STATE(1291), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(1291), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1291), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1291), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1291), - [sym_prefix_expression] = STATE(1291), - [sym_as_expression] = STATE(1291), - [sym_selector_expression] = STATE(1291), - [sym__binary_expression] = STATE(1291), - [sym_multiplicative_expression] = STATE(1291), - [sym_additive_expression] = STATE(1291), - [sym_range_expression] = STATE(1291), - [sym_infix_expression] = STATE(1291), - [sym_nil_coalescing_expression] = STATE(1291), - [sym_check_expression] = STATE(1291), - [sym_comparison_expression] = STATE(1291), - [sym_equality_expression] = STATE(1291), - [sym_conjunction_expression] = STATE(1291), - [sym_disjunction_expression] = STATE(1291), - [sym_bitwise_operation] = STATE(1291), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1291), - [sym_await_expression] = STATE(1291), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1291), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1291), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1291), - [sym_dictionary_literal] = STATE(1291), - [sym__special_literal] = STATE(1291), - [sym__playground_literal] = STATE(1291), - [sym_lambda_literal] = STATE(1291), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1291), - [sym_key_path_expression] = STATE(1291), - [sym_key_path_string_expression] = STATE(1291), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1291), - [sym__equality_operator] = STATE(1291), - [sym__comparison_operator] = STATE(1291), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1291), - [sym__multiplicative_operator] = STATE(1291), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1291), - [sym__referenceable_operator] = STATE(1291), - [sym__eq_eq] = STATE(1291), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2135), - [sym_real_literal] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2135), - [sym_hex_literal] = ACTIONS(2137), - [sym_oct_literal] = ACTIONS(2137), - [sym_bin_literal] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_GT] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2135), - [anon_sym_POUNDfileID] = ACTIONS(2137), - [anon_sym_POUNDfilePath] = ACTIONS(2137), - [anon_sym_POUNDline] = ACTIONS(2137), - [anon_sym_POUNDcolumn] = ACTIONS(2137), - [anon_sym_POUNDfunction] = ACTIONS(2137), - [anon_sym_POUNDdsohandle] = ACTIONS(2137), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2137), - [anon_sym_DASH_EQ] = ACTIONS(2137), - [anon_sym_STAR_EQ] = ACTIONS(2137), - [anon_sym_SLASH_EQ] = ACTIONS(2137), - [anon_sym_PERCENT_EQ] = ACTIONS(2137), - [anon_sym_EQ] = ACTIONS(2135), - [anon_sym_BANG_EQ] = ACTIONS(2135), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2137), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_PERCENT] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2135), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2137), - [sym__plus_then_ws] = ACTIONS(2137), - [sym__minus_then_ws] = ACTIONS(2137), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [521] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1238), - [sym_boolean_literal] = STATE(1238), - [sym__string_literal] = STATE(1238), - [sym_line_string_literal] = STATE(1238), - [sym_multi_line_string_literal] = STATE(1238), - [sym_raw_string_literal] = STATE(1238), - [sym_regex_literal] = STATE(1238), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1238), - [sym__unary_expression] = STATE(1238), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1238), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1238), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1238), - [sym_prefix_expression] = STATE(1238), - [sym_as_expression] = STATE(1238), - [sym_selector_expression] = STATE(1238), - [sym__binary_expression] = STATE(1238), - [sym_multiplicative_expression] = STATE(1238), - [sym_additive_expression] = STATE(1238), - [sym_range_expression] = STATE(1238), - [sym_infix_expression] = STATE(1238), - [sym_nil_coalescing_expression] = STATE(1238), - [sym_check_expression] = STATE(1238), - [sym_comparison_expression] = STATE(1238), - [sym_equality_expression] = STATE(1238), - [sym_conjunction_expression] = STATE(1238), - [sym_disjunction_expression] = STATE(1238), - [sym_bitwise_operation] = STATE(1238), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1238), - [sym_await_expression] = STATE(1238), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1238), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1238), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1238), - [sym_dictionary_literal] = STATE(1238), - [sym__special_literal] = STATE(1238), - [sym__playground_literal] = STATE(1238), - [sym_lambda_literal] = STATE(1238), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1238), - [sym_key_path_expression] = STATE(1238), - [sym_key_path_string_expression] = STATE(1238), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1238), - [sym__equality_operator] = STATE(1238), - [sym__comparison_operator] = STATE(1238), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1238), - [sym__multiplicative_operator] = STATE(1238), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1238), - [sym__referenceable_operator] = STATE(1238), - [sym__eq_eq] = STATE(1238), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(647), - [sym_real_literal] = ACTIONS(649), - [sym_integer_literal] = ACTIONS(647), - [sym_hex_literal] = ACTIONS(649), - [sym_oct_literal] = ACTIONS(649), - [sym_bin_literal] = ACTIONS(649), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(647), - [anon_sym_GT] = ACTIONS(647), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(647), - [anon_sym_POUNDfileID] = ACTIONS(649), - [anon_sym_POUNDfilePath] = ACTIONS(649), - [anon_sym_POUNDline] = ACTIONS(649), - [anon_sym_POUNDcolumn] = ACTIONS(649), - [anon_sym_POUNDfunction] = ACTIONS(649), - [anon_sym_POUNDdsohandle] = ACTIONS(649), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_DASH_EQ] = ACTIONS(649), - [anon_sym_STAR_EQ] = ACTIONS(649), - [anon_sym_SLASH_EQ] = ACTIONS(649), - [anon_sym_PERCENT_EQ] = ACTIONS(649), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ] = ACTIONS(647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(649), - [anon_sym_LT_EQ] = ACTIONS(649), - [anon_sym_GT_EQ] = ACTIONS(649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(647), - [anon_sym_SLASH] = ACTIONS(647), - [anon_sym_PERCENT] = ACTIONS(647), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(649), - [anon_sym_CARET] = ACTIONS(647), - [anon_sym_LT_LT] = ACTIONS(649), - [anon_sym_GT_GT] = ACTIONS(649), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(649), - [sym__plus_then_ws] = ACTIONS(649), - [sym__minus_then_ws] = ACTIONS(649), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [522] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1338), - [sym_boolean_literal] = STATE(1338), - [sym__string_literal] = STATE(1338), - [sym_line_string_literal] = STATE(1338), - [sym_multi_line_string_literal] = STATE(1338), - [sym_raw_string_literal] = STATE(1338), - [sym_regex_literal] = STATE(1338), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1338), - [sym__unary_expression] = STATE(1338), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1338), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1338), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1338), - [sym_prefix_expression] = STATE(1338), - [sym_as_expression] = STATE(1338), - [sym_selector_expression] = STATE(1338), - [sym__binary_expression] = STATE(1338), - [sym_multiplicative_expression] = STATE(1338), - [sym_additive_expression] = STATE(1338), - [sym_range_expression] = STATE(1338), - [sym_infix_expression] = STATE(1338), - [sym_nil_coalescing_expression] = STATE(1338), - [sym_check_expression] = STATE(1338), - [sym_comparison_expression] = STATE(1338), - [sym_equality_expression] = STATE(1338), - [sym_conjunction_expression] = STATE(1338), - [sym_disjunction_expression] = STATE(1338), - [sym_bitwise_operation] = STATE(1338), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1338), - [sym_await_expression] = STATE(1338), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1338), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1338), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1338), - [sym_dictionary_literal] = STATE(1338), - [sym__special_literal] = STATE(1338), - [sym__playground_literal] = STATE(1338), - [sym_lambda_literal] = STATE(1338), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1338), - [sym_key_path_expression] = STATE(1338), - [sym_key_path_string_expression] = STATE(1338), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1338), - [sym__equality_operator] = STATE(1338), - [sym__comparison_operator] = STATE(1338), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1338), - [sym__multiplicative_operator] = STATE(1338), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1338), - [sym__referenceable_operator] = STATE(1338), - [sym__eq_eq] = STATE(1338), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2139), - [sym_real_literal] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2139), - [sym_hex_literal] = ACTIONS(2141), - [sym_oct_literal] = ACTIONS(2141), - [sym_bin_literal] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_GT] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2139), - [anon_sym_POUNDfileID] = ACTIONS(2141), - [anon_sym_POUNDfilePath] = ACTIONS(2141), - [anon_sym_POUNDline] = ACTIONS(2141), - [anon_sym_POUNDcolumn] = ACTIONS(2141), - [anon_sym_POUNDfunction] = ACTIONS(2141), - [anon_sym_POUNDdsohandle] = ACTIONS(2141), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2141), - [anon_sym_DASH_EQ] = ACTIONS(2141), - [anon_sym_STAR_EQ] = ACTIONS(2141), - [anon_sym_SLASH_EQ] = ACTIONS(2141), - [anon_sym_PERCENT_EQ] = ACTIONS(2141), - [anon_sym_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ] = ACTIONS(2139), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2141), - [anon_sym_LT_EQ] = ACTIONS(2141), - [anon_sym_GT_EQ] = ACTIONS(2141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_SLASH] = ACTIONS(2139), - [anon_sym_PERCENT] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_LT_LT] = ACTIONS(2141), - [anon_sym_GT_GT] = ACTIONS(2141), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2141), - [sym__plus_then_ws] = ACTIONS(2141), - [sym__minus_then_ws] = ACTIONS(2141), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [523] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1329), - [sym_boolean_literal] = STATE(1329), - [sym__string_literal] = STATE(1329), - [sym_line_string_literal] = STATE(1329), - [sym_multi_line_string_literal] = STATE(1329), - [sym_raw_string_literal] = STATE(1329), - [sym_regex_literal] = STATE(1329), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1329), - [sym__unary_expression] = STATE(1329), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1329), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1329), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1329), - [sym_prefix_expression] = STATE(1329), - [sym_as_expression] = STATE(1329), - [sym_selector_expression] = STATE(1329), - [sym__binary_expression] = STATE(1329), - [sym_multiplicative_expression] = STATE(1329), - [sym_additive_expression] = STATE(1329), - [sym_range_expression] = STATE(1329), - [sym_infix_expression] = STATE(1329), - [sym_nil_coalescing_expression] = STATE(1329), - [sym_check_expression] = STATE(1329), - [sym_comparison_expression] = STATE(1329), - [sym_equality_expression] = STATE(1329), - [sym_conjunction_expression] = STATE(1329), - [sym_disjunction_expression] = STATE(1329), - [sym_bitwise_operation] = STATE(1329), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1329), - [sym_await_expression] = STATE(1329), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1329), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1329), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1329), - [sym_dictionary_literal] = STATE(1329), - [sym__special_literal] = STATE(1329), - [sym__playground_literal] = STATE(1329), - [sym_lambda_literal] = STATE(1329), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1329), - [sym_key_path_expression] = STATE(1329), - [sym_key_path_string_expression] = STATE(1329), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1329), - [sym__equality_operator] = STATE(1329), - [sym__comparison_operator] = STATE(1329), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1329), - [sym__multiplicative_operator] = STATE(1329), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1329), - [sym__referenceable_operator] = STATE(1329), - [sym__eq_eq] = STATE(1329), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2143), - [sym_real_literal] = ACTIONS(2145), - [sym_integer_literal] = ACTIONS(2143), - [sym_hex_literal] = ACTIONS(2145), - [sym_oct_literal] = ACTIONS(2145), - [sym_bin_literal] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_GT] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2143), - [anon_sym_POUNDfileID] = ACTIONS(2145), - [anon_sym_POUNDfilePath] = ACTIONS(2145), - [anon_sym_POUNDline] = ACTIONS(2145), - [anon_sym_POUNDcolumn] = ACTIONS(2145), - [anon_sym_POUNDfunction] = ACTIONS(2145), - [anon_sym_POUNDdsohandle] = ACTIONS(2145), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2145), - [anon_sym_DASH_EQ] = ACTIONS(2145), - [anon_sym_STAR_EQ] = ACTIONS(2145), - [anon_sym_SLASH_EQ] = ACTIONS(2145), - [anon_sym_PERCENT_EQ] = ACTIONS(2145), - [anon_sym_EQ] = ACTIONS(2143), - [anon_sym_BANG_EQ] = ACTIONS(2143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_SLASH] = ACTIONS(2143), - [anon_sym_PERCENT] = ACTIONS(2143), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2143), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2145), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2145), - [sym__plus_then_ws] = ACTIONS(2145), - [sym__minus_then_ws] = ACTIONS(2145), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [524] = { - [sym_simple_identifier] = STATE(1779), - [sym__basic_literal] = STATE(1241), - [sym_boolean_literal] = STATE(1241), - [sym__string_literal] = STATE(1241), - [sym_line_string_literal] = STATE(1241), - [sym_multi_line_string_literal] = STATE(1241), - [sym_raw_string_literal] = STATE(1241), - [sym_regex_literal] = STATE(1241), - [sym__multiline_regex_literal] = STATE(2627), - [sym_user_type] = STATE(4408), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4408), - [sym_dictionary_type] = STATE(4408), - [sym__expression] = STATE(1241), - [sym__unary_expression] = STATE(1241), - [sym_postfix_expression] = STATE(1925), - [sym_constructor_expression] = STATE(1241), - [sym_navigation_expression] = STATE(1925), - [sym__navigable_type_expression] = STATE(5646), - [sym_open_start_range_expression] = STATE(1241), - [sym__range_operator] = STATE(442), - [sym_open_end_range_expression] = STATE(1241), - [sym_prefix_expression] = STATE(1241), - [sym_as_expression] = STATE(1241), - [sym_selector_expression] = STATE(1241), - [sym__binary_expression] = STATE(1241), - [sym_multiplicative_expression] = STATE(1241), - [sym_additive_expression] = STATE(1241), - [sym_range_expression] = STATE(1241), - [sym_infix_expression] = STATE(1241), - [sym_nil_coalescing_expression] = STATE(1241), - [sym_check_expression] = STATE(1241), - [sym_comparison_expression] = STATE(1241), - [sym_equality_expression] = STATE(1241), - [sym_conjunction_expression] = STATE(1241), - [sym_disjunction_expression] = STATE(1241), - [sym_bitwise_operation] = STATE(1241), - [sym_custom_operator] = STATE(804), - [sym_try_expression] = STATE(1241), - [sym_await_expression] = STATE(1241), - [sym__await_operator] = STATE(473), - [sym_ternary_expression] = STATE(1241), - [sym_call_expression] = STATE(1925), - [sym__primary_expression] = STATE(1241), - [sym_tuple_expression] = STATE(1926), - [sym_array_literal] = STATE(1241), - [sym_dictionary_literal] = STATE(1241), - [sym__special_literal] = STATE(1241), - [sym__playground_literal] = STATE(1241), - [sym_lambda_literal] = STATE(1241), - [sym_self_expression] = STATE(1926), - [sym_super_expression] = STATE(1241), - [sym_key_path_expression] = STATE(1241), - [sym_key_path_string_expression] = STATE(1241), - [sym__try_operator] = STATE(484), - [sym__assignment_and_operator] = STATE(1241), - [sym__equality_operator] = STATE(1241), - [sym__comparison_operator] = STATE(1241), - [sym__three_dot_operator] = STATE(800), - [sym__open_ended_range_operator] = STATE(442), - [sym__additive_operator] = STATE(1241), - [sym__multiplicative_operator] = STATE(1241), - [sym__prefix_unary_operator] = STATE(493), - [sym_directly_assignable_expression] = STATE(4513), - [sym_assignment] = STATE(1241), - [sym__referenceable_operator] = STATE(1241), - [sym__eq_eq] = STATE(1241), - [sym__dot] = STATE(493), - [aux_sym_raw_string_literal_repeat1] = STATE(5645), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1363), - [aux_sym_simple_identifier_token2] = ACTIONS(1365), - [aux_sym_simple_identifier_token3] = ACTIONS(1365), - [aux_sym_simple_identifier_token4] = ACTIONS(1365), - [anon_sym_actor] = ACTIONS(1363), - [anon_sym_nil] = ACTIONS(2147), - [sym_real_literal] = ACTIONS(2149), - [sym_integer_literal] = ACTIONS(2147), - [sym_hex_literal] = ACTIONS(2149), - [sym_oct_literal] = ACTIONS(2149), - [sym_bin_literal] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BSLASH] = ACTIONS(1375), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1377), - [sym__extended_regex_literal] = ACTIONS(1379), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1381), - [sym__oneline_regex_literal] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_POUNDselector] = ACTIONS(1393), - [aux_sym_custom_operator_token1] = ACTIONS(1395), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_GT] = ACTIONS(2147), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_POUNDfile] = ACTIONS(2147), - [anon_sym_POUNDfileID] = ACTIONS(2149), - [anon_sym_POUNDfilePath] = ACTIONS(2149), - [anon_sym_POUNDline] = ACTIONS(2149), - [anon_sym_POUNDcolumn] = ACTIONS(2149), - [anon_sym_POUNDfunction] = ACTIONS(2149), - [anon_sym_POUNDdsohandle] = ACTIONS(2149), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1399), - [anon_sym_POUNDfileLiteral] = ACTIONS(1399), - [anon_sym_POUNDimageLiteral] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_CARET_LBRACE] = ACTIONS(1401), - [anon_sym_self] = ACTIONS(1403), - [anon_sym_super] = ACTIONS(1405), - [anon_sym_POUNDkeyPath] = ACTIONS(1407), - [anon_sym_try] = ACTIONS(1409), - [anon_sym_try_BANG] = ACTIONS(1411), - [anon_sym_try_QMARK] = ACTIONS(1411), - [anon_sym_PLUS_EQ] = ACTIONS(2149), - [anon_sym_DASH_EQ] = ACTIONS(2149), - [anon_sym_STAR_EQ] = ACTIONS(2149), - [anon_sym_SLASH_EQ] = ACTIONS(2149), - [anon_sym_PERCENT_EQ] = ACTIONS(2149), - [anon_sym_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ] = ACTIONS(2147), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2149), - [anon_sym_GT_EQ] = ACTIONS(2149), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_SLASH] = ACTIONS(2147), - [anon_sym_PERCENT] = ACTIONS(2147), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2147), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(2149), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1421), - [sym__dot_custom] = ACTIONS(1389), - [sym__eq_eq_custom] = ACTIONS(2149), - [sym__plus_then_ws] = ACTIONS(2149), - [sym__minus_then_ws] = ACTIONS(2149), - [sym_bang] = ACTIONS(1419), - [sym__custom_operator] = ACTIONS(1395), - }, - [525] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(627), - [sym_boolean_literal] = STATE(627), - [sym__string_literal] = STATE(627), - [sym_line_string_literal] = STATE(627), - [sym_multi_line_string_literal] = STATE(627), - [sym_raw_string_literal] = STATE(627), - [sym_regex_literal] = STATE(627), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(627), - [sym__unary_expression] = STATE(627), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(627), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(627), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(627), - [sym_prefix_expression] = STATE(627), - [sym_as_expression] = STATE(627), - [sym_selector_expression] = STATE(627), - [sym__binary_expression] = STATE(627), - [sym_multiplicative_expression] = STATE(627), - [sym_additive_expression] = STATE(627), - [sym_range_expression] = STATE(627), - [sym_infix_expression] = STATE(627), - [sym_nil_coalescing_expression] = STATE(627), - [sym_check_expression] = STATE(627), - [sym_comparison_expression] = STATE(627), - [sym_equality_expression] = STATE(627), - [sym_conjunction_expression] = STATE(627), - [sym_disjunction_expression] = STATE(627), - [sym_bitwise_operation] = STATE(627), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(627), - [sym_await_expression] = STATE(627), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(627), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(627), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(627), - [sym_dictionary_literal] = STATE(627), - [sym__special_literal] = STATE(627), - [sym__playground_literal] = STATE(627), - [sym_lambda_literal] = STATE(627), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(627), - [sym_key_path_expression] = STATE(627), - [sym_key_path_string_expression] = STATE(627), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(627), - [sym__equality_operator] = STATE(627), - [sym__comparison_operator] = STATE(627), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(627), - [sym__multiplicative_operator] = STATE(627), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(627), - [sym__referenceable_operator] = STATE(627), - [sym__eq_eq] = STATE(627), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2151), - [sym_real_literal] = ACTIONS(2153), - [sym_integer_literal] = ACTIONS(2151), - [sym_hex_literal] = ACTIONS(2153), - [sym_oct_literal] = ACTIONS(2153), - [sym_bin_literal] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2151), - [anon_sym_POUNDfileID] = ACTIONS(2153), - [anon_sym_POUNDfilePath] = ACTIONS(2153), - [anon_sym_POUNDline] = ACTIONS(2153), - [anon_sym_POUNDcolumn] = ACTIONS(2153), - [anon_sym_POUNDfunction] = ACTIONS(2153), - [anon_sym_POUNDdsohandle] = ACTIONS(2153), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2153), - [anon_sym_DASH_EQ] = ACTIONS(2153), - [anon_sym_STAR_EQ] = ACTIONS(2153), - [anon_sym_SLASH_EQ] = ACTIONS(2153), - [anon_sym_PERCENT_EQ] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2153), - [anon_sym_LT_EQ] = ACTIONS(2153), - [anon_sym_GT_EQ] = ACTIONS(2153), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_SLASH] = ACTIONS(2151), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2153), - [anon_sym_GT_GT] = ACTIONS(2153), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2153), - [sym__plus_then_ws] = ACTIONS(2153), - [sym__minus_then_ws] = ACTIONS(2153), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [526] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [sym__string_literal] = STATE(592), - [sym_line_string_literal] = STATE(592), - [sym_multi_line_string_literal] = STATE(592), - [sym_raw_string_literal] = STATE(592), - [sym_regex_literal] = STATE(592), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(592), - [sym__unary_expression] = STATE(592), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(592), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(592), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(592), - [sym_prefix_expression] = STATE(592), - [sym_as_expression] = STATE(592), - [sym_selector_expression] = STATE(592), - [sym__binary_expression] = STATE(592), - [sym_multiplicative_expression] = STATE(592), - [sym_additive_expression] = STATE(592), - [sym_range_expression] = STATE(592), - [sym_infix_expression] = STATE(592), - [sym_nil_coalescing_expression] = STATE(592), - [sym_check_expression] = STATE(592), - [sym_comparison_expression] = STATE(592), - [sym_equality_expression] = STATE(592), - [sym_conjunction_expression] = STATE(592), - [sym_disjunction_expression] = STATE(592), - [sym_bitwise_operation] = STATE(592), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(592), - [sym_await_expression] = STATE(592), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(592), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(592), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(592), - [sym_dictionary_literal] = STATE(592), - [sym__special_literal] = STATE(592), - [sym__playground_literal] = STATE(592), - [sym_lambda_literal] = STATE(592), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(592), - [sym_key_path_expression] = STATE(592), - [sym_key_path_string_expression] = STATE(592), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(592), - [sym__equality_operator] = STATE(592), - [sym__comparison_operator] = STATE(592), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(592), - [sym__multiplicative_operator] = STATE(592), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(592), - [sym__referenceable_operator] = STATE(592), - [sym__eq_eq] = STATE(592), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2157), - [sym_integer_literal] = ACTIONS(2155), - [sym_hex_literal] = ACTIONS(2157), - [sym_oct_literal] = ACTIONS(2157), - [sym_bin_literal] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_GT] = ACTIONS(2155), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(2155), - [anon_sym_POUNDfileID] = ACTIONS(2157), - [anon_sym_POUNDfilePath] = ACTIONS(2157), - [anon_sym_POUNDline] = ACTIONS(2157), - [anon_sym_POUNDcolumn] = ACTIONS(2157), - [anon_sym_POUNDfunction] = ACTIONS(2157), - [anon_sym_POUNDdsohandle] = ACTIONS(2157), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(2157), - [anon_sym_DASH_EQ] = ACTIONS(2157), - [anon_sym_STAR_EQ] = ACTIONS(2157), - [anon_sym_SLASH_EQ] = ACTIONS(2157), - [anon_sym_PERCENT_EQ] = ACTIONS(2157), - [anon_sym_EQ] = ACTIONS(2155), - [anon_sym_BANG_EQ] = ACTIONS(2155), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2157), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2157), - [anon_sym_LT_EQ] = ACTIONS(2157), - [anon_sym_GT_EQ] = ACTIONS(2157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_SLASH] = ACTIONS(2155), - [anon_sym_PERCENT] = ACTIONS(2155), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_CARET] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(2157), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(2157), - [sym__plus_then_ws] = ACTIONS(2157), - [sym__minus_then_ws] = ACTIONS(2157), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [527] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(638), - [sym_boolean_literal] = STATE(638), - [sym__string_literal] = STATE(638), - [sym_line_string_literal] = STATE(638), - [sym_multi_line_string_literal] = STATE(638), - [sym_raw_string_literal] = STATE(638), - [sym_regex_literal] = STATE(638), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(638), - [sym__unary_expression] = STATE(638), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(638), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(638), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(638), - [sym_prefix_expression] = STATE(638), - [sym_as_expression] = STATE(638), - [sym_selector_expression] = STATE(638), - [sym__binary_expression] = STATE(638), - [sym_multiplicative_expression] = STATE(638), - [sym_additive_expression] = STATE(638), - [sym_range_expression] = STATE(638), - [sym_infix_expression] = STATE(638), - [sym_nil_coalescing_expression] = STATE(638), - [sym_check_expression] = STATE(638), - [sym_comparison_expression] = STATE(638), - [sym_equality_expression] = STATE(638), - [sym_conjunction_expression] = STATE(638), - [sym_disjunction_expression] = STATE(638), - [sym_bitwise_operation] = STATE(638), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(638), - [sym_await_expression] = STATE(638), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(638), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(638), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(638), - [sym_dictionary_literal] = STATE(638), - [sym__special_literal] = STATE(638), - [sym__playground_literal] = STATE(638), - [sym_lambda_literal] = STATE(638), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(638), - [sym_key_path_expression] = STATE(638), - [sym_key_path_string_expression] = STATE(638), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(638), - [sym__equality_operator] = STATE(638), - [sym__comparison_operator] = STATE(638), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(638), - [sym__multiplicative_operator] = STATE(638), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(638), - [sym__referenceable_operator] = STATE(638), - [sym__eq_eq] = STATE(638), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2159), - [sym_real_literal] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2159), - [sym_hex_literal] = ACTIONS(2161), - [sym_oct_literal] = ACTIONS(2161), - [sym_bin_literal] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2159), - [anon_sym_POUNDfileID] = ACTIONS(2161), - [anon_sym_POUNDfilePath] = ACTIONS(2161), - [anon_sym_POUNDline] = ACTIONS(2161), - [anon_sym_POUNDcolumn] = ACTIONS(2161), - [anon_sym_POUNDfunction] = ACTIONS(2161), - [anon_sym_POUNDdsohandle] = ACTIONS(2161), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2161), - [anon_sym_DASH_EQ] = ACTIONS(2161), - [anon_sym_STAR_EQ] = ACTIONS(2161), - [anon_sym_SLASH_EQ] = ACTIONS(2161), - [anon_sym_PERCENT_EQ] = ACTIONS(2161), - [anon_sym_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ] = ACTIONS(2159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2159), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2161), - [sym__plus_then_ws] = ACTIONS(2161), - [sym__minus_then_ws] = ACTIONS(2161), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [528] = { - [sym_simple_identifier] = STATE(1771), - [sym__basic_literal] = STATE(1222), - [sym_boolean_literal] = STATE(1222), - [sym__string_literal] = STATE(1222), - [sym_line_string_literal] = STATE(1222), - [sym_multi_line_string_literal] = STATE(1222), - [sym_raw_string_literal] = STATE(1222), - [sym_regex_literal] = STATE(1222), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(1222), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1222), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1222), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1222), - [sym_prefix_expression] = STATE(1222), - [sym_as_expression] = STATE(1222), - [sym_selector_expression] = STATE(1222), - [sym__binary_expression] = STATE(1222), - [sym_multiplicative_expression] = STATE(1222), - [sym_additive_expression] = STATE(1222), - [sym_range_expression] = STATE(1222), - [sym_infix_expression] = STATE(1222), - [sym_nil_coalescing_expression] = STATE(1222), - [sym_check_expression] = STATE(1222), - [sym_comparison_expression] = STATE(1222), - [sym_equality_expression] = STATE(1222), - [sym_conjunction_expression] = STATE(1222), - [sym_disjunction_expression] = STATE(1222), - [sym_bitwise_operation] = STATE(1222), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1222), - [sym_await_expression] = STATE(1222), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1222), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1222), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1222), - [sym_dictionary_literal] = STATE(1222), - [sym__special_literal] = STATE(1222), - [sym__playground_literal] = STATE(1222), - [sym_lambda_literal] = STATE(1222), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1222), - [sym_key_path_expression] = STATE(1222), - [sym_key_path_string_expression] = STATE(1222), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1222), - [sym__equality_operator] = STATE(1222), - [sym__comparison_operator] = STATE(1222), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1222), - [sym__multiplicative_operator] = STATE(1222), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1222), - [sym__referenceable_operator] = STATE(1222), - [sym__eq_eq] = STATE(1222), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2163), - [sym_real_literal] = ACTIONS(2165), - [sym_integer_literal] = ACTIONS(2163), - [sym_hex_literal] = ACTIONS(2165), - [sym_oct_literal] = ACTIONS(2165), - [sym_bin_literal] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2163), - [anon_sym_POUNDfileID] = ACTIONS(2165), - [anon_sym_POUNDfilePath] = ACTIONS(2165), - [anon_sym_POUNDline] = ACTIONS(2165), - [anon_sym_POUNDcolumn] = ACTIONS(2165), - [anon_sym_POUNDfunction] = ACTIONS(2165), - [anon_sym_POUNDdsohandle] = ACTIONS(2165), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2165), - [anon_sym_DASH_EQ] = ACTIONS(2165), - [anon_sym_STAR_EQ] = ACTIONS(2165), - [anon_sym_SLASH_EQ] = ACTIONS(2165), - [anon_sym_PERCENT_EQ] = ACTIONS(2165), - [anon_sym_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2165), - [anon_sym_LT_EQ] = ACTIONS(2165), - [anon_sym_GT_EQ] = ACTIONS(2165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_CARET] = ACTIONS(2163), - [anon_sym_LT_LT] = ACTIONS(2165), - [anon_sym_GT_GT] = ACTIONS(2165), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2165), - [sym__plus_then_ws] = ACTIONS(2165), - [sym__minus_then_ws] = ACTIONS(2165), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [529] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1321), - [sym_boolean_literal] = STATE(1321), - [sym__string_literal] = STATE(1321), - [sym_line_string_literal] = STATE(1321), - [sym_multi_line_string_literal] = STATE(1321), - [sym_raw_string_literal] = STATE(1321), - [sym_regex_literal] = STATE(1321), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1321), - [sym__unary_expression] = STATE(1321), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1321), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1321), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1321), - [sym_prefix_expression] = STATE(1321), - [sym_as_expression] = STATE(1321), - [sym_selector_expression] = STATE(1321), - [sym__binary_expression] = STATE(1321), - [sym_multiplicative_expression] = STATE(1321), - [sym_additive_expression] = STATE(1321), - [sym_range_expression] = STATE(1321), - [sym_infix_expression] = STATE(1321), - [sym_nil_coalescing_expression] = STATE(1321), - [sym_check_expression] = STATE(1321), - [sym_comparison_expression] = STATE(1321), - [sym_equality_expression] = STATE(1321), - [sym_conjunction_expression] = STATE(1321), - [sym_disjunction_expression] = STATE(1321), - [sym_bitwise_operation] = STATE(1321), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1321), - [sym_await_expression] = STATE(1321), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(2618), - [sym_call_expression] = STATE(1944), - [sym__primary_expression] = STATE(1321), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1321), - [sym_dictionary_literal] = STATE(1321), - [sym__special_literal] = STATE(1321), - [sym__playground_literal] = STATE(1321), - [sym_lambda_literal] = STATE(1321), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1321), - [sym_key_path_expression] = STATE(1321), - [sym_key_path_string_expression] = STATE(1321), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1321), - [sym__equality_operator] = STATE(1321), - [sym__comparison_operator] = STATE(1321), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1321), - [sym__multiplicative_operator] = STATE(1321), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1321), - [sym__referenceable_operator] = STATE(1321), - [sym__eq_eq] = STATE(1321), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2167), - [sym_real_literal] = ACTIONS(2169), - [sym_integer_literal] = ACTIONS(2167), - [sym_hex_literal] = ACTIONS(2169), - [sym_oct_literal] = ACTIONS(2169), - [sym_bin_literal] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2167), - [anon_sym_POUNDfileID] = ACTIONS(2169), - [anon_sym_POUNDfilePath] = ACTIONS(2169), - [anon_sym_POUNDline] = ACTIONS(2169), - [anon_sym_POUNDcolumn] = ACTIONS(2169), - [anon_sym_POUNDfunction] = ACTIONS(2169), - [anon_sym_POUNDdsohandle] = ACTIONS(2169), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2169), - [anon_sym_DASH_EQ] = ACTIONS(2169), - [anon_sym_STAR_EQ] = ACTIONS(2169), - [anon_sym_SLASH_EQ] = ACTIONS(2169), - [anon_sym_PERCENT_EQ] = ACTIONS(2169), - [anon_sym_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ] = ACTIONS(2167), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2167), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2169), - [sym__plus_then_ws] = ACTIONS(2169), - [sym__minus_then_ws] = ACTIONS(2169), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [530] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(589), - [sym_boolean_literal] = STATE(589), - [sym__string_literal] = STATE(589), - [sym_line_string_literal] = STATE(589), - [sym_multi_line_string_literal] = STATE(589), - [sym_raw_string_literal] = STATE(589), - [sym_regex_literal] = STATE(589), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(589), - [sym__unary_expression] = STATE(589), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(589), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(589), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(589), - [sym_prefix_expression] = STATE(589), - [sym_as_expression] = STATE(589), - [sym_selector_expression] = STATE(589), - [sym__binary_expression] = STATE(589), - [sym_multiplicative_expression] = STATE(589), - [sym_additive_expression] = STATE(589), - [sym_range_expression] = STATE(589), - [sym_infix_expression] = STATE(589), - [sym_nil_coalescing_expression] = STATE(589), - [sym_check_expression] = STATE(589), - [sym_comparison_expression] = STATE(589), - [sym_equality_expression] = STATE(589), - [sym_conjunction_expression] = STATE(589), - [sym_disjunction_expression] = STATE(589), - [sym_bitwise_operation] = STATE(589), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(589), - [sym_await_expression] = STATE(589), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(589), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(589), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(589), - [sym_dictionary_literal] = STATE(589), - [sym__special_literal] = STATE(589), - [sym__playground_literal] = STATE(589), - [sym_lambda_literal] = STATE(589), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(589), - [sym_key_path_expression] = STATE(589), - [sym_key_path_string_expression] = STATE(589), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(589), - [sym__equality_operator] = STATE(589), - [sym__comparison_operator] = STATE(589), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(589), - [sym__multiplicative_operator] = STATE(589), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(589), - [sym__referenceable_operator] = STATE(589), - [sym__eq_eq] = STATE(589), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2171), - [sym_real_literal] = ACTIONS(2173), - [sym_integer_literal] = ACTIONS(2171), - [sym_hex_literal] = ACTIONS(2173), - [sym_oct_literal] = ACTIONS(2173), - [sym_bin_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_GT] = ACTIONS(2171), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(2171), - [anon_sym_POUNDfileID] = ACTIONS(2173), - [anon_sym_POUNDfilePath] = ACTIONS(2173), - [anon_sym_POUNDline] = ACTIONS(2173), - [anon_sym_POUNDcolumn] = ACTIONS(2173), - [anon_sym_POUNDfunction] = ACTIONS(2173), - [anon_sym_POUNDdsohandle] = ACTIONS(2173), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(2173), - [anon_sym_DASH_EQ] = ACTIONS(2173), - [anon_sym_STAR_EQ] = ACTIONS(2173), - [anon_sym_SLASH_EQ] = ACTIONS(2173), - [anon_sym_PERCENT_EQ] = ACTIONS(2173), - [anon_sym_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2173), - [anon_sym_GT_EQ] = ACTIONS(2173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_SLASH] = ACTIONS(2171), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_CARET] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2173), - [anon_sym_GT_GT] = ACTIONS(2173), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(2173), - [sym__plus_then_ws] = ACTIONS(2173), - [sym__minus_then_ws] = ACTIONS(2173), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [531] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1157), - [sym_boolean_literal] = STATE(1157), - [sym__string_literal] = STATE(1157), - [sym_line_string_literal] = STATE(1157), - [sym_multi_line_string_literal] = STATE(1157), - [sym_raw_string_literal] = STATE(1157), - [sym_regex_literal] = STATE(1157), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1157), - [sym__unary_expression] = STATE(1157), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1157), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1157), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1157), - [sym_prefix_expression] = STATE(1157), - [sym_as_expression] = STATE(1157), - [sym_selector_expression] = STATE(1157), - [sym__binary_expression] = STATE(1157), - [sym_multiplicative_expression] = STATE(1157), - [sym_additive_expression] = STATE(1157), - [sym_range_expression] = STATE(1157), - [sym_infix_expression] = STATE(1157), - [sym_nil_coalescing_expression] = STATE(1157), - [sym_check_expression] = STATE(1157), - [sym_comparison_expression] = STATE(1157), - [sym_equality_expression] = STATE(1157), - [sym_conjunction_expression] = STATE(1157), - [sym_disjunction_expression] = STATE(1157), - [sym_bitwise_operation] = STATE(1157), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1157), - [sym_await_expression] = STATE(1157), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1157), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1157), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1157), - [sym_dictionary_literal] = STATE(1157), - [sym__special_literal] = STATE(1157), - [sym__playground_literal] = STATE(1157), - [sym_lambda_literal] = STATE(1157), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1157), - [sym_key_path_expression] = STATE(1157), - [sym_key_path_string_expression] = STATE(1157), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1157), - [sym__equality_operator] = STATE(1157), - [sym__comparison_operator] = STATE(1157), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1157), - [sym__multiplicative_operator] = STATE(1157), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1157), - [sym__referenceable_operator] = STATE(1157), - [sym__eq_eq] = STATE(1157), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2175), - [sym_real_literal] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2175), - [sym_hex_literal] = ACTIONS(2177), - [sym_oct_literal] = ACTIONS(2177), - [sym_bin_literal] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2175), - [anon_sym_POUNDfileID] = ACTIONS(2177), - [anon_sym_POUNDfilePath] = ACTIONS(2177), - [anon_sym_POUNDline] = ACTIONS(2177), - [anon_sym_POUNDcolumn] = ACTIONS(2177), - [anon_sym_POUNDfunction] = ACTIONS(2177), - [anon_sym_POUNDdsohandle] = ACTIONS(2177), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2177), - [anon_sym_DASH_EQ] = ACTIONS(2177), - [anon_sym_STAR_EQ] = ACTIONS(2177), - [anon_sym_SLASH_EQ] = ACTIONS(2177), - [anon_sym_PERCENT_EQ] = ACTIONS(2177), - [anon_sym_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), - [anon_sym_LT_EQ] = ACTIONS(2177), - [anon_sym_GT_EQ] = ACTIONS(2177), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_SLASH] = ACTIONS(2175), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2177), - [anon_sym_GT_GT] = ACTIONS(2177), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2177), - [sym__plus_then_ws] = ACTIONS(2177), - [sym__minus_then_ws] = ACTIONS(2177), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [532] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1292), - [sym_boolean_literal] = STATE(1292), - [sym__string_literal] = STATE(1292), - [sym_line_string_literal] = STATE(1292), - [sym_multi_line_string_literal] = STATE(1292), - [sym_raw_string_literal] = STATE(1292), - [sym_regex_literal] = STATE(1292), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1292), - [sym__unary_expression] = STATE(1292), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1292), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1292), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1292), - [sym_prefix_expression] = STATE(1292), - [sym_as_expression] = STATE(1292), - [sym_selector_expression] = STATE(1292), - [sym__binary_expression] = STATE(1292), - [sym_multiplicative_expression] = STATE(1292), - [sym_additive_expression] = STATE(1292), - [sym_range_expression] = STATE(1292), - [sym_infix_expression] = STATE(1292), - [sym_nil_coalescing_expression] = STATE(1292), - [sym_check_expression] = STATE(1292), - [sym_comparison_expression] = STATE(1292), - [sym_equality_expression] = STATE(1292), - [sym_conjunction_expression] = STATE(1292), - [sym_disjunction_expression] = STATE(1292), - [sym_bitwise_operation] = STATE(1292), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1292), - [sym_await_expression] = STATE(1292), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1292), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1292), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1292), - [sym_dictionary_literal] = STATE(1292), - [sym__special_literal] = STATE(1292), - [sym__playground_literal] = STATE(1292), - [sym_lambda_literal] = STATE(1292), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1292), - [sym_key_path_expression] = STATE(1292), - [sym_key_path_string_expression] = STATE(1292), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1292), - [sym__equality_operator] = STATE(1292), - [sym__comparison_operator] = STATE(1292), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1292), - [sym__multiplicative_operator] = STATE(1292), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1292), - [sym__referenceable_operator] = STATE(1292), - [sym__eq_eq] = STATE(1292), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2179), - [sym_real_literal] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2179), - [sym_hex_literal] = ACTIONS(2181), - [sym_oct_literal] = ACTIONS(2181), - [sym_bin_literal] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_GT] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2179), - [anon_sym_POUNDfileID] = ACTIONS(2181), - [anon_sym_POUNDfilePath] = ACTIONS(2181), - [anon_sym_POUNDline] = ACTIONS(2181), - [anon_sym_POUNDcolumn] = ACTIONS(2181), - [anon_sym_POUNDfunction] = ACTIONS(2181), - [anon_sym_POUNDdsohandle] = ACTIONS(2181), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2181), - [anon_sym_DASH_EQ] = ACTIONS(2181), - [anon_sym_STAR_EQ] = ACTIONS(2181), - [anon_sym_SLASH_EQ] = ACTIONS(2181), - [anon_sym_PERCENT_EQ] = ACTIONS(2181), - [anon_sym_EQ] = ACTIONS(2179), - [anon_sym_BANG_EQ] = ACTIONS(2179), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2181), - [anon_sym_LT_EQ] = ACTIONS(2181), - [anon_sym_GT_EQ] = ACTIONS(2181), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_SLASH] = ACTIONS(2179), - [anon_sym_PERCENT] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_CARET] = ACTIONS(2179), - [anon_sym_LT_LT] = ACTIONS(2181), - [anon_sym_GT_GT] = ACTIONS(2181), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2181), - [sym__plus_then_ws] = ACTIONS(2181), - [sym__minus_then_ws] = ACTIONS(2181), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [533] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1158), - [sym_boolean_literal] = STATE(1158), - [sym__string_literal] = STATE(1158), - [sym_line_string_literal] = STATE(1158), - [sym_multi_line_string_literal] = STATE(1158), - [sym_raw_string_literal] = STATE(1158), - [sym_regex_literal] = STATE(1158), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1158), - [sym__unary_expression] = STATE(1158), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1158), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1158), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1158), - [sym_prefix_expression] = STATE(1158), - [sym_as_expression] = STATE(1158), - [sym_selector_expression] = STATE(1158), - [sym__binary_expression] = STATE(1158), - [sym_multiplicative_expression] = STATE(1158), - [sym_additive_expression] = STATE(1158), - [sym_range_expression] = STATE(1158), - [sym_infix_expression] = STATE(1158), - [sym_nil_coalescing_expression] = STATE(1158), - [sym_check_expression] = STATE(1158), - [sym_comparison_expression] = STATE(1158), - [sym_equality_expression] = STATE(1158), - [sym_conjunction_expression] = STATE(1158), - [sym_disjunction_expression] = STATE(1158), - [sym_bitwise_operation] = STATE(1158), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1158), - [sym_await_expression] = STATE(1158), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1158), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1158), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1158), - [sym_dictionary_literal] = STATE(1158), - [sym__special_literal] = STATE(1158), - [sym__playground_literal] = STATE(1158), - [sym_lambda_literal] = STATE(1158), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1158), - [sym_key_path_expression] = STATE(1158), - [sym_key_path_string_expression] = STATE(1158), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1158), - [sym__equality_operator] = STATE(1158), - [sym__comparison_operator] = STATE(1158), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1158), - [sym__multiplicative_operator] = STATE(1158), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1158), - [sym__referenceable_operator] = STATE(1158), - [sym__eq_eq] = STATE(1158), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2183), - [sym_real_literal] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2183), - [sym_hex_literal] = ACTIONS(2185), - [sym_oct_literal] = ACTIONS(2185), - [sym_bin_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2183), - [anon_sym_POUNDfileID] = ACTIONS(2185), - [anon_sym_POUNDfilePath] = ACTIONS(2185), - [anon_sym_POUNDline] = ACTIONS(2185), - [anon_sym_POUNDcolumn] = ACTIONS(2185), - [anon_sym_POUNDfunction] = ACTIONS(2185), - [anon_sym_POUNDdsohandle] = ACTIONS(2185), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2185), - [anon_sym_DASH_EQ] = ACTIONS(2185), - [anon_sym_STAR_EQ] = ACTIONS(2185), - [anon_sym_SLASH_EQ] = ACTIONS(2185), - [anon_sym_PERCENT_EQ] = ACTIONS(2185), - [anon_sym_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2183), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2185), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2185), - [sym__plus_then_ws] = ACTIONS(2185), - [sym__minus_then_ws] = ACTIONS(2185), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [534] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(637), - [sym_boolean_literal] = STATE(637), - [sym__string_literal] = STATE(637), - [sym_line_string_literal] = STATE(637), - [sym_multi_line_string_literal] = STATE(637), - [sym_raw_string_literal] = STATE(637), - [sym_regex_literal] = STATE(637), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(637), - [sym__unary_expression] = STATE(637), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(637), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(637), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(637), - [sym_prefix_expression] = STATE(637), - [sym_as_expression] = STATE(637), - [sym_selector_expression] = STATE(637), - [sym__binary_expression] = STATE(637), - [sym_multiplicative_expression] = STATE(637), - [sym_additive_expression] = STATE(637), - [sym_range_expression] = STATE(637), - [sym_infix_expression] = STATE(637), - [sym_nil_coalescing_expression] = STATE(637), - [sym_check_expression] = STATE(637), - [sym_comparison_expression] = STATE(637), - [sym_equality_expression] = STATE(637), - [sym_conjunction_expression] = STATE(637), - [sym_disjunction_expression] = STATE(637), - [sym_bitwise_operation] = STATE(637), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(637), - [sym_await_expression] = STATE(637), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(637), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(637), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(637), - [sym_dictionary_literal] = STATE(637), - [sym__special_literal] = STATE(637), - [sym__playground_literal] = STATE(637), - [sym_lambda_literal] = STATE(637), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(637), - [sym_key_path_expression] = STATE(637), - [sym_key_path_string_expression] = STATE(637), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(637), - [sym__equality_operator] = STATE(637), - [sym__comparison_operator] = STATE(637), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(637), - [sym__multiplicative_operator] = STATE(637), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(637), - [sym__referenceable_operator] = STATE(637), - [sym__eq_eq] = STATE(637), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2187), - [sym_real_literal] = ACTIONS(2189), - [sym_integer_literal] = ACTIONS(2187), - [sym_hex_literal] = ACTIONS(2189), - [sym_oct_literal] = ACTIONS(2189), - [sym_bin_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2187), - [anon_sym_GT] = ACTIONS(2187), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2187), - [anon_sym_POUNDfileID] = ACTIONS(2189), - [anon_sym_POUNDfilePath] = ACTIONS(2189), - [anon_sym_POUNDline] = ACTIONS(2189), - [anon_sym_POUNDcolumn] = ACTIONS(2189), - [anon_sym_POUNDfunction] = ACTIONS(2189), - [anon_sym_POUNDdsohandle] = ACTIONS(2189), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2189), - [anon_sym_DASH_EQ] = ACTIONS(2189), - [anon_sym_STAR_EQ] = ACTIONS(2189), - [anon_sym_SLASH_EQ] = ACTIONS(2189), - [anon_sym_PERCENT_EQ] = ACTIONS(2189), - [anon_sym_EQ] = ACTIONS(2187), - [anon_sym_BANG_EQ] = ACTIONS(2187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2189), - [anon_sym_LT_EQ] = ACTIONS(2189), - [anon_sym_GT_EQ] = ACTIONS(2189), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_SLASH] = ACTIONS(2187), - [anon_sym_PERCENT] = ACTIONS(2187), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_CARET] = ACTIONS(2187), - [anon_sym_LT_LT] = ACTIONS(2189), - [anon_sym_GT_GT] = ACTIONS(2189), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2189), - [sym__plus_then_ws] = ACTIONS(2189), - [sym__minus_then_ws] = ACTIONS(2189), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [535] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1216), - [sym_boolean_literal] = STATE(1216), - [sym__string_literal] = STATE(1216), - [sym_line_string_literal] = STATE(1216), - [sym_multi_line_string_literal] = STATE(1216), - [sym_raw_string_literal] = STATE(1216), - [sym_regex_literal] = STATE(1216), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(1216), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1216), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1216), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1216), - [sym_prefix_expression] = STATE(1216), - [sym_as_expression] = STATE(1216), - [sym_selector_expression] = STATE(1216), - [sym__binary_expression] = STATE(1216), - [sym_multiplicative_expression] = STATE(1216), - [sym_additive_expression] = STATE(1216), - [sym_range_expression] = STATE(1216), - [sym_infix_expression] = STATE(1216), - [sym_nil_coalescing_expression] = STATE(1216), - [sym_check_expression] = STATE(1216), - [sym_comparison_expression] = STATE(1216), - [sym_equality_expression] = STATE(1216), - [sym_conjunction_expression] = STATE(1216), - [sym_disjunction_expression] = STATE(1216), - [sym_bitwise_operation] = STATE(1216), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1216), - [sym_await_expression] = STATE(1216), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1216), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1216), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1216), - [sym_dictionary_literal] = STATE(1216), - [sym__special_literal] = STATE(1216), - [sym__playground_literal] = STATE(1216), - [sym_lambda_literal] = STATE(1216), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1216), - [sym_key_path_expression] = STATE(1216), - [sym_key_path_string_expression] = STATE(1216), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1216), - [sym__equality_operator] = STATE(1216), - [sym__comparison_operator] = STATE(1216), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1216), - [sym__multiplicative_operator] = STATE(1216), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1216), - [sym__referenceable_operator] = STATE(1216), - [sym__eq_eq] = STATE(1216), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2191), - [sym_real_literal] = ACTIONS(2193), - [sym_integer_literal] = ACTIONS(2191), - [sym_hex_literal] = ACTIONS(2193), - [sym_oct_literal] = ACTIONS(2193), - [sym_bin_literal] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_GT] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2191), - [anon_sym_POUNDfileID] = ACTIONS(2193), - [anon_sym_POUNDfilePath] = ACTIONS(2193), - [anon_sym_POUNDline] = ACTIONS(2193), - [anon_sym_POUNDcolumn] = ACTIONS(2193), - [anon_sym_POUNDfunction] = ACTIONS(2193), - [anon_sym_POUNDdsohandle] = ACTIONS(2193), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2193), - [anon_sym_DASH_EQ] = ACTIONS(2193), - [anon_sym_STAR_EQ] = ACTIONS(2193), - [anon_sym_SLASH_EQ] = ACTIONS(2193), - [anon_sym_PERCENT_EQ] = ACTIONS(2193), - [anon_sym_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ] = ACTIONS(2191), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2193), - [anon_sym_LT_EQ] = ACTIONS(2193), - [anon_sym_GT_EQ] = ACTIONS(2193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_SLASH] = ACTIONS(2191), - [anon_sym_PERCENT] = ACTIONS(2191), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2191), - [anon_sym_LT_LT] = ACTIONS(2193), - [anon_sym_GT_GT] = ACTIONS(2193), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2193), - [sym__plus_then_ws] = ACTIONS(2193), - [sym__minus_then_ws] = ACTIONS(2193), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [536] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1357), - [sym_boolean_literal] = STATE(1357), - [sym__string_literal] = STATE(1357), - [sym_line_string_literal] = STATE(1357), - [sym_multi_line_string_literal] = STATE(1357), - [sym_raw_string_literal] = STATE(1357), - [sym_regex_literal] = STATE(1357), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1357), - [sym__unary_expression] = STATE(1357), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1357), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1357), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1357), - [sym_prefix_expression] = STATE(1357), - [sym_as_expression] = STATE(1357), - [sym_selector_expression] = STATE(1357), - [sym__binary_expression] = STATE(1357), - [sym_multiplicative_expression] = STATE(1357), - [sym_additive_expression] = STATE(1357), - [sym_range_expression] = STATE(1357), - [sym_infix_expression] = STATE(1357), - [sym_nil_coalescing_expression] = STATE(1357), - [sym_check_expression] = STATE(1357), - [sym_comparison_expression] = STATE(1357), - [sym_equality_expression] = STATE(1357), - [sym_conjunction_expression] = STATE(1357), - [sym_disjunction_expression] = STATE(1357), - [sym_bitwise_operation] = STATE(1357), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1357), - [sym_await_expression] = STATE(1357), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(754), - [sym_call_expression] = STATE(670), - [sym__primary_expression] = STATE(1357), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1357), - [sym_dictionary_literal] = STATE(1357), - [sym__special_literal] = STATE(1357), - [sym__playground_literal] = STATE(1357), - [sym_lambda_literal] = STATE(1357), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1357), - [sym_key_path_expression] = STATE(1357), - [sym_key_path_string_expression] = STATE(1357), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1357), - [sym__equality_operator] = STATE(1357), - [sym__comparison_operator] = STATE(1357), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1357), - [sym__multiplicative_operator] = STATE(1357), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1357), - [sym__referenceable_operator] = STATE(1357), - [sym__eq_eq] = STATE(1357), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2195), - [sym_real_literal] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2195), - [sym_hex_literal] = ACTIONS(2197), - [sym_oct_literal] = ACTIONS(2197), - [sym_bin_literal] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(2195), - [anon_sym_POUNDfileID] = ACTIONS(2197), - [anon_sym_POUNDfilePath] = ACTIONS(2197), - [anon_sym_POUNDline] = ACTIONS(2197), - [anon_sym_POUNDcolumn] = ACTIONS(2197), - [anon_sym_POUNDfunction] = ACTIONS(2197), - [anon_sym_POUNDdsohandle] = ACTIONS(2197), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(2197), - [anon_sym_DASH_EQ] = ACTIONS(2197), - [anon_sym_STAR_EQ] = ACTIONS(2197), - [anon_sym_SLASH_EQ] = ACTIONS(2197), - [anon_sym_PERCENT_EQ] = ACTIONS(2197), - [anon_sym_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2197), - [anon_sym_LT_EQ] = ACTIONS(2197), - [anon_sym_GT_EQ] = ACTIONS(2197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_PERCENT] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_CARET] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2197), - [anon_sym_GT_GT] = ACTIONS(2197), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(2197), - [sym__plus_then_ws] = ACTIONS(2197), - [sym__minus_then_ws] = ACTIONS(2197), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [537] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1269), - [sym_boolean_literal] = STATE(1269), - [sym__string_literal] = STATE(1269), - [sym_line_string_literal] = STATE(1269), - [sym_multi_line_string_literal] = STATE(1269), - [sym_raw_string_literal] = STATE(1269), - [sym_regex_literal] = STATE(1269), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1269), - [sym__unary_expression] = STATE(1269), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1269), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1269), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1269), - [sym_prefix_expression] = STATE(1269), - [sym_as_expression] = STATE(1269), - [sym_selector_expression] = STATE(1269), - [sym__binary_expression] = STATE(1269), - [sym_multiplicative_expression] = STATE(1269), - [sym_additive_expression] = STATE(1269), - [sym_range_expression] = STATE(1269), - [sym_infix_expression] = STATE(1269), - [sym_nil_coalescing_expression] = STATE(1269), - [sym_check_expression] = STATE(1269), - [sym_comparison_expression] = STATE(1269), - [sym_equality_expression] = STATE(1269), - [sym_conjunction_expression] = STATE(1269), - [sym_disjunction_expression] = STATE(1269), - [sym_bitwise_operation] = STATE(1269), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1269), - [sym_await_expression] = STATE(1269), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1269), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1269), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1269), - [sym_dictionary_literal] = STATE(1269), - [sym__special_literal] = STATE(1269), - [sym__playground_literal] = STATE(1269), - [sym_lambda_literal] = STATE(1269), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1269), - [sym_key_path_expression] = STATE(1269), - [sym_key_path_string_expression] = STATE(1269), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1269), - [sym__equality_operator] = STATE(1269), - [sym__comparison_operator] = STATE(1269), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1269), - [sym__multiplicative_operator] = STATE(1269), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1269), - [sym__referenceable_operator] = STATE(1269), - [sym__eq_eq] = STATE(1269), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2199), - [sym_real_literal] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2199), - [sym_hex_literal] = ACTIONS(2201), - [sym_oct_literal] = ACTIONS(2201), - [sym_bin_literal] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2199), - [anon_sym_POUNDfileID] = ACTIONS(2201), - [anon_sym_POUNDfilePath] = ACTIONS(2201), - [anon_sym_POUNDline] = ACTIONS(2201), - [anon_sym_POUNDcolumn] = ACTIONS(2201), - [anon_sym_POUNDfunction] = ACTIONS(2201), - [anon_sym_POUNDdsohandle] = ACTIONS(2201), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2201), - [anon_sym_DASH_EQ] = ACTIONS(2201), - [anon_sym_STAR_EQ] = ACTIONS(2201), - [anon_sym_SLASH_EQ] = ACTIONS(2201), - [anon_sym_PERCENT_EQ] = ACTIONS(2201), - [anon_sym_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2201), - [anon_sym_LT_EQ] = ACTIONS(2201), - [anon_sym_GT_EQ] = ACTIONS(2201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_GT_GT] = ACTIONS(2201), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2201), - [sym__plus_then_ws] = ACTIONS(2201), - [sym__minus_then_ws] = ACTIONS(2201), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [538] = { - [sym_simple_identifier] = STATE(1580), - [sym__basic_literal] = STATE(1139), - [sym_boolean_literal] = STATE(1139), - [sym__string_literal] = STATE(1139), - [sym_line_string_literal] = STATE(1139), - [sym_multi_line_string_literal] = STATE(1139), - [sym_raw_string_literal] = STATE(1139), - [sym_regex_literal] = STATE(1139), - [sym__multiline_regex_literal] = STATE(2254), - [sym_user_type] = STATE(4479), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4479), - [sym_dictionary_type] = STATE(4479), - [sym__expression] = STATE(1139), - [sym__unary_expression] = STATE(1139), - [sym_postfix_expression] = STATE(1648), - [sym_constructor_expression] = STATE(1139), - [sym_navigation_expression] = STATE(1648), - [sym__navigable_type_expression] = STATE(5309), - [sym_open_start_range_expression] = STATE(1139), - [sym__range_operator] = STATE(371), - [sym_open_end_range_expression] = STATE(1139), - [sym_prefix_expression] = STATE(1139), - [sym_as_expression] = STATE(1139), - [sym_selector_expression] = STATE(1139), - [sym__binary_expression] = STATE(1139), - [sym_multiplicative_expression] = STATE(1139), - [sym_additive_expression] = STATE(1139), - [sym_range_expression] = STATE(1139), - [sym_infix_expression] = STATE(1139), - [sym_nil_coalescing_expression] = STATE(1139), - [sym_check_expression] = STATE(1139), - [sym_comparison_expression] = STATE(1139), - [sym_equality_expression] = STATE(1139), - [sym_conjunction_expression] = STATE(1139), - [sym_disjunction_expression] = STATE(1139), - [sym_bitwise_operation] = STATE(1139), - [sym_custom_operator] = STATE(714), - [sym_try_expression] = STATE(1139), - [sym_await_expression] = STATE(1139), - [sym__await_operator] = STATE(380), - [sym_ternary_expression] = STATE(1139), - [sym_call_expression] = STATE(1648), - [sym__primary_expression] = STATE(1139), - [sym_tuple_expression] = STATE(1649), - [sym_array_literal] = STATE(1139), - [sym_dictionary_literal] = STATE(1139), - [sym__special_literal] = STATE(1139), - [sym__playground_literal] = STATE(1139), - [sym_lambda_literal] = STATE(1139), - [sym_self_expression] = STATE(1649), - [sym_super_expression] = STATE(1139), - [sym_key_path_expression] = STATE(1139), - [sym_key_path_string_expression] = STATE(1139), - [sym__try_operator] = STATE(386), - [sym__assignment_and_operator] = STATE(1139), - [sym__equality_operator] = STATE(1139), - [sym__comparison_operator] = STATE(1139), - [sym__three_dot_operator] = STATE(724), - [sym__open_ended_range_operator] = STATE(371), - [sym__additive_operator] = STATE(1139), - [sym__multiplicative_operator] = STATE(1139), - [sym__prefix_unary_operator] = STATE(395), - [sym_directly_assignable_expression] = STATE(4546), - [sym_assignment] = STATE(1139), - [sym__referenceable_operator] = STATE(1139), - [sym__eq_eq] = STATE(1139), - [sym__dot] = STATE(395), - [aux_sym_raw_string_literal_repeat1] = STATE(5384), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1061), - [aux_sym_simple_identifier_token2] = ACTIONS(1063), - [aux_sym_simple_identifier_token3] = ACTIONS(1063), - [aux_sym_simple_identifier_token4] = ACTIONS(1063), - [anon_sym_actor] = ACTIONS(1061), - [anon_sym_nil] = ACTIONS(2203), - [sym_real_literal] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2203), - [sym_hex_literal] = ACTIONS(2205), - [sym_oct_literal] = ACTIONS(2205), - [sym_bin_literal] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(1069), - [anon_sym_false] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1071), - [anon_sym_BSLASH] = ACTIONS(1073), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1075), - [sym__extended_regex_literal] = ACTIONS(1077), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1079), - [sym__oneline_regex_literal] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(1083), - [anon_sym_LBRACK] = ACTIONS(1085), - [anon_sym_AMP] = ACTIONS(1087), - [anon_sym_async] = ACTIONS(1089), - [anon_sym_POUNDselector] = ACTIONS(1091), - [aux_sym_custom_operator_token1] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(1095), - [anon_sym_POUNDfile] = ACTIONS(2203), - [anon_sym_POUNDfileID] = ACTIONS(2205), - [anon_sym_POUNDfilePath] = ACTIONS(2205), - [anon_sym_POUNDline] = ACTIONS(2205), - [anon_sym_POUNDcolumn] = ACTIONS(2205), - [anon_sym_POUNDfunction] = ACTIONS(2205), - [anon_sym_POUNDdsohandle] = ACTIONS(2205), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1097), - [anon_sym_POUNDfileLiteral] = ACTIONS(1097), - [anon_sym_POUNDimageLiteral] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_CARET_LBRACE] = ACTIONS(1099), - [anon_sym_self] = ACTIONS(1101), - [anon_sym_super] = ACTIONS(1103), - [anon_sym_POUNDkeyPath] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_try_BANG] = ACTIONS(1109), - [anon_sym_try_QMARK] = ACTIONS(1109), - [anon_sym_PLUS_EQ] = ACTIONS(2205), - [anon_sym_DASH_EQ] = ACTIONS(2205), - [anon_sym_STAR_EQ] = ACTIONS(2205), - [anon_sym_SLASH_EQ] = ACTIONS(2205), - [anon_sym_PERCENT_EQ] = ACTIONS(2205), - [anon_sym_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2205), - [anon_sym_LT_EQ] = ACTIONS(2205), - [anon_sym_GT_EQ] = ACTIONS(2205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(1117), - [anon_sym_DASH_DASH] = ACTIONS(1117), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2205), - [anon_sym_GT_GT] = ACTIONS(2205), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1119), - [sym__dot_custom] = ACTIONS(1087), - [sym__eq_eq_custom] = ACTIONS(2205), - [sym__plus_then_ws] = ACTIONS(2205), - [sym__minus_then_ws] = ACTIONS(2205), - [sym_bang] = ACTIONS(1117), - [sym__custom_operator] = ACTIONS(1093), - }, - [539] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(625), - [sym_boolean_literal] = STATE(625), - [sym__string_literal] = STATE(625), - [sym_line_string_literal] = STATE(625), - [sym_multi_line_string_literal] = STATE(625), - [sym_raw_string_literal] = STATE(625), - [sym_regex_literal] = STATE(625), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(625), - [sym__unary_expression] = STATE(625), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(625), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(625), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(625), - [sym_prefix_expression] = STATE(625), - [sym_as_expression] = STATE(625), - [sym_selector_expression] = STATE(625), - [sym__binary_expression] = STATE(1111), - [sym_multiplicative_expression] = STATE(1111), - [sym_additive_expression] = STATE(1111), - [sym_range_expression] = STATE(1111), - [sym_infix_expression] = STATE(1111), - [sym_nil_coalescing_expression] = STATE(1111), - [sym_check_expression] = STATE(1111), - [sym_comparison_expression] = STATE(1111), - [sym_equality_expression] = STATE(1111), - [sym_conjunction_expression] = STATE(1111), - [sym_disjunction_expression] = STATE(1111), - [sym_bitwise_operation] = STATE(1111), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(625), - [sym_await_expression] = STATE(625), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(1112), - [sym_call_expression] = STATE(948), - [sym__primary_expression] = STATE(625), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(625), - [sym_dictionary_literal] = STATE(625), - [sym__special_literal] = STATE(625), - [sym__playground_literal] = STATE(625), - [sym_lambda_literal] = STATE(625), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(625), - [sym_key_path_expression] = STATE(625), - [sym_key_path_string_expression] = STATE(625), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(625), - [sym__equality_operator] = STATE(625), - [sym__comparison_operator] = STATE(625), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(625), - [sym__multiplicative_operator] = STATE(625), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(625), - [sym__referenceable_operator] = STATE(625), - [sym__eq_eq] = STATE(625), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2207), - [sym_real_literal] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(2207), - [sym_hex_literal] = ACTIONS(2209), - [sym_oct_literal] = ACTIONS(2209), - [sym_bin_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2207), - [anon_sym_POUNDfileID] = ACTIONS(2209), - [anon_sym_POUNDfilePath] = ACTIONS(2209), - [anon_sym_POUNDline] = ACTIONS(2209), - [anon_sym_POUNDcolumn] = ACTIONS(2209), - [anon_sym_POUNDfunction] = ACTIONS(2209), - [anon_sym_POUNDdsohandle] = ACTIONS(2209), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2209), - [anon_sym_DASH_EQ] = ACTIONS(2209), - [anon_sym_STAR_EQ] = ACTIONS(2209), - [anon_sym_SLASH_EQ] = ACTIONS(2209), - [anon_sym_PERCENT_EQ] = ACTIONS(2209), - [anon_sym_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2209), - [anon_sym_LT_EQ] = ACTIONS(2209), - [anon_sym_GT_EQ] = ACTIONS(2209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_SLASH] = ACTIONS(2207), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2209), - [anon_sym_GT_GT] = ACTIONS(2209), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2209), - [sym__plus_then_ws] = ACTIONS(2209), - [sym__minus_then_ws] = ACTIONS(2209), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [540] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(591), - [sym_boolean_literal] = STATE(591), - [sym__string_literal] = STATE(591), - [sym_line_string_literal] = STATE(591), - [sym_multi_line_string_literal] = STATE(591), - [sym_raw_string_literal] = STATE(591), - [sym_regex_literal] = STATE(591), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4480), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4480), - [sym_dictionary_type] = STATE(4480), - [sym__expression] = STATE(591), - [sym__unary_expression] = STATE(591), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(591), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(591), - [sym__range_operator] = STATE(497), - [sym_open_end_range_expression] = STATE(591), - [sym_prefix_expression] = STATE(591), - [sym_as_expression] = STATE(591), - [sym_selector_expression] = STATE(591), - [sym__binary_expression] = STATE(591), - [sym_multiplicative_expression] = STATE(591), - [sym_additive_expression] = STATE(591), - [sym_range_expression] = STATE(591), - [sym_infix_expression] = STATE(591), - [sym_nil_coalescing_expression] = STATE(591), - [sym_check_expression] = STATE(591), - [sym_comparison_expression] = STATE(591), - [sym_equality_expression] = STATE(591), - [sym_conjunction_expression] = STATE(591), - [sym_disjunction_expression] = STATE(591), - [sym_bitwise_operation] = STATE(591), - [sym_custom_operator] = STATE(569), - [sym_try_expression] = STATE(591), - [sym_await_expression] = STATE(591), - [sym__await_operator] = STATE(503), - [sym_ternary_expression] = STATE(591), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(591), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(591), - [sym_dictionary_literal] = STATE(591), - [sym__special_literal] = STATE(591), - [sym__playground_literal] = STATE(591), - [sym_lambda_literal] = STATE(591), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(591), - [sym_key_path_expression] = STATE(591), - [sym_key_path_string_expression] = STATE(591), - [sym__try_operator] = STATE(504), - [sym__assignment_and_operator] = STATE(591), - [sym__equality_operator] = STATE(591), - [sym__comparison_operator] = STATE(591), - [sym__three_dot_operator] = STATE(571), - [sym__open_ended_range_operator] = STATE(497), - [sym__additive_operator] = STATE(591), - [sym__multiplicative_operator] = STATE(591), - [sym__prefix_unary_operator] = STATE(508), - [sym_directly_assignable_expression] = STATE(4557), - [sym_assignment] = STATE(591), - [sym__referenceable_operator] = STATE(591), - [sym__eq_eq] = STATE(591), - [sym__dot] = STATE(508), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2211), - [sym_real_literal] = ACTIONS(2213), - [sym_integer_literal] = ACTIONS(2211), - [sym_hex_literal] = ACTIONS(2213), - [sym_oct_literal] = ACTIONS(2213), - [sym_bin_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(1297), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_GT] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(1303), - [anon_sym_POUNDfile] = ACTIONS(2211), - [anon_sym_POUNDfileID] = ACTIONS(2213), - [anon_sym_POUNDfilePath] = ACTIONS(2213), - [anon_sym_POUNDline] = ACTIONS(2213), - [anon_sym_POUNDcolumn] = ACTIONS(2213), - [anon_sym_POUNDfunction] = ACTIONS(2213), - [anon_sym_POUNDdsohandle] = ACTIONS(2213), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1305), - [anon_sym_try_BANG] = ACTIONS(1307), - [anon_sym_try_QMARK] = ACTIONS(1307), - [anon_sym_PLUS_EQ] = ACTIONS(2213), - [anon_sym_DASH_EQ] = ACTIONS(2213), - [anon_sym_STAR_EQ] = ACTIONS(2213), - [anon_sym_SLASH_EQ] = ACTIONS(2213), - [anon_sym_PERCENT_EQ] = ACTIONS(2213), - [anon_sym_EQ] = ACTIONS(2211), - [anon_sym_BANG_EQ] = ACTIONS(2211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2213), - [anon_sym_GT_EQ] = ACTIONS(2213), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_SLASH] = ACTIONS(2211), - [anon_sym_PERCENT] = ACTIONS(2211), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_CARET] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1299), - [sym__eq_eq_custom] = ACTIONS(2213), - [sym__plus_then_ws] = ACTIONS(2213), - [sym__minus_then_ws] = ACTIONS(2213), - [sym_bang] = ACTIONS(1315), - [sym__custom_operator] = ACTIONS(1301), - }, - [541] = { - [sym_simple_identifier] = STATE(1696), - [sym__basic_literal] = STATE(1166), - [sym_boolean_literal] = STATE(1166), - [sym__string_literal] = STATE(1166), - [sym_line_string_literal] = STATE(1166), - [sym_multi_line_string_literal] = STATE(1166), - [sym_raw_string_literal] = STATE(1166), - [sym_regex_literal] = STATE(1166), - [sym__multiline_regex_literal] = STATE(2545), - [sym_user_type] = STATE(4437), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4437), - [sym_dictionary_type] = STATE(4437), - [sym__expression] = STATE(1166), - [sym__unary_expression] = STATE(1166), - [sym_postfix_expression] = STATE(1797), - [sym_constructor_expression] = STATE(1166), - [sym_navigation_expression] = STATE(1797), - [sym__navigable_type_expression] = STATE(5854), - [sym_open_start_range_expression] = STATE(1166), - [sym__range_operator] = STATE(475), - [sym_open_end_range_expression] = STATE(1166), - [sym_prefix_expression] = STATE(1166), - [sym_as_expression] = STATE(1166), - [sym_selector_expression] = STATE(1166), - [sym__binary_expression] = STATE(1166), - [sym_multiplicative_expression] = STATE(1166), - [sym_additive_expression] = STATE(1166), - [sym_range_expression] = STATE(1166), - [sym_infix_expression] = STATE(1166), - [sym_nil_coalescing_expression] = STATE(1166), - [sym_check_expression] = STATE(1166), - [sym_comparison_expression] = STATE(1166), - [sym_equality_expression] = STATE(1166), - [sym_conjunction_expression] = STATE(1166), - [sym_disjunction_expression] = STATE(1166), - [sym_bitwise_operation] = STATE(1166), - [sym_custom_operator] = STATE(795), - [sym_try_expression] = STATE(1166), - [sym_await_expression] = STATE(1166), - [sym__await_operator] = STATE(472), - [sym_ternary_expression] = STATE(1166), - [sym_call_expression] = STATE(1797), - [sym__primary_expression] = STATE(1166), - [sym_tuple_expression] = STATE(1799), - [sym_array_literal] = STATE(1166), - [sym_dictionary_literal] = STATE(1166), - [sym__special_literal] = STATE(1166), - [sym__playground_literal] = STATE(1166), - [sym_lambda_literal] = STATE(1166), - [sym_self_expression] = STATE(1799), - [sym_super_expression] = STATE(1166), - [sym_key_path_expression] = STATE(1166), - [sym_key_path_string_expression] = STATE(1166), - [sym__try_operator] = STATE(459), - [sym__assignment_and_operator] = STATE(1166), - [sym__equality_operator] = STATE(1166), - [sym__comparison_operator] = STATE(1166), - [sym__three_dot_operator] = STATE(790), - [sym__open_ended_range_operator] = STATE(475), - [sym__additive_operator] = STATE(1166), - [sym__multiplicative_operator] = STATE(1166), - [sym__prefix_unary_operator] = STATE(443), - [sym_directly_assignable_expression] = STATE(4590), - [sym_assignment] = STATE(1166), - [sym__referenceable_operator] = STATE(1166), - [sym__eq_eq] = STATE(1166), - [sym__dot] = STATE(443), - [aux_sym_raw_string_literal_repeat1] = STATE(5311), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1127), - [aux_sym_simple_identifier_token2] = ACTIONS(1129), - [aux_sym_simple_identifier_token3] = ACTIONS(1129), - [aux_sym_simple_identifier_token4] = ACTIONS(1129), - [anon_sym_actor] = ACTIONS(1127), - [anon_sym_nil] = ACTIONS(2215), - [sym_real_literal] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2215), - [sym_hex_literal] = ACTIONS(2217), - [sym_oct_literal] = ACTIONS(2217), - [sym_bin_literal] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(1135), - [anon_sym_false] = ACTIONS(1135), - [anon_sym_DQUOTE] = ACTIONS(1137), - [anon_sym_BSLASH] = ACTIONS(1139), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1141), - [sym__extended_regex_literal] = ACTIONS(1143), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1145), - [sym__oneline_regex_literal] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_async] = ACTIONS(1155), - [anon_sym_POUNDselector] = ACTIONS(1157), - [aux_sym_custom_operator_token1] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(2215), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_await] = ACTIONS(1161), - [anon_sym_POUNDfile] = ACTIONS(2215), - [anon_sym_POUNDfileID] = ACTIONS(2217), - [anon_sym_POUNDfilePath] = ACTIONS(2217), - [anon_sym_POUNDline] = ACTIONS(2217), - [anon_sym_POUNDcolumn] = ACTIONS(2217), - [anon_sym_POUNDfunction] = ACTIONS(2217), - [anon_sym_POUNDdsohandle] = ACTIONS(2217), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1163), - [anon_sym_POUNDfileLiteral] = ACTIONS(1163), - [anon_sym_POUNDimageLiteral] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_CARET_LBRACE] = ACTIONS(1165), - [anon_sym_self] = ACTIONS(1167), - [anon_sym_super] = ACTIONS(1169), - [anon_sym_POUNDkeyPath] = ACTIONS(1171), - [anon_sym_try] = ACTIONS(1173), - [anon_sym_try_BANG] = ACTIONS(1175), - [anon_sym_try_QMARK] = ACTIONS(1175), - [anon_sym_PLUS_EQ] = ACTIONS(2217), - [anon_sym_DASH_EQ] = ACTIONS(2217), - [anon_sym_STAR_EQ] = ACTIONS(2217), - [anon_sym_SLASH_EQ] = ACTIONS(2217), - [anon_sym_PERCENT_EQ] = ACTIONS(2217), - [anon_sym_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2217), - [anon_sym_LT_EQ] = ACTIONS(2217), - [anon_sym_GT_EQ] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_SLASH] = ACTIONS(2215), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2217), - [anon_sym_GT_GT] = ACTIONS(2217), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1185), - [sym__dot_custom] = ACTIONS(1153), - [sym__eq_eq_custom] = ACTIONS(2217), - [sym__plus_then_ws] = ACTIONS(2217), - [sym__minus_then_ws] = ACTIONS(2217), - [sym_bang] = ACTIONS(1183), - [sym__custom_operator] = ACTIONS(1159), - }, - [542] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1307), - [sym_boolean_literal] = STATE(1307), - [sym__string_literal] = STATE(1307), - [sym_line_string_literal] = STATE(1307), - [sym_multi_line_string_literal] = STATE(1307), - [sym_raw_string_literal] = STATE(1307), - [sym_regex_literal] = STATE(1307), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1307), - [sym__unary_expression] = STATE(1307), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1307), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1307), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1307), - [sym_prefix_expression] = STATE(1307), - [sym_as_expression] = STATE(1307), - [sym_selector_expression] = STATE(1307), - [sym__binary_expression] = STATE(1307), - [sym_multiplicative_expression] = STATE(1307), - [sym_additive_expression] = STATE(1307), - [sym_range_expression] = STATE(1307), - [sym_infix_expression] = STATE(1307), - [sym_nil_coalescing_expression] = STATE(1307), - [sym_check_expression] = STATE(1307), - [sym_comparison_expression] = STATE(1307), - [sym_equality_expression] = STATE(1307), - [sym_conjunction_expression] = STATE(1307), - [sym_disjunction_expression] = STATE(1307), - [sym_bitwise_operation] = STATE(1307), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1307), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1307), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1307), - [sym_dictionary_literal] = STATE(1307), - [sym__special_literal] = STATE(1307), - [sym__playground_literal] = STATE(1307), - [sym_lambda_literal] = STATE(1307), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1307), - [sym_key_path_expression] = STATE(1307), - [sym_key_path_string_expression] = STATE(1307), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1307), - [sym__equality_operator] = STATE(1307), - [sym__comparison_operator] = STATE(1307), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1307), - [sym__multiplicative_operator] = STATE(1307), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1307), - [sym__referenceable_operator] = STATE(1307), - [sym__eq_eq] = STATE(1307), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2219), - [sym_real_literal] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2219), - [sym_hex_literal] = ACTIONS(2221), - [sym_oct_literal] = ACTIONS(2221), - [sym_bin_literal] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2219), - [anon_sym_POUNDfileID] = ACTIONS(2221), - [anon_sym_POUNDfilePath] = ACTIONS(2221), - [anon_sym_POUNDline] = ACTIONS(2221), - [anon_sym_POUNDcolumn] = ACTIONS(2221), - [anon_sym_POUNDfunction] = ACTIONS(2221), - [anon_sym_POUNDdsohandle] = ACTIONS(2221), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2221), - [anon_sym_DASH_EQ] = ACTIONS(2221), - [anon_sym_STAR_EQ] = ACTIONS(2221), - [anon_sym_SLASH_EQ] = ACTIONS(2221), - [anon_sym_PERCENT_EQ] = ACTIONS(2221), - [anon_sym_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2221), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2221), - [anon_sym_LT_EQ] = ACTIONS(2221), - [anon_sym_GT_EQ] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_SLASH] = ACTIONS(2219), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2221), - [anon_sym_GT_GT] = ACTIONS(2221), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2221), - [sym__plus_then_ws] = ACTIONS(2221), - [sym__minus_then_ws] = ACTIONS(2221), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [543] = { - [sym_simple_identifier] = STATE(864), - [sym__basic_literal] = STATE(609), - [sym_boolean_literal] = STATE(609), - [sym__string_literal] = STATE(609), - [sym_line_string_literal] = STATE(609), - [sym_multi_line_string_literal] = STATE(609), - [sym_raw_string_literal] = STATE(609), - [sym_regex_literal] = STATE(609), - [sym__multiline_regex_literal] = STATE(1078), - [sym_user_type] = STATE(4453), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4453), - [sym_dictionary_type] = STATE(4453), - [sym__expression] = STATE(609), - [sym__unary_expression] = STATE(609), - [sym_postfix_expression] = STATE(881), - [sym_constructor_expression] = STATE(609), - [sym_navigation_expression] = STATE(881), - [sym__navigable_type_expression] = STATE(5382), - [sym_open_start_range_expression] = STATE(609), - [sym__range_operator] = STATE(482), - [sym_open_end_range_expression] = STATE(609), - [sym_prefix_expression] = STATE(609), - [sym_as_expression] = STATE(609), - [sym_selector_expression] = STATE(609), - [sym__binary_expression] = STATE(609), - [sym_multiplicative_expression] = STATE(609), - [sym_additive_expression] = STATE(609), - [sym_range_expression] = STATE(609), - [sym_infix_expression] = STATE(609), - [sym_nil_coalescing_expression] = STATE(609), - [sym_check_expression] = STATE(609), - [sym_comparison_expression] = STATE(609), - [sym_equality_expression] = STATE(609), - [sym_conjunction_expression] = STATE(609), - [sym_disjunction_expression] = STATE(609), - [sym_bitwise_operation] = STATE(609), - [sym_custom_operator] = STATE(576), - [sym_try_expression] = STATE(609), - [sym_await_expression] = STATE(609), - [sym__await_operator] = STATE(478), - [sym_ternary_expression] = STATE(609), - [sym_call_expression] = STATE(881), - [sym__primary_expression] = STATE(609), - [sym_tuple_expression] = STATE(880), - [sym_array_literal] = STATE(609), - [sym_dictionary_literal] = STATE(609), - [sym__special_literal] = STATE(609), - [sym__playground_literal] = STATE(609), - [sym_lambda_literal] = STATE(609), - [sym_self_expression] = STATE(880), - [sym_super_expression] = STATE(609), - [sym_key_path_expression] = STATE(609), - [sym_key_path_string_expression] = STATE(609), - [sym__try_operator] = STATE(467), - [sym__assignment_and_operator] = STATE(609), - [sym__equality_operator] = STATE(609), - [sym__comparison_operator] = STATE(609), - [sym__three_dot_operator] = STATE(579), - [sym__open_ended_range_operator] = STATE(482), - [sym__additive_operator] = STATE(609), - [sym__multiplicative_operator] = STATE(609), - [sym__prefix_unary_operator] = STATE(457), - [sym_directly_assignable_expression] = STATE(4620), - [sym_assignment] = STATE(609), - [sym__referenceable_operator] = STATE(609), - [sym__eq_eq] = STATE(609), - [sym__dot] = STATE(457), - [aux_sym_raw_string_literal_repeat1] = STATE(5454), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(1187), - [aux_sym_simple_identifier_token2] = ACTIONS(1189), - [aux_sym_simple_identifier_token3] = ACTIONS(1189), - [aux_sym_simple_identifier_token4] = ACTIONS(1189), - [anon_sym_actor] = ACTIONS(1187), - [anon_sym_nil] = ACTIONS(2223), - [sym_real_literal] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2223), - [sym_hex_literal] = ACTIONS(2225), - [sym_oct_literal] = ACTIONS(2225), - [sym_bin_literal] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_BSLASH] = ACTIONS(1199), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1201), - [sym__extended_regex_literal] = ACTIONS(1203), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(1205), - [sym__oneline_regex_literal] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_POUNDselector] = ACTIONS(1217), - [aux_sym_custom_operator_token1] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_GT] = ACTIONS(2223), - [anon_sym_await] = ACTIONS(1221), - [anon_sym_POUNDfile] = ACTIONS(2223), - [anon_sym_POUNDfileID] = ACTIONS(2225), - [anon_sym_POUNDfilePath] = ACTIONS(2225), - [anon_sym_POUNDline] = ACTIONS(2225), - [anon_sym_POUNDcolumn] = ACTIONS(2225), - [anon_sym_POUNDfunction] = ACTIONS(2225), - [anon_sym_POUNDdsohandle] = ACTIONS(2225), - [anon_sym_POUNDcolorLiteral] = ACTIONS(1223), - [anon_sym_POUNDfileLiteral] = ACTIONS(1223), - [anon_sym_POUNDimageLiteral] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_CARET_LBRACE] = ACTIONS(1225), - [anon_sym_self] = ACTIONS(1227), - [anon_sym_super] = ACTIONS(1229), - [anon_sym_POUNDkeyPath] = ACTIONS(1231), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_try_BANG] = ACTIONS(1235), - [anon_sym_try_QMARK] = ACTIONS(1235), - [anon_sym_PLUS_EQ] = ACTIONS(2225), - [anon_sym_DASH_EQ] = ACTIONS(2225), - [anon_sym_STAR_EQ] = ACTIONS(2225), - [anon_sym_SLASH_EQ] = ACTIONS(2225), - [anon_sym_PERCENT_EQ] = ACTIONS(2225), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ] = ACTIONS(2223), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2225), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2225), - [anon_sym_LT_EQ] = ACTIONS(2225), - [anon_sym_GT_EQ] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_SLASH] = ACTIONS(2223), - [anon_sym_PERCENT] = ACTIONS(2223), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_CARET] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(1245), - [sym__dot_custom] = ACTIONS(1213), - [sym__eq_eq_custom] = ACTIONS(2225), - [sym__plus_then_ws] = ACTIONS(2225), - [sym__minus_then_ws] = ACTIONS(2225), - [sym_bang] = ACTIONS(1243), - [sym__custom_operator] = ACTIONS(1219), - }, - [544] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1270), - [sym_boolean_literal] = STATE(1270), - [sym__string_literal] = STATE(1270), - [sym_line_string_literal] = STATE(1270), - [sym_multi_line_string_literal] = STATE(1270), - [sym_raw_string_literal] = STATE(1270), - [sym_regex_literal] = STATE(1270), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(1270), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1270), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1270), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1270), - [sym_prefix_expression] = STATE(1270), - [sym_as_expression] = STATE(1270), - [sym_selector_expression] = STATE(1270), - [sym__binary_expression] = STATE(1270), - [sym_multiplicative_expression] = STATE(1270), - [sym_additive_expression] = STATE(1270), - [sym_range_expression] = STATE(1270), - [sym_infix_expression] = STATE(1270), - [sym_nil_coalescing_expression] = STATE(1270), - [sym_check_expression] = STATE(1270), - [sym_comparison_expression] = STATE(1270), - [sym_equality_expression] = STATE(1270), - [sym_conjunction_expression] = STATE(1270), - [sym_disjunction_expression] = STATE(1270), - [sym_bitwise_operation] = STATE(1270), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1270), - [sym_await_expression] = STATE(1270), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1270), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1270), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1270), - [sym_dictionary_literal] = STATE(1270), - [sym__special_literal] = STATE(1270), - [sym__playground_literal] = STATE(1270), - [sym_lambda_literal] = STATE(1270), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1270), - [sym_key_path_expression] = STATE(1270), - [sym_key_path_string_expression] = STATE(1270), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1270), - [sym__equality_operator] = STATE(1270), - [sym__comparison_operator] = STATE(1270), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1270), - [sym__multiplicative_operator] = STATE(1270), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1270), - [sym__referenceable_operator] = STATE(1270), - [sym__eq_eq] = STATE(1270), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2227), - [sym_real_literal] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2227), - [sym_hex_literal] = ACTIONS(2229), - [sym_oct_literal] = ACTIONS(2229), - [sym_bin_literal] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_GT] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2227), - [anon_sym_POUNDfileID] = ACTIONS(2229), - [anon_sym_POUNDfilePath] = ACTIONS(2229), - [anon_sym_POUNDline] = ACTIONS(2229), - [anon_sym_POUNDcolumn] = ACTIONS(2229), - [anon_sym_POUNDfunction] = ACTIONS(2229), - [anon_sym_POUNDdsohandle] = ACTIONS(2229), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2229), - [anon_sym_DASH_EQ] = ACTIONS(2229), - [anon_sym_STAR_EQ] = ACTIONS(2229), - [anon_sym_SLASH_EQ] = ACTIONS(2229), - [anon_sym_PERCENT_EQ] = ACTIONS(2229), - [anon_sym_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ] = ACTIONS(2227), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2229), - [anon_sym_GT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_PERCENT] = ACTIONS(2227), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2227), - [anon_sym_LT_LT] = ACTIONS(2229), - [anon_sym_GT_GT] = ACTIONS(2229), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2229), - [sym__plus_then_ws] = ACTIONS(2229), - [sym__minus_then_ws] = ACTIONS(2229), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [545] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1161), - [sym_boolean_literal] = STATE(1161), - [sym__string_literal] = STATE(1161), - [sym_line_string_literal] = STATE(1161), - [sym_multi_line_string_literal] = STATE(1161), - [sym_raw_string_literal] = STATE(1161), - [sym_regex_literal] = STATE(1161), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1161), - [sym__unary_expression] = STATE(1161), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1161), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1161), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1161), - [sym_prefix_expression] = STATE(1161), - [sym_as_expression] = STATE(1161), - [sym_selector_expression] = STATE(1161), - [sym__binary_expression] = STATE(1161), - [sym_multiplicative_expression] = STATE(1161), - [sym_additive_expression] = STATE(1161), - [sym_range_expression] = STATE(1161), - [sym_infix_expression] = STATE(1161), - [sym_nil_coalescing_expression] = STATE(1161), - [sym_check_expression] = STATE(1161), - [sym_comparison_expression] = STATE(1161), - [sym_equality_expression] = STATE(1161), - [sym_conjunction_expression] = STATE(1161), - [sym_disjunction_expression] = STATE(1161), - [sym_bitwise_operation] = STATE(1161), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1161), - [sym_await_expression] = STATE(1161), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1161), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1161), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1161), - [sym_dictionary_literal] = STATE(1161), - [sym__special_literal] = STATE(1161), - [sym__playground_literal] = STATE(1161), - [sym_lambda_literal] = STATE(1161), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1161), - [sym_key_path_expression] = STATE(1161), - [sym_key_path_string_expression] = STATE(1161), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1161), - [sym__equality_operator] = STATE(1161), - [sym__comparison_operator] = STATE(1161), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1161), - [sym__multiplicative_operator] = STATE(1161), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1161), - [sym__referenceable_operator] = STATE(1161), - [sym__eq_eq] = STATE(1161), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2231), - [sym_real_literal] = ACTIONS(2233), - [sym_integer_literal] = ACTIONS(2231), - [sym_hex_literal] = ACTIONS(2233), - [sym_oct_literal] = ACTIONS(2233), - [sym_bin_literal] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2231), - [anon_sym_POUNDfileID] = ACTIONS(2233), - [anon_sym_POUNDfilePath] = ACTIONS(2233), - [anon_sym_POUNDline] = ACTIONS(2233), - [anon_sym_POUNDcolumn] = ACTIONS(2233), - [anon_sym_POUNDfunction] = ACTIONS(2233), - [anon_sym_POUNDdsohandle] = ACTIONS(2233), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2233), - [anon_sym_DASH_EQ] = ACTIONS(2233), - [anon_sym_STAR_EQ] = ACTIONS(2233), - [anon_sym_SLASH_EQ] = ACTIONS(2233), - [anon_sym_PERCENT_EQ] = ACTIONS(2233), - [anon_sym_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), - [anon_sym_LT_EQ] = ACTIONS(2233), - [anon_sym_GT_EQ] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_SLASH] = ACTIONS(2231), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2233), - [anon_sym_GT_GT] = ACTIONS(2233), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2233), - [sym__plus_then_ws] = ACTIONS(2233), - [sym__minus_then_ws] = ACTIONS(2233), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [546] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1162), - [sym_boolean_literal] = STATE(1162), - [sym__string_literal] = STATE(1162), - [sym_line_string_literal] = STATE(1162), - [sym_multi_line_string_literal] = STATE(1162), - [sym_raw_string_literal] = STATE(1162), - [sym_regex_literal] = STATE(1162), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1162), - [sym__unary_expression] = STATE(1162), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1162), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1162), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1162), - [sym_prefix_expression] = STATE(1162), - [sym_as_expression] = STATE(1162), - [sym_selector_expression] = STATE(1162), - [sym__binary_expression] = STATE(1162), - [sym_multiplicative_expression] = STATE(1162), - [sym_additive_expression] = STATE(1162), - [sym_range_expression] = STATE(1162), - [sym_infix_expression] = STATE(1162), - [sym_nil_coalescing_expression] = STATE(1162), - [sym_check_expression] = STATE(1162), - [sym_comparison_expression] = STATE(1162), - [sym_equality_expression] = STATE(1162), - [sym_conjunction_expression] = STATE(1162), - [sym_disjunction_expression] = STATE(1162), - [sym_bitwise_operation] = STATE(1162), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1162), - [sym_await_expression] = STATE(1162), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1162), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1162), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1162), - [sym_dictionary_literal] = STATE(1162), - [sym__special_literal] = STATE(1162), - [sym__playground_literal] = STATE(1162), - [sym_lambda_literal] = STATE(1162), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1162), - [sym_key_path_expression] = STATE(1162), - [sym_key_path_string_expression] = STATE(1162), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1162), - [sym__equality_operator] = STATE(1162), - [sym__comparison_operator] = STATE(1162), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1162), - [sym__multiplicative_operator] = STATE(1162), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1162), - [sym__referenceable_operator] = STATE(1162), - [sym__eq_eq] = STATE(1162), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2235), - [sym_real_literal] = ACTIONS(2237), - [sym_integer_literal] = ACTIONS(2235), - [sym_hex_literal] = ACTIONS(2237), - [sym_oct_literal] = ACTIONS(2237), - [sym_bin_literal] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2235), - [anon_sym_GT] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2235), - [anon_sym_POUNDfileID] = ACTIONS(2237), - [anon_sym_POUNDfilePath] = ACTIONS(2237), - [anon_sym_POUNDline] = ACTIONS(2237), - [anon_sym_POUNDcolumn] = ACTIONS(2237), - [anon_sym_POUNDfunction] = ACTIONS(2237), - [anon_sym_POUNDdsohandle] = ACTIONS(2237), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2237), - [anon_sym_DASH_EQ] = ACTIONS(2237), - [anon_sym_STAR_EQ] = ACTIONS(2237), - [anon_sym_SLASH_EQ] = ACTIONS(2237), - [anon_sym_PERCENT_EQ] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2235), - [anon_sym_BANG_EQ] = ACTIONS(2235), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2237), - [anon_sym_GT_EQ] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2235), - [anon_sym_SLASH] = ACTIONS(2235), - [anon_sym_PERCENT] = ACTIONS(2235), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_CARET] = ACTIONS(2235), - [anon_sym_LT_LT] = ACTIONS(2237), - [anon_sym_GT_GT] = ACTIONS(2237), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2237), - [sym__plus_then_ws] = ACTIONS(2237), - [sym__minus_then_ws] = ACTIONS(2237), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [547] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1152), - [sym_boolean_literal] = STATE(1152), - [sym__string_literal] = STATE(1152), - [sym_line_string_literal] = STATE(1152), - [sym_multi_line_string_literal] = STATE(1152), - [sym_raw_string_literal] = STATE(1152), - [sym_regex_literal] = STATE(1152), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1152), - [sym__unary_expression] = STATE(1152), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1152), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1152), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1152), - [sym_prefix_expression] = STATE(1152), - [sym_as_expression] = STATE(1152), - [sym_selector_expression] = STATE(1152), - [sym__binary_expression] = STATE(1152), - [sym_multiplicative_expression] = STATE(1152), - [sym_additive_expression] = STATE(1152), - [sym_range_expression] = STATE(1152), - [sym_infix_expression] = STATE(1152), - [sym_nil_coalescing_expression] = STATE(1152), - [sym_check_expression] = STATE(1152), - [sym_comparison_expression] = STATE(1152), - [sym_equality_expression] = STATE(1152), - [sym_conjunction_expression] = STATE(1152), - [sym_disjunction_expression] = STATE(1152), - [sym_bitwise_operation] = STATE(1152), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1152), - [sym_await_expression] = STATE(1152), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(2426), - [sym_call_expression] = STATE(1712), - [sym__primary_expression] = STATE(1152), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1152), - [sym_dictionary_literal] = STATE(1152), - [sym__special_literal] = STATE(1152), - [sym__playground_literal] = STATE(1152), - [sym_lambda_literal] = STATE(1152), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1152), - [sym_key_path_expression] = STATE(1152), - [sym_key_path_string_expression] = STATE(1152), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1152), - [sym__equality_operator] = STATE(1152), - [sym__comparison_operator] = STATE(1152), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1152), - [sym__multiplicative_operator] = STATE(1152), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1152), - [sym__referenceable_operator] = STATE(1152), - [sym__eq_eq] = STATE(1152), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2239), - [sym_real_literal] = ACTIONS(2241), - [sym_integer_literal] = ACTIONS(2239), - [sym_hex_literal] = ACTIONS(2241), - [sym_oct_literal] = ACTIONS(2241), - [sym_bin_literal] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2239), - [anon_sym_POUNDfileID] = ACTIONS(2241), - [anon_sym_POUNDfilePath] = ACTIONS(2241), - [anon_sym_POUNDline] = ACTIONS(2241), - [anon_sym_POUNDcolumn] = ACTIONS(2241), - [anon_sym_POUNDfunction] = ACTIONS(2241), - [anon_sym_POUNDdsohandle] = ACTIONS(2241), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2241), - [anon_sym_DASH_EQ] = ACTIONS(2241), - [anon_sym_STAR_EQ] = ACTIONS(2241), - [anon_sym_SLASH_EQ] = ACTIONS(2241), - [anon_sym_PERCENT_EQ] = ACTIONS(2241), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2241), - [anon_sym_LT_EQ] = ACTIONS(2241), - [anon_sym_GT_EQ] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_SLASH] = ACTIONS(2239), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2241), - [anon_sym_GT_GT] = ACTIONS(2241), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2241), - [sym__plus_then_ws] = ACTIONS(2241), - [sym__minus_then_ws] = ACTIONS(2241), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [548] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1272), - [sym_boolean_literal] = STATE(1272), - [sym__string_literal] = STATE(1272), - [sym_line_string_literal] = STATE(1272), - [sym_multi_line_string_literal] = STATE(1272), - [sym_raw_string_literal] = STATE(1272), - [sym_regex_literal] = STATE(1272), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1272), - [sym__unary_expression] = STATE(1272), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1272), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1272), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1272), - [sym_prefix_expression] = STATE(1272), - [sym_as_expression] = STATE(1272), - [sym_selector_expression] = STATE(1272), - [sym__binary_expression] = STATE(1272), - [sym_multiplicative_expression] = STATE(1272), - [sym_additive_expression] = STATE(1272), - [sym_range_expression] = STATE(1272), - [sym_infix_expression] = STATE(1272), - [sym_nil_coalescing_expression] = STATE(1272), - [sym_check_expression] = STATE(1272), - [sym_comparison_expression] = STATE(1272), - [sym_equality_expression] = STATE(1272), - [sym_conjunction_expression] = STATE(1272), - [sym_disjunction_expression] = STATE(1272), - [sym_bitwise_operation] = STATE(1272), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1272), - [sym_await_expression] = STATE(1272), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1272), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1272), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1272), - [sym_dictionary_literal] = STATE(1272), - [sym__special_literal] = STATE(1272), - [sym__playground_literal] = STATE(1272), - [sym_lambda_literal] = STATE(1272), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1272), - [sym_key_path_expression] = STATE(1272), - [sym_key_path_string_expression] = STATE(1272), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1272), - [sym__equality_operator] = STATE(1272), - [sym__comparison_operator] = STATE(1272), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1272), - [sym__multiplicative_operator] = STATE(1272), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1272), - [sym__referenceable_operator] = STATE(1272), - [sym__eq_eq] = STATE(1272), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2243), - [sym_real_literal] = ACTIONS(2245), - [sym_integer_literal] = ACTIONS(2243), - [sym_hex_literal] = ACTIONS(2245), - [sym_oct_literal] = ACTIONS(2245), - [sym_bin_literal] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2243), - [anon_sym_POUNDfileID] = ACTIONS(2245), - [anon_sym_POUNDfilePath] = ACTIONS(2245), - [anon_sym_POUNDline] = ACTIONS(2245), - [anon_sym_POUNDcolumn] = ACTIONS(2245), - [anon_sym_POUNDfunction] = ACTIONS(2245), - [anon_sym_POUNDdsohandle] = ACTIONS(2245), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_SLASH] = ACTIONS(2243), - [anon_sym_PERCENT] = ACTIONS(2243), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_CARET] = ACTIONS(2243), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2245), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2245), - [sym__plus_then_ws] = ACTIONS(2245), - [sym__minus_then_ws] = ACTIONS(2245), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [549] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1156), - [sym_boolean_literal] = STATE(1156), - [sym__string_literal] = STATE(1156), - [sym_line_string_literal] = STATE(1156), - [sym_multi_line_string_literal] = STATE(1156), - [sym_raw_string_literal] = STATE(1156), - [sym_regex_literal] = STATE(1156), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1156), - [sym__unary_expression] = STATE(1156), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1156), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1156), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1156), - [sym_prefix_expression] = STATE(1156), - [sym_as_expression] = STATE(1156), - [sym_selector_expression] = STATE(1156), - [sym__binary_expression] = STATE(2424), - [sym_multiplicative_expression] = STATE(2424), - [sym_additive_expression] = STATE(2424), - [sym_range_expression] = STATE(2424), - [sym_infix_expression] = STATE(2424), - [sym_nil_coalescing_expression] = STATE(2424), - [sym_check_expression] = STATE(2424), - [sym_comparison_expression] = STATE(2424), - [sym_equality_expression] = STATE(2424), - [sym_conjunction_expression] = STATE(2424), - [sym_disjunction_expression] = STATE(2424), - [sym_bitwise_operation] = STATE(2424), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1156), - [sym_await_expression] = STATE(1156), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(2419), - [sym_call_expression] = STATE(1727), - [sym__primary_expression] = STATE(1156), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1156), - [sym_dictionary_literal] = STATE(1156), - [sym__special_literal] = STATE(1156), - [sym__playground_literal] = STATE(1156), - [sym_lambda_literal] = STATE(1156), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1156), - [sym_key_path_expression] = STATE(1156), - [sym_key_path_string_expression] = STATE(1156), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1156), - [sym__equality_operator] = STATE(1156), - [sym__comparison_operator] = STATE(1156), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1156), - [sym__multiplicative_operator] = STATE(1156), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1156), - [sym__referenceable_operator] = STATE(1156), - [sym__eq_eq] = STATE(1156), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2247), - [sym_real_literal] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2247), - [sym_hex_literal] = ACTIONS(2249), - [sym_oct_literal] = ACTIONS(2249), - [sym_bin_literal] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_GT] = ACTIONS(2247), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2247), - [anon_sym_POUNDfileID] = ACTIONS(2249), - [anon_sym_POUNDfilePath] = ACTIONS(2249), - [anon_sym_POUNDline] = ACTIONS(2249), - [anon_sym_POUNDcolumn] = ACTIONS(2249), - [anon_sym_POUNDfunction] = ACTIONS(2249), - [anon_sym_POUNDdsohandle] = ACTIONS(2249), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2249), - [anon_sym_DASH_EQ] = ACTIONS(2249), - [anon_sym_STAR_EQ] = ACTIONS(2249), - [anon_sym_SLASH_EQ] = ACTIONS(2249), - [anon_sym_PERCENT_EQ] = ACTIONS(2249), - [anon_sym_EQ] = ACTIONS(2247), - [anon_sym_BANG_EQ] = ACTIONS(2247), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_SLASH] = ACTIONS(2247), - [anon_sym_PERCENT] = ACTIONS(2247), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2247), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2249), - [sym__plus_then_ws] = ACTIONS(2249), - [sym__minus_then_ws] = ACTIONS(2249), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [550] = { - [sym_simple_identifier] = STATE(1674), - [sym__basic_literal] = STATE(1150), - [sym_boolean_literal] = STATE(1150), - [sym__string_literal] = STATE(1150), - [sym_line_string_literal] = STATE(1150), - [sym_multi_line_string_literal] = STATE(1150), - [sym_raw_string_literal] = STATE(1150), - [sym_regex_literal] = STATE(1150), - [sym__multiline_regex_literal] = STATE(2370), - [sym_user_type] = STATE(4434), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4434), - [sym_dictionary_type] = STATE(4434), - [sym__expression] = STATE(1150), - [sym__unary_expression] = STATE(1150), - [sym_postfix_expression] = STATE(1753), - [sym_constructor_expression] = STATE(1150), - [sym_navigation_expression] = STATE(1753), - [sym__navigable_type_expression] = STATE(5320), - [sym_open_start_range_expression] = STATE(1150), - [sym__range_operator] = STATE(546), - [sym_open_end_range_expression] = STATE(1150), - [sym_prefix_expression] = STATE(1150), - [sym_as_expression] = STATE(1150), - [sym_selector_expression] = STATE(1150), - [sym__binary_expression] = STATE(1150), - [sym_multiplicative_expression] = STATE(1150), - [sym_additive_expression] = STATE(1150), - [sym_range_expression] = STATE(1150), - [sym_infix_expression] = STATE(1150), - [sym_nil_coalescing_expression] = STATE(1150), - [sym_check_expression] = STATE(1150), - [sym_comparison_expression] = STATE(1150), - [sym_equality_expression] = STATE(1150), - [sym_conjunction_expression] = STATE(1150), - [sym_disjunction_expression] = STATE(1150), - [sym_bitwise_operation] = STATE(1150), - [sym_custom_operator] = STATE(732), - [sym_try_expression] = STATE(1150), - [sym_await_expression] = STATE(1150), - [sym__await_operator] = STATE(547), - [sym_ternary_expression] = STATE(1150), - [sym_call_expression] = STATE(1753), - [sym__primary_expression] = STATE(1150), - [sym_tuple_expression] = STATE(1745), - [sym_array_literal] = STATE(1150), - [sym_dictionary_literal] = STATE(1150), - [sym__special_literal] = STATE(1150), - [sym__playground_literal] = STATE(1150), - [sym_lambda_literal] = STATE(1150), - [sym_self_expression] = STATE(1745), - [sym_super_expression] = STATE(1150), - [sym_key_path_expression] = STATE(1150), - [sym_key_path_string_expression] = STATE(1150), - [sym__try_operator] = STATE(549), - [sym__assignment_and_operator] = STATE(1150), - [sym__equality_operator] = STATE(1150), - [sym__comparison_operator] = STATE(1150), - [sym__three_dot_operator] = STATE(771), - [sym__open_ended_range_operator] = STATE(546), - [sym__additive_operator] = STATE(1150), - [sym__multiplicative_operator] = STATE(1150), - [sym__prefix_unary_operator] = STATE(550), - [sym_directly_assignable_expression] = STATE(4602), - [sym_assignment] = STATE(1150), - [sym__referenceable_operator] = STATE(1150), - [sym__eq_eq] = STATE(1150), - [sym__dot] = STATE(550), - [aux_sym_raw_string_literal_repeat1] = STATE(5346), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(11), - [aux_sym_simple_identifier_token2] = ACTIONS(13), - [aux_sym_simple_identifier_token3] = ACTIONS(13), - [aux_sym_simple_identifier_token4] = ACTIONS(13), - [anon_sym_actor] = ACTIONS(11), - [anon_sym_nil] = ACTIONS(2251), - [sym_real_literal] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2251), - [sym_hex_literal] = ACTIONS(2253), - [sym_oct_literal] = ACTIONS(2253), - [sym_bin_literal] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(21), - [anon_sym_false] = ACTIONS(21), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_BSLASH] = ACTIONS(25), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(27), - [sym__extended_regex_literal] = ACTIONS(29), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(31), - [sym__oneline_regex_literal] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_POUNDselector] = ACTIONS(43), - [aux_sym_custom_operator_token1] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(47), - [anon_sym_POUNDfile] = ACTIONS(2251), - [anon_sym_POUNDfileID] = ACTIONS(2253), - [anon_sym_POUNDfilePath] = ACTIONS(2253), - [anon_sym_POUNDline] = ACTIONS(2253), - [anon_sym_POUNDcolumn] = ACTIONS(2253), - [anon_sym_POUNDfunction] = ACTIONS(2253), - [anon_sym_POUNDdsohandle] = ACTIONS(2253), - [anon_sym_POUNDcolorLiteral] = ACTIONS(49), - [anon_sym_POUNDfileLiteral] = ACTIONS(49), - [anon_sym_POUNDimageLiteral] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_CARET_LBRACE] = ACTIONS(51), - [anon_sym_self] = ACTIONS(53), - [anon_sym_super] = ACTIONS(55), - [anon_sym_POUNDkeyPath] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_try_BANG] = ACTIONS(69), - [anon_sym_try_QMARK] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(2253), - [anon_sym_DASH_EQ] = ACTIONS(2253), - [anon_sym_STAR_EQ] = ACTIONS(2253), - [anon_sym_SLASH_EQ] = ACTIONS(2253), - [anon_sym_PERCENT_EQ] = ACTIONS(2253), - [anon_sym_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2253), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2253), - [anon_sym_LT_EQ] = ACTIONS(2253), - [anon_sym_GT_EQ] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(73), - [anon_sym_PLUS] = ACTIONS(75), - [anon_sym_DASH] = ACTIONS(75), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_PERCENT] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2253), - [anon_sym_GT_GT] = ACTIONS(2253), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(141), - [sym__dot_custom] = ACTIONS(39), - [sym__eq_eq_custom] = ACTIONS(2253), - [sym__plus_then_ws] = ACTIONS(2253), - [sym__minus_then_ws] = ACTIONS(2253), - [sym_bang] = ACTIONS(77), - [sym__custom_operator] = ACTIONS(45), - }, - [551] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1358), - [sym_boolean_literal] = STATE(1358), - [sym__string_literal] = STATE(1358), - [sym_line_string_literal] = STATE(1358), - [sym_multi_line_string_literal] = STATE(1358), - [sym_raw_string_literal] = STATE(1358), - [sym_regex_literal] = STATE(1358), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1358), - [sym__unary_expression] = STATE(1358), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1358), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1358), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1358), - [sym_prefix_expression] = STATE(1358), - [sym_as_expression] = STATE(1358), - [sym_selector_expression] = STATE(1358), - [sym__binary_expression] = STATE(1358), - [sym_multiplicative_expression] = STATE(1358), - [sym_additive_expression] = STATE(1358), - [sym_range_expression] = STATE(1358), - [sym_infix_expression] = STATE(1358), - [sym_nil_coalescing_expression] = STATE(1358), - [sym_check_expression] = STATE(1358), - [sym_comparison_expression] = STATE(1358), - [sym_equality_expression] = STATE(1358), - [sym_conjunction_expression] = STATE(1358), - [sym_disjunction_expression] = STATE(1358), - [sym_bitwise_operation] = STATE(1358), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1358), - [sym_await_expression] = STATE(1358), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1358), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1358), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1358), - [sym_dictionary_literal] = STATE(1358), - [sym__special_literal] = STATE(1358), - [sym__playground_literal] = STATE(1358), - [sym_lambda_literal] = STATE(1358), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1358), - [sym_key_path_expression] = STATE(1358), - [sym_key_path_string_expression] = STATE(1358), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1358), - [sym__equality_operator] = STATE(1358), - [sym__comparison_operator] = STATE(1358), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1358), - [sym__multiplicative_operator] = STATE(1358), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1358), - [sym__referenceable_operator] = STATE(1358), - [sym__eq_eq] = STATE(1358), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2255), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2255), - [sym_hex_literal] = ACTIONS(2257), - [sym_oct_literal] = ACTIONS(2257), - [sym_bin_literal] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(2255), - [anon_sym_POUNDfileID] = ACTIONS(2257), - [anon_sym_POUNDfilePath] = ACTIONS(2257), - [anon_sym_POUNDline] = ACTIONS(2257), - [anon_sym_POUNDcolumn] = ACTIONS(2257), - [anon_sym_POUNDfunction] = ACTIONS(2257), - [anon_sym_POUNDdsohandle] = ACTIONS(2257), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(2257), - [anon_sym_DASH_EQ] = ACTIONS(2257), - [anon_sym_STAR_EQ] = ACTIONS(2257), - [anon_sym_SLASH_EQ] = ACTIONS(2257), - [anon_sym_PERCENT_EQ] = ACTIONS(2257), - [anon_sym_EQ] = ACTIONS(2255), - [anon_sym_BANG_EQ] = ACTIONS(2255), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2257), - [anon_sym_GT_EQ] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2255), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_PERCENT] = ACTIONS(2255), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2255), - [anon_sym_LT_LT] = ACTIONS(2257), - [anon_sym_GT_GT] = ACTIONS(2257), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(2257), - [sym__plus_then_ws] = ACTIONS(2257), - [sym__minus_then_ws] = ACTIONS(2257), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [552] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1253), - [sym_boolean_literal] = STATE(1253), - [sym__string_literal] = STATE(1253), - [sym_line_string_literal] = STATE(1253), - [sym_multi_line_string_literal] = STATE(1253), - [sym_raw_string_literal] = STATE(1253), - [sym_regex_literal] = STATE(1253), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(1253), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1253), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1253), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1253), - [sym_prefix_expression] = STATE(1253), - [sym_as_expression] = STATE(1253), - [sym_selector_expression] = STATE(1253), - [sym__binary_expression] = STATE(1253), - [sym_multiplicative_expression] = STATE(1253), - [sym_additive_expression] = STATE(1253), - [sym_range_expression] = STATE(1253), - [sym_infix_expression] = STATE(1253), - [sym_nil_coalescing_expression] = STATE(1253), - [sym_check_expression] = STATE(1253), - [sym_comparison_expression] = STATE(1253), - [sym_equality_expression] = STATE(1253), - [sym_conjunction_expression] = STATE(1253), - [sym_disjunction_expression] = STATE(1253), - [sym_bitwise_operation] = STATE(1253), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1253), - [sym_await_expression] = STATE(1253), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1253), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1253), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1253), - [sym_dictionary_literal] = STATE(1253), - [sym__special_literal] = STATE(1253), - [sym__playground_literal] = STATE(1253), - [sym_lambda_literal] = STATE(1253), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1253), - [sym_key_path_expression] = STATE(1253), - [sym_key_path_string_expression] = STATE(1253), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1253), - [sym__equality_operator] = STATE(1253), - [sym__comparison_operator] = STATE(1253), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1253), - [sym__multiplicative_operator] = STATE(1253), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1253), - [sym__referenceable_operator] = STATE(1253), - [sym__eq_eq] = STATE(1253), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2259), - [sym_real_literal] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2259), - [sym_hex_literal] = ACTIONS(2261), - [sym_oct_literal] = ACTIONS(2261), - [sym_bin_literal] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_GT] = ACTIONS(2259), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2259), - [anon_sym_POUNDfileID] = ACTIONS(2261), - [anon_sym_POUNDfilePath] = ACTIONS(2261), - [anon_sym_POUNDline] = ACTIONS(2261), - [anon_sym_POUNDcolumn] = ACTIONS(2261), - [anon_sym_POUNDfunction] = ACTIONS(2261), - [anon_sym_POUNDdsohandle] = ACTIONS(2261), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2261), - [anon_sym_DASH_EQ] = ACTIONS(2261), - [anon_sym_STAR_EQ] = ACTIONS(2261), - [anon_sym_SLASH_EQ] = ACTIONS(2261), - [anon_sym_PERCENT_EQ] = ACTIONS(2261), - [anon_sym_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2261), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2261), - [anon_sym_LT_EQ] = ACTIONS(2261), - [anon_sym_GT_EQ] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_SLASH] = ACTIONS(2259), - [anon_sym_PERCENT] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_CARET] = ACTIONS(2259), - [anon_sym_LT_LT] = ACTIONS(2261), - [anon_sym_GT_GT] = ACTIONS(2261), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2261), - [sym__plus_then_ws] = ACTIONS(2261), - [sym__minus_then_ws] = ACTIONS(2261), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [553] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1240), - [sym_boolean_literal] = STATE(1240), - [sym__string_literal] = STATE(1240), - [sym_line_string_literal] = STATE(1240), - [sym_multi_line_string_literal] = STATE(1240), - [sym_raw_string_literal] = STATE(1240), - [sym_regex_literal] = STATE(1240), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1240), - [sym__unary_expression] = STATE(1240), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1240), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1240), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1240), - [sym_prefix_expression] = STATE(1240), - [sym_as_expression] = STATE(1240), - [sym_selector_expression] = STATE(1240), - [sym__binary_expression] = STATE(1240), - [sym_multiplicative_expression] = STATE(1240), - [sym_additive_expression] = STATE(1240), - [sym_range_expression] = STATE(1240), - [sym_infix_expression] = STATE(1240), - [sym_nil_coalescing_expression] = STATE(1240), - [sym_check_expression] = STATE(1240), - [sym_comparison_expression] = STATE(1240), - [sym_equality_expression] = STATE(1240), - [sym_conjunction_expression] = STATE(1240), - [sym_disjunction_expression] = STATE(1240), - [sym_bitwise_operation] = STATE(1240), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1240), - [sym_await_expression] = STATE(1240), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1240), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1240), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1240), - [sym_dictionary_literal] = STATE(1240), - [sym__special_literal] = STATE(1240), - [sym__playground_literal] = STATE(1240), - [sym_lambda_literal] = STATE(1240), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1240), - [sym_key_path_expression] = STATE(1240), - [sym_key_path_string_expression] = STATE(1240), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1240), - [sym__equality_operator] = STATE(1240), - [sym__comparison_operator] = STATE(1240), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1240), - [sym__multiplicative_operator] = STATE(1240), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1240), - [sym__referenceable_operator] = STATE(1240), - [sym__eq_eq] = STATE(1240), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2263), - [sym_real_literal] = ACTIONS(2265), - [sym_integer_literal] = ACTIONS(2263), - [sym_hex_literal] = ACTIONS(2265), - [sym_oct_literal] = ACTIONS(2265), - [sym_bin_literal] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2263), - [anon_sym_GT] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2263), - [anon_sym_POUNDfileID] = ACTIONS(2265), - [anon_sym_POUNDfilePath] = ACTIONS(2265), - [anon_sym_POUNDline] = ACTIONS(2265), - [anon_sym_POUNDcolumn] = ACTIONS(2265), - [anon_sym_POUNDfunction] = ACTIONS(2265), - [anon_sym_POUNDdsohandle] = ACTIONS(2265), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2265), - [anon_sym_DASH_EQ] = ACTIONS(2265), - [anon_sym_STAR_EQ] = ACTIONS(2265), - [anon_sym_SLASH_EQ] = ACTIONS(2265), - [anon_sym_PERCENT_EQ] = ACTIONS(2265), - [anon_sym_EQ] = ACTIONS(2263), - [anon_sym_BANG_EQ] = ACTIONS(2263), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2265), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2265), - [anon_sym_LT_EQ] = ACTIONS(2265), - [anon_sym_GT_EQ] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2263), - [anon_sym_SLASH] = ACTIONS(2263), - [anon_sym_PERCENT] = ACTIONS(2263), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_CARET] = ACTIONS(2263), - [anon_sym_LT_LT] = ACTIONS(2265), - [anon_sym_GT_GT] = ACTIONS(2265), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2265), - [sym__plus_then_ws] = ACTIONS(2265), - [sym__minus_then_ws] = ACTIONS(2265), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [554] = { - [sym_simple_identifier] = STATE(1784), - [sym__basic_literal] = STATE(1265), - [sym_boolean_literal] = STATE(1265), - [sym__string_literal] = STATE(1265), - [sym_line_string_literal] = STATE(1265), - [sym_multi_line_string_literal] = STATE(1265), - [sym_raw_string_literal] = STATE(1265), - [sym_regex_literal] = STATE(1265), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1265), - [sym__unary_expression] = STATE(1265), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1265), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1265), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1265), - [sym_prefix_expression] = STATE(1265), - [sym_as_expression] = STATE(1265), - [sym_selector_expression] = STATE(1265), - [sym__binary_expression] = STATE(1265), - [sym_multiplicative_expression] = STATE(1265), - [sym_additive_expression] = STATE(1265), - [sym_range_expression] = STATE(1265), - [sym_infix_expression] = STATE(1265), - [sym_nil_coalescing_expression] = STATE(1265), - [sym_check_expression] = STATE(1265), - [sym_comparison_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_conjunction_expression] = STATE(1265), - [sym_disjunction_expression] = STATE(1265), - [sym_bitwise_operation] = STATE(1265), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1265), - [sym_await_expression] = STATE(1265), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1265), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1265), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1265), - [sym_dictionary_literal] = STATE(1265), - [sym__special_literal] = STATE(1265), - [sym__playground_literal] = STATE(1265), - [sym_lambda_literal] = STATE(1265), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1265), - [sym_key_path_expression] = STATE(1265), - [sym_key_path_string_expression] = STATE(1265), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1265), - [sym__equality_operator] = STATE(1265), - [sym__comparison_operator] = STATE(1265), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1265), - [sym__multiplicative_operator] = STATE(1265), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1265), - [sym__referenceable_operator] = STATE(1265), - [sym__eq_eq] = STATE(1265), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(633), - [sym_real_literal] = ACTIONS(635), - [sym_integer_literal] = ACTIONS(633), - [sym_hex_literal] = ACTIONS(635), - [sym_oct_literal] = ACTIONS(635), - [sym_bin_literal] = ACTIONS(635), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(633), - [anon_sym_GT] = ACTIONS(633), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(633), - [anon_sym_POUNDfileID] = ACTIONS(635), - [anon_sym_POUNDfilePath] = ACTIONS(635), - [anon_sym_POUNDline] = ACTIONS(635), - [anon_sym_POUNDcolumn] = ACTIONS(635), - [anon_sym_POUNDfunction] = ACTIONS(635), - [anon_sym_POUNDdsohandle] = ACTIONS(635), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(635), - [anon_sym_DASH_EQ] = ACTIONS(635), - [anon_sym_STAR_EQ] = ACTIONS(635), - [anon_sym_SLASH_EQ] = ACTIONS(635), - [anon_sym_PERCENT_EQ] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(635), - [anon_sym_EQ_EQ_EQ] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_SLASH] = ACTIONS(633), - [anon_sym_PERCENT] = ACTIONS(633), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_CARET] = ACTIONS(633), - [anon_sym_LT_LT] = ACTIONS(635), - [anon_sym_GT_GT] = ACTIONS(635), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(635), - [sym__plus_then_ws] = ACTIONS(635), - [sym__minus_then_ws] = ACTIONS(635), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [555] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1351), - [sym_boolean_literal] = STATE(1351), - [sym__string_literal] = STATE(1351), - [sym_line_string_literal] = STATE(1351), - [sym_multi_line_string_literal] = STATE(1351), - [sym_raw_string_literal] = STATE(1351), - [sym_regex_literal] = STATE(1351), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1351), - [sym__unary_expression] = STATE(1351), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1351), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1351), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1351), - [sym_prefix_expression] = STATE(1351), - [sym_as_expression] = STATE(1351), - [sym_selector_expression] = STATE(1351), - [sym__binary_expression] = STATE(1351), - [sym_multiplicative_expression] = STATE(1351), - [sym_additive_expression] = STATE(1351), - [sym_range_expression] = STATE(1351), - [sym_infix_expression] = STATE(1351), - [sym_nil_coalescing_expression] = STATE(1351), - [sym_check_expression] = STATE(1351), - [sym_comparison_expression] = STATE(1351), - [sym_equality_expression] = STATE(1351), - [sym_conjunction_expression] = STATE(1351), - [sym_disjunction_expression] = STATE(1351), - [sym_bitwise_operation] = STATE(1351), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1351), - [sym_await_expression] = STATE(1351), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1351), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1351), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1351), - [sym_dictionary_literal] = STATE(1351), - [sym__special_literal] = STATE(1351), - [sym__playground_literal] = STATE(1351), - [sym_lambda_literal] = STATE(1351), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1351), - [sym_key_path_expression] = STATE(1351), - [sym_key_path_string_expression] = STATE(1351), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1351), - [sym__equality_operator] = STATE(1351), - [sym__comparison_operator] = STATE(1351), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1351), - [sym__multiplicative_operator] = STATE(1351), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1351), - [sym__referenceable_operator] = STATE(1351), - [sym__eq_eq] = STATE(1351), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2267), - [sym_real_literal] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2267), - [sym_hex_literal] = ACTIONS(2269), - [sym_oct_literal] = ACTIONS(2269), - [sym_bin_literal] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_GT] = ACTIONS(2267), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(2267), - [anon_sym_POUNDfileID] = ACTIONS(2269), - [anon_sym_POUNDfilePath] = ACTIONS(2269), - [anon_sym_POUNDline] = ACTIONS(2269), - [anon_sym_POUNDcolumn] = ACTIONS(2269), - [anon_sym_POUNDfunction] = ACTIONS(2269), - [anon_sym_POUNDdsohandle] = ACTIONS(2269), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(2269), - [anon_sym_DASH_EQ] = ACTIONS(2269), - [anon_sym_STAR_EQ] = ACTIONS(2269), - [anon_sym_SLASH_EQ] = ACTIONS(2269), - [anon_sym_PERCENT_EQ] = ACTIONS(2269), - [anon_sym_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2269), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2269), - [anon_sym_LT_EQ] = ACTIONS(2269), - [anon_sym_GT_EQ] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_SLASH] = ACTIONS(2267), - [anon_sym_PERCENT] = ACTIONS(2267), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2267), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_GT_GT] = ACTIONS(2269), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(2269), - [sym__plus_then_ws] = ACTIONS(2269), - [sym__minus_then_ws] = ACTIONS(2269), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [556] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1352), - [sym_boolean_literal] = STATE(1352), - [sym__string_literal] = STATE(1352), - [sym_line_string_literal] = STATE(1352), - [sym_multi_line_string_literal] = STATE(1352), - [sym_raw_string_literal] = STATE(1352), - [sym_regex_literal] = STATE(1352), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1352), - [sym__unary_expression] = STATE(1352), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1352), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1352), - [sym__range_operator] = STATE(551), - [sym_open_end_range_expression] = STATE(1352), - [sym_prefix_expression] = STATE(1352), - [sym_as_expression] = STATE(1352), - [sym_selector_expression] = STATE(1352), - [sym__binary_expression] = STATE(1352), - [sym_multiplicative_expression] = STATE(1352), - [sym_additive_expression] = STATE(1352), - [sym_range_expression] = STATE(1352), - [sym_infix_expression] = STATE(1352), - [sym_nil_coalescing_expression] = STATE(1352), - [sym_check_expression] = STATE(1352), - [sym_comparison_expression] = STATE(1352), - [sym_equality_expression] = STATE(1352), - [sym_conjunction_expression] = STATE(1352), - [sym_disjunction_expression] = STATE(1352), - [sym_bitwise_operation] = STATE(1352), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1352), - [sym_await_expression] = STATE(1352), - [sym__await_operator] = STATE(536), - [sym_ternary_expression] = STATE(1352), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1352), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1352), - [sym_dictionary_literal] = STATE(1352), - [sym__special_literal] = STATE(1352), - [sym__playground_literal] = STATE(1352), - [sym_lambda_literal] = STATE(1352), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1352), - [sym_key_path_expression] = STATE(1352), - [sym_key_path_string_expression] = STATE(1352), - [sym__try_operator] = STATE(492), - [sym__assignment_and_operator] = STATE(1352), - [sym__equality_operator] = STATE(1352), - [sym__comparison_operator] = STATE(1352), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(551), - [sym__additive_operator] = STATE(1352), - [sym__multiplicative_operator] = STATE(1352), - [sym__prefix_unary_operator] = STATE(460), - [sym_directly_assignable_expression] = STATE(4576), - [sym_assignment] = STATE(1352), - [sym__referenceable_operator] = STATE(1352), - [sym__eq_eq] = STATE(1352), - [sym__dot] = STATE(460), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2271), - [sym_real_literal] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2271), - [sym_hex_literal] = ACTIONS(2273), - [sym_oct_literal] = ACTIONS(2273), - [sym_bin_literal] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_GT] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(1253), - [anon_sym_POUNDfile] = ACTIONS(2271), - [anon_sym_POUNDfileID] = ACTIONS(2273), - [anon_sym_POUNDfilePath] = ACTIONS(2273), - [anon_sym_POUNDline] = ACTIONS(2273), - [anon_sym_POUNDcolumn] = ACTIONS(2273), - [anon_sym_POUNDfunction] = ACTIONS(2273), - [anon_sym_POUNDdsohandle] = ACTIONS(2273), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(1255), - [anon_sym_try_BANG] = ACTIONS(1257), - [anon_sym_try_QMARK] = ACTIONS(1257), - [anon_sym_PLUS_EQ] = ACTIONS(2273), - [anon_sym_DASH_EQ] = ACTIONS(2273), - [anon_sym_STAR_EQ] = ACTIONS(2273), - [anon_sym_SLASH_EQ] = ACTIONS(2273), - [anon_sym_PERCENT_EQ] = ACTIONS(2273), - [anon_sym_EQ] = ACTIONS(2271), - [anon_sym_BANG_EQ] = ACTIONS(2271), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2273), - [anon_sym_LT_EQ] = ACTIONS(2273), - [anon_sym_GT_EQ] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_SLASH] = ACTIONS(2271), - [anon_sym_PERCENT] = ACTIONS(2271), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_CARET] = ACTIONS(2271), - [anon_sym_LT_LT] = ACTIONS(2273), - [anon_sym_GT_GT] = ACTIONS(2273), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(1251), - [sym__eq_eq_custom] = ACTIONS(2273), - [sym__plus_then_ws] = ACTIONS(2273), - [sym__minus_then_ws] = ACTIONS(2273), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [557] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1236), - [sym_boolean_literal] = STATE(1236), - [sym__string_literal] = STATE(1236), - [sym_line_string_literal] = STATE(1236), - [sym_multi_line_string_literal] = STATE(1236), - [sym_raw_string_literal] = STATE(1236), - [sym_regex_literal] = STATE(1236), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1236), - [sym__unary_expression] = STATE(1236), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1236), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1236), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1236), - [sym_prefix_expression] = STATE(1236), - [sym_as_expression] = STATE(1236), - [sym_selector_expression] = STATE(1236), - [sym__binary_expression] = STATE(1236), - [sym_multiplicative_expression] = STATE(1236), - [sym_additive_expression] = STATE(1236), - [sym_range_expression] = STATE(1236), - [sym_infix_expression] = STATE(1236), - [sym_nil_coalescing_expression] = STATE(1236), - [sym_check_expression] = STATE(1236), - [sym_comparison_expression] = STATE(1236), - [sym_equality_expression] = STATE(1236), - [sym_conjunction_expression] = STATE(1236), - [sym_disjunction_expression] = STATE(1236), - [sym_bitwise_operation] = STATE(1236), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1236), - [sym_await_expression] = STATE(1236), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1236), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1236), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1236), - [sym_dictionary_literal] = STATE(1236), - [sym__special_literal] = STATE(1236), - [sym__playground_literal] = STATE(1236), - [sym_lambda_literal] = STATE(1236), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1236), - [sym_key_path_expression] = STATE(1236), - [sym_key_path_string_expression] = STATE(1236), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1236), - [sym__equality_operator] = STATE(1236), - [sym__comparison_operator] = STATE(1236), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1236), - [sym__multiplicative_operator] = STATE(1236), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1236), - [sym__referenceable_operator] = STATE(1236), - [sym__eq_eq] = STATE(1236), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2275), - [sym_real_literal] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2275), - [sym_hex_literal] = ACTIONS(2277), - [sym_oct_literal] = ACTIONS(2277), - [sym_bin_literal] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_GT] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2275), - [anon_sym_POUNDfileID] = ACTIONS(2277), - [anon_sym_POUNDfilePath] = ACTIONS(2277), - [anon_sym_POUNDline] = ACTIONS(2277), - [anon_sym_POUNDcolumn] = ACTIONS(2277), - [anon_sym_POUNDfunction] = ACTIONS(2277), - [anon_sym_POUNDdsohandle] = ACTIONS(2277), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2277), - [anon_sym_DASH_EQ] = ACTIONS(2277), - [anon_sym_STAR_EQ] = ACTIONS(2277), - [anon_sym_SLASH_EQ] = ACTIONS(2277), - [anon_sym_PERCENT_EQ] = ACTIONS(2277), - [anon_sym_EQ] = ACTIONS(2275), - [anon_sym_BANG_EQ] = ACTIONS(2275), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2277), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2277), - [anon_sym_LT_EQ] = ACTIONS(2277), - [anon_sym_GT_EQ] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_SLASH] = ACTIONS(2275), - [anon_sym_PERCENT] = ACTIONS(2275), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2277), - [anon_sym_CARET] = ACTIONS(2275), - [anon_sym_LT_LT] = ACTIONS(2277), - [anon_sym_GT_GT] = ACTIONS(2277), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2277), - [sym__plus_then_ws] = ACTIONS(2277), - [sym__minus_then_ws] = ACTIONS(2277), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [558] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1178), - [sym_boolean_literal] = STATE(1178), - [sym__string_literal] = STATE(1178), - [sym_line_string_literal] = STATE(1178), - [sym_multi_line_string_literal] = STATE(1178), - [sym_raw_string_literal] = STATE(1178), - [sym_regex_literal] = STATE(1178), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1178), - [sym__unary_expression] = STATE(1178), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1178), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1178), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1178), - [sym_prefix_expression] = STATE(1178), - [sym_as_expression] = STATE(1178), - [sym_selector_expression] = STATE(1178), - [sym__binary_expression] = STATE(1178), - [sym_multiplicative_expression] = STATE(1178), - [sym_additive_expression] = STATE(1178), - [sym_range_expression] = STATE(1178), - [sym_infix_expression] = STATE(1178), - [sym_nil_coalescing_expression] = STATE(1178), - [sym_check_expression] = STATE(1178), - [sym_comparison_expression] = STATE(1178), - [sym_equality_expression] = STATE(1178), - [sym_conjunction_expression] = STATE(1178), - [sym_disjunction_expression] = STATE(1178), - [sym_bitwise_operation] = STATE(1178), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1178), - [sym_await_expression] = STATE(1178), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1178), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1178), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1178), - [sym_dictionary_literal] = STATE(1178), - [sym__special_literal] = STATE(1178), - [sym__playground_literal] = STATE(1178), - [sym_lambda_literal] = STATE(1178), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1178), - [sym_key_path_expression] = STATE(1178), - [sym_key_path_string_expression] = STATE(1178), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1178), - [sym__equality_operator] = STATE(1178), - [sym__comparison_operator] = STATE(1178), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1178), - [sym__multiplicative_operator] = STATE(1178), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1178), - [sym__referenceable_operator] = STATE(1178), - [sym__eq_eq] = STATE(1178), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2279), - [sym_real_literal] = ACTIONS(2281), - [sym_integer_literal] = ACTIONS(2279), - [sym_hex_literal] = ACTIONS(2281), - [sym_oct_literal] = ACTIONS(2281), - [sym_bin_literal] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_GT] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2279), - [anon_sym_POUNDfileID] = ACTIONS(2281), - [anon_sym_POUNDfilePath] = ACTIONS(2281), - [anon_sym_POUNDline] = ACTIONS(2281), - [anon_sym_POUNDcolumn] = ACTIONS(2281), - [anon_sym_POUNDfunction] = ACTIONS(2281), - [anon_sym_POUNDdsohandle] = ACTIONS(2281), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2281), - [anon_sym_DASH_EQ] = ACTIONS(2281), - [anon_sym_STAR_EQ] = ACTIONS(2281), - [anon_sym_SLASH_EQ] = ACTIONS(2281), - [anon_sym_PERCENT_EQ] = ACTIONS(2281), - [anon_sym_EQ] = ACTIONS(2279), - [anon_sym_BANG_EQ] = ACTIONS(2279), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2281), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2281), - [anon_sym_LT_EQ] = ACTIONS(2281), - [anon_sym_GT_EQ] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_SLASH] = ACTIONS(2279), - [anon_sym_PERCENT] = ACTIONS(2279), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_CARET] = ACTIONS(2279), - [anon_sym_LT_LT] = ACTIONS(2281), - [anon_sym_GT_GT] = ACTIONS(2281), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2281), - [sym__plus_then_ws] = ACTIONS(2281), - [sym__minus_then_ws] = ACTIONS(2281), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [559] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(618), - [sym_boolean_literal] = STATE(618), - [sym__string_literal] = STATE(618), - [sym_line_string_literal] = STATE(618), - [sym_multi_line_string_literal] = STATE(618), - [sym_raw_string_literal] = STATE(618), - [sym_regex_literal] = STATE(618), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(618), - [sym__unary_expression] = STATE(618), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(618), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(618), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(618), - [sym_prefix_expression] = STATE(618), - [sym_as_expression] = STATE(618), - [sym_selector_expression] = STATE(618), - [sym__binary_expression] = STATE(618), - [sym_multiplicative_expression] = STATE(618), - [sym_additive_expression] = STATE(618), - [sym_range_expression] = STATE(618), - [sym_infix_expression] = STATE(618), - [sym_nil_coalescing_expression] = STATE(618), - [sym_check_expression] = STATE(618), - [sym_comparison_expression] = STATE(618), - [sym_equality_expression] = STATE(618), - [sym_conjunction_expression] = STATE(618), - [sym_disjunction_expression] = STATE(618), - [sym_bitwise_operation] = STATE(618), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(618), - [sym_await_expression] = STATE(618), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(618), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(618), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(618), - [sym_dictionary_literal] = STATE(618), - [sym__special_literal] = STATE(618), - [sym__playground_literal] = STATE(618), - [sym_lambda_literal] = STATE(618), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(618), - [sym_key_path_expression] = STATE(618), - [sym_key_path_string_expression] = STATE(618), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(618), - [sym__equality_operator] = STATE(618), - [sym__comparison_operator] = STATE(618), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(618), - [sym__multiplicative_operator] = STATE(618), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(618), - [sym__referenceable_operator] = STATE(618), - [sym__eq_eq] = STATE(618), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2283), - [sym_real_literal] = ACTIONS(2285), - [sym_integer_literal] = ACTIONS(2283), - [sym_hex_literal] = ACTIONS(2285), - [sym_oct_literal] = ACTIONS(2285), - [sym_bin_literal] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_GT] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2283), - [anon_sym_POUNDfileID] = ACTIONS(2285), - [anon_sym_POUNDfilePath] = ACTIONS(2285), - [anon_sym_POUNDline] = ACTIONS(2285), - [anon_sym_POUNDcolumn] = ACTIONS(2285), - [anon_sym_POUNDfunction] = ACTIONS(2285), - [anon_sym_POUNDdsohandle] = ACTIONS(2285), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2285), - [anon_sym_DASH_EQ] = ACTIONS(2285), - [anon_sym_STAR_EQ] = ACTIONS(2285), - [anon_sym_SLASH_EQ] = ACTIONS(2285), - [anon_sym_PERCENT_EQ] = ACTIONS(2285), - [anon_sym_EQ] = ACTIONS(2283), - [anon_sym_BANG_EQ] = ACTIONS(2283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), - [anon_sym_LT_EQ] = ACTIONS(2285), - [anon_sym_GT_EQ] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2283), - [anon_sym_SLASH] = ACTIONS(2283), - [anon_sym_PERCENT] = ACTIONS(2283), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_CARET] = ACTIONS(2283), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_GT_GT] = ACTIONS(2285), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2285), - [sym__plus_then_ws] = ACTIONS(2285), - [sym__minus_then_ws] = ACTIONS(2285), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [560] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(623), - [sym_boolean_literal] = STATE(623), - [sym__string_literal] = STATE(623), - [sym_line_string_literal] = STATE(623), - [sym_multi_line_string_literal] = STATE(623), - [sym_raw_string_literal] = STATE(623), - [sym_regex_literal] = STATE(623), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(623), - [sym__unary_expression] = STATE(623), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(623), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(623), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(623), - [sym_prefix_expression] = STATE(623), - [sym_as_expression] = STATE(623), - [sym_selector_expression] = STATE(623), - [sym__binary_expression] = STATE(623), - [sym_multiplicative_expression] = STATE(623), - [sym_additive_expression] = STATE(623), - [sym_range_expression] = STATE(623), - [sym_infix_expression] = STATE(623), - [sym_nil_coalescing_expression] = STATE(623), - [sym_check_expression] = STATE(623), - [sym_comparison_expression] = STATE(623), - [sym_equality_expression] = STATE(623), - [sym_conjunction_expression] = STATE(623), - [sym_disjunction_expression] = STATE(623), - [sym_bitwise_operation] = STATE(623), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(623), - [sym_await_expression] = STATE(623), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(623), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(623), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(623), - [sym_dictionary_literal] = STATE(623), - [sym__special_literal] = STATE(623), - [sym__playground_literal] = STATE(623), - [sym_lambda_literal] = STATE(623), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(623), - [sym_key_path_expression] = STATE(623), - [sym_key_path_string_expression] = STATE(623), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(623), - [sym__equality_operator] = STATE(623), - [sym__comparison_operator] = STATE(623), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(623), - [sym__multiplicative_operator] = STATE(623), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(623), - [sym__referenceable_operator] = STATE(623), - [sym__eq_eq] = STATE(623), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2287), - [sym_real_literal] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2287), - [sym_hex_literal] = ACTIONS(2289), - [sym_oct_literal] = ACTIONS(2289), - [sym_bin_literal] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2287), - [anon_sym_POUNDfileID] = ACTIONS(2289), - [anon_sym_POUNDfilePath] = ACTIONS(2289), - [anon_sym_POUNDline] = ACTIONS(2289), - [anon_sym_POUNDcolumn] = ACTIONS(2289), - [anon_sym_POUNDfunction] = ACTIONS(2289), - [anon_sym_POUNDdsohandle] = ACTIONS(2289), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2289), - [anon_sym_DASH_EQ] = ACTIONS(2289), - [anon_sym_STAR_EQ] = ACTIONS(2289), - [anon_sym_SLASH_EQ] = ACTIONS(2289), - [anon_sym_PERCENT_EQ] = ACTIONS(2289), - [anon_sym_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2289), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2289), - [sym__plus_then_ws] = ACTIONS(2289), - [sym__minus_then_ws] = ACTIONS(2289), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [561] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(620), - [sym_boolean_literal] = STATE(620), - [sym__string_literal] = STATE(620), - [sym_line_string_literal] = STATE(620), - [sym_multi_line_string_literal] = STATE(620), - [sym_raw_string_literal] = STATE(620), - [sym_regex_literal] = STATE(620), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(620), - [sym__unary_expression] = STATE(620), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(620), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(620), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(620), - [sym_prefix_expression] = STATE(620), - [sym_as_expression] = STATE(620), - [sym_selector_expression] = STATE(620), - [sym__binary_expression] = STATE(620), - [sym_multiplicative_expression] = STATE(620), - [sym_additive_expression] = STATE(620), - [sym_range_expression] = STATE(620), - [sym_infix_expression] = STATE(620), - [sym_nil_coalescing_expression] = STATE(620), - [sym_check_expression] = STATE(620), - [sym_comparison_expression] = STATE(620), - [sym_equality_expression] = STATE(620), - [sym_conjunction_expression] = STATE(620), - [sym_disjunction_expression] = STATE(620), - [sym_bitwise_operation] = STATE(620), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(620), - [sym_await_expression] = STATE(620), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(620), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(620), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(620), - [sym_dictionary_literal] = STATE(620), - [sym__special_literal] = STATE(620), - [sym__playground_literal] = STATE(620), - [sym_lambda_literal] = STATE(620), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(620), - [sym_key_path_expression] = STATE(620), - [sym_key_path_string_expression] = STATE(620), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(620), - [sym__equality_operator] = STATE(620), - [sym__comparison_operator] = STATE(620), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(620), - [sym__multiplicative_operator] = STATE(620), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(620), - [sym__referenceable_operator] = STATE(620), - [sym__eq_eq] = STATE(620), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2291), - [sym_real_literal] = ACTIONS(2293), - [sym_integer_literal] = ACTIONS(2291), - [sym_hex_literal] = ACTIONS(2293), - [sym_oct_literal] = ACTIONS(2293), - [sym_bin_literal] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2291), - [anon_sym_GT] = ACTIONS(2291), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2291), - [anon_sym_POUNDfileID] = ACTIONS(2293), - [anon_sym_POUNDfilePath] = ACTIONS(2293), - [anon_sym_POUNDline] = ACTIONS(2293), - [anon_sym_POUNDcolumn] = ACTIONS(2293), - [anon_sym_POUNDfunction] = ACTIONS(2293), - [anon_sym_POUNDdsohandle] = ACTIONS(2293), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2293), - [anon_sym_DASH_EQ] = ACTIONS(2293), - [anon_sym_STAR_EQ] = ACTIONS(2293), - [anon_sym_SLASH_EQ] = ACTIONS(2293), - [anon_sym_PERCENT_EQ] = ACTIONS(2293), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_BANG_EQ] = ACTIONS(2291), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2293), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2293), - [anon_sym_LT_EQ] = ACTIONS(2293), - [anon_sym_GT_EQ] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_SLASH] = ACTIONS(2291), - [anon_sym_PERCENT] = ACTIONS(2291), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_CARET] = ACTIONS(2291), - [anon_sym_LT_LT] = ACTIONS(2293), - [anon_sym_GT_GT] = ACTIONS(2293), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2293), - [sym__plus_then_ws] = ACTIONS(2293), - [sym__minus_then_ws] = ACTIONS(2293), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [562] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1234), - [sym_boolean_literal] = STATE(1234), - [sym__string_literal] = STATE(1234), - [sym_line_string_literal] = STATE(1234), - [sym_multi_line_string_literal] = STATE(1234), - [sym_raw_string_literal] = STATE(1234), - [sym_regex_literal] = STATE(1234), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(1234), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1234), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1234), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1234), - [sym_prefix_expression] = STATE(1234), - [sym_as_expression] = STATE(1234), - [sym_selector_expression] = STATE(1234), - [sym__binary_expression] = STATE(1234), - [sym_multiplicative_expression] = STATE(1234), - [sym_additive_expression] = STATE(1234), - [sym_range_expression] = STATE(1234), - [sym_infix_expression] = STATE(1234), - [sym_nil_coalescing_expression] = STATE(1234), - [sym_check_expression] = STATE(1234), - [sym_comparison_expression] = STATE(1234), - [sym_equality_expression] = STATE(1234), - [sym_conjunction_expression] = STATE(1234), - [sym_disjunction_expression] = STATE(1234), - [sym_bitwise_operation] = STATE(1234), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1234), - [sym_await_expression] = STATE(1234), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1234), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1234), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1234), - [sym_dictionary_literal] = STATE(1234), - [sym__special_literal] = STATE(1234), - [sym__playground_literal] = STATE(1234), - [sym_lambda_literal] = STATE(1234), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1234), - [sym_key_path_expression] = STATE(1234), - [sym_key_path_string_expression] = STATE(1234), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1234), - [sym__equality_operator] = STATE(1234), - [sym__comparison_operator] = STATE(1234), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1234), - [sym__multiplicative_operator] = STATE(1234), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1234), - [sym__referenceable_operator] = STATE(1234), - [sym__eq_eq] = STATE(1234), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2295), - [sym_real_literal] = ACTIONS(2297), - [sym_integer_literal] = ACTIONS(2295), - [sym_hex_literal] = ACTIONS(2297), - [sym_oct_literal] = ACTIONS(2297), - [sym_bin_literal] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2295), - [anon_sym_GT] = ACTIONS(2295), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2295), - [anon_sym_POUNDfileID] = ACTIONS(2297), - [anon_sym_POUNDfilePath] = ACTIONS(2297), - [anon_sym_POUNDline] = ACTIONS(2297), - [anon_sym_POUNDcolumn] = ACTIONS(2297), - [anon_sym_POUNDfunction] = ACTIONS(2297), - [anon_sym_POUNDdsohandle] = ACTIONS(2297), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2297), - [anon_sym_DASH_EQ] = ACTIONS(2297), - [anon_sym_STAR_EQ] = ACTIONS(2297), - [anon_sym_SLASH_EQ] = ACTIONS(2297), - [anon_sym_PERCENT_EQ] = ACTIONS(2297), - [anon_sym_EQ] = ACTIONS(2295), - [anon_sym_BANG_EQ] = ACTIONS(2295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_SLASH] = ACTIONS(2295), - [anon_sym_PERCENT] = ACTIONS(2295), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2295), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2297), - [sym__plus_then_ws] = ACTIONS(2297), - [sym__minus_then_ws] = ACTIONS(2297), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [563] = { - [sym_simple_identifier] = STATE(1792), - [sym__basic_literal] = STATE(1232), - [sym_boolean_literal] = STATE(1232), - [sym__string_literal] = STATE(1232), - [sym_line_string_literal] = STATE(1232), - [sym_multi_line_string_literal] = STATE(1232), - [sym_raw_string_literal] = STATE(1232), - [sym_regex_literal] = STATE(1232), - [sym__multiline_regex_literal] = STATE(2570), - [sym_user_type] = STATE(4411), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4411), - [sym_dictionary_type] = STATE(4411), - [sym__expression] = STATE(1232), - [sym__unary_expression] = STATE(1232), - [sym_postfix_expression] = STATE(1918), - [sym_constructor_expression] = STATE(1232), - [sym_navigation_expression] = STATE(1918), - [sym__navigable_type_expression] = STATE(5864), - [sym_open_start_range_expression] = STATE(1232), - [sym__range_operator] = STATE(522), - [sym_open_end_range_expression] = STATE(1232), - [sym_prefix_expression] = STATE(1232), - [sym_as_expression] = STATE(1232), - [sym_selector_expression] = STATE(1232), - [sym__binary_expression] = STATE(1232), - [sym_multiplicative_expression] = STATE(1232), - [sym_additive_expression] = STATE(1232), - [sym_range_expression] = STATE(1232), - [sym_infix_expression] = STATE(1232), - [sym_nil_coalescing_expression] = STATE(1232), - [sym_check_expression] = STATE(1232), - [sym_comparison_expression] = STATE(1232), - [sym_equality_expression] = STATE(1232), - [sym_conjunction_expression] = STATE(1232), - [sym_disjunction_expression] = STATE(1232), - [sym_bitwise_operation] = STATE(1232), - [sym_custom_operator] = STATE(806), - [sym_try_expression] = STATE(1232), - [sym_await_expression] = STATE(1232), - [sym__await_operator] = STATE(529), - [sym_ternary_expression] = STATE(1232), - [sym_call_expression] = STATE(1918), - [sym__primary_expression] = STATE(1232), - [sym_tuple_expression] = STATE(1928), - [sym_array_literal] = STATE(1232), - [sym_dictionary_literal] = STATE(1232), - [sym__special_literal] = STATE(1232), - [sym__playground_literal] = STATE(1232), - [sym_lambda_literal] = STATE(1232), - [sym_self_expression] = STATE(1928), - [sym_super_expression] = STATE(1232), - [sym_key_path_expression] = STATE(1232), - [sym_key_path_string_expression] = STATE(1232), - [sym__try_operator] = STATE(501), - [sym__assignment_and_operator] = STATE(1232), - [sym__equality_operator] = STATE(1232), - [sym__comparison_operator] = STATE(1232), - [sym__three_dot_operator] = STATE(810), - [sym__open_ended_range_operator] = STATE(522), - [sym__additive_operator] = STATE(1232), - [sym__multiplicative_operator] = STATE(1232), - [sym__prefix_unary_operator] = STATE(400), - [sym_directly_assignable_expression] = STATE(4574), - [sym_assignment] = STATE(1232), - [sym__referenceable_operator] = STATE(1232), - [sym__eq_eq] = STATE(1232), - [sym__dot] = STATE(400), - [aux_sym_raw_string_literal_repeat1] = STATE(5870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(755), - [aux_sym_simple_identifier_token2] = ACTIONS(757), - [aux_sym_simple_identifier_token3] = ACTIONS(757), - [aux_sym_simple_identifier_token4] = ACTIONS(757), - [anon_sym_actor] = ACTIONS(755), - [anon_sym_nil] = ACTIONS(2299), - [sym_real_literal] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2299), - [sym_hex_literal] = ACTIONS(2301), - [sym_oct_literal] = ACTIONS(2301), - [sym_bin_literal] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(763), - [anon_sym_false] = ACTIONS(763), - [anon_sym_DQUOTE] = ACTIONS(765), - [anon_sym_BSLASH] = ACTIONS(767), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(769), - [sym__extended_regex_literal] = ACTIONS(771), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(773), - [sym__oneline_regex_literal] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(783), - [anon_sym_POUNDselector] = ACTIONS(785), - [aux_sym_custom_operator_token1] = ACTIONS(787), - [anon_sym_LT] = ACTIONS(2299), - [anon_sym_GT] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_POUNDfile] = ACTIONS(2299), - [anon_sym_POUNDfileID] = ACTIONS(2301), - [anon_sym_POUNDfilePath] = ACTIONS(2301), - [anon_sym_POUNDline] = ACTIONS(2301), - [anon_sym_POUNDcolumn] = ACTIONS(2301), - [anon_sym_POUNDfunction] = ACTIONS(2301), - [anon_sym_POUNDdsohandle] = ACTIONS(2301), - [anon_sym_POUNDcolorLiteral] = ACTIONS(791), - [anon_sym_POUNDfileLiteral] = ACTIONS(791), - [anon_sym_POUNDimageLiteral] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_CARET_LBRACE] = ACTIONS(793), - [anon_sym_self] = ACTIONS(795), - [anon_sym_super] = ACTIONS(797), - [anon_sym_POUNDkeyPath] = ACTIONS(801), - [anon_sym_try] = ACTIONS(1335), - [anon_sym_try_BANG] = ACTIONS(1337), - [anon_sym_try_QMARK] = ACTIONS(1337), - [anon_sym_PLUS_EQ] = ACTIONS(2301), - [anon_sym_DASH_EQ] = ACTIONS(2301), - [anon_sym_STAR_EQ] = ACTIONS(2301), - [anon_sym_SLASH_EQ] = ACTIONS(2301), - [anon_sym_PERCENT_EQ] = ACTIONS(2301), - [anon_sym_EQ] = ACTIONS(2299), - [anon_sym_BANG_EQ] = ACTIONS(2299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2301), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2301), - [anon_sym_LT_EQ] = ACTIONS(2301), - [anon_sym_GT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(2299), - [anon_sym_SLASH] = ACTIONS(2299), - [anon_sym_PERCENT] = ACTIONS(2299), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PIPE] = ACTIONS(2301), - [anon_sym_CARET] = ACTIONS(2299), - [anon_sym_LT_LT] = ACTIONS(2301), - [anon_sym_GT_GT] = ACTIONS(2301), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(819), - [sym__dot_custom] = ACTIONS(1331), - [sym__eq_eq_custom] = ACTIONS(2301), - [sym__plus_then_ws] = ACTIONS(2301), - [sym__minus_then_ws] = ACTIONS(2301), - [sym_bang] = ACTIONS(815), - [sym__custom_operator] = ACTIONS(787), - }, - [564] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(633), - [sym_boolean_literal] = STATE(633), - [sym__string_literal] = STATE(633), - [sym_line_string_literal] = STATE(633), - [sym_multi_line_string_literal] = STATE(633), - [sym_raw_string_literal] = STATE(633), - [sym_regex_literal] = STATE(633), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(633), - [sym__unary_expression] = STATE(633), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(633), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(633), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(633), - [sym_prefix_expression] = STATE(633), - [sym_as_expression] = STATE(633), - [sym_selector_expression] = STATE(633), - [sym__binary_expression] = STATE(633), - [sym_multiplicative_expression] = STATE(633), - [sym_additive_expression] = STATE(633), - [sym_range_expression] = STATE(633), - [sym_infix_expression] = STATE(633), - [sym_nil_coalescing_expression] = STATE(633), - [sym_check_expression] = STATE(633), - [sym_comparison_expression] = STATE(633), - [sym_equality_expression] = STATE(633), - [sym_conjunction_expression] = STATE(633), - [sym_disjunction_expression] = STATE(633), - [sym_bitwise_operation] = STATE(633), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(633), - [sym_await_expression] = STATE(633), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(1107), - [sym_call_expression] = STATE(909), - [sym__primary_expression] = STATE(633), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(633), - [sym_dictionary_literal] = STATE(633), - [sym__special_literal] = STATE(633), - [sym__playground_literal] = STATE(633), - [sym_lambda_literal] = STATE(633), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(633), - [sym_key_path_expression] = STATE(633), - [sym_key_path_string_expression] = STATE(633), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(633), - [sym__equality_operator] = STATE(633), - [sym__comparison_operator] = STATE(633), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(633), - [sym__multiplicative_operator] = STATE(633), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(633), - [sym__referenceable_operator] = STATE(633), - [sym__eq_eq] = STATE(633), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2303), - [sym_real_literal] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2303), - [sym_hex_literal] = ACTIONS(2305), - [sym_oct_literal] = ACTIONS(2305), - [sym_bin_literal] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_GT] = ACTIONS(2303), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2303), - [anon_sym_POUNDfileID] = ACTIONS(2305), - [anon_sym_POUNDfilePath] = ACTIONS(2305), - [anon_sym_POUNDline] = ACTIONS(2305), - [anon_sym_POUNDcolumn] = ACTIONS(2305), - [anon_sym_POUNDfunction] = ACTIONS(2305), - [anon_sym_POUNDdsohandle] = ACTIONS(2305), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2305), - [anon_sym_DASH_EQ] = ACTIONS(2305), - [anon_sym_STAR_EQ] = ACTIONS(2305), - [anon_sym_SLASH_EQ] = ACTIONS(2305), - [anon_sym_PERCENT_EQ] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(2303), - [anon_sym_BANG_EQ] = ACTIONS(2303), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2305), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2305), - [anon_sym_LT_EQ] = ACTIONS(2305), - [anon_sym_GT_EQ] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2303), - [anon_sym_SLASH] = ACTIONS(2303), - [anon_sym_PERCENT] = ACTIONS(2303), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_CARET] = ACTIONS(2303), - [anon_sym_LT_LT] = ACTIONS(2305), - [anon_sym_GT_GT] = ACTIONS(2305), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2305), - [sym__plus_then_ws] = ACTIONS(2305), - [sym__minus_then_ws] = ACTIONS(2305), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [565] = { - [sym_simple_identifier] = STATE(905), - [sym__basic_literal] = STATE(632), - [sym_boolean_literal] = STATE(632), - [sym__string_literal] = STATE(632), - [sym_line_string_literal] = STATE(632), - [sym_multi_line_string_literal] = STATE(632), - [sym_raw_string_literal] = STATE(632), - [sym_regex_literal] = STATE(632), - [sym__multiline_regex_literal] = STATE(1135), - [sym_user_type] = STATE(4450), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4450), - [sym_dictionary_type] = STATE(4450), - [sym__expression] = STATE(632), - [sym__unary_expression] = STATE(632), - [sym_postfix_expression] = STATE(929), - [sym_constructor_expression] = STATE(632), - [sym_navigation_expression] = STATE(929), - [sym__navigable_type_expression] = STATE(5455), - [sym_open_start_range_expression] = STATE(632), - [sym__range_operator] = STATE(560), - [sym_open_end_range_expression] = STATE(632), - [sym_prefix_expression] = STATE(632), - [sym_as_expression] = STATE(632), - [sym_selector_expression] = STATE(632), - [sym__binary_expression] = STATE(632), - [sym_multiplicative_expression] = STATE(632), - [sym_additive_expression] = STATE(632), - [sym_range_expression] = STATE(632), - [sym_infix_expression] = STATE(632), - [sym_nil_coalescing_expression] = STATE(632), - [sym_check_expression] = STATE(632), - [sym_comparison_expression] = STATE(632), - [sym_equality_expression] = STATE(632), - [sym_conjunction_expression] = STATE(632), - [sym_disjunction_expression] = STATE(632), - [sym_bitwise_operation] = STATE(632), - [sym_custom_operator] = STATE(582), - [sym_try_expression] = STATE(632), - [sym_await_expression] = STATE(632), - [sym__await_operator] = STATE(564), - [sym_ternary_expression] = STATE(632), - [sym_call_expression] = STATE(929), - [sym__primary_expression] = STATE(632), - [sym_tuple_expression] = STATE(928), - [sym_array_literal] = STATE(632), - [sym_dictionary_literal] = STATE(632), - [sym__special_literal] = STATE(632), - [sym__playground_literal] = STATE(632), - [sym_lambda_literal] = STATE(632), - [sym_self_expression] = STATE(928), - [sym_super_expression] = STATE(632), - [sym_key_path_expression] = STATE(632), - [sym_key_path_string_expression] = STATE(632), - [sym__try_operator] = STATE(539), - [sym__assignment_and_operator] = STATE(632), - [sym__equality_operator] = STATE(632), - [sym__comparison_operator] = STATE(632), - [sym__three_dot_operator] = STATE(583), - [sym__open_ended_range_operator] = STATE(560), - [sym__additive_operator] = STATE(632), - [sym__multiplicative_operator] = STATE(632), - [sym__prefix_unary_operator] = STATE(525), - [sym_directly_assignable_expression] = STATE(4622), - [sym_assignment] = STATE(632), - [sym__referenceable_operator] = STATE(632), - [sym__eq_eq] = STATE(632), - [sym__dot] = STATE(525), - [aux_sym_raw_string_literal_repeat1] = STATE(5250), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(205), - [aux_sym_simple_identifier_token2] = ACTIONS(207), - [aux_sym_simple_identifier_token3] = ACTIONS(207), - [aux_sym_simple_identifier_token4] = ACTIONS(207), - [anon_sym_actor] = ACTIONS(205), - [anon_sym_nil] = ACTIONS(2307), - [sym_real_literal] = ACTIONS(2309), - [sym_integer_literal] = ACTIONS(2307), - [sym_hex_literal] = ACTIONS(2309), - [sym_oct_literal] = ACTIONS(2309), - [sym_bin_literal] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [anon_sym_DQUOTE] = ACTIONS(217), - [anon_sym_BSLASH] = ACTIONS(219), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(221), - [sym__extended_regex_literal] = ACTIONS(223), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(225), - [sym__oneline_regex_literal] = ACTIONS(227), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(233), - [anon_sym_async] = ACTIONS(547), - [anon_sym_POUNDselector] = ACTIONS(237), - [aux_sym_custom_operator_token1] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(2307), - [anon_sym_GT] = ACTIONS(2307), - [anon_sym_await] = ACTIONS(241), - [anon_sym_POUNDfile] = ACTIONS(2307), - [anon_sym_POUNDfileID] = ACTIONS(2309), - [anon_sym_POUNDfilePath] = ACTIONS(2309), - [anon_sym_POUNDline] = ACTIONS(2309), - [anon_sym_POUNDcolumn] = ACTIONS(2309), - [anon_sym_POUNDfunction] = ACTIONS(2309), - [anon_sym_POUNDdsohandle] = ACTIONS(2309), - [anon_sym_POUNDcolorLiteral] = ACTIONS(243), - [anon_sym_POUNDfileLiteral] = ACTIONS(243), - [anon_sym_POUNDimageLiteral] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(245), - [anon_sym_CARET_LBRACE] = ACTIONS(245), - [anon_sym_self] = ACTIONS(249), - [anon_sym_super] = ACTIONS(251), - [anon_sym_POUNDkeyPath] = ACTIONS(263), - [anon_sym_try] = ACTIONS(265), - [anon_sym_try_BANG] = ACTIONS(267), - [anon_sym_try_QMARK] = ACTIONS(267), - [anon_sym_PLUS_EQ] = ACTIONS(2309), - [anon_sym_DASH_EQ] = ACTIONS(2309), - [anon_sym_STAR_EQ] = ACTIONS(2309), - [anon_sym_SLASH_EQ] = ACTIONS(2309), - [anon_sym_PERCENT_EQ] = ACTIONS(2309), - [anon_sym_EQ] = ACTIONS(2307), - [anon_sym_BANG_EQ] = ACTIONS(2307), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2309), - [anon_sym_LT_EQ] = ACTIONS(2309), - [anon_sym_GT_EQ] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(273), - [anon_sym_STAR] = ACTIONS(2307), - [anon_sym_SLASH] = ACTIONS(2307), - [anon_sym_PERCENT] = ACTIONS(2307), - [anon_sym_PLUS_PLUS] = ACTIONS(275), - [anon_sym_DASH_DASH] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_CARET] = ACTIONS(2307), - [anon_sym_LT_LT] = ACTIONS(2309), - [anon_sym_GT_GT] = ACTIONS(2309), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(299), - [sym__dot_custom] = ACTIONS(233), - [sym__eq_eq_custom] = ACTIONS(2309), - [sym__plus_then_ws] = ACTIONS(2309), - [sym__minus_then_ws] = ACTIONS(2309), - [sym_bang] = ACTIONS(275), - [sym__custom_operator] = ACTIONS(239), - }, - [566] = { - [sym_simple_identifier] = STATE(649), - [sym__basic_literal] = STATE(1164), - [sym_boolean_literal] = STATE(1164), - [sym__string_literal] = STATE(1164), - [sym_line_string_literal] = STATE(1164), - [sym_multi_line_string_literal] = STATE(1164), - [sym_raw_string_literal] = STATE(1164), - [sym_regex_literal] = STATE(1164), - [sym__multiline_regex_literal] = STATE(736), - [sym_user_type] = STATE(4418), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4418), - [sym_dictionary_type] = STATE(4418), - [sym__expression] = STATE(1164), - [sym__unary_expression] = STATE(1164), - [sym_postfix_expression] = STATE(676), - [sym_constructor_expression] = STATE(1164), - [sym_navigation_expression] = STATE(676), - [sym__navigable_type_expression] = STATE(5459), - [sym_open_start_range_expression] = STATE(1164), - [sym__range_operator] = STATE(363), - [sym_open_end_range_expression] = STATE(1164), - [sym_prefix_expression] = STATE(1164), - [sym_as_expression] = STATE(1164), - [sym_selector_expression] = STATE(1164), - [sym__binary_expression] = STATE(1164), - [sym_multiplicative_expression] = STATE(1164), - [sym_additive_expression] = STATE(1164), - [sym_range_expression] = STATE(1164), - [sym_infix_expression] = STATE(1164), - [sym_nil_coalescing_expression] = STATE(1164), - [sym_check_expression] = STATE(1164), - [sym_comparison_expression] = STATE(1164), - [sym_equality_expression] = STATE(1164), - [sym_conjunction_expression] = STATE(1164), - [sym_disjunction_expression] = STATE(1164), - [sym_bitwise_operation] = STATE(1164), - [sym_custom_operator] = STATE(787), - [sym_try_expression] = STATE(1164), - [sym_await_expression] = STATE(1164), - [sym__await_operator] = STATE(489), - [sym_ternary_expression] = STATE(1164), - [sym_call_expression] = STATE(676), - [sym__primary_expression] = STATE(1164), - [sym_tuple_expression] = STATE(674), - [sym_array_literal] = STATE(1164), - [sym_dictionary_literal] = STATE(1164), - [sym__special_literal] = STATE(1164), - [sym__playground_literal] = STATE(1164), - [sym_lambda_literal] = STATE(1164), - [sym_self_expression] = STATE(674), - [sym_super_expression] = STATE(1164), - [sym_key_path_expression] = STATE(1164), - [sym_key_path_string_expression] = STATE(1164), - [sym__try_operator] = STATE(491), - [sym__assignment_and_operator] = STATE(1164), - [sym__equality_operator] = STATE(1164), - [sym__comparison_operator] = STATE(1164), - [sym__three_dot_operator] = STATE(786), - [sym__open_ended_range_operator] = STATE(363), - [sym__additive_operator] = STATE(1164), - [sym__multiplicative_operator] = STATE(1164), - [sym__prefix_unary_operator] = STATE(498), - [sym_directly_assignable_expression] = STATE(4549), - [sym_assignment] = STATE(1164), - [sym__referenceable_operator] = STATE(1164), - [sym__eq_eq] = STATE(1164), - [sym__dot] = STATE(498), - [aux_sym_raw_string_literal_repeat1] = STATE(5463), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(731), - [aux_sym_simple_identifier_token2] = ACTIONS(733), - [aux_sym_simple_identifier_token3] = ACTIONS(733), - [aux_sym_simple_identifier_token4] = ACTIONS(733), - [anon_sym_actor] = ACTIONS(731), - [anon_sym_nil] = ACTIONS(2311), - [sym_real_literal] = ACTIONS(2313), - [sym_integer_literal] = ACTIONS(2311), - [sym_hex_literal] = ACTIONS(2313), - [sym_oct_literal] = ACTIONS(2313), - [sym_bin_literal] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(561), - [anon_sym_false] = ACTIONS(561), - [anon_sym_DQUOTE] = ACTIONS(563), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(567), - [sym__extended_regex_literal] = ACTIONS(571), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(573), - [sym__oneline_regex_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(741), - [anon_sym_AMP] = ACTIONS(589), - [anon_sym_async] = ACTIONS(591), - [anon_sym_POUNDselector] = ACTIONS(593), - [aux_sym_custom_operator_token1] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_GT] = ACTIONS(2311), - [anon_sym_await] = ACTIONS(597), - [anon_sym_POUNDfile] = ACTIONS(2311), - [anon_sym_POUNDfileID] = ACTIONS(2313), - [anon_sym_POUNDfilePath] = ACTIONS(2313), - [anon_sym_POUNDline] = ACTIONS(2313), - [anon_sym_POUNDcolumn] = ACTIONS(2313), - [anon_sym_POUNDfunction] = ACTIONS(2313), - [anon_sym_POUNDdsohandle] = ACTIONS(2313), - [anon_sym_POUNDcolorLiteral] = ACTIONS(599), - [anon_sym_POUNDfileLiteral] = ACTIONS(599), - [anon_sym_POUNDimageLiteral] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_CARET_LBRACE] = ACTIONS(601), - [anon_sym_self] = ACTIONS(603), - [anon_sym_super] = ACTIONS(605), - [anon_sym_POUNDkeyPath] = ACTIONS(607), - [anon_sym_try] = ACTIONS(609), - [anon_sym_try_BANG] = ACTIONS(611), - [anon_sym_try_QMARK] = ACTIONS(611), - [anon_sym_PLUS_EQ] = ACTIONS(2313), - [anon_sym_DASH_EQ] = ACTIONS(2313), - [anon_sym_STAR_EQ] = ACTIONS(2313), - [anon_sym_SLASH_EQ] = ACTIONS(2313), - [anon_sym_PERCENT_EQ] = ACTIONS(2313), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym_BANG_EQ] = ACTIONS(2311), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2313), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2313), - [anon_sym_LT_EQ] = ACTIONS(2313), - [anon_sym_GT_EQ] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(617), - [anon_sym_DASH] = ACTIONS(617), - [anon_sym_STAR] = ACTIONS(2311), - [anon_sym_SLASH] = ACTIONS(2311), - [anon_sym_PERCENT] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_CARET] = ACTIONS(2311), - [anon_sym_LT_LT] = ACTIONS(2313), - [anon_sym_GT_GT] = ACTIONS(2313), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(627), - [sym__dot_custom] = ACTIONS(589), - [sym__eq_eq_custom] = ACTIONS(2313), - [sym__plus_then_ws] = ACTIONS(2313), - [sym__minus_then_ws] = ACTIONS(2313), - [sym_bang] = ACTIONS(619), - [sym__custom_operator] = ACTIONS(595), - }, - [567] = { - [sym_simple_identifier] = STATE(1916), - [sym__basic_literal] = STATE(1279), - [sym_boolean_literal] = STATE(1279), - [sym__string_literal] = STATE(1279), - [sym_line_string_literal] = STATE(1279), - [sym_multi_line_string_literal] = STATE(1279), - [sym_raw_string_literal] = STATE(1279), - [sym_regex_literal] = STATE(1279), - [sym__multiline_regex_literal] = STATE(2698), - [sym_user_type] = STATE(4442), - [sym__simple_user_type] = STATE(4742), - [sym_array_type] = STATE(4442), - [sym_dictionary_type] = STATE(4442), - [sym__expression] = STATE(1279), - [sym__unary_expression] = STATE(1279), - [sym_postfix_expression] = STATE(2075), - [sym_constructor_expression] = STATE(1279), - [sym_navigation_expression] = STATE(2075), - [sym__navigable_type_expression] = STATE(5649), - [sym_open_start_range_expression] = STATE(1279), - [sym__range_operator] = STATE(451), - [sym_open_end_range_expression] = STATE(1279), - [sym_prefix_expression] = STATE(1279), - [sym_as_expression] = STATE(1279), - [sym_selector_expression] = STATE(1279), - [sym__binary_expression] = STATE(1279), - [sym_multiplicative_expression] = STATE(1279), - [sym_additive_expression] = STATE(1279), - [sym_range_expression] = STATE(1279), - [sym_infix_expression] = STATE(1279), - [sym_nil_coalescing_expression] = STATE(1279), - [sym_check_expression] = STATE(1279), - [sym_comparison_expression] = STATE(1279), - [sym_equality_expression] = STATE(1279), - [sym_conjunction_expression] = STATE(1279), - [sym_disjunction_expression] = STATE(1279), - [sym_bitwise_operation] = STATE(1279), - [sym_custom_operator] = STATE(818), - [sym_try_expression] = STATE(1279), - [sym_await_expression] = STATE(1279), - [sym__await_operator] = STATE(449), - [sym_ternary_expression] = STATE(1279), - [sym_call_expression] = STATE(2075), - [sym__primary_expression] = STATE(1279), - [sym_tuple_expression] = STATE(2072), - [sym_array_literal] = STATE(1279), - [sym_dictionary_literal] = STATE(1279), - [sym__special_literal] = STATE(1279), - [sym__playground_literal] = STATE(1279), - [sym_lambda_literal] = STATE(1279), - [sym_self_expression] = STATE(2072), - [sym_super_expression] = STATE(1279), - [sym_key_path_expression] = STATE(1279), - [sym_key_path_string_expression] = STATE(1279), - [sym__try_operator] = STATE(448), - [sym__assignment_and_operator] = STATE(1279), - [sym__equality_operator] = STATE(1279), - [sym__comparison_operator] = STATE(1279), - [sym__three_dot_operator] = STATE(813), - [sym__open_ended_range_operator] = STATE(451), - [sym__additive_operator] = STATE(1279), - [sym__multiplicative_operator] = STATE(1279), - [sym__prefix_unary_operator] = STATE(445), - [sym_directly_assignable_expression] = STATE(4603), - [sym_assignment] = STATE(1279), - [sym__referenceable_operator] = STATE(1279), - [sym__eq_eq] = STATE(1279), - [sym__dot] = STATE(445), - [aux_sym_raw_string_literal_repeat1] = STATE(5651), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(855), - [aux_sym_simple_identifier_token2] = ACTIONS(857), - [aux_sym_simple_identifier_token3] = ACTIONS(857), - [aux_sym_simple_identifier_token4] = ACTIONS(857), - [anon_sym_actor] = ACTIONS(855), - [anon_sym_nil] = ACTIONS(2315), - [sym_real_literal] = ACTIONS(2317), - [sym_integer_literal] = ACTIONS(2315), - [sym_hex_literal] = ACTIONS(2317), - [sym_oct_literal] = ACTIONS(2317), - [sym_bin_literal] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [anon_sym_DQUOTE] = ACTIONS(865), - [anon_sym_BSLASH] = ACTIONS(867), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(869), - [sym__extended_regex_literal] = ACTIONS(871), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(873), - [sym__oneline_regex_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(881), - [anon_sym_async] = ACTIONS(1059), - [anon_sym_POUNDselector] = ACTIONS(885), - [aux_sym_custom_operator_token1] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(2315), - [anon_sym_GT] = ACTIONS(2315), - [anon_sym_await] = ACTIONS(889), - [anon_sym_POUNDfile] = ACTIONS(2315), - [anon_sym_POUNDfileID] = ACTIONS(2317), - [anon_sym_POUNDfilePath] = ACTIONS(2317), - [anon_sym_POUNDline] = ACTIONS(2317), - [anon_sym_POUNDcolumn] = ACTIONS(2317), - [anon_sym_POUNDfunction] = ACTIONS(2317), - [anon_sym_POUNDdsohandle] = ACTIONS(2317), - [anon_sym_POUNDcolorLiteral] = ACTIONS(891), - [anon_sym_POUNDfileLiteral] = ACTIONS(891), - [anon_sym_POUNDimageLiteral] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_CARET_LBRACE] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_super] = ACTIONS(897), - [anon_sym_POUNDkeyPath] = ACTIONS(901), - [anon_sym_try] = ACTIONS(903), - [anon_sym_try_BANG] = ACTIONS(905), - [anon_sym_try_QMARK] = ACTIONS(905), - [anon_sym_PLUS_EQ] = ACTIONS(2317), - [anon_sym_DASH_EQ] = ACTIONS(2317), - [anon_sym_STAR_EQ] = ACTIONS(2317), - [anon_sym_SLASH_EQ] = ACTIONS(2317), - [anon_sym_PERCENT_EQ] = ACTIONS(2317), - [anon_sym_EQ] = ACTIONS(2315), - [anon_sym_BANG_EQ] = ACTIONS(2315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2317), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2317), - [anon_sym_LT_EQ] = ACTIONS(2317), - [anon_sym_GT_EQ] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(2315), - [anon_sym_SLASH] = ACTIONS(2315), - [anon_sym_PERCENT] = ACTIONS(2315), - [anon_sym_PLUS_PLUS] = ACTIONS(913), - [anon_sym_DASH_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(2317), - [anon_sym_CARET] = ACTIONS(2315), - [anon_sym_LT_LT] = ACTIONS(2317), - [anon_sym_GT_GT] = ACTIONS(2317), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(139), - [sym_raw_str_end_part] = ACTIONS(917), - [sym__dot_custom] = ACTIONS(881), - [sym__eq_eq_custom] = ACTIONS(2317), - [sym__plus_then_ws] = ACTIONS(2317), - [sym__minus_then_ws] = ACTIONS(2317), - [sym_bang] = ACTIONS(913), - [sym__custom_operator] = ACTIONS(887), - }, - [568] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_case] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [anon_sym_import] = ACTIONS(2319), - [anon_sym_typealias] = ACTIONS(2319), - [anon_sym_struct] = ACTIONS(2319), - [anon_sym_class] = ACTIONS(2319), - [anon_sym_enum] = ACTIONS(2319), - [anon_sym_protocol] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_var] = ACTIONS(2319), - [anon_sym_func] = ACTIONS(2319), - [anon_sym_extension] = ACTIONS(2319), - [anon_sym_indirect] = ACTIONS(2319), - [anon_sym_init] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_deinit] = ACTIONS(2319), - [anon_sym_subscript] = ACTIONS(2319), - [anon_sym_prefix] = ACTIONS(2319), - [anon_sym_infix] = ACTIONS(2319), - [anon_sym_postfix] = ACTIONS(2319), - [anon_sym_precedencegroup] = ACTIONS(2319), - [anon_sym_associatedtype] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [sym_property_behavior_modifier] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(2319), - [anon_sym_convenience] = ACTIONS(2319), - [anon_sym_required] = ACTIONS(2319), - [anon_sym_nonisolated] = ACTIONS(2319), - [anon_sym_public] = ACTIONS(2319), - [anon_sym_private] = ACTIONS(2319), - [anon_sym_internal] = ACTIONS(2319), - [anon_sym_fileprivate] = ACTIONS(2319), - [anon_sym_open] = ACTIONS(2319), - [anon_sym_mutating] = ACTIONS(2319), - [anon_sym_nonmutating] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_dynamic] = ACTIONS(2319), - [anon_sym_optional] = ACTIONS(2319), - [anon_sym_final] = ACTIONS(2319), - [anon_sym_inout] = ACTIONS(2319), - [anon_sym_ATescaping] = ACTIONS(2321), - [anon_sym_ATautoclosure] = ACTIONS(2321), - [anon_sym_weak] = ACTIONS(2319), - [anon_sym_unowned] = ACTIONS(2319), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2321), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [569] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2327), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2327), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2335), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2335), - [anon_sym_typealias] = ACTIONS(2335), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_class] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_protocol] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_func] = ACTIONS(2335), - [anon_sym_extension] = ACTIONS(2335), - [anon_sym_indirect] = ACTIONS(2335), - [anon_sym_init] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_deinit] = ACTIONS(2335), - [anon_sym_subscript] = ACTIONS(2335), - [anon_sym_prefix] = ACTIONS(2335), - [anon_sym_infix] = ACTIONS(2335), - [anon_sym_postfix] = ACTIONS(2335), - [anon_sym_precedencegroup] = ACTIONS(2335), - [anon_sym_associatedtype] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [sym_property_behavior_modifier] = ACTIONS(2335), - [anon_sym_override] = ACTIONS(2335), - [anon_sym_convenience] = ACTIONS(2335), - [anon_sym_required] = ACTIONS(2335), - [anon_sym_nonisolated] = ACTIONS(2335), - [anon_sym_public] = ACTIONS(2335), - [anon_sym_private] = ACTIONS(2335), - [anon_sym_internal] = ACTIONS(2335), - [anon_sym_fileprivate] = ACTIONS(2335), - [anon_sym_open] = ACTIONS(2335), - [anon_sym_mutating] = ACTIONS(2335), - [anon_sym_nonmutating] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_dynamic] = ACTIONS(2335), - [anon_sym_optional] = ACTIONS(2335), - [anon_sym_final] = ACTIONS(2335), - [anon_sym_inout] = ACTIONS(2335), - [anon_sym_ATescaping] = ACTIONS(2330), - [anon_sym_ATautoclosure] = ACTIONS(2330), - [anon_sym_weak] = ACTIONS(2335), - [anon_sym_unowned] = ACTIONS(2335), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2330), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2330), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [570] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2337), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2337), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2345), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2345), - [anon_sym_typealias] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_protocol] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_var] = ACTIONS(2345), - [anon_sym_func] = ACTIONS(2345), - [anon_sym_extension] = ACTIONS(2345), - [anon_sym_indirect] = ACTIONS(2345), - [anon_sym_init] = ACTIONS(2345), - [anon_sym_SEMI] = ACTIONS(2340), - [anon_sym_deinit] = ACTIONS(2345), - [anon_sym_subscript] = ACTIONS(2345), - [anon_sym_prefix] = ACTIONS(2345), - [anon_sym_infix] = ACTIONS(2345), - [anon_sym_postfix] = ACTIONS(2345), - [anon_sym_precedencegroup] = ACTIONS(2345), - [anon_sym_associatedtype] = ACTIONS(2345), - [anon_sym_AT] = ACTIONS(2345), - [sym_property_behavior_modifier] = ACTIONS(2345), - [anon_sym_override] = ACTIONS(2345), - [anon_sym_convenience] = ACTIONS(2345), - [anon_sym_required] = ACTIONS(2345), - [anon_sym_nonisolated] = ACTIONS(2345), - [anon_sym_public] = ACTIONS(2345), - [anon_sym_private] = ACTIONS(2345), - [anon_sym_internal] = ACTIONS(2345), - [anon_sym_fileprivate] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2345), - [anon_sym_mutating] = ACTIONS(2345), - [anon_sym_nonmutating] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_dynamic] = ACTIONS(2345), - [anon_sym_optional] = ACTIONS(2345), - [anon_sym_final] = ACTIONS(2345), - [anon_sym_inout] = ACTIONS(2345), - [anon_sym_ATescaping] = ACTIONS(2340), - [anon_sym_ATautoclosure] = ACTIONS(2340), - [anon_sym_weak] = ACTIONS(2345), - [anon_sym_unowned] = ACTIONS(2345), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2340), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2340), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [571] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [anon_sym_import] = ACTIONS(2353), - [anon_sym_typealias] = ACTIONS(2353), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_protocol] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_var] = ACTIONS(2353), - [anon_sym_func] = ACTIONS(2353), - [anon_sym_extension] = ACTIONS(2353), - [anon_sym_indirect] = ACTIONS(2353), - [anon_sym_init] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_deinit] = ACTIONS(2353), - [anon_sym_subscript] = ACTIONS(2353), - [anon_sym_prefix] = ACTIONS(2353), - [anon_sym_infix] = ACTIONS(2353), - [anon_sym_postfix] = ACTIONS(2353), - [anon_sym_precedencegroup] = ACTIONS(2353), - [anon_sym_associatedtype] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2353), - [sym_property_behavior_modifier] = ACTIONS(2353), - [anon_sym_override] = ACTIONS(2353), - [anon_sym_convenience] = ACTIONS(2353), - [anon_sym_required] = ACTIONS(2353), - [anon_sym_nonisolated] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_private] = ACTIONS(2353), - [anon_sym_internal] = ACTIONS(2353), - [anon_sym_fileprivate] = ACTIONS(2353), - [anon_sym_open] = ACTIONS(2353), - [anon_sym_mutating] = ACTIONS(2353), - [anon_sym_nonmutating] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_dynamic] = ACTIONS(2353), - [anon_sym_optional] = ACTIONS(2353), - [anon_sym_final] = ACTIONS(2353), - [anon_sym_inout] = ACTIONS(2353), - [anon_sym_ATescaping] = ACTIONS(2351), - [anon_sym_ATautoclosure] = ACTIONS(2351), - [anon_sym_weak] = ACTIONS(2353), - [anon_sym_unowned] = ACTIONS(2353), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2351), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2351), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [572] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2355), - [anon_sym_typealias] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_protocol] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_var] = ACTIONS(2355), - [anon_sym_func] = ACTIONS(2355), - [anon_sym_extension] = ACTIONS(2355), - [anon_sym_indirect] = ACTIONS(2355), - [anon_sym_init] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_deinit] = ACTIONS(2355), - [anon_sym_subscript] = ACTIONS(2355), - [anon_sym_prefix] = ACTIONS(2355), - [anon_sym_infix] = ACTIONS(2355), - [anon_sym_postfix] = ACTIONS(2355), - [anon_sym_precedencegroup] = ACTIONS(2355), - [anon_sym_associatedtype] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [sym_property_behavior_modifier] = ACTIONS(2355), - [anon_sym_override] = ACTIONS(2355), - [anon_sym_convenience] = ACTIONS(2355), - [anon_sym_required] = ACTIONS(2355), - [anon_sym_nonisolated] = ACTIONS(2355), - [anon_sym_public] = ACTIONS(2355), - [anon_sym_private] = ACTIONS(2355), - [anon_sym_internal] = ACTIONS(2355), - [anon_sym_fileprivate] = ACTIONS(2355), - [anon_sym_open] = ACTIONS(2355), - [anon_sym_mutating] = ACTIONS(2355), - [anon_sym_nonmutating] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_dynamic] = ACTIONS(2355), - [anon_sym_optional] = ACTIONS(2355), - [anon_sym_final] = ACTIONS(2355), - [anon_sym_inout] = ACTIONS(2355), - [anon_sym_ATescaping] = ACTIONS(2357), - [anon_sym_ATautoclosure] = ACTIONS(2357), - [anon_sym_weak] = ACTIONS(2355), - [anon_sym_unowned] = ACTIONS(2355), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2357), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [573] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [anon_sym_import] = ACTIONS(2361), - [anon_sym_typealias] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_protocol] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_var] = ACTIONS(2361), - [anon_sym_func] = ACTIONS(2361), - [anon_sym_extension] = ACTIONS(2361), - [anon_sym_indirect] = ACTIONS(2361), - [anon_sym_init] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_deinit] = ACTIONS(2361), - [anon_sym_subscript] = ACTIONS(2361), - [anon_sym_prefix] = ACTIONS(2361), - [anon_sym_infix] = ACTIONS(2361), - [anon_sym_postfix] = ACTIONS(2361), - [anon_sym_precedencegroup] = ACTIONS(2361), - [anon_sym_associatedtype] = ACTIONS(2361), - [anon_sym_AT] = ACTIONS(2361), - [sym_property_behavior_modifier] = ACTIONS(2361), - [anon_sym_override] = ACTIONS(2361), - [anon_sym_convenience] = ACTIONS(2361), - [anon_sym_required] = ACTIONS(2361), - [anon_sym_nonisolated] = ACTIONS(2361), - [anon_sym_public] = ACTIONS(2361), - [anon_sym_private] = ACTIONS(2361), - [anon_sym_internal] = ACTIONS(2361), - [anon_sym_fileprivate] = ACTIONS(2361), - [anon_sym_open] = ACTIONS(2361), - [anon_sym_mutating] = ACTIONS(2361), - [anon_sym_nonmutating] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_dynamic] = ACTIONS(2361), - [anon_sym_optional] = ACTIONS(2361), - [anon_sym_final] = ACTIONS(2361), - [anon_sym_inout] = ACTIONS(2361), - [anon_sym_ATescaping] = ACTIONS(2359), - [anon_sym_ATautoclosure] = ACTIONS(2359), - [anon_sym_weak] = ACTIONS(2361), - [anon_sym_unowned] = ACTIONS(2361), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2359), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2359), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(2363), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2365), - [aux_sym_simple_identifier_token2] = ACTIONS(2363), - [aux_sym_simple_identifier_token3] = ACTIONS(2363), - [aux_sym_simple_identifier_token4] = ACTIONS(2363), - [anon_sym_actor] = ACTIONS(2365), - [anon_sym_nil] = ACTIONS(2365), - [sym_real_literal] = ACTIONS(2363), - [sym_integer_literal] = ACTIONS(2365), - [sym_hex_literal] = ACTIONS(2363), - [sym_oct_literal] = ACTIONS(2363), - [sym_bin_literal] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [anon_sym_BSLASH] = ACTIONS(2363), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2363), - [sym__extended_regex_literal] = ACTIONS(2363), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2363), - [sym__oneline_regex_literal] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2363), - [anon_sym_async] = ACTIONS(2365), - [anon_sym_POUNDselector] = ACTIONS(2363), - [aux_sym_custom_operator_token1] = ACTIONS(2363), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_GT] = ACTIONS(2365), - [anon_sym_await] = ACTIONS(2365), - [anon_sym_POUNDfile] = ACTIONS(2365), - [anon_sym_POUNDfileID] = ACTIONS(2363), - [anon_sym_POUNDfilePath] = ACTIONS(2363), - [anon_sym_POUNDline] = ACTIONS(2363), - [anon_sym_POUNDcolumn] = ACTIONS(2363), - [anon_sym_POUNDfunction] = ACTIONS(2363), - [anon_sym_POUNDdsohandle] = ACTIONS(2363), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2363), - [anon_sym_POUNDfileLiteral] = ACTIONS(2363), - [anon_sym_POUNDimageLiteral] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2363), - [anon_sym_CARET_LBRACE] = ACTIONS(2363), - [anon_sym_self] = ACTIONS(2365), - [anon_sym_super] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_guard] = ACTIONS(2365), - [anon_sym_switch] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_POUNDkeyPath] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_try_BANG] = ACTIONS(2363), - [anon_sym_try_QMARK] = ACTIONS(2363), - [anon_sym_PLUS_EQ] = ACTIONS(2363), - [anon_sym_DASH_EQ] = ACTIONS(2363), - [anon_sym_STAR_EQ] = ACTIONS(2363), - [anon_sym_SLASH_EQ] = ACTIONS(2363), - [anon_sym_PERCENT_EQ] = ACTIONS(2363), - [anon_sym_EQ] = ACTIONS(2365), - [anon_sym_BANG_EQ] = ACTIONS(2365), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2363), - [anon_sym_LT_EQ] = ACTIONS(2363), - [anon_sym_GT_EQ] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2363), - [anon_sym_DOT_DOT_LT] = ACTIONS(2363), - [anon_sym_PLUS] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(2365), - [anon_sym_SLASH] = ACTIONS(2365), - [anon_sym_PERCENT] = ACTIONS(2365), - [anon_sym_PLUS_PLUS] = ACTIONS(2363), - [anon_sym_DASH_DASH] = ACTIONS(2363), - [anon_sym_TILDE] = ACTIONS(2363), - [anon_sym_PIPE] = ACTIONS(2363), - [anon_sym_CARET] = ACTIONS(2365), - [anon_sym_LT_LT] = ACTIONS(2363), - [anon_sym_GT_GT] = ACTIONS(2363), - [sym_statement_label] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_repeat] = ACTIONS(2365), - [sym_throw_keyword] = ACTIONS(2365), - [anon_sym_import] = ACTIONS(2365), - [anon_sym_typealias] = ACTIONS(2365), - [anon_sym_struct] = ACTIONS(2365), - [anon_sym_class] = ACTIONS(2365), - [anon_sym_enum] = ACTIONS(2365), - [anon_sym_protocol] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_var] = ACTIONS(2365), - [anon_sym_func] = ACTIONS(2365), - [anon_sym_extension] = ACTIONS(2365), - [anon_sym_indirect] = ACTIONS(2365), - [anon_sym_init] = ACTIONS(2365), - [anon_sym_prefix] = ACTIONS(2365), - [anon_sym_infix] = ACTIONS(2365), - [anon_sym_postfix] = ACTIONS(2365), - [anon_sym_precedencegroup] = ACTIONS(2365), - [anon_sym_associatedtype] = ACTIONS(2365), - [anon_sym_AT] = ACTIONS(2365), - [sym_property_behavior_modifier] = ACTIONS(2365), - [anon_sym_override] = ACTIONS(2365), - [anon_sym_convenience] = ACTIONS(2365), - [anon_sym_required] = ACTIONS(2365), - [anon_sym_nonisolated] = ACTIONS(2365), - [anon_sym_public] = ACTIONS(2365), - [anon_sym_private] = ACTIONS(2365), - [anon_sym_internal] = ACTIONS(2365), - [anon_sym_fileprivate] = ACTIONS(2365), - [anon_sym_open] = ACTIONS(2365), - [anon_sym_mutating] = ACTIONS(2365), - [anon_sym_nonmutating] = ACTIONS(2365), - [anon_sym_static] = ACTIONS(2365), - [anon_sym_dynamic] = ACTIONS(2365), - [anon_sym_optional] = ACTIONS(2365), - [anon_sym_final] = ACTIONS(2365), - [anon_sym_inout] = ACTIONS(2365), - [anon_sym_ATescaping] = ACTIONS(2363), - [anon_sym_ATautoclosure] = ACTIONS(2363), - [anon_sym_weak] = ACTIONS(2365), - [anon_sym_unowned] = ACTIONS(2365), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2363), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2363), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2363), - [sym_raw_str_end_part] = ACTIONS(2363), - [sym__dot_custom] = ACTIONS(2363), - [sym__eq_eq_custom] = ACTIONS(2363), - [sym__plus_then_ws] = ACTIONS(2363), - [sym__minus_then_ws] = ACTIONS(2363), - [sym_bang] = ACTIONS(2363), - [sym__custom_operator] = ACTIONS(2363), - }, - [575] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2345), - [anon_sym_fallthrough] = ACTIONS(2345), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_prefix] = ACTIONS(2345), - [anon_sym_infix] = ACTIONS(2345), - [anon_sym_postfix] = ACTIONS(2345), - [anon_sym_AT] = ACTIONS(2345), - [sym_property_behavior_modifier] = ACTIONS(2345), - [anon_sym_override] = ACTIONS(2345), - [anon_sym_convenience] = ACTIONS(2345), - [anon_sym_required] = ACTIONS(2345), - [anon_sym_nonisolated] = ACTIONS(2345), - [anon_sym_public] = ACTIONS(2345), - [anon_sym_private] = ACTIONS(2345), - [anon_sym_internal] = ACTIONS(2345), - [anon_sym_fileprivate] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2345), - [anon_sym_mutating] = ACTIONS(2345), - [anon_sym_nonmutating] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_dynamic] = ACTIONS(2345), - [anon_sym_optional] = ACTIONS(2345), - [anon_sym_final] = ACTIONS(2345), - [anon_sym_inout] = ACTIONS(2345), - [anon_sym_ATescaping] = ACTIONS(2340), - [anon_sym_ATautoclosure] = ACTIONS(2340), - [anon_sym_weak] = ACTIONS(2345), - [anon_sym_unowned] = ACTIONS(2345), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2340), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2340), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2340), - [sym__explicit_semi] = ACTIONS(2340), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym_default_keyword] = ACTIONS(2340), - [sym_where_keyword] = ACTIONS(2340), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [576] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2335), - [anon_sym_fallthrough] = ACTIONS(2335), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2335), - [anon_sym_prefix] = ACTIONS(2335), - [anon_sym_infix] = ACTIONS(2335), - [anon_sym_postfix] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [sym_property_behavior_modifier] = ACTIONS(2335), - [anon_sym_override] = ACTIONS(2335), - [anon_sym_convenience] = ACTIONS(2335), - [anon_sym_required] = ACTIONS(2335), - [anon_sym_nonisolated] = ACTIONS(2335), - [anon_sym_public] = ACTIONS(2335), - [anon_sym_private] = ACTIONS(2335), - [anon_sym_internal] = ACTIONS(2335), - [anon_sym_fileprivate] = ACTIONS(2335), - [anon_sym_open] = ACTIONS(2335), - [anon_sym_mutating] = ACTIONS(2335), - [anon_sym_nonmutating] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_dynamic] = ACTIONS(2335), - [anon_sym_optional] = ACTIONS(2335), - [anon_sym_final] = ACTIONS(2335), - [anon_sym_inout] = ACTIONS(2335), - [anon_sym_ATescaping] = ACTIONS(2330), - [anon_sym_ATautoclosure] = ACTIONS(2330), - [anon_sym_weak] = ACTIONS(2335), - [anon_sym_unowned] = ACTIONS(2335), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2330), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2330), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2330), - [sym__explicit_semi] = ACTIONS(2330), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym_default_keyword] = ACTIONS(2330), - [sym_where_keyword] = ACTIONS(2330), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [577] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_fallthrough] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_prefix] = ACTIONS(2355), - [anon_sym_infix] = ACTIONS(2355), - [anon_sym_postfix] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [sym_property_behavior_modifier] = ACTIONS(2355), - [anon_sym_override] = ACTIONS(2355), - [anon_sym_convenience] = ACTIONS(2355), - [anon_sym_required] = ACTIONS(2355), - [anon_sym_nonisolated] = ACTIONS(2355), - [anon_sym_public] = ACTIONS(2355), - [anon_sym_private] = ACTIONS(2355), - [anon_sym_internal] = ACTIONS(2355), - [anon_sym_fileprivate] = ACTIONS(2355), - [anon_sym_open] = ACTIONS(2355), - [anon_sym_mutating] = ACTIONS(2355), - [anon_sym_nonmutating] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_dynamic] = ACTIONS(2355), - [anon_sym_optional] = ACTIONS(2355), - [anon_sym_final] = ACTIONS(2355), - [anon_sym_inout] = ACTIONS(2355), - [anon_sym_ATescaping] = ACTIONS(2357), - [anon_sym_ATautoclosure] = ACTIONS(2357), - [anon_sym_weak] = ACTIONS(2355), - [anon_sym_unowned] = ACTIONS(2355), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2357), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__implicit_semi] = ACTIONS(2357), - [sym__explicit_semi] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym_default_keyword] = ACTIONS(2357), - [sym_where_keyword] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [578] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_fallthrough] = ACTIONS(2361), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_prefix] = ACTIONS(2361), - [anon_sym_infix] = ACTIONS(2361), - [anon_sym_postfix] = ACTIONS(2361), - [anon_sym_AT] = ACTIONS(2361), - [sym_property_behavior_modifier] = ACTIONS(2361), - [anon_sym_override] = ACTIONS(2361), - [anon_sym_convenience] = ACTIONS(2361), - [anon_sym_required] = ACTIONS(2361), - [anon_sym_nonisolated] = ACTIONS(2361), - [anon_sym_public] = ACTIONS(2361), - [anon_sym_private] = ACTIONS(2361), - [anon_sym_internal] = ACTIONS(2361), - [anon_sym_fileprivate] = ACTIONS(2361), - [anon_sym_open] = ACTIONS(2361), - [anon_sym_mutating] = ACTIONS(2361), - [anon_sym_nonmutating] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_dynamic] = ACTIONS(2361), - [anon_sym_optional] = ACTIONS(2361), - [anon_sym_final] = ACTIONS(2361), - [anon_sym_inout] = ACTIONS(2361), - [anon_sym_ATescaping] = ACTIONS(2359), - [anon_sym_ATautoclosure] = ACTIONS(2359), - [anon_sym_weak] = ACTIONS(2361), - [anon_sym_unowned] = ACTIONS(2361), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2359), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2359), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2359), - [sym__explicit_semi] = ACTIONS(2359), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_default_keyword] = ACTIONS(2359), - [sym_where_keyword] = ACTIONS(2359), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [579] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_fallthrough] = ACTIONS(2353), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_prefix] = ACTIONS(2353), - [anon_sym_infix] = ACTIONS(2353), - [anon_sym_postfix] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2353), - [sym_property_behavior_modifier] = ACTIONS(2353), - [anon_sym_override] = ACTIONS(2353), - [anon_sym_convenience] = ACTIONS(2353), - [anon_sym_required] = ACTIONS(2353), - [anon_sym_nonisolated] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_private] = ACTIONS(2353), - [anon_sym_internal] = ACTIONS(2353), - [anon_sym_fileprivate] = ACTIONS(2353), - [anon_sym_open] = ACTIONS(2353), - [anon_sym_mutating] = ACTIONS(2353), - [anon_sym_nonmutating] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_dynamic] = ACTIONS(2353), - [anon_sym_optional] = ACTIONS(2353), - [anon_sym_final] = ACTIONS(2353), - [anon_sym_inout] = ACTIONS(2353), - [anon_sym_ATescaping] = ACTIONS(2351), - [anon_sym_ATautoclosure] = ACTIONS(2351), - [anon_sym_weak] = ACTIONS(2353), - [anon_sym_unowned] = ACTIONS(2353), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2351), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2351), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2351), - [sym__explicit_semi] = ACTIONS(2351), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_default_keyword] = ACTIONS(2351), - [sym_where_keyword] = ACTIONS(2351), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [580] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_case] = ACTIONS(2319), - [anon_sym_fallthrough] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2319), - [anon_sym_prefix] = ACTIONS(2319), - [anon_sym_infix] = ACTIONS(2319), - [anon_sym_postfix] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [sym_property_behavior_modifier] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(2319), - [anon_sym_convenience] = ACTIONS(2319), - [anon_sym_required] = ACTIONS(2319), - [anon_sym_nonisolated] = ACTIONS(2319), - [anon_sym_public] = ACTIONS(2319), - [anon_sym_private] = ACTIONS(2319), - [anon_sym_internal] = ACTIONS(2319), - [anon_sym_fileprivate] = ACTIONS(2319), - [anon_sym_open] = ACTIONS(2319), - [anon_sym_mutating] = ACTIONS(2319), - [anon_sym_nonmutating] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_dynamic] = ACTIONS(2319), - [anon_sym_optional] = ACTIONS(2319), - [anon_sym_final] = ACTIONS(2319), - [anon_sym_inout] = ACTIONS(2319), - [anon_sym_ATescaping] = ACTIONS(2321), - [anon_sym_ATautoclosure] = ACTIONS(2321), - [anon_sym_weak] = ACTIONS(2319), - [anon_sym_unowned] = ACTIONS(2319), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2321), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__implicit_semi] = ACTIONS(2321), - [sym__explicit_semi] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym_default_keyword] = ACTIONS(2321), - [sym_where_keyword] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [581] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_fallthrough] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_prefix] = ACTIONS(2355), - [anon_sym_infix] = ACTIONS(2355), - [anon_sym_postfix] = ACTIONS(2355), - [anon_sym_AT] = ACTIONS(2355), - [sym_property_behavior_modifier] = ACTIONS(2355), - [anon_sym_override] = ACTIONS(2355), - [anon_sym_convenience] = ACTIONS(2355), - [anon_sym_required] = ACTIONS(2355), - [anon_sym_nonisolated] = ACTIONS(2355), - [anon_sym_public] = ACTIONS(2355), - [anon_sym_private] = ACTIONS(2355), - [anon_sym_internal] = ACTIONS(2355), - [anon_sym_fileprivate] = ACTIONS(2355), - [anon_sym_open] = ACTIONS(2355), - [anon_sym_mutating] = ACTIONS(2355), - [anon_sym_nonmutating] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_dynamic] = ACTIONS(2355), - [anon_sym_optional] = ACTIONS(2355), - [anon_sym_final] = ACTIONS(2355), - [anon_sym_inout] = ACTIONS(2355), - [anon_sym_ATescaping] = ACTIONS(2357), - [anon_sym_ATautoclosure] = ACTIONS(2357), - [anon_sym_weak] = ACTIONS(2355), - [anon_sym_unowned] = ACTIONS(2355), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2357), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__implicit_semi] = ACTIONS(2357), - [sym__explicit_semi] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym_default_keyword] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [582] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2335), - [anon_sym_fallthrough] = ACTIONS(2335), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2335), - [anon_sym_prefix] = ACTIONS(2335), - [anon_sym_infix] = ACTIONS(2335), - [anon_sym_postfix] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2335), - [sym_property_behavior_modifier] = ACTIONS(2335), - [anon_sym_override] = ACTIONS(2335), - [anon_sym_convenience] = ACTIONS(2335), - [anon_sym_required] = ACTIONS(2335), - [anon_sym_nonisolated] = ACTIONS(2335), - [anon_sym_public] = ACTIONS(2335), - [anon_sym_private] = ACTIONS(2335), - [anon_sym_internal] = ACTIONS(2335), - [anon_sym_fileprivate] = ACTIONS(2335), - [anon_sym_open] = ACTIONS(2335), - [anon_sym_mutating] = ACTIONS(2335), - [anon_sym_nonmutating] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_dynamic] = ACTIONS(2335), - [anon_sym_optional] = ACTIONS(2335), - [anon_sym_final] = ACTIONS(2335), - [anon_sym_inout] = ACTIONS(2335), - [anon_sym_ATescaping] = ACTIONS(2330), - [anon_sym_ATautoclosure] = ACTIONS(2330), - [anon_sym_weak] = ACTIONS(2335), - [anon_sym_unowned] = ACTIONS(2335), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2330), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2330), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2330), - [sym__explicit_semi] = ACTIONS(2330), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym_default_keyword] = ACTIONS(2330), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [583] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_fallthrough] = ACTIONS(2353), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_prefix] = ACTIONS(2353), - [anon_sym_infix] = ACTIONS(2353), - [anon_sym_postfix] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2353), - [sym_property_behavior_modifier] = ACTIONS(2353), - [anon_sym_override] = ACTIONS(2353), - [anon_sym_convenience] = ACTIONS(2353), - [anon_sym_required] = ACTIONS(2353), - [anon_sym_nonisolated] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_private] = ACTIONS(2353), - [anon_sym_internal] = ACTIONS(2353), - [anon_sym_fileprivate] = ACTIONS(2353), - [anon_sym_open] = ACTIONS(2353), - [anon_sym_mutating] = ACTIONS(2353), - [anon_sym_nonmutating] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_dynamic] = ACTIONS(2353), - [anon_sym_optional] = ACTIONS(2353), - [anon_sym_final] = ACTIONS(2353), - [anon_sym_inout] = ACTIONS(2353), - [anon_sym_ATescaping] = ACTIONS(2351), - [anon_sym_ATautoclosure] = ACTIONS(2351), - [anon_sym_weak] = ACTIONS(2353), - [anon_sym_unowned] = ACTIONS(2353), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2351), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2351), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2351), - [sym__explicit_semi] = ACTIONS(2351), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_default_keyword] = ACTIONS(2351), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [584] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_case] = ACTIONS(2319), - [anon_sym_fallthrough] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [anon_sym_class] = ACTIONS(2319), - [anon_sym_prefix] = ACTIONS(2319), - [anon_sym_infix] = ACTIONS(2319), - [anon_sym_postfix] = ACTIONS(2319), - [anon_sym_AT] = ACTIONS(2319), - [sym_property_behavior_modifier] = ACTIONS(2319), - [anon_sym_override] = ACTIONS(2319), - [anon_sym_convenience] = ACTIONS(2319), - [anon_sym_required] = ACTIONS(2319), - [anon_sym_nonisolated] = ACTIONS(2319), - [anon_sym_public] = ACTIONS(2319), - [anon_sym_private] = ACTIONS(2319), - [anon_sym_internal] = ACTIONS(2319), - [anon_sym_fileprivate] = ACTIONS(2319), - [anon_sym_open] = ACTIONS(2319), - [anon_sym_mutating] = ACTIONS(2319), - [anon_sym_nonmutating] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_dynamic] = ACTIONS(2319), - [anon_sym_optional] = ACTIONS(2319), - [anon_sym_final] = ACTIONS(2319), - [anon_sym_inout] = ACTIONS(2319), - [anon_sym_ATescaping] = ACTIONS(2321), - [anon_sym_ATautoclosure] = ACTIONS(2321), - [anon_sym_weak] = ACTIONS(2319), - [anon_sym_unowned] = ACTIONS(2319), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2321), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__implicit_semi] = ACTIONS(2321), - [sym__explicit_semi] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym_default_keyword] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [585] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2361), - [anon_sym_fallthrough] = ACTIONS(2361), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [anon_sym_class] = ACTIONS(2361), - [anon_sym_prefix] = ACTIONS(2361), - [anon_sym_infix] = ACTIONS(2361), - [anon_sym_postfix] = ACTIONS(2361), - [anon_sym_AT] = ACTIONS(2361), - [sym_property_behavior_modifier] = ACTIONS(2361), - [anon_sym_override] = ACTIONS(2361), - [anon_sym_convenience] = ACTIONS(2361), - [anon_sym_required] = ACTIONS(2361), - [anon_sym_nonisolated] = ACTIONS(2361), - [anon_sym_public] = ACTIONS(2361), - [anon_sym_private] = ACTIONS(2361), - [anon_sym_internal] = ACTIONS(2361), - [anon_sym_fileprivate] = ACTIONS(2361), - [anon_sym_open] = ACTIONS(2361), - [anon_sym_mutating] = ACTIONS(2361), - [anon_sym_nonmutating] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_dynamic] = ACTIONS(2361), - [anon_sym_optional] = ACTIONS(2361), - [anon_sym_final] = ACTIONS(2361), - [anon_sym_inout] = ACTIONS(2361), - [anon_sym_ATescaping] = ACTIONS(2359), - [anon_sym_ATautoclosure] = ACTIONS(2359), - [anon_sym_weak] = ACTIONS(2361), - [anon_sym_unowned] = ACTIONS(2361), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2359), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2359), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2359), - [sym__explicit_semi] = ACTIONS(2359), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_default_keyword] = ACTIONS(2359), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [586] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_case] = ACTIONS(2345), - [anon_sym_fallthrough] = ACTIONS(2345), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2345), - [anon_sym_prefix] = ACTIONS(2345), - [anon_sym_infix] = ACTIONS(2345), - [anon_sym_postfix] = ACTIONS(2345), - [anon_sym_AT] = ACTIONS(2345), - [sym_property_behavior_modifier] = ACTIONS(2345), - [anon_sym_override] = ACTIONS(2345), - [anon_sym_convenience] = ACTIONS(2345), - [anon_sym_required] = ACTIONS(2345), - [anon_sym_nonisolated] = ACTIONS(2345), - [anon_sym_public] = ACTIONS(2345), - [anon_sym_private] = ACTIONS(2345), - [anon_sym_internal] = ACTIONS(2345), - [anon_sym_fileprivate] = ACTIONS(2345), - [anon_sym_open] = ACTIONS(2345), - [anon_sym_mutating] = ACTIONS(2345), - [anon_sym_nonmutating] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_dynamic] = ACTIONS(2345), - [anon_sym_optional] = ACTIONS(2345), - [anon_sym_final] = ACTIONS(2345), - [anon_sym_inout] = ACTIONS(2345), - [anon_sym_ATescaping] = ACTIONS(2340), - [anon_sym_ATautoclosure] = ACTIONS(2340), - [anon_sym_weak] = ACTIONS(2345), - [anon_sym_unowned] = ACTIONS(2345), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2340), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2340), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2340), - [sym__explicit_semi] = ACTIONS(2340), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym_default_keyword] = ACTIONS(2340), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [587] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(681), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(727), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2367), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2367), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_case] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2367), - [anon_sym_typealias] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_class] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_protocol] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_var] = ACTIONS(2367), - [anon_sym_func] = ACTIONS(2367), - [anon_sym_extension] = ACTIONS(2367), - [anon_sym_indirect] = ACTIONS(2367), - [anon_sym_init] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2367), - [anon_sym_deinit] = ACTIONS(2367), - [anon_sym_subscript] = ACTIONS(2367), - [anon_sym_prefix] = ACTIONS(2367), - [anon_sym_infix] = ACTIONS(2367), - [anon_sym_postfix] = ACTIONS(2367), - [anon_sym_precedencegroup] = ACTIONS(2367), - [anon_sym_associatedtype] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2373), - [sym_property_behavior_modifier] = ACTIONS(2367), - [anon_sym_override] = ACTIONS(2367), - [anon_sym_convenience] = ACTIONS(2367), - [anon_sym_required] = ACTIONS(2367), - [anon_sym_nonisolated] = ACTIONS(2367), - [anon_sym_public] = ACTIONS(2367), - [anon_sym_private] = ACTIONS(2367), - [anon_sym_internal] = ACTIONS(2367), - [anon_sym_fileprivate] = ACTIONS(2367), - [anon_sym_open] = ACTIONS(2367), - [anon_sym_mutating] = ACTIONS(2367), - [anon_sym_nonmutating] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_dynamic] = ACTIONS(2367), - [anon_sym_optional] = ACTIONS(2367), - [anon_sym_final] = ACTIONS(2367), - [anon_sym_inout] = ACTIONS(2367), - [anon_sym_ATescaping] = ACTIONS(2367), - [anon_sym_ATautoclosure] = ACTIONS(2367), - [anon_sym_weak] = ACTIONS(2367), - [anon_sym_unowned] = ACTIONS(2373), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2367), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2367), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [588] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2415), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_case] = ACTIONS(2415), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2415), - [anon_sym_typealias] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(2415), - [anon_sym_class] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), - [anon_sym_protocol] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_var] = ACTIONS(2415), - [anon_sym_func] = ACTIONS(2415), - [anon_sym_extension] = ACTIONS(2415), - [anon_sym_indirect] = ACTIONS(2415), - [anon_sym_init] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_deinit] = ACTIONS(2415), - [anon_sym_subscript] = ACTIONS(2415), - [anon_sym_prefix] = ACTIONS(2415), - [anon_sym_infix] = ACTIONS(2415), - [anon_sym_postfix] = ACTIONS(2415), - [anon_sym_precedencegroup] = ACTIONS(2415), - [anon_sym_associatedtype] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2421), - [sym_property_behavior_modifier] = ACTIONS(2415), - [anon_sym_override] = ACTIONS(2415), - [anon_sym_convenience] = ACTIONS(2415), - [anon_sym_required] = ACTIONS(2415), - [anon_sym_nonisolated] = ACTIONS(2415), - [anon_sym_public] = ACTIONS(2415), - [anon_sym_private] = ACTIONS(2415), - [anon_sym_internal] = ACTIONS(2415), - [anon_sym_fileprivate] = ACTIONS(2415), - [anon_sym_open] = ACTIONS(2415), - [anon_sym_mutating] = ACTIONS(2415), - [anon_sym_nonmutating] = ACTIONS(2415), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_dynamic] = ACTIONS(2415), - [anon_sym_optional] = ACTIONS(2415), - [anon_sym_final] = ACTIONS(2415), - [anon_sym_inout] = ACTIONS(2415), - [anon_sym_ATescaping] = ACTIONS(2415), - [anon_sym_ATautoclosure] = ACTIONS(2415), - [anon_sym_weak] = ACTIONS(2415), - [anon_sym_unowned] = ACTIONS(2421), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2415), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2415), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [589] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2423), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_case] = ACTIONS(2423), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2423), - [anon_sym_typealias] = ACTIONS(2423), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_class] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_protocol] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_var] = ACTIONS(2423), - [anon_sym_func] = ACTIONS(2423), - [anon_sym_extension] = ACTIONS(2423), - [anon_sym_indirect] = ACTIONS(2423), - [anon_sym_init] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_deinit] = ACTIONS(2423), - [anon_sym_subscript] = ACTIONS(2423), - [anon_sym_prefix] = ACTIONS(2423), - [anon_sym_infix] = ACTIONS(2423), - [anon_sym_postfix] = ACTIONS(2423), - [anon_sym_precedencegroup] = ACTIONS(2423), - [anon_sym_associatedtype] = ACTIONS(2423), - [anon_sym_AT] = ACTIONS(2425), - [sym_property_behavior_modifier] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_convenience] = ACTIONS(2423), - [anon_sym_required] = ACTIONS(2423), - [anon_sym_nonisolated] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_internal] = ACTIONS(2423), - [anon_sym_fileprivate] = ACTIONS(2423), - [anon_sym_open] = ACTIONS(2423), - [anon_sym_mutating] = ACTIONS(2423), - [anon_sym_nonmutating] = ACTIONS(2423), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_dynamic] = ACTIONS(2423), - [anon_sym_optional] = ACTIONS(2423), - [anon_sym_final] = ACTIONS(2423), - [anon_sym_inout] = ACTIONS(2423), - [anon_sym_ATescaping] = ACTIONS(2423), - [anon_sym_ATautoclosure] = ACTIONS(2423), - [anon_sym_weak] = ACTIONS(2423), - [anon_sym_unowned] = ACTIONS(2425), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2423), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2423), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [590] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2427), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2427), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_case] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_typealias] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_protocol] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_var] = ACTIONS(2427), - [anon_sym_func] = ACTIONS(2427), - [anon_sym_extension] = ACTIONS(2427), - [anon_sym_indirect] = ACTIONS(2427), - [anon_sym_init] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_deinit] = ACTIONS(2427), - [anon_sym_subscript] = ACTIONS(2427), - [anon_sym_prefix] = ACTIONS(2427), - [anon_sym_infix] = ACTIONS(2427), - [anon_sym_postfix] = ACTIONS(2427), - [anon_sym_precedencegroup] = ACTIONS(2427), - [anon_sym_associatedtype] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2429), - [sym_property_behavior_modifier] = ACTIONS(2427), - [anon_sym_override] = ACTIONS(2427), - [anon_sym_convenience] = ACTIONS(2427), - [anon_sym_required] = ACTIONS(2427), - [anon_sym_nonisolated] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_internal] = ACTIONS(2427), - [anon_sym_fileprivate] = ACTIONS(2427), - [anon_sym_open] = ACTIONS(2427), - [anon_sym_mutating] = ACTIONS(2427), - [anon_sym_nonmutating] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_dynamic] = ACTIONS(2427), - [anon_sym_optional] = ACTIONS(2427), - [anon_sym_final] = ACTIONS(2427), - [anon_sym_inout] = ACTIONS(2427), - [anon_sym_ATescaping] = ACTIONS(2427), - [anon_sym_ATautoclosure] = ACTIONS(2427), - [anon_sym_weak] = ACTIONS(2427), - [anon_sym_unowned] = ACTIONS(2429), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2427), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2427), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [591] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [anon_sym_import] = ACTIONS(2431), - [anon_sym_typealias] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_protocol] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_var] = ACTIONS(2431), - [anon_sym_func] = ACTIONS(2431), - [anon_sym_extension] = ACTIONS(2431), - [anon_sym_indirect] = ACTIONS(2431), - [anon_sym_init] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_deinit] = ACTIONS(2431), - [anon_sym_subscript] = ACTIONS(2431), - [anon_sym_prefix] = ACTIONS(2431), - [anon_sym_infix] = ACTIONS(2431), - [anon_sym_postfix] = ACTIONS(2431), - [anon_sym_precedencegroup] = ACTIONS(2431), - [anon_sym_associatedtype] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2433), - [sym_property_behavior_modifier] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_convenience] = ACTIONS(2431), - [anon_sym_required] = ACTIONS(2431), - [anon_sym_nonisolated] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_internal] = ACTIONS(2431), - [anon_sym_fileprivate] = ACTIONS(2431), - [anon_sym_open] = ACTIONS(2431), - [anon_sym_mutating] = ACTIONS(2431), - [anon_sym_nonmutating] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_dynamic] = ACTIONS(2431), - [anon_sym_optional] = ACTIONS(2431), - [anon_sym_final] = ACTIONS(2431), - [anon_sym_inout] = ACTIONS(2431), - [anon_sym_ATescaping] = ACTIONS(2431), - [anon_sym_ATautoclosure] = ACTIONS(2431), - [anon_sym_weak] = ACTIONS(2431), - [anon_sym_unowned] = ACTIONS(2433), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2431), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [592] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [anon_sym_async] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_case] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [anon_sym_import] = ACTIONS(2435), - [anon_sym_typealias] = ACTIONS(2435), - [anon_sym_struct] = ACTIONS(2435), - [anon_sym_class] = ACTIONS(2435), - [anon_sym_enum] = ACTIONS(2435), - [anon_sym_protocol] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_var] = ACTIONS(2435), - [anon_sym_func] = ACTIONS(2435), - [anon_sym_extension] = ACTIONS(2435), - [anon_sym_indirect] = ACTIONS(2435), - [anon_sym_init] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_deinit] = ACTIONS(2435), - [anon_sym_subscript] = ACTIONS(2435), - [anon_sym_prefix] = ACTIONS(2435), - [anon_sym_infix] = ACTIONS(2435), - [anon_sym_postfix] = ACTIONS(2435), - [anon_sym_precedencegroup] = ACTIONS(2435), - [anon_sym_associatedtype] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2437), - [sym_property_behavior_modifier] = ACTIONS(2435), - [anon_sym_override] = ACTIONS(2435), - [anon_sym_convenience] = ACTIONS(2435), - [anon_sym_required] = ACTIONS(2435), - [anon_sym_nonisolated] = ACTIONS(2435), - [anon_sym_public] = ACTIONS(2435), - [anon_sym_private] = ACTIONS(2435), - [anon_sym_internal] = ACTIONS(2435), - [anon_sym_fileprivate] = ACTIONS(2435), - [anon_sym_open] = ACTIONS(2435), - [anon_sym_mutating] = ACTIONS(2435), - [anon_sym_nonmutating] = ACTIONS(2435), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_dynamic] = ACTIONS(2435), - [anon_sym_optional] = ACTIONS(2435), - [anon_sym_final] = ACTIONS(2435), - [anon_sym_inout] = ACTIONS(2435), - [anon_sym_ATescaping] = ACTIONS(2435), - [anon_sym_ATautoclosure] = ACTIONS(2435), - [anon_sym_weak] = ACTIONS(2435), - [anon_sym_unowned] = ACTIONS(2437), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2435), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [593] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2439), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_case] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2439), - [anon_sym_typealias] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_class] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_protocol] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_var] = ACTIONS(2439), - [anon_sym_func] = ACTIONS(2439), - [anon_sym_extension] = ACTIONS(2439), - [anon_sym_indirect] = ACTIONS(2439), - [anon_sym_init] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_deinit] = ACTIONS(2439), - [anon_sym_subscript] = ACTIONS(2439), - [anon_sym_prefix] = ACTIONS(2439), - [anon_sym_infix] = ACTIONS(2439), - [anon_sym_postfix] = ACTIONS(2439), - [anon_sym_precedencegroup] = ACTIONS(2439), - [anon_sym_associatedtype] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2441), - [sym_property_behavior_modifier] = ACTIONS(2439), - [anon_sym_override] = ACTIONS(2439), - [anon_sym_convenience] = ACTIONS(2439), - [anon_sym_required] = ACTIONS(2439), - [anon_sym_nonisolated] = ACTIONS(2439), - [anon_sym_public] = ACTIONS(2439), - [anon_sym_private] = ACTIONS(2439), - [anon_sym_internal] = ACTIONS(2439), - [anon_sym_fileprivate] = ACTIONS(2439), - [anon_sym_open] = ACTIONS(2439), - [anon_sym_mutating] = ACTIONS(2439), - [anon_sym_nonmutating] = ACTIONS(2439), - [anon_sym_static] = ACTIONS(2439), - [anon_sym_dynamic] = ACTIONS(2439), - [anon_sym_optional] = ACTIONS(2439), - [anon_sym_final] = ACTIONS(2439), - [anon_sym_inout] = ACTIONS(2439), - [anon_sym_ATescaping] = ACTIONS(2439), - [anon_sym_ATautoclosure] = ACTIONS(2439), - [anon_sym_weak] = ACTIONS(2439), - [anon_sym_unowned] = ACTIONS(2441), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2439), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [594] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [anon_sym_import] = ACTIONS(2443), - [anon_sym_typealias] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_protocol] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_var] = ACTIONS(2443), - [anon_sym_func] = ACTIONS(2443), - [anon_sym_extension] = ACTIONS(2443), - [anon_sym_indirect] = ACTIONS(2443), - [anon_sym_init] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_deinit] = ACTIONS(2443), - [anon_sym_subscript] = ACTIONS(2443), - [anon_sym_prefix] = ACTIONS(2443), - [anon_sym_infix] = ACTIONS(2443), - [anon_sym_postfix] = ACTIONS(2443), - [anon_sym_precedencegroup] = ACTIONS(2443), - [anon_sym_associatedtype] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2445), - [sym_property_behavior_modifier] = ACTIONS(2443), - [anon_sym_override] = ACTIONS(2443), - [anon_sym_convenience] = ACTIONS(2443), - [anon_sym_required] = ACTIONS(2443), - [anon_sym_nonisolated] = ACTIONS(2443), - [anon_sym_public] = ACTIONS(2443), - [anon_sym_private] = ACTIONS(2443), - [anon_sym_internal] = ACTIONS(2443), - [anon_sym_fileprivate] = ACTIONS(2443), - [anon_sym_open] = ACTIONS(2443), - [anon_sym_mutating] = ACTIONS(2443), - [anon_sym_nonmutating] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_dynamic] = ACTIONS(2443), - [anon_sym_optional] = ACTIONS(2443), - [anon_sym_final] = ACTIONS(2443), - [anon_sym_inout] = ACTIONS(2443), - [anon_sym_ATescaping] = ACTIONS(2443), - [anon_sym_ATautoclosure] = ACTIONS(2443), - [anon_sym_weak] = ACTIONS(2443), - [anon_sym_unowned] = ACTIONS(2445), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2443), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [595] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2447), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2447), - [anon_sym_typealias] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_protocol] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_var] = ACTIONS(2447), - [anon_sym_func] = ACTIONS(2447), - [anon_sym_extension] = ACTIONS(2447), - [anon_sym_indirect] = ACTIONS(2447), - [anon_sym_init] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_deinit] = ACTIONS(2447), - [anon_sym_subscript] = ACTIONS(2447), - [anon_sym_prefix] = ACTIONS(2447), - [anon_sym_infix] = ACTIONS(2447), - [anon_sym_postfix] = ACTIONS(2447), - [anon_sym_precedencegroup] = ACTIONS(2447), - [anon_sym_associatedtype] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2449), - [sym_property_behavior_modifier] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_convenience] = ACTIONS(2447), - [anon_sym_required] = ACTIONS(2447), - [anon_sym_nonisolated] = ACTIONS(2447), - [anon_sym_public] = ACTIONS(2447), - [anon_sym_private] = ACTIONS(2447), - [anon_sym_internal] = ACTIONS(2447), - [anon_sym_fileprivate] = ACTIONS(2447), - [anon_sym_open] = ACTIONS(2447), - [anon_sym_mutating] = ACTIONS(2447), - [anon_sym_nonmutating] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_dynamic] = ACTIONS(2447), - [anon_sym_optional] = ACTIONS(2447), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_inout] = ACTIONS(2447), - [anon_sym_ATescaping] = ACTIONS(2447), - [anon_sym_ATautoclosure] = ACTIONS(2447), - [anon_sym_weak] = ACTIONS(2447), - [anon_sym_unowned] = ACTIONS(2449), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2447), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2447), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [596] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2451), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2451), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_case] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2451), - [anon_sym_typealias] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_protocol] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_var] = ACTIONS(2451), - [anon_sym_func] = ACTIONS(2451), - [anon_sym_extension] = ACTIONS(2451), - [anon_sym_indirect] = ACTIONS(2451), - [anon_sym_init] = ACTIONS(2451), - [anon_sym_deinit] = ACTIONS(2451), - [anon_sym_subscript] = ACTIONS(2451), - [anon_sym_prefix] = ACTIONS(2451), - [anon_sym_infix] = ACTIONS(2451), - [anon_sym_postfix] = ACTIONS(2451), - [anon_sym_precedencegroup] = ACTIONS(2451), - [anon_sym_associatedtype] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2453), - [sym_property_behavior_modifier] = ACTIONS(2451), - [anon_sym_override] = ACTIONS(2451), - [anon_sym_convenience] = ACTIONS(2451), - [anon_sym_required] = ACTIONS(2451), - [anon_sym_nonisolated] = ACTIONS(2451), - [anon_sym_public] = ACTIONS(2451), - [anon_sym_private] = ACTIONS(2451), - [anon_sym_internal] = ACTIONS(2451), - [anon_sym_fileprivate] = ACTIONS(2451), - [anon_sym_open] = ACTIONS(2451), - [anon_sym_mutating] = ACTIONS(2451), - [anon_sym_nonmutating] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_dynamic] = ACTIONS(2451), - [anon_sym_optional] = ACTIONS(2451), - [anon_sym_final] = ACTIONS(2451), - [anon_sym_inout] = ACTIONS(2451), - [anon_sym_ATescaping] = ACTIONS(2451), - [anon_sym_ATautoclosure] = ACTIONS(2451), - [anon_sym_weak] = ACTIONS(2451), - [anon_sym_unowned] = ACTIONS(2453), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2451), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2451), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [597] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2455), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2455), - [anon_sym_typealias] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_protocol] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_var] = ACTIONS(2455), - [anon_sym_func] = ACTIONS(2455), - [anon_sym_extension] = ACTIONS(2455), - [anon_sym_indirect] = ACTIONS(2455), - [anon_sym_init] = ACTIONS(2455), - [anon_sym_deinit] = ACTIONS(2455), - [anon_sym_subscript] = ACTIONS(2455), - [anon_sym_prefix] = ACTIONS(2455), - [anon_sym_infix] = ACTIONS(2455), - [anon_sym_postfix] = ACTIONS(2455), - [anon_sym_precedencegroup] = ACTIONS(2455), - [anon_sym_associatedtype] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2457), - [sym_property_behavior_modifier] = ACTIONS(2455), - [anon_sym_override] = ACTIONS(2455), - [anon_sym_convenience] = ACTIONS(2455), - [anon_sym_required] = ACTIONS(2455), - [anon_sym_nonisolated] = ACTIONS(2455), - [anon_sym_public] = ACTIONS(2455), - [anon_sym_private] = ACTIONS(2455), - [anon_sym_internal] = ACTIONS(2455), - [anon_sym_fileprivate] = ACTIONS(2455), - [anon_sym_open] = ACTIONS(2455), - [anon_sym_mutating] = ACTIONS(2455), - [anon_sym_nonmutating] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_dynamic] = ACTIONS(2455), - [anon_sym_optional] = ACTIONS(2455), - [anon_sym_final] = ACTIONS(2455), - [anon_sym_inout] = ACTIONS(2455), - [anon_sym_ATescaping] = ACTIONS(2455), - [anon_sym_ATautoclosure] = ACTIONS(2455), - [anon_sym_weak] = ACTIONS(2455), - [anon_sym_unowned] = ACTIONS(2457), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2455), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2455), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [598] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2455), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2455), - [anon_sym_typealias] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_protocol] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_var] = ACTIONS(2455), - [anon_sym_func] = ACTIONS(2455), - [anon_sym_extension] = ACTIONS(2455), - [anon_sym_indirect] = ACTIONS(2455), - [anon_sym_init] = ACTIONS(2455), - [anon_sym_deinit] = ACTIONS(2455), - [anon_sym_subscript] = ACTIONS(2455), - [anon_sym_prefix] = ACTIONS(2455), - [anon_sym_infix] = ACTIONS(2455), - [anon_sym_postfix] = ACTIONS(2455), - [anon_sym_precedencegroup] = ACTIONS(2455), - [anon_sym_associatedtype] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2457), - [sym_property_behavior_modifier] = ACTIONS(2455), - [anon_sym_override] = ACTIONS(2455), - [anon_sym_convenience] = ACTIONS(2455), - [anon_sym_required] = ACTIONS(2455), - [anon_sym_nonisolated] = ACTIONS(2455), - [anon_sym_public] = ACTIONS(2455), - [anon_sym_private] = ACTIONS(2455), - [anon_sym_internal] = ACTIONS(2455), - [anon_sym_fileprivate] = ACTIONS(2455), - [anon_sym_open] = ACTIONS(2455), - [anon_sym_mutating] = ACTIONS(2455), - [anon_sym_nonmutating] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_dynamic] = ACTIONS(2455), - [anon_sym_optional] = ACTIONS(2455), - [anon_sym_final] = ACTIONS(2455), - [anon_sym_inout] = ACTIONS(2455), - [anon_sym_ATescaping] = ACTIONS(2455), - [anon_sym_ATautoclosure] = ACTIONS(2455), - [anon_sym_weak] = ACTIONS(2455), - [anon_sym_unowned] = ACTIONS(2457), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2455), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2455), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [599] = { - [sym__quest] = STATE(423), - [sym__range_operator] = STATE(307), - [sym_custom_operator] = STATE(306), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(677), - [sym_lambda_literal] = STATE(635), - [sym__equality_operator] = STATE(304), - [sym__comparison_operator] = STATE(299), - [sym__three_dot_operator] = STATE(573), - [sym__open_ended_range_operator] = STATE(307), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(526), - [sym__multiplicative_operator] = STATE(540), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(286), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(304), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(285), - [sym__disjunction_operator] = STATE(284), - [sym__nil_coalescing_operator] = STATE(281), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2459), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2417), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_async] = ACTIONS(2459), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_GT] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_CARET_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_BANG_EQ] = ACTIONS(2383), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(2389), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_SLASH] = ACTIONS(2397), - [anon_sym_PERCENT] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_CARET] = ACTIONS(2401), - [anon_sym_LT_LT] = ACTIONS(2377), - [anon_sym_GT_GT] = ACTIONS(2377), - [anon_sym_import] = ACTIONS(2459), - [anon_sym_typealias] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_protocol] = ACTIONS(2459), - [anon_sym_let] = ACTIONS(2459), - [anon_sym_var] = ACTIONS(2459), - [anon_sym_func] = ACTIONS(2459), - [anon_sym_extension] = ACTIONS(2459), - [anon_sym_indirect] = ACTIONS(2459), - [anon_sym_init] = ACTIONS(2459), - [anon_sym_deinit] = ACTIONS(2459), - [anon_sym_subscript] = ACTIONS(2459), - [anon_sym_prefix] = ACTIONS(2459), - [anon_sym_infix] = ACTIONS(2459), - [anon_sym_postfix] = ACTIONS(2459), - [anon_sym_precedencegroup] = ACTIONS(2459), - [anon_sym_associatedtype] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2461), - [sym_property_behavior_modifier] = ACTIONS(2459), - [anon_sym_override] = ACTIONS(2459), - [anon_sym_convenience] = ACTIONS(2459), - [anon_sym_required] = ACTIONS(2459), - [anon_sym_nonisolated] = ACTIONS(2459), - [anon_sym_public] = ACTIONS(2459), - [anon_sym_private] = ACTIONS(2459), - [anon_sym_internal] = ACTIONS(2459), - [anon_sym_fileprivate] = ACTIONS(2459), - [anon_sym_open] = ACTIONS(2459), - [anon_sym_mutating] = ACTIONS(2459), - [anon_sym_nonmutating] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_dynamic] = ACTIONS(2459), - [anon_sym_optional] = ACTIONS(2459), - [anon_sym_final] = ACTIONS(2459), - [anon_sym_inout] = ACTIONS(2459), - [anon_sym_ATescaping] = ACTIONS(2459), - [anon_sym_ATautoclosure] = ACTIONS(2459), - [anon_sym_weak] = ACTIONS(2459), - [anon_sym_unowned] = ACTIONS(2461), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2459), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2459), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(2405), - [sym__disjunction_operator_custom] = ACTIONS(2407), - [sym__nil_coalescing_operator_custom] = ACTIONS(2409), - [sym__eq_eq_custom] = ACTIONS(2385), - [sym__plus_then_ws] = ACTIONS(2411), - [sym__minus_then_ws] = ACTIONS(2411), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [600] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2463), - [aux_sym_simple_identifier_token2] = ACTIONS(2465), - [aux_sym_simple_identifier_token3] = ACTIONS(2465), - [aux_sym_simple_identifier_token4] = ACTIONS(2465), - [anon_sym_actor] = ACTIONS(2463), - [anon_sym_nil] = ACTIONS(2463), - [sym_real_literal] = ACTIONS(2465), - [sym_integer_literal] = ACTIONS(2463), - [sym_hex_literal] = ACTIONS(2465), - [sym_oct_literal] = ACTIONS(2465), - [sym_bin_literal] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2463), - [anon_sym_false] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_BSLASH] = ACTIONS(2465), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2465), - [sym__extended_regex_literal] = ACTIONS(2465), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2465), - [sym__oneline_regex_literal] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2463), - [anon_sym_POUNDselector] = ACTIONS(2465), - [aux_sym_custom_operator_token1] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2463), - [anon_sym_GT] = ACTIONS(2463), - [anon_sym_await] = ACTIONS(2463), - [anon_sym_POUNDfile] = ACTIONS(2463), - [anon_sym_POUNDfileID] = ACTIONS(2465), - [anon_sym_POUNDfilePath] = ACTIONS(2465), - [anon_sym_POUNDline] = ACTIONS(2465), - [anon_sym_POUNDcolumn] = ACTIONS(2465), - [anon_sym_POUNDfunction] = ACTIONS(2465), - [anon_sym_POUNDdsohandle] = ACTIONS(2465), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2465), - [anon_sym_POUNDfileLiteral] = ACTIONS(2465), - [anon_sym_POUNDimageLiteral] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_CARET_LBRACE] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_self] = ACTIONS(2463), - [anon_sym_super] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_guard] = ACTIONS(2463), - [anon_sym_switch] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_POUNDkeyPath] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_try_BANG] = ACTIONS(2465), - [anon_sym_try_QMARK] = ACTIONS(2465), - [anon_sym_PLUS_EQ] = ACTIONS(2465), - [anon_sym_DASH_EQ] = ACTIONS(2465), - [anon_sym_STAR_EQ] = ACTIONS(2465), - [anon_sym_SLASH_EQ] = ACTIONS(2465), - [anon_sym_PERCENT_EQ] = ACTIONS(2465), - [anon_sym_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ] = ACTIONS(2463), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2465), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2465), - [anon_sym_LT_EQ] = ACTIONS(2465), - [anon_sym_GT_EQ] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2465), - [anon_sym_DOT_DOT_LT] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2463), - [anon_sym_SLASH] = ACTIONS(2463), - [anon_sym_PERCENT] = ACTIONS(2463), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_CARET] = ACTIONS(2463), - [anon_sym_LT_LT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [sym_statement_label] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_repeat] = ACTIONS(2463), - [sym_throw_keyword] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_yield] = ACTIONS(2463), - [anon_sym_typealias] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_var] = ACTIONS(2463), - [anon_sym_func] = ACTIONS(2463), - [anon_sym_extension] = ACTIONS(2463), - [anon_sym_indirect] = ACTIONS(2463), - [anon_sym_init] = ACTIONS(2463), - [anon_sym_AT] = ACTIONS(2465), - [anon_sym_final] = ACTIONS(2463), - [anon_sym_weak] = ACTIONS(2463), - [anon_sym_unowned] = ACTIONS(2463), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2465), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2465), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2465), - [sym_raw_str_end_part] = ACTIONS(2465), - [sym__dot_custom] = ACTIONS(2465), - [sym__eq_eq_custom] = ACTIONS(2465), - [sym__plus_then_ws] = ACTIONS(2465), - [sym__minus_then_ws] = ACTIONS(2465), - [sym_bang] = ACTIONS(2465), - [sym__custom_operator] = ACTIONS(2465), - }, - [601] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2467), - [aux_sym_simple_identifier_token2] = ACTIONS(2469), - [aux_sym_simple_identifier_token3] = ACTIONS(2469), - [aux_sym_simple_identifier_token4] = ACTIONS(2469), - [anon_sym_actor] = ACTIONS(2467), - [anon_sym_nil] = ACTIONS(2467), - [sym_real_literal] = ACTIONS(2469), - [sym_integer_literal] = ACTIONS(2467), - [sym_hex_literal] = ACTIONS(2469), - [sym_oct_literal] = ACTIONS(2469), - [sym_bin_literal] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2467), - [anon_sym_false] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [anon_sym_BSLASH] = ACTIONS(2469), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2469), - [sym__extended_regex_literal] = ACTIONS(2469), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2469), - [sym__oneline_regex_literal] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_async] = ACTIONS(2467), - [anon_sym_POUNDselector] = ACTIONS(2469), - [aux_sym_custom_operator_token1] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2467), - [anon_sym_GT] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2467), - [anon_sym_POUNDfile] = ACTIONS(2467), - [anon_sym_POUNDfileID] = ACTIONS(2469), - [anon_sym_POUNDfilePath] = ACTIONS(2469), - [anon_sym_POUNDline] = ACTIONS(2469), - [anon_sym_POUNDcolumn] = ACTIONS(2469), - [anon_sym_POUNDfunction] = ACTIONS(2469), - [anon_sym_POUNDdsohandle] = ACTIONS(2469), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2469), - [anon_sym_POUNDfileLiteral] = ACTIONS(2469), - [anon_sym_POUNDimageLiteral] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_CARET_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_self] = ACTIONS(2467), - [anon_sym_super] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_guard] = ACTIONS(2467), - [anon_sym_switch] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_POUNDkeyPath] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_try_BANG] = ACTIONS(2469), - [anon_sym_try_QMARK] = ACTIONS(2469), - [anon_sym_PLUS_EQ] = ACTIONS(2469), - [anon_sym_DASH_EQ] = ACTIONS(2469), - [anon_sym_STAR_EQ] = ACTIONS(2469), - [anon_sym_SLASH_EQ] = ACTIONS(2469), - [anon_sym_PERCENT_EQ] = ACTIONS(2469), - [anon_sym_EQ] = ACTIONS(2467), - [anon_sym_BANG_EQ] = ACTIONS(2467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2469), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2469), - [anon_sym_LT_EQ] = ACTIONS(2469), - [anon_sym_GT_EQ] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2469), - [anon_sym_DOT_DOT_LT] = ACTIONS(2469), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2467), - [anon_sym_SLASH] = ACTIONS(2467), - [anon_sym_PERCENT] = ACTIONS(2467), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_CARET] = ACTIONS(2467), - [anon_sym_LT_LT] = ACTIONS(2469), - [anon_sym_GT_GT] = ACTIONS(2469), - [sym_statement_label] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_repeat] = ACTIONS(2467), - [sym_throw_keyword] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_yield] = ACTIONS(2467), - [anon_sym_typealias] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_class] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2467), - [anon_sym_var] = ACTIONS(2467), - [anon_sym_func] = ACTIONS(2467), - [anon_sym_extension] = ACTIONS(2467), - [anon_sym_indirect] = ACTIONS(2467), - [anon_sym_init] = ACTIONS(2467), - [anon_sym_AT] = ACTIONS(2469), - [anon_sym_final] = ACTIONS(2467), - [anon_sym_weak] = ACTIONS(2467), - [anon_sym_unowned] = ACTIONS(2467), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2469), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2469), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2469), - [sym_raw_str_end_part] = ACTIONS(2469), - [sym__dot_custom] = ACTIONS(2469), - [sym__eq_eq_custom] = ACTIONS(2469), - [sym__plus_then_ws] = ACTIONS(2469), - [sym__minus_then_ws] = ACTIONS(2469), - [sym_bang] = ACTIONS(2469), - [sym__custom_operator] = ACTIONS(2469), - }, - [602] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2471), - [aux_sym_simple_identifier_token2] = ACTIONS(2473), - [aux_sym_simple_identifier_token3] = ACTIONS(2473), - [aux_sym_simple_identifier_token4] = ACTIONS(2473), - [anon_sym_actor] = ACTIONS(2471), - [anon_sym_nil] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2473), - [sym_integer_literal] = ACTIONS(2471), - [sym_hex_literal] = ACTIONS(2473), - [sym_oct_literal] = ACTIONS(2473), - [sym_bin_literal] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2471), - [anon_sym_false] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [anon_sym_BSLASH] = ACTIONS(2473), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2473), - [sym__extended_regex_literal] = ACTIONS(2473), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2473), - [sym__oneline_regex_literal] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(2471), - [anon_sym_POUNDselector] = ACTIONS(2473), - [aux_sym_custom_operator_token1] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_GT] = ACTIONS(2471), - [anon_sym_await] = ACTIONS(2471), - [anon_sym_POUNDfile] = ACTIONS(2471), - [anon_sym_POUNDfileID] = ACTIONS(2473), - [anon_sym_POUNDfilePath] = ACTIONS(2473), - [anon_sym_POUNDline] = ACTIONS(2473), - [anon_sym_POUNDcolumn] = ACTIONS(2473), - [anon_sym_POUNDfunction] = ACTIONS(2473), - [anon_sym_POUNDdsohandle] = ACTIONS(2473), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2473), - [anon_sym_POUNDfileLiteral] = ACTIONS(2473), - [anon_sym_POUNDimageLiteral] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_CARET_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_self] = ACTIONS(2471), - [anon_sym_super] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_guard] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_POUNDkeyPath] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_try_BANG] = ACTIONS(2473), - [anon_sym_try_QMARK] = ACTIONS(2473), - [anon_sym_PLUS_EQ] = ACTIONS(2473), - [anon_sym_DASH_EQ] = ACTIONS(2473), - [anon_sym_STAR_EQ] = ACTIONS(2473), - [anon_sym_SLASH_EQ] = ACTIONS(2473), - [anon_sym_PERCENT_EQ] = ACTIONS(2473), - [anon_sym_EQ] = ACTIONS(2471), - [anon_sym_BANG_EQ] = ACTIONS(2471), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2473), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2473), - [anon_sym_DOT_DOT_LT] = ACTIONS(2473), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2471), - [anon_sym_SLASH] = ACTIONS(2471), - [anon_sym_PERCENT] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2471), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2473), - [sym_statement_label] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_repeat] = ACTIONS(2471), - [sym_throw_keyword] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_yield] = ACTIONS(2471), - [anon_sym_typealias] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_var] = ACTIONS(2471), - [anon_sym_func] = ACTIONS(2471), - [anon_sym_extension] = ACTIONS(2471), - [anon_sym_indirect] = ACTIONS(2471), - [anon_sym_init] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2473), - [anon_sym_final] = ACTIONS(2471), - [anon_sym_weak] = ACTIONS(2471), - [anon_sym_unowned] = ACTIONS(2471), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2473), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2473), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2473), - [sym_raw_str_end_part] = ACTIONS(2473), - [sym__dot_custom] = ACTIONS(2473), - [sym__eq_eq_custom] = ACTIONS(2473), - [sym__plus_then_ws] = ACTIONS(2473), - [sym__minus_then_ws] = ACTIONS(2473), - [sym_bang] = ACTIONS(2473), - [sym__custom_operator] = ACTIONS(2473), - }, - [603] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2475), - [aux_sym_simple_identifier_token2] = ACTIONS(2477), - [aux_sym_simple_identifier_token3] = ACTIONS(2477), - [aux_sym_simple_identifier_token4] = ACTIONS(2477), - [anon_sym_actor] = ACTIONS(2475), - [anon_sym_nil] = ACTIONS(2475), - [sym_real_literal] = ACTIONS(2477), - [sym_integer_literal] = ACTIONS(2475), - [sym_hex_literal] = ACTIONS(2477), - [sym_oct_literal] = ACTIONS(2477), - [sym_bin_literal] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2475), - [anon_sym_false] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2475), - [anon_sym_BSLASH] = ACTIONS(2477), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2477), - [sym__extended_regex_literal] = ACTIONS(2477), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2477), - [sym__oneline_regex_literal] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_POUNDselector] = ACTIONS(2477), - [aux_sym_custom_operator_token1] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_await] = ACTIONS(2475), - [anon_sym_POUNDfile] = ACTIONS(2475), - [anon_sym_POUNDfileID] = ACTIONS(2477), - [anon_sym_POUNDfilePath] = ACTIONS(2477), - [anon_sym_POUNDline] = ACTIONS(2477), - [anon_sym_POUNDcolumn] = ACTIONS(2477), - [anon_sym_POUNDfunction] = ACTIONS(2477), - [anon_sym_POUNDdsohandle] = ACTIONS(2477), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2477), - [anon_sym_POUNDfileLiteral] = ACTIONS(2477), - [anon_sym_POUNDimageLiteral] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_CARET_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_self] = ACTIONS(2475), - [anon_sym_super] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_guard] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_POUNDkeyPath] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_try_BANG] = ACTIONS(2477), - [anon_sym_try_QMARK] = ACTIONS(2477), - [anon_sym_PLUS_EQ] = ACTIONS(2477), - [anon_sym_DASH_EQ] = ACTIONS(2477), - [anon_sym_STAR_EQ] = ACTIONS(2477), - [anon_sym_SLASH_EQ] = ACTIONS(2477), - [anon_sym_PERCENT_EQ] = ACTIONS(2477), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2477), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2477), - [anon_sym_LT_EQ] = ACTIONS(2477), - [anon_sym_GT_EQ] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2477), - [anon_sym_DOT_DOT_LT] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2477), - [anon_sym_GT_GT] = ACTIONS(2477), - [sym_statement_label] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_repeat] = ACTIONS(2475), - [sym_throw_keyword] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_typealias] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_var] = ACTIONS(2475), - [anon_sym_func] = ACTIONS(2475), - [anon_sym_extension] = ACTIONS(2475), - [anon_sym_indirect] = ACTIONS(2475), - [anon_sym_init] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2477), - [anon_sym_final] = ACTIONS(2475), - [anon_sym_weak] = ACTIONS(2475), - [anon_sym_unowned] = ACTIONS(2475), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2477), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2477), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2477), - [sym_raw_str_end_part] = ACTIONS(2477), - [sym__dot_custom] = ACTIONS(2477), - [sym__eq_eq_custom] = ACTIONS(2477), - [sym__plus_then_ws] = ACTIONS(2477), - [sym__minus_then_ws] = ACTIONS(2477), - [sym_bang] = ACTIONS(2477), - [sym__custom_operator] = ACTIONS(2477), - }, - [604] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2479), - [aux_sym_simple_identifier_token2] = ACTIONS(2481), - [aux_sym_simple_identifier_token3] = ACTIONS(2481), - [aux_sym_simple_identifier_token4] = ACTIONS(2481), - [anon_sym_actor] = ACTIONS(2479), - [anon_sym_nil] = ACTIONS(2479), - [sym_real_literal] = ACTIONS(2481), - [sym_integer_literal] = ACTIONS(2479), - [sym_hex_literal] = ACTIONS(2481), - [sym_oct_literal] = ACTIONS(2481), - [sym_bin_literal] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2479), - [anon_sym_false] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [anon_sym_BSLASH] = ACTIONS(2481), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2481), - [sym__extended_regex_literal] = ACTIONS(2481), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2481), - [sym__oneline_regex_literal] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_POUNDselector] = ACTIONS(2481), - [aux_sym_custom_operator_token1] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_GT] = ACTIONS(2479), - [anon_sym_await] = ACTIONS(2479), - [anon_sym_POUNDfile] = ACTIONS(2479), - [anon_sym_POUNDfileID] = ACTIONS(2481), - [anon_sym_POUNDfilePath] = ACTIONS(2481), - [anon_sym_POUNDline] = ACTIONS(2481), - [anon_sym_POUNDcolumn] = ACTIONS(2481), - [anon_sym_POUNDfunction] = ACTIONS(2481), - [anon_sym_POUNDdsohandle] = ACTIONS(2481), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2481), - [anon_sym_POUNDfileLiteral] = ACTIONS(2481), - [anon_sym_POUNDimageLiteral] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_CARET_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_self] = ACTIONS(2479), - [anon_sym_super] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_guard] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_POUNDkeyPath] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_try_BANG] = ACTIONS(2481), - [anon_sym_try_QMARK] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_STAR_EQ] = ACTIONS(2481), - [anon_sym_SLASH_EQ] = ACTIONS(2481), - [anon_sym_PERCENT_EQ] = ACTIONS(2481), - [anon_sym_EQ] = ACTIONS(2479), - [anon_sym_BANG_EQ] = ACTIONS(2479), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2481), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2481), - [anon_sym_DOT_DOT_LT] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2479), - [anon_sym_SLASH] = ACTIONS(2479), - [anon_sym_PERCENT] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(2481), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_GT_GT] = ACTIONS(2481), - [sym_statement_label] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_repeat] = ACTIONS(2479), - [sym_throw_keyword] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_typealias] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_var] = ACTIONS(2479), - [anon_sym_func] = ACTIONS(2479), - [anon_sym_extension] = ACTIONS(2479), - [anon_sym_indirect] = ACTIONS(2479), - [anon_sym_init] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2481), - [anon_sym_final] = ACTIONS(2479), - [anon_sym_weak] = ACTIONS(2479), - [anon_sym_unowned] = ACTIONS(2479), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2481), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2481), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2481), - [sym_raw_str_end_part] = ACTIONS(2481), - [sym__dot_custom] = ACTIONS(2481), - [sym__eq_eq_custom] = ACTIONS(2481), - [sym__plus_then_ws] = ACTIONS(2481), - [sym__minus_then_ws] = ACTIONS(2481), - [sym_bang] = ACTIONS(2481), - [sym__custom_operator] = ACTIONS(2481), - }, - [605] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2483), - [aux_sym_simple_identifier_token2] = ACTIONS(2485), - [aux_sym_simple_identifier_token3] = ACTIONS(2485), - [aux_sym_simple_identifier_token4] = ACTIONS(2485), - [anon_sym_actor] = ACTIONS(2483), - [anon_sym_nil] = ACTIONS(2483), - [sym_real_literal] = ACTIONS(2485), - [sym_integer_literal] = ACTIONS(2483), - [sym_hex_literal] = ACTIONS(2485), - [sym_oct_literal] = ACTIONS(2485), - [sym_bin_literal] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [anon_sym_BSLASH] = ACTIONS(2485), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2485), - [sym__extended_regex_literal] = ACTIONS(2485), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2485), - [sym__oneline_regex_literal] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_POUNDselector] = ACTIONS(2485), - [aux_sym_custom_operator_token1] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2483), - [anon_sym_GT] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(2483), - [anon_sym_POUNDfile] = ACTIONS(2483), - [anon_sym_POUNDfileID] = ACTIONS(2485), - [anon_sym_POUNDfilePath] = ACTIONS(2485), - [anon_sym_POUNDline] = ACTIONS(2485), - [anon_sym_POUNDcolumn] = ACTIONS(2485), - [anon_sym_POUNDfunction] = ACTIONS(2485), - [anon_sym_POUNDdsohandle] = ACTIONS(2485), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2485), - [anon_sym_POUNDfileLiteral] = ACTIONS(2485), - [anon_sym_POUNDimageLiteral] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_CARET_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_self] = ACTIONS(2483), - [anon_sym_super] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_guard] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_POUNDkeyPath] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_try_BANG] = ACTIONS(2485), - [anon_sym_try_QMARK] = ACTIONS(2485), - [anon_sym_PLUS_EQ] = ACTIONS(2485), - [anon_sym_DASH_EQ] = ACTIONS(2485), - [anon_sym_STAR_EQ] = ACTIONS(2485), - [anon_sym_SLASH_EQ] = ACTIONS(2485), - [anon_sym_PERCENT_EQ] = ACTIONS(2485), - [anon_sym_EQ] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2483), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2485), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2485), - [anon_sym_LT_EQ] = ACTIONS(2485), - [anon_sym_GT_EQ] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2485), - [anon_sym_DOT_DOT_LT] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(2483), - [anon_sym_PERCENT] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2485), - [anon_sym_CARET] = ACTIONS(2483), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_GT_GT] = ACTIONS(2485), - [sym_statement_label] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_repeat] = ACTIONS(2483), - [sym_throw_keyword] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_typealias] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_var] = ACTIONS(2483), - [anon_sym_func] = ACTIONS(2483), - [anon_sym_extension] = ACTIONS(2483), - [anon_sym_indirect] = ACTIONS(2483), - [anon_sym_init] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2485), - [anon_sym_final] = ACTIONS(2483), - [anon_sym_weak] = ACTIONS(2483), - [anon_sym_unowned] = ACTIONS(2483), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2485), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2485), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2485), - [sym_raw_str_end_part] = ACTIONS(2485), - [sym__dot_custom] = ACTIONS(2485), - [sym__eq_eq_custom] = ACTIONS(2485), - [sym__plus_then_ws] = ACTIONS(2485), - [sym__minus_then_ws] = ACTIONS(2485), - [sym_bang] = ACTIONS(2485), - [sym__custom_operator] = ACTIONS(2485), - }, - [606] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2487), - [aux_sym_simple_identifier_token2] = ACTIONS(2489), - [aux_sym_simple_identifier_token3] = ACTIONS(2489), - [aux_sym_simple_identifier_token4] = ACTIONS(2489), - [anon_sym_actor] = ACTIONS(2487), - [anon_sym_nil] = ACTIONS(2487), - [sym_real_literal] = ACTIONS(2489), - [sym_integer_literal] = ACTIONS(2487), - [sym_hex_literal] = ACTIONS(2489), - [sym_oct_literal] = ACTIONS(2489), - [sym_bin_literal] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_BSLASH] = ACTIONS(2489), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2489), - [sym__extended_regex_literal] = ACTIONS(2489), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2489), - [sym__oneline_regex_literal] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_POUNDselector] = ACTIONS(2489), - [aux_sym_custom_operator_token1] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_POUNDfile] = ACTIONS(2487), - [anon_sym_POUNDfileID] = ACTIONS(2489), - [anon_sym_POUNDfilePath] = ACTIONS(2489), - [anon_sym_POUNDline] = ACTIONS(2489), - [anon_sym_POUNDcolumn] = ACTIONS(2489), - [anon_sym_POUNDfunction] = ACTIONS(2489), - [anon_sym_POUNDdsohandle] = ACTIONS(2489), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2489), - [anon_sym_POUNDfileLiteral] = ACTIONS(2489), - [anon_sym_POUNDimageLiteral] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_CARET_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_self] = ACTIONS(2487), - [anon_sym_super] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_guard] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_POUNDkeyPath] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_try_BANG] = ACTIONS(2489), - [anon_sym_try_QMARK] = ACTIONS(2489), - [anon_sym_PLUS_EQ] = ACTIONS(2489), - [anon_sym_DASH_EQ] = ACTIONS(2489), - [anon_sym_STAR_EQ] = ACTIONS(2489), - [anon_sym_SLASH_EQ] = ACTIONS(2489), - [anon_sym_PERCENT_EQ] = ACTIONS(2489), - [anon_sym_EQ] = ACTIONS(2487), - [anon_sym_BANG_EQ] = ACTIONS(2487), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2489), - [anon_sym_LT_EQ] = ACTIONS(2489), - [anon_sym_GT_EQ] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2489), - [anon_sym_DOT_DOT_LT] = ACTIONS(2489), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_PERCENT] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2489), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_LT_LT] = ACTIONS(2489), - [anon_sym_GT_GT] = ACTIONS(2489), - [sym_statement_label] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_repeat] = ACTIONS(2487), - [sym_throw_keyword] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_typealias] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_var] = ACTIONS(2487), - [anon_sym_func] = ACTIONS(2487), - [anon_sym_extension] = ACTIONS(2487), - [anon_sym_indirect] = ACTIONS(2487), - [anon_sym_init] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2489), - [anon_sym_final] = ACTIONS(2487), - [anon_sym_weak] = ACTIONS(2487), - [anon_sym_unowned] = ACTIONS(2487), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2489), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2489), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2489), - [sym_raw_str_end_part] = ACTIONS(2489), - [sym__dot_custom] = ACTIONS(2489), - [sym__eq_eq_custom] = ACTIONS(2489), - [sym__plus_then_ws] = ACTIONS(2489), - [sym__minus_then_ws] = ACTIONS(2489), - [sym_bang] = ACTIONS(2489), - [sym__custom_operator] = ACTIONS(2489), - }, - [607] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(855), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1059), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(2497), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_case] = ACTIONS(2367), - [anon_sym_fallthrough] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2503), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_GT_GT] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2367), - [anon_sym_prefix] = ACTIONS(2367), - [anon_sym_infix] = ACTIONS(2367), - [anon_sym_postfix] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2373), - [sym_property_behavior_modifier] = ACTIONS(2367), - [anon_sym_override] = ACTIONS(2367), - [anon_sym_convenience] = ACTIONS(2367), - [anon_sym_required] = ACTIONS(2367), - [anon_sym_nonisolated] = ACTIONS(2367), - [anon_sym_public] = ACTIONS(2367), - [anon_sym_private] = ACTIONS(2367), - [anon_sym_internal] = ACTIONS(2367), - [anon_sym_fileprivate] = ACTIONS(2367), - [anon_sym_open] = ACTIONS(2367), - [anon_sym_mutating] = ACTIONS(2367), - [anon_sym_nonmutating] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_dynamic] = ACTIONS(2367), - [anon_sym_optional] = ACTIONS(2367), - [anon_sym_final] = ACTIONS(2367), - [anon_sym_inout] = ACTIONS(2367), - [anon_sym_ATescaping] = ACTIONS(2367), - [anon_sym_ATautoclosure] = ACTIONS(2367), - [anon_sym_weak] = ACTIONS(2367), - [anon_sym_unowned] = ACTIONS(2373), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2367), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2367), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2367), - [sym__explicit_semi] = ACTIONS(2367), - [sym__dot_custom] = ACTIONS(2521), - [sym__conjunction_operator_custom] = ACTIONS(2523), - [sym__disjunction_operator_custom] = ACTIONS(2525), - [sym__nil_coalescing_operator_custom] = ACTIONS(2527), - [sym__eq_eq_custom] = ACTIONS(2503), - [sym__plus_then_ws] = ACTIONS(2529), - [sym__minus_then_ws] = ACTIONS(2529), - [sym_bang] = ACTIONS(2517), - [sym_default_keyword] = ACTIONS(2367), - [sym_where_keyword] = ACTIONS(2367), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [608] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym_where_clause] = STATE(2901), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2533), - [sym__immediate_quest] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(2497), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_CARET_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_case] = ACTIONS(2531), - [anon_sym_fallthrough] = ACTIONS(2531), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2503), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_GT_GT] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2531), - [anon_sym_prefix] = ACTIONS(2531), - [anon_sym_infix] = ACTIONS(2531), - [anon_sym_postfix] = ACTIONS(2531), - [anon_sym_AT] = ACTIONS(2537), - [sym_property_behavior_modifier] = ACTIONS(2531), - [anon_sym_override] = ACTIONS(2531), - [anon_sym_convenience] = ACTIONS(2531), - [anon_sym_required] = ACTIONS(2531), - [anon_sym_nonisolated] = ACTIONS(2531), - [anon_sym_public] = ACTIONS(2531), - [anon_sym_private] = ACTIONS(2531), - [anon_sym_internal] = ACTIONS(2531), - [anon_sym_fileprivate] = ACTIONS(2531), - [anon_sym_open] = ACTIONS(2531), - [anon_sym_mutating] = ACTIONS(2531), - [anon_sym_nonmutating] = ACTIONS(2531), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_dynamic] = ACTIONS(2531), - [anon_sym_optional] = ACTIONS(2531), - [anon_sym_final] = ACTIONS(2531), - [anon_sym_inout] = ACTIONS(2531), - [anon_sym_ATescaping] = ACTIONS(2531), - [anon_sym_ATautoclosure] = ACTIONS(2531), - [anon_sym_weak] = ACTIONS(2531), - [anon_sym_unowned] = ACTIONS(2537), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2531), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2531), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2531), - [sym__explicit_semi] = ACTIONS(2531), - [sym__dot_custom] = ACTIONS(2521), - [sym__conjunction_operator_custom] = ACTIONS(2523), - [sym__disjunction_operator_custom] = ACTIONS(2525), - [sym__nil_coalescing_operator_custom] = ACTIONS(2527), - [sym__eq_eq_custom] = ACTIONS(2503), - [sym__plus_then_ws] = ACTIONS(2529), - [sym__minus_then_ws] = ACTIONS(2529), - [sym_bang] = ACTIONS(2517), - [sym_default_keyword] = ACTIONS(2531), - [sym_where_keyword] = ACTIONS(2539), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [609] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2533), - [sym__immediate_quest] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(2497), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_CARET_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_case] = ACTIONS(2439), - [anon_sym_fallthrough] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2503), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_GT_GT] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2439), - [anon_sym_prefix] = ACTIONS(2439), - [anon_sym_infix] = ACTIONS(2439), - [anon_sym_postfix] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2441), - [sym_property_behavior_modifier] = ACTIONS(2439), - [anon_sym_override] = ACTIONS(2439), - [anon_sym_convenience] = ACTIONS(2439), - [anon_sym_required] = ACTIONS(2439), - [anon_sym_nonisolated] = ACTIONS(2439), - [anon_sym_public] = ACTIONS(2439), - [anon_sym_private] = ACTIONS(2439), - [anon_sym_internal] = ACTIONS(2439), - [anon_sym_fileprivate] = ACTIONS(2439), - [anon_sym_open] = ACTIONS(2439), - [anon_sym_mutating] = ACTIONS(2439), - [anon_sym_nonmutating] = ACTIONS(2439), - [anon_sym_static] = ACTIONS(2439), - [anon_sym_dynamic] = ACTIONS(2439), - [anon_sym_optional] = ACTIONS(2439), - [anon_sym_final] = ACTIONS(2439), - [anon_sym_inout] = ACTIONS(2439), - [anon_sym_ATescaping] = ACTIONS(2439), - [anon_sym_ATautoclosure] = ACTIONS(2439), - [anon_sym_weak] = ACTIONS(2439), - [anon_sym_unowned] = ACTIONS(2441), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2439), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2439), - [sym__explicit_semi] = ACTIONS(2439), - [sym__dot_custom] = ACTIONS(2521), - [sym__conjunction_operator_custom] = ACTIONS(2523), - [sym__disjunction_operator_custom] = ACTIONS(2525), - [sym__nil_coalescing_operator_custom] = ACTIONS(2527), - [sym__eq_eq_custom] = ACTIONS(2503), - [sym__plus_then_ws] = ACTIONS(2529), - [sym__minus_then_ws] = ACTIONS(2529), - [sym_bang] = ACTIONS(2517), - [sym_default_keyword] = ACTIONS(2439), - [sym_where_keyword] = ACTIONS(2439), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [610] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2533), - [sym__immediate_quest] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(2497), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_CARET_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_case] = ACTIONS(2427), - [anon_sym_fallthrough] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2503), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_GT_GT] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_prefix] = ACTIONS(2427), - [anon_sym_infix] = ACTIONS(2427), - [anon_sym_postfix] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2429), - [sym_property_behavior_modifier] = ACTIONS(2427), - [anon_sym_override] = ACTIONS(2427), - [anon_sym_convenience] = ACTIONS(2427), - [anon_sym_required] = ACTIONS(2427), - [anon_sym_nonisolated] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_internal] = ACTIONS(2427), - [anon_sym_fileprivate] = ACTIONS(2427), - [anon_sym_open] = ACTIONS(2427), - [anon_sym_mutating] = ACTIONS(2427), - [anon_sym_nonmutating] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_dynamic] = ACTIONS(2427), - [anon_sym_optional] = ACTIONS(2427), - [anon_sym_final] = ACTIONS(2427), - [anon_sym_inout] = ACTIONS(2427), - [anon_sym_ATescaping] = ACTIONS(2427), - [anon_sym_ATautoclosure] = ACTIONS(2427), - [anon_sym_weak] = ACTIONS(2427), - [anon_sym_unowned] = ACTIONS(2429), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2427), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2427), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2427), - [sym__explicit_semi] = ACTIONS(2427), - [sym__dot_custom] = ACTIONS(2521), - [sym__conjunction_operator_custom] = ACTIONS(2523), - [sym__disjunction_operator_custom] = ACTIONS(2525), - [sym__nil_coalescing_operator_custom] = ACTIONS(2527), - [sym__eq_eq_custom] = ACTIONS(2503), - [sym__plus_then_ws] = ACTIONS(2529), - [sym__minus_then_ws] = ACTIONS(2529), - [sym_bang] = ACTIONS(2517), - [sym_default_keyword] = ACTIONS(2427), - [sym_where_keyword] = ACTIONS(2427), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [611] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_case] = ACTIONS(2435), - [anon_sym_fallthrough] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [anon_sym_class] = ACTIONS(2435), - [anon_sym_prefix] = ACTIONS(2435), - [anon_sym_infix] = ACTIONS(2435), - [anon_sym_postfix] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2437), - [sym_property_behavior_modifier] = ACTIONS(2435), - [anon_sym_override] = ACTIONS(2435), - [anon_sym_convenience] = ACTIONS(2435), - [anon_sym_required] = ACTIONS(2435), - [anon_sym_nonisolated] = ACTIONS(2435), - [anon_sym_public] = ACTIONS(2435), - [anon_sym_private] = ACTIONS(2435), - [anon_sym_internal] = ACTIONS(2435), - [anon_sym_fileprivate] = ACTIONS(2435), - [anon_sym_open] = ACTIONS(2435), - [anon_sym_mutating] = ACTIONS(2435), - [anon_sym_nonmutating] = ACTIONS(2435), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_dynamic] = ACTIONS(2435), - [anon_sym_optional] = ACTIONS(2435), - [anon_sym_final] = ACTIONS(2435), - [anon_sym_inout] = ACTIONS(2435), - [anon_sym_ATescaping] = ACTIONS(2435), - [anon_sym_ATautoclosure] = ACTIONS(2435), - [anon_sym_weak] = ACTIONS(2435), - [anon_sym_unowned] = ACTIONS(2437), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2435), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2435), - [sym__explicit_semi] = ACTIONS(2435), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym_default_keyword] = ACTIONS(2435), - [sym_where_keyword] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [612] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_fallthrough] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_prefix] = ACTIONS(2431), - [anon_sym_infix] = ACTIONS(2431), - [anon_sym_postfix] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2433), - [sym_property_behavior_modifier] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_convenience] = ACTIONS(2431), - [anon_sym_required] = ACTIONS(2431), - [anon_sym_nonisolated] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_internal] = ACTIONS(2431), - [anon_sym_fileprivate] = ACTIONS(2431), - [anon_sym_open] = ACTIONS(2431), - [anon_sym_mutating] = ACTIONS(2431), - [anon_sym_nonmutating] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_dynamic] = ACTIONS(2431), - [anon_sym_optional] = ACTIONS(2431), - [anon_sym_final] = ACTIONS(2431), - [anon_sym_inout] = ACTIONS(2431), - [anon_sym_ATescaping] = ACTIONS(2431), - [anon_sym_ATautoclosure] = ACTIONS(2431), - [anon_sym_weak] = ACTIONS(2431), - [anon_sym_unowned] = ACTIONS(2433), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2431), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2431), - [sym__explicit_semi] = ACTIONS(2431), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym_default_keyword] = ACTIONS(2431), - [sym_where_keyword] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [613] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2533), - [sym__immediate_quest] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(2497), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_CARET_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_fallthrough] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2503), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_GT_GT] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_prefix] = ACTIONS(2447), - [anon_sym_infix] = ACTIONS(2447), - [anon_sym_postfix] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2449), - [sym_property_behavior_modifier] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_convenience] = ACTIONS(2447), - [anon_sym_required] = ACTIONS(2447), - [anon_sym_nonisolated] = ACTIONS(2447), - [anon_sym_public] = ACTIONS(2447), - [anon_sym_private] = ACTIONS(2447), - [anon_sym_internal] = ACTIONS(2447), - [anon_sym_fileprivate] = ACTIONS(2447), - [anon_sym_open] = ACTIONS(2447), - [anon_sym_mutating] = ACTIONS(2447), - [anon_sym_nonmutating] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_dynamic] = ACTIONS(2447), - [anon_sym_optional] = ACTIONS(2447), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_inout] = ACTIONS(2447), - [anon_sym_ATescaping] = ACTIONS(2447), - [anon_sym_ATautoclosure] = ACTIONS(2447), - [anon_sym_weak] = ACTIONS(2447), - [anon_sym_unowned] = ACTIONS(2449), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2447), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2447), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2447), - [sym__explicit_semi] = ACTIONS(2447), - [sym__dot_custom] = ACTIONS(2521), - [sym__conjunction_operator_custom] = ACTIONS(2523), - [sym__disjunction_operator_custom] = ACTIONS(2525), - [sym__nil_coalescing_operator_custom] = ACTIONS(2527), - [sym__eq_eq_custom] = ACTIONS(2503), - [sym__plus_then_ws] = ACTIONS(2529), - [sym__minus_then_ws] = ACTIONS(2529), - [sym_bang] = ACTIONS(2517), - [sym_default_keyword] = ACTIONS(2447), - [sym_where_keyword] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [614] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(862), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1138), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_case] = ACTIONS(2367), - [anon_sym_fallthrough] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2367), - [anon_sym_prefix] = ACTIONS(2367), - [anon_sym_infix] = ACTIONS(2367), - [anon_sym_postfix] = ACTIONS(2367), - [anon_sym_AT] = ACTIONS(2373), - [sym_property_behavior_modifier] = ACTIONS(2367), - [anon_sym_override] = ACTIONS(2367), - [anon_sym_convenience] = ACTIONS(2367), - [anon_sym_required] = ACTIONS(2367), - [anon_sym_nonisolated] = ACTIONS(2367), - [anon_sym_public] = ACTIONS(2367), - [anon_sym_private] = ACTIONS(2367), - [anon_sym_internal] = ACTIONS(2367), - [anon_sym_fileprivate] = ACTIONS(2367), - [anon_sym_open] = ACTIONS(2367), - [anon_sym_mutating] = ACTIONS(2367), - [anon_sym_nonmutating] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_dynamic] = ACTIONS(2367), - [anon_sym_optional] = ACTIONS(2367), - [anon_sym_final] = ACTIONS(2367), - [anon_sym_inout] = ACTIONS(2367), - [anon_sym_ATescaping] = ACTIONS(2367), - [anon_sym_ATautoclosure] = ACTIONS(2367), - [anon_sym_weak] = ACTIONS(2367), - [anon_sym_unowned] = ACTIONS(2373), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2367), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2367), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2367), - [sym__explicit_semi] = ACTIONS(2367), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2367), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [615] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2443), - [anon_sym_fallthrough] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_prefix] = ACTIONS(2443), - [anon_sym_infix] = ACTIONS(2443), - [anon_sym_postfix] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2445), - [sym_property_behavior_modifier] = ACTIONS(2443), - [anon_sym_override] = ACTIONS(2443), - [anon_sym_convenience] = ACTIONS(2443), - [anon_sym_required] = ACTIONS(2443), - [anon_sym_nonisolated] = ACTIONS(2443), - [anon_sym_public] = ACTIONS(2443), - [anon_sym_private] = ACTIONS(2443), - [anon_sym_internal] = ACTIONS(2443), - [anon_sym_fileprivate] = ACTIONS(2443), - [anon_sym_open] = ACTIONS(2443), - [anon_sym_mutating] = ACTIONS(2443), - [anon_sym_nonmutating] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_dynamic] = ACTIONS(2443), - [anon_sym_optional] = ACTIONS(2443), - [anon_sym_final] = ACTIONS(2443), - [anon_sym_inout] = ACTIONS(2443), - [anon_sym_ATescaping] = ACTIONS(2443), - [anon_sym_ATautoclosure] = ACTIONS(2443), - [anon_sym_weak] = ACTIONS(2443), - [anon_sym_unowned] = ACTIONS(2445), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2443), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2443), - [sym__explicit_semi] = ACTIONS(2443), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(2527), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(2529), - [sym__minus_then_ws] = ACTIONS(2529), - [sym_bang] = ACTIONS(2443), - [sym_default_keyword] = ACTIONS(2443), - [sym_where_keyword] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [616] = { - [sym__quest] = STATE(387), - [sym__range_operator] = STATE(229), - [sym_custom_operator] = STATE(217), - [sym_navigation_suffix] = STATE(871), - [sym_call_suffix] = STATE(877), - [sym__fn_call_lambda_arguments] = STATE(878), - [sym_value_arguments] = STATE(859), - [sym_lambda_literal] = STATE(815), - [sym__equality_operator] = STATE(216), - [sym__comparison_operator] = STATE(215), - [sym__three_dot_operator] = STATE(578), - [sym__open_ended_range_operator] = STATE(229), - [sym__is_operator] = STATE(3402), - [sym__additive_operator] = STATE(365), - [sym__multiplicative_operator] = STATE(480), - [sym_as_operator] = STATE(3234), - [sym__bitwise_binary_operator] = STATE(242), - [sym__postfix_unary_operator] = STATE(882), - [sym__eq_eq] = STATE(216), - [sym__dot] = STATE(4541), - [sym__conjunction_operator] = STATE(245), - [sym__disjunction_operator] = STATE(247), - [sym__nil_coalescing_operator] = STATE(256), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2533), - [sym__immediate_quest] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(2497), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2499), - [anon_sym_GT] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_CARET_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_case] = ACTIONS(2415), - [anon_sym_fallthrough] = ACTIONS(2415), - [anon_sym_BANG_EQ] = ACTIONS(2501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2503), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2503), - [anon_sym_LT_EQ] = ACTIONS(2505), - [anon_sym_GT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2507), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym_LT_LT] = ACTIONS(2497), - [anon_sym_GT_GT] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2415), - [anon_sym_prefix] = ACTIONS(2415), - [anon_sym_infix] = ACTIONS(2415), - [anon_sym_postfix] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2421), - [sym_property_behavior_modifier] = ACTIONS(2415), - [anon_sym_override] = ACTIONS(2415), - [anon_sym_convenience] = ACTIONS(2415), - [anon_sym_required] = ACTIONS(2415), - [anon_sym_nonisolated] = ACTIONS(2415), - [anon_sym_public] = ACTIONS(2415), - [anon_sym_private] = ACTIONS(2415), - [anon_sym_internal] = ACTIONS(2415), - [anon_sym_fileprivate] = ACTIONS(2415), - [anon_sym_open] = ACTIONS(2415), - [anon_sym_mutating] = ACTIONS(2415), - [anon_sym_nonmutating] = ACTIONS(2415), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_dynamic] = ACTIONS(2415), - [anon_sym_optional] = ACTIONS(2415), - [anon_sym_final] = ACTIONS(2415), - [anon_sym_inout] = ACTIONS(2415), - [anon_sym_ATescaping] = ACTIONS(2415), - [anon_sym_ATautoclosure] = ACTIONS(2415), - [anon_sym_weak] = ACTIONS(2415), - [anon_sym_unowned] = ACTIONS(2421), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2415), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2415), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2415), - [sym__explicit_semi] = ACTIONS(2415), - [sym__dot_custom] = ACTIONS(2521), - [sym__conjunction_operator_custom] = ACTIONS(2523), - [sym__disjunction_operator_custom] = ACTIONS(2525), - [sym__nil_coalescing_operator_custom] = ACTIONS(2527), - [sym__eq_eq_custom] = ACTIONS(2503), - [sym__plus_then_ws] = ACTIONS(2529), - [sym__minus_then_ws] = ACTIONS(2529), - [sym_bang] = ACTIONS(2517), - [sym_default_keyword] = ACTIONS(2415), - [sym_where_keyword] = ACTIONS(2415), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [617] = { - [sym__arrow_operator] = STATE(3336), - [sym__async_keyword] = STATE(4999), - [sym_throws] = STATE(6210), - [aux_sym_protocol_composition_type_repeat1] = STATE(665), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_RBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2585), - [sym__immediate_quest] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2581), - [aux_sym_custom_operator_token1] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_CARET_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2581), - [anon_sym_LT_EQ] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_is] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_typealias] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_protocol] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_func] = ACTIONS(2581), - [anon_sym_extension] = ACTIONS(2581), - [anon_sym_indirect] = ACTIONS(2581), - [anon_sym_init] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [anon_sym_deinit] = ACTIONS(2581), - [anon_sym_subscript] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_precedencegroup] = ACTIONS(2581), - [anon_sym_associatedtype] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2589), - [sym__dot_custom] = ACTIONS(2581), - [sym__conjunction_operator_custom] = ACTIONS(2581), - [sym__disjunction_operator_custom] = ACTIONS(2581), - [sym__nil_coalescing_operator_custom] = ACTIONS(2581), - [sym__eq_eq_custom] = ACTIONS(2581), - [sym__plus_then_ws] = ACTIONS(2581), - [sym__minus_then_ws] = ACTIONS(2581), - [sym_bang] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__as_custom] = ACTIONS(2581), - [sym__as_quest_custom] = ACTIONS(2581), - [sym__as_bang_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(2593), - [sym__custom_operator] = ACTIONS(2581), - }, - [618] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_fallthrough] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_prefix] = ACTIONS(2455), - [anon_sym_infix] = ACTIONS(2455), - [anon_sym_postfix] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2457), - [sym_property_behavior_modifier] = ACTIONS(2455), - [anon_sym_override] = ACTIONS(2455), - [anon_sym_convenience] = ACTIONS(2455), - [anon_sym_required] = ACTIONS(2455), - [anon_sym_nonisolated] = ACTIONS(2455), - [anon_sym_public] = ACTIONS(2455), - [anon_sym_private] = ACTIONS(2455), - [anon_sym_internal] = ACTIONS(2455), - [anon_sym_fileprivate] = ACTIONS(2455), - [anon_sym_open] = ACTIONS(2455), - [anon_sym_mutating] = ACTIONS(2455), - [anon_sym_nonmutating] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_dynamic] = ACTIONS(2455), - [anon_sym_optional] = ACTIONS(2455), - [anon_sym_final] = ACTIONS(2455), - [anon_sym_inout] = ACTIONS(2455), - [anon_sym_ATescaping] = ACTIONS(2455), - [anon_sym_ATautoclosure] = ACTIONS(2455), - [anon_sym_weak] = ACTIONS(2455), - [anon_sym_unowned] = ACTIONS(2457), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2455), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2455), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2455), - [sym__explicit_semi] = ACTIONS(2455), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2455), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [619] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_case] = ACTIONS(2599), - [anon_sym_fallthrough] = ACTIONS(2599), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2599), - [anon_sym_prefix] = ACTIONS(2599), - [anon_sym_infix] = ACTIONS(2599), - [anon_sym_postfix] = ACTIONS(2599), - [anon_sym_AT] = ACTIONS(2601), - [sym_property_behavior_modifier] = ACTIONS(2599), - [anon_sym_override] = ACTIONS(2599), - [anon_sym_convenience] = ACTIONS(2599), - [anon_sym_required] = ACTIONS(2599), - [anon_sym_nonisolated] = ACTIONS(2599), - [anon_sym_public] = ACTIONS(2599), - [anon_sym_private] = ACTIONS(2599), - [anon_sym_internal] = ACTIONS(2599), - [anon_sym_fileprivate] = ACTIONS(2599), - [anon_sym_open] = ACTIONS(2599), - [anon_sym_mutating] = ACTIONS(2599), - [anon_sym_nonmutating] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_dynamic] = ACTIONS(2599), - [anon_sym_optional] = ACTIONS(2599), - [anon_sym_final] = ACTIONS(2599), - [anon_sym_inout] = ACTIONS(2599), - [anon_sym_ATescaping] = ACTIONS(2599), - [anon_sym_ATautoclosure] = ACTIONS(2599), - [anon_sym_weak] = ACTIONS(2599), - [anon_sym_unowned] = ACTIONS(2601), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2599), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2599), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2599), - [sym__explicit_semi] = ACTIONS(2599), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2599), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [620] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_case] = ACTIONS(2603), - [anon_sym_fallthrough] = ACTIONS(2603), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2603), - [anon_sym_prefix] = ACTIONS(2603), - [anon_sym_infix] = ACTIONS(2603), - [anon_sym_postfix] = ACTIONS(2603), - [anon_sym_AT] = ACTIONS(2605), - [sym_property_behavior_modifier] = ACTIONS(2603), - [anon_sym_override] = ACTIONS(2603), - [anon_sym_convenience] = ACTIONS(2603), - [anon_sym_required] = ACTIONS(2603), - [anon_sym_nonisolated] = ACTIONS(2603), - [anon_sym_public] = ACTIONS(2603), - [anon_sym_private] = ACTIONS(2603), - [anon_sym_internal] = ACTIONS(2603), - [anon_sym_fileprivate] = ACTIONS(2603), - [anon_sym_open] = ACTIONS(2603), - [anon_sym_mutating] = ACTIONS(2603), - [anon_sym_nonmutating] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_dynamic] = ACTIONS(2603), - [anon_sym_optional] = ACTIONS(2603), - [anon_sym_final] = ACTIONS(2603), - [anon_sym_inout] = ACTIONS(2603), - [anon_sym_ATescaping] = ACTIONS(2603), - [anon_sym_ATautoclosure] = ACTIONS(2603), - [anon_sym_weak] = ACTIONS(2603), - [anon_sym_unowned] = ACTIONS(2605), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2603), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2603), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2603), - [sym__explicit_semi] = ACTIONS(2603), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2603), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [621] = { - [sym__arrow_operator] = STATE(3336), - [sym__async_keyword] = STATE(4999), - [sym_throws] = STATE(6210), - [aux_sym_protocol_composition_type_repeat1] = STATE(665), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2607), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2607), - [anon_sym_RBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2609), - [sym__immediate_quest] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2607), - [aux_sym_custom_operator_token1] = ACTIONS(2607), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_GT] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_CARET_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_case] = ACTIONS(2607), - [anon_sym_BANG_EQ] = ACTIONS(2609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2607), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2607), - [anon_sym_LT_EQ] = ACTIONS(2607), - [anon_sym_GT_EQ] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2607), - [anon_sym_DOT_DOT_LT] = ACTIONS(2607), - [anon_sym_is] = ACTIONS(2607), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_SLASH] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2607), - [anon_sym_GT_GT] = ACTIONS(2607), - [anon_sym_import] = ACTIONS(2607), - [anon_sym_typealias] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(2607), - [anon_sym_protocol] = ACTIONS(2607), - [anon_sym_let] = ACTIONS(2607), - [anon_sym_var] = ACTIONS(2607), - [anon_sym_func] = ACTIONS(2607), - [anon_sym_extension] = ACTIONS(2607), - [anon_sym_indirect] = ACTIONS(2607), - [anon_sym_init] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_deinit] = ACTIONS(2607), - [anon_sym_subscript] = ACTIONS(2607), - [anon_sym_prefix] = ACTIONS(2607), - [anon_sym_infix] = ACTIONS(2607), - [anon_sym_postfix] = ACTIONS(2607), - [anon_sym_precedencegroup] = ACTIONS(2607), - [anon_sym_associatedtype] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2609), - [sym_property_behavior_modifier] = ACTIONS(2607), - [anon_sym_override] = ACTIONS(2607), - [anon_sym_convenience] = ACTIONS(2607), - [anon_sym_required] = ACTIONS(2607), - [anon_sym_nonisolated] = ACTIONS(2607), - [anon_sym_public] = ACTIONS(2607), - [anon_sym_private] = ACTIONS(2607), - [anon_sym_internal] = ACTIONS(2607), - [anon_sym_fileprivate] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2607), - [anon_sym_mutating] = ACTIONS(2607), - [anon_sym_nonmutating] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_dynamic] = ACTIONS(2607), - [anon_sym_optional] = ACTIONS(2607), - [anon_sym_final] = ACTIONS(2607), - [anon_sym_inout] = ACTIONS(2607), - [anon_sym_ATescaping] = ACTIONS(2607), - [anon_sym_ATautoclosure] = ACTIONS(2607), - [anon_sym_weak] = ACTIONS(2607), - [anon_sym_unowned] = ACTIONS(2609), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2607), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2607), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2589), - [sym__dot_custom] = ACTIONS(2607), - [sym__conjunction_operator_custom] = ACTIONS(2607), - [sym__disjunction_operator_custom] = ACTIONS(2607), - [sym__nil_coalescing_operator_custom] = ACTIONS(2607), - [sym__eq_eq_custom] = ACTIONS(2607), - [sym__plus_then_ws] = ACTIONS(2607), - [sym__minus_then_ws] = ACTIONS(2607), - [sym_bang] = ACTIONS(2607), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__as_custom] = ACTIONS(2607), - [sym__as_quest_custom] = ACTIONS(2607), - [sym__as_bang_custom] = ACTIONS(2607), - [sym__async_keyword_custom] = ACTIONS(2593), - [sym__custom_operator] = ACTIONS(2607), - }, - [622] = { - [sym_simple_identifier] = STATE(6345), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(636), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2615), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2620), - [sym__immediate_quest] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2620), - [aux_sym_custom_operator_token1] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_CARET_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2618), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_DOT_DOT_LT] = ACTIONS(2618), - [anon_sym_is] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2618), - [anon_sym_import] = ACTIONS(2620), - [anon_sym_typealias] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(2620), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [anon_sym_protocol] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_var] = ACTIONS(2620), - [anon_sym_func] = ACTIONS(2620), - [anon_sym_extension] = ACTIONS(2620), - [anon_sym_indirect] = ACTIONS(2620), - [anon_sym_init] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_deinit] = ACTIONS(2620), - [anon_sym_subscript] = ACTIONS(2620), - [anon_sym_prefix] = ACTIONS(2620), - [anon_sym_infix] = ACTIONS(2620), - [anon_sym_postfix] = ACTIONS(2620), - [anon_sym_precedencegroup] = ACTIONS(2620), - [anon_sym_associatedtype] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [sym_property_behavior_modifier] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_convenience] = ACTIONS(2620), - [anon_sym_required] = ACTIONS(2620), - [anon_sym_nonisolated] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_internal] = ACTIONS(2620), - [anon_sym_fileprivate] = ACTIONS(2620), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_mutating] = ACTIONS(2620), - [anon_sym_nonmutating] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_dynamic] = ACTIONS(2620), - [anon_sym_optional] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_inout] = ACTIONS(2620), - [anon_sym_ATescaping] = ACTIONS(2618), - [anon_sym_ATautoclosure] = ACTIONS(2618), - [anon_sym_weak] = ACTIONS(2620), - [anon_sym_unowned] = ACTIONS(2620), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2618), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2618), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2618), - [sym__conjunction_operator_custom] = ACTIONS(2618), - [sym__disjunction_operator_custom] = ACTIONS(2618), - [sym__nil_coalescing_operator_custom] = ACTIONS(2618), - [sym__eq_eq_custom] = ACTIONS(2618), - [sym__plus_then_ws] = ACTIONS(2618), - [sym__minus_then_ws] = ACTIONS(2618), - [sym_bang] = ACTIONS(2618), - [sym__as_custom] = ACTIONS(2618), - [sym__as_quest_custom] = ACTIONS(2618), - [sym__as_bang_custom] = ACTIONS(2618), - [sym__custom_operator] = ACTIONS(2618), - }, - [623] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_case] = ACTIONS(2415), - [anon_sym_fallthrough] = ACTIONS(2415), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2415), - [anon_sym_prefix] = ACTIONS(2415), - [anon_sym_infix] = ACTIONS(2415), - [anon_sym_postfix] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2421), - [sym_property_behavior_modifier] = ACTIONS(2415), - [anon_sym_override] = ACTIONS(2415), - [anon_sym_convenience] = ACTIONS(2415), - [anon_sym_required] = ACTIONS(2415), - [anon_sym_nonisolated] = ACTIONS(2415), - [anon_sym_public] = ACTIONS(2415), - [anon_sym_private] = ACTIONS(2415), - [anon_sym_internal] = ACTIONS(2415), - [anon_sym_fileprivate] = ACTIONS(2415), - [anon_sym_open] = ACTIONS(2415), - [anon_sym_mutating] = ACTIONS(2415), - [anon_sym_nonmutating] = ACTIONS(2415), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_dynamic] = ACTIONS(2415), - [anon_sym_optional] = ACTIONS(2415), - [anon_sym_final] = ACTIONS(2415), - [anon_sym_inout] = ACTIONS(2415), - [anon_sym_ATescaping] = ACTIONS(2415), - [anon_sym_ATautoclosure] = ACTIONS(2415), - [anon_sym_weak] = ACTIONS(2415), - [anon_sym_unowned] = ACTIONS(2421), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2415), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2415), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2415), - [sym__explicit_semi] = ACTIONS(2415), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2415), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [624] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_case] = ACTIONS(2431), - [anon_sym_fallthrough] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_prefix] = ACTIONS(2431), - [anon_sym_infix] = ACTIONS(2431), - [anon_sym_postfix] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2433), - [sym_property_behavior_modifier] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_convenience] = ACTIONS(2431), - [anon_sym_required] = ACTIONS(2431), - [anon_sym_nonisolated] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_internal] = ACTIONS(2431), - [anon_sym_fileprivate] = ACTIONS(2431), - [anon_sym_open] = ACTIONS(2431), - [anon_sym_mutating] = ACTIONS(2431), - [anon_sym_nonmutating] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_dynamic] = ACTIONS(2431), - [anon_sym_optional] = ACTIONS(2431), - [anon_sym_final] = ACTIONS(2431), - [anon_sym_inout] = ACTIONS(2431), - [anon_sym_ATescaping] = ACTIONS(2431), - [anon_sym_ATautoclosure] = ACTIONS(2431), - [anon_sym_weak] = ACTIONS(2431), - [anon_sym_unowned] = ACTIONS(2433), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2431), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2431), - [sym__explicit_semi] = ACTIONS(2431), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym_default_keyword] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [625] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_fallthrough] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_prefix] = ACTIONS(2447), - [anon_sym_infix] = ACTIONS(2447), - [anon_sym_postfix] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2449), - [sym_property_behavior_modifier] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_convenience] = ACTIONS(2447), - [anon_sym_required] = ACTIONS(2447), - [anon_sym_nonisolated] = ACTIONS(2447), - [anon_sym_public] = ACTIONS(2447), - [anon_sym_private] = ACTIONS(2447), - [anon_sym_internal] = ACTIONS(2447), - [anon_sym_fileprivate] = ACTIONS(2447), - [anon_sym_open] = ACTIONS(2447), - [anon_sym_mutating] = ACTIONS(2447), - [anon_sym_nonmutating] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_dynamic] = ACTIONS(2447), - [anon_sym_optional] = ACTIONS(2447), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_inout] = ACTIONS(2447), - [anon_sym_ATescaping] = ACTIONS(2447), - [anon_sym_ATautoclosure] = ACTIONS(2447), - [anon_sym_weak] = ACTIONS(2447), - [anon_sym_unowned] = ACTIONS(2449), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2447), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2447), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2447), - [sym__explicit_semi] = ACTIONS(2447), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [626] = { - [sym__arrow_operator] = STATE(3336), - [sym__async_keyword] = STATE(4999), - [sym_throws] = STATE(6210), - [aux_sym_protocol_composition_type_repeat1] = STATE(665), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2622), - [anon_sym_RPAREN] = ACTIONS(2622), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_RBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2624), - [sym__immediate_quest] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2622), - [aux_sym_custom_operator_token1] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_GT] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_CARET_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_BANG_EQ] = ACTIONS(2624), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2622), - [anon_sym_LT_EQ] = ACTIONS(2622), - [anon_sym_GT_EQ] = ACTIONS(2622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), - [anon_sym_DOT_DOT_LT] = ACTIONS(2622), - [anon_sym_is] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2624), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_CARET] = ACTIONS(2624), - [anon_sym_LT_LT] = ACTIONS(2622), - [anon_sym_GT_GT] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_typealias] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_protocol] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_var] = ACTIONS(2622), - [anon_sym_func] = ACTIONS(2622), - [anon_sym_extension] = ACTIONS(2622), - [anon_sym_indirect] = ACTIONS(2622), - [anon_sym_init] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2622), - [anon_sym_deinit] = ACTIONS(2622), - [anon_sym_subscript] = ACTIONS(2622), - [anon_sym_prefix] = ACTIONS(2622), - [anon_sym_infix] = ACTIONS(2622), - [anon_sym_postfix] = ACTIONS(2622), - [anon_sym_precedencegroup] = ACTIONS(2622), - [anon_sym_associatedtype] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2624), - [sym_property_behavior_modifier] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_convenience] = ACTIONS(2622), - [anon_sym_required] = ACTIONS(2622), - [anon_sym_nonisolated] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_internal] = ACTIONS(2622), - [anon_sym_fileprivate] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_mutating] = ACTIONS(2622), - [anon_sym_nonmutating] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_dynamic] = ACTIONS(2622), - [anon_sym_optional] = ACTIONS(2622), - [anon_sym_final] = ACTIONS(2622), - [anon_sym_inout] = ACTIONS(2622), - [anon_sym_ATescaping] = ACTIONS(2622), - [anon_sym_ATautoclosure] = ACTIONS(2622), - [anon_sym_weak] = ACTIONS(2622), - [anon_sym_unowned] = ACTIONS(2624), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2622), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2622), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2589), - [sym__dot_custom] = ACTIONS(2622), - [sym__conjunction_operator_custom] = ACTIONS(2622), - [sym__disjunction_operator_custom] = ACTIONS(2622), - [sym__nil_coalescing_operator_custom] = ACTIONS(2622), - [sym__eq_eq_custom] = ACTIONS(2622), - [sym__plus_then_ws] = ACTIONS(2622), - [sym__minus_then_ws] = ACTIONS(2622), - [sym_bang] = ACTIONS(2622), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__as_custom] = ACTIONS(2622), - [sym__as_quest_custom] = ACTIONS(2622), - [sym__as_bang_custom] = ACTIONS(2622), - [sym__async_keyword_custom] = ACTIONS(2593), - [sym__custom_operator] = ACTIONS(2622), - }, - [627] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2443), - [anon_sym_fallthrough] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_prefix] = ACTIONS(2443), - [anon_sym_infix] = ACTIONS(2443), - [anon_sym_postfix] = ACTIONS(2443), - [anon_sym_AT] = ACTIONS(2445), - [sym_property_behavior_modifier] = ACTIONS(2443), - [anon_sym_override] = ACTIONS(2443), - [anon_sym_convenience] = ACTIONS(2443), - [anon_sym_required] = ACTIONS(2443), - [anon_sym_nonisolated] = ACTIONS(2443), - [anon_sym_public] = ACTIONS(2443), - [anon_sym_private] = ACTIONS(2443), - [anon_sym_internal] = ACTIONS(2443), - [anon_sym_fileprivate] = ACTIONS(2443), - [anon_sym_open] = ACTIONS(2443), - [anon_sym_mutating] = ACTIONS(2443), - [anon_sym_nonmutating] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_dynamic] = ACTIONS(2443), - [anon_sym_optional] = ACTIONS(2443), - [anon_sym_final] = ACTIONS(2443), - [anon_sym_inout] = ACTIONS(2443), - [anon_sym_ATescaping] = ACTIONS(2443), - [anon_sym_ATautoclosure] = ACTIONS(2443), - [anon_sym_weak] = ACTIONS(2443), - [anon_sym_unowned] = ACTIONS(2445), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2443), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2443), - [sym__explicit_semi] = ACTIONS(2443), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2443), - [sym_default_keyword] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [628] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_case] = ACTIONS(2439), - [anon_sym_fallthrough] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2439), - [anon_sym_prefix] = ACTIONS(2439), - [anon_sym_infix] = ACTIONS(2439), - [anon_sym_postfix] = ACTIONS(2439), - [anon_sym_AT] = ACTIONS(2441), - [sym_property_behavior_modifier] = ACTIONS(2439), - [anon_sym_override] = ACTIONS(2439), - [anon_sym_convenience] = ACTIONS(2439), - [anon_sym_required] = ACTIONS(2439), - [anon_sym_nonisolated] = ACTIONS(2439), - [anon_sym_public] = ACTIONS(2439), - [anon_sym_private] = ACTIONS(2439), - [anon_sym_internal] = ACTIONS(2439), - [anon_sym_fileprivate] = ACTIONS(2439), - [anon_sym_open] = ACTIONS(2439), - [anon_sym_mutating] = ACTIONS(2439), - [anon_sym_nonmutating] = ACTIONS(2439), - [anon_sym_static] = ACTIONS(2439), - [anon_sym_dynamic] = ACTIONS(2439), - [anon_sym_optional] = ACTIONS(2439), - [anon_sym_final] = ACTIONS(2439), - [anon_sym_inout] = ACTIONS(2439), - [anon_sym_ATescaping] = ACTIONS(2439), - [anon_sym_ATautoclosure] = ACTIONS(2439), - [anon_sym_weak] = ACTIONS(2439), - [anon_sym_unowned] = ACTIONS(2441), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2439), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2439), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2439), - [sym__explicit_semi] = ACTIONS(2439), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2439), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [629] = { - [sym__arrow_operator] = STATE(3336), - [sym__async_keyword] = STATE(4999), - [sym_throws] = STATE(6210), - [aux_sym_optional_type_repeat1] = STATE(652), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [aux_sym_custom_operator_token1] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_CARET_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_LT] = ACTIONS(2626), - [anon_sym_is] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2626), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_typealias] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_protocol] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_func] = ACTIONS(2626), - [anon_sym_extension] = ACTIONS(2626), - [anon_sym_indirect] = ACTIONS(2626), - [anon_sym_init] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_deinit] = ACTIONS(2626), - [anon_sym_subscript] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_precedencegroup] = ACTIONS(2626), - [anon_sym_associatedtype] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2589), - [sym__dot_custom] = ACTIONS(2626), - [sym__conjunction_operator_custom] = ACTIONS(2626), - [sym__disjunction_operator_custom] = ACTIONS(2626), - [sym__nil_coalescing_operator_custom] = ACTIONS(2626), - [sym__eq_eq_custom] = ACTIONS(2626), - [sym__plus_then_ws] = ACTIONS(2626), - [sym__minus_then_ws] = ACTIONS(2626), - [sym_bang] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__as_custom] = ACTIONS(2626), - [sym__as_quest_custom] = ACTIONS(2626), - [sym__as_bang_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(2593), - [sym__custom_operator] = ACTIONS(2626), - }, - [630] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_case] = ACTIONS(2435), - [anon_sym_fallthrough] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [anon_sym_class] = ACTIONS(2435), - [anon_sym_prefix] = ACTIONS(2435), - [anon_sym_infix] = ACTIONS(2435), - [anon_sym_postfix] = ACTIONS(2435), - [anon_sym_AT] = ACTIONS(2437), - [sym_property_behavior_modifier] = ACTIONS(2435), - [anon_sym_override] = ACTIONS(2435), - [anon_sym_convenience] = ACTIONS(2435), - [anon_sym_required] = ACTIONS(2435), - [anon_sym_nonisolated] = ACTIONS(2435), - [anon_sym_public] = ACTIONS(2435), - [anon_sym_private] = ACTIONS(2435), - [anon_sym_internal] = ACTIONS(2435), - [anon_sym_fileprivate] = ACTIONS(2435), - [anon_sym_open] = ACTIONS(2435), - [anon_sym_mutating] = ACTIONS(2435), - [anon_sym_nonmutating] = ACTIONS(2435), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_dynamic] = ACTIONS(2435), - [anon_sym_optional] = ACTIONS(2435), - [anon_sym_final] = ACTIONS(2435), - [anon_sym_inout] = ACTIONS(2435), - [anon_sym_ATescaping] = ACTIONS(2435), - [anon_sym_ATautoclosure] = ACTIONS(2435), - [anon_sym_weak] = ACTIONS(2435), - [anon_sym_unowned] = ACTIONS(2437), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2435), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2435), - [sym__explicit_semi] = ACTIONS(2435), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym_default_keyword] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [631] = { - [sym__arrow_operator] = STATE(3336), - [sym__async_keyword] = STATE(4999), - [sym_throws] = STATE(6210), - [aux_sym_protocol_composition_type_repeat1] = STATE(665), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2632), - [anon_sym_RPAREN] = ACTIONS(2632), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_RBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2634), - [sym__immediate_quest] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2632), - [aux_sym_custom_operator_token1] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_GT] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_CARET_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_BANG_EQ] = ACTIONS(2634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2632), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2632), - [anon_sym_LT_EQ] = ACTIONS(2632), - [anon_sym_GT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_is] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_CARET] = ACTIONS(2634), - [anon_sym_LT_LT] = ACTIONS(2632), - [anon_sym_GT_GT] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_typealias] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_protocol] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_func] = ACTIONS(2632), - [anon_sym_extension] = ACTIONS(2632), - [anon_sym_indirect] = ACTIONS(2632), - [anon_sym_init] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_deinit] = ACTIONS(2632), - [anon_sym_subscript] = ACTIONS(2632), - [anon_sym_prefix] = ACTIONS(2632), - [anon_sym_infix] = ACTIONS(2632), - [anon_sym_postfix] = ACTIONS(2632), - [anon_sym_precedencegroup] = ACTIONS(2632), - [anon_sym_associatedtype] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2634), - [sym_property_behavior_modifier] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_convenience] = ACTIONS(2632), - [anon_sym_required] = ACTIONS(2632), - [anon_sym_nonisolated] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_internal] = ACTIONS(2632), - [anon_sym_fileprivate] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2632), - [anon_sym_mutating] = ACTIONS(2632), - [anon_sym_nonmutating] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_dynamic] = ACTIONS(2632), - [anon_sym_optional] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_inout] = ACTIONS(2632), - [anon_sym_ATescaping] = ACTIONS(2632), - [anon_sym_ATautoclosure] = ACTIONS(2632), - [anon_sym_weak] = ACTIONS(2632), - [anon_sym_unowned] = ACTIONS(2634), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2632), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2632), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2589), - [sym__dot_custom] = ACTIONS(2632), - [sym__conjunction_operator_custom] = ACTIONS(2632), - [sym__disjunction_operator_custom] = ACTIONS(2632), - [sym__nil_coalescing_operator_custom] = ACTIONS(2632), - [sym__eq_eq_custom] = ACTIONS(2632), - [sym__plus_then_ws] = ACTIONS(2632), - [sym__minus_then_ws] = ACTIONS(2632), - [sym_bang] = ACTIONS(2632), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__as_custom] = ACTIONS(2632), - [sym__as_quest_custom] = ACTIONS(2632), - [sym__as_bang_custom] = ACTIONS(2632), - [sym__async_keyword_custom] = ACTIONS(2593), - [sym__custom_operator] = ACTIONS(2632), - }, - [632] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_case] = ACTIONS(2451), - [anon_sym_fallthrough] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_prefix] = ACTIONS(2451), - [anon_sym_infix] = ACTIONS(2451), - [anon_sym_postfix] = ACTIONS(2451), - [anon_sym_AT] = ACTIONS(2453), - [sym_property_behavior_modifier] = ACTIONS(2451), - [anon_sym_override] = ACTIONS(2451), - [anon_sym_convenience] = ACTIONS(2451), - [anon_sym_required] = ACTIONS(2451), - [anon_sym_nonisolated] = ACTIONS(2451), - [anon_sym_public] = ACTIONS(2451), - [anon_sym_private] = ACTIONS(2451), - [anon_sym_internal] = ACTIONS(2451), - [anon_sym_fileprivate] = ACTIONS(2451), - [anon_sym_open] = ACTIONS(2451), - [anon_sym_mutating] = ACTIONS(2451), - [anon_sym_nonmutating] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_dynamic] = ACTIONS(2451), - [anon_sym_optional] = ACTIONS(2451), - [anon_sym_final] = ACTIONS(2451), - [anon_sym_inout] = ACTIONS(2451), - [anon_sym_ATescaping] = ACTIONS(2451), - [anon_sym_ATautoclosure] = ACTIONS(2451), - [anon_sym_weak] = ACTIONS(2451), - [anon_sym_unowned] = ACTIONS(2453), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2451), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2451), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2451), - [sym__explicit_semi] = ACTIONS(2451), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2451), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [633] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_case] = ACTIONS(2427), - [anon_sym_fallthrough] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2427), - [anon_sym_prefix] = ACTIONS(2427), - [anon_sym_infix] = ACTIONS(2427), - [anon_sym_postfix] = ACTIONS(2427), - [anon_sym_AT] = ACTIONS(2429), - [sym_property_behavior_modifier] = ACTIONS(2427), - [anon_sym_override] = ACTIONS(2427), - [anon_sym_convenience] = ACTIONS(2427), - [anon_sym_required] = ACTIONS(2427), - [anon_sym_nonisolated] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_internal] = ACTIONS(2427), - [anon_sym_fileprivate] = ACTIONS(2427), - [anon_sym_open] = ACTIONS(2427), - [anon_sym_mutating] = ACTIONS(2427), - [anon_sym_nonmutating] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_dynamic] = ACTIONS(2427), - [anon_sym_optional] = ACTIONS(2427), - [anon_sym_final] = ACTIONS(2427), - [anon_sym_inout] = ACTIONS(2427), - [anon_sym_ATescaping] = ACTIONS(2427), - [anon_sym_ATautoclosure] = ACTIONS(2427), - [anon_sym_weak] = ACTIONS(2427), - [anon_sym_unowned] = ACTIONS(2429), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2427), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2427), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2427), - [sym__explicit_semi] = ACTIONS(2427), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2427), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [634] = { - [sym__arrow_operator] = STATE(3336), - [sym__async_keyword] = STATE(4999), - [sym_throws] = STATE(6210), - [aux_sym_protocol_composition_type_repeat1] = STATE(665), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2636), - [anon_sym_RPAREN] = ACTIONS(2636), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_COLON] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_RBRACK] = ACTIONS(2636), - [anon_sym_DOT] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2638), - [sym__immediate_quest] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2636), - [aux_sym_custom_operator_token1] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_GT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_CARET_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_BANG_EQ] = ACTIONS(2638), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2636), - [anon_sym_LT_EQ] = ACTIONS(2636), - [anon_sym_GT_EQ] = ACTIONS(2636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), - [anon_sym_DOT_DOT_LT] = ACTIONS(2636), - [anon_sym_is] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_PERCENT] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_CARET] = ACTIONS(2638), - [anon_sym_LT_LT] = ACTIONS(2636), - [anon_sym_GT_GT] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(2636), - [anon_sym_typealias] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_protocol] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_var] = ACTIONS(2636), - [anon_sym_func] = ACTIONS(2636), - [anon_sym_extension] = ACTIONS(2636), - [anon_sym_indirect] = ACTIONS(2636), - [anon_sym_init] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_deinit] = ACTIONS(2636), - [anon_sym_subscript] = ACTIONS(2636), - [anon_sym_prefix] = ACTIONS(2636), - [anon_sym_infix] = ACTIONS(2636), - [anon_sym_postfix] = ACTIONS(2636), - [anon_sym_precedencegroup] = ACTIONS(2636), - [anon_sym_associatedtype] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2638), - [sym_property_behavior_modifier] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_convenience] = ACTIONS(2636), - [anon_sym_required] = ACTIONS(2636), - [anon_sym_nonisolated] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_internal] = ACTIONS(2636), - [anon_sym_fileprivate] = ACTIONS(2636), - [anon_sym_open] = ACTIONS(2636), - [anon_sym_mutating] = ACTIONS(2636), - [anon_sym_nonmutating] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_dynamic] = ACTIONS(2636), - [anon_sym_optional] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_inout] = ACTIONS(2636), - [anon_sym_ATescaping] = ACTIONS(2636), - [anon_sym_ATautoclosure] = ACTIONS(2636), - [anon_sym_weak] = ACTIONS(2636), - [anon_sym_unowned] = ACTIONS(2638), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2636), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2589), - [sym__dot_custom] = ACTIONS(2636), - [sym__conjunction_operator_custom] = ACTIONS(2636), - [sym__disjunction_operator_custom] = ACTIONS(2636), - [sym__nil_coalescing_operator_custom] = ACTIONS(2636), - [sym__eq_eq_custom] = ACTIONS(2636), - [sym__plus_then_ws] = ACTIONS(2636), - [sym__minus_then_ws] = ACTIONS(2636), - [sym_bang] = ACTIONS(2636), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__as_custom] = ACTIONS(2636), - [sym__as_quest_custom] = ACTIONS(2636), - [sym__as_bang_custom] = ACTIONS(2636), - [sym__async_keyword_custom] = ACTIONS(2593), - [sym__custom_operator] = ACTIONS(2636), - }, - [635] = { - [sym_simple_identifier] = STATE(6345), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(622), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2640), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2645), - [sym__immediate_quest] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_async] = ACTIONS(2645), - [aux_sym_custom_operator_token1] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_GT] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_CARET_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_PLUS_EQ] = ACTIONS(2643), - [anon_sym_DASH_EQ] = ACTIONS(2643), - [anon_sym_STAR_EQ] = ACTIONS(2643), - [anon_sym_SLASH_EQ] = ACTIONS(2643), - [anon_sym_PERCENT_EQ] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_DOT_DOT_LT] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_PERCENT] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_import] = ACTIONS(2645), - [anon_sym_typealias] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_enum] = ACTIONS(2645), - [anon_sym_protocol] = ACTIONS(2645), - [anon_sym_let] = ACTIONS(2645), - [anon_sym_var] = ACTIONS(2645), - [anon_sym_func] = ACTIONS(2645), - [anon_sym_extension] = ACTIONS(2645), - [anon_sym_indirect] = ACTIONS(2645), - [anon_sym_init] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_deinit] = ACTIONS(2645), - [anon_sym_subscript] = ACTIONS(2645), - [anon_sym_prefix] = ACTIONS(2645), - [anon_sym_infix] = ACTIONS(2645), - [anon_sym_postfix] = ACTIONS(2645), - [anon_sym_precedencegroup] = ACTIONS(2645), - [anon_sym_associatedtype] = ACTIONS(2645), - [anon_sym_AT] = ACTIONS(2645), - [sym_property_behavior_modifier] = ACTIONS(2645), - [anon_sym_override] = ACTIONS(2645), - [anon_sym_convenience] = ACTIONS(2645), - [anon_sym_required] = ACTIONS(2645), - [anon_sym_nonisolated] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2645), - [anon_sym_private] = ACTIONS(2645), - [anon_sym_internal] = ACTIONS(2645), - [anon_sym_fileprivate] = ACTIONS(2645), - [anon_sym_open] = ACTIONS(2645), - [anon_sym_mutating] = ACTIONS(2645), - [anon_sym_nonmutating] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_dynamic] = ACTIONS(2645), - [anon_sym_optional] = ACTIONS(2645), - [anon_sym_final] = ACTIONS(2645), - [anon_sym_inout] = ACTIONS(2645), - [anon_sym_ATescaping] = ACTIONS(2643), - [anon_sym_ATautoclosure] = ACTIONS(2643), - [anon_sym_weak] = ACTIONS(2645), - [anon_sym_unowned] = ACTIONS(2645), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2643), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2643), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2643), - [sym__conjunction_operator_custom] = ACTIONS(2643), - [sym__disjunction_operator_custom] = ACTIONS(2643), - [sym__nil_coalescing_operator_custom] = ACTIONS(2643), - [sym__eq_eq_custom] = ACTIONS(2643), - [sym__plus_then_ws] = ACTIONS(2643), - [sym__minus_then_ws] = ACTIONS(2643), - [sym_bang] = ACTIONS(2643), - [sym__as_custom] = ACTIONS(2643), - [sym__as_quest_custom] = ACTIONS(2643), - [sym__as_bang_custom] = ACTIONS(2643), - [sym__custom_operator] = ACTIONS(2643), - }, - [636] = { - [sym_simple_identifier] = STATE(6345), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(636), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2647), - [aux_sym_simple_identifier_token2] = ACTIONS(2650), - [aux_sym_simple_identifier_token3] = ACTIONS(2650), - [aux_sym_simple_identifier_token4] = ACTIONS(2650), - [anon_sym_actor] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2655), - [sym__immediate_quest] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2655), - [aux_sym_custom_operator_token1] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_CARET_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_PLUS_EQ] = ACTIONS(2653), - [anon_sym_DASH_EQ] = ACTIONS(2653), - [anon_sym_STAR_EQ] = ACTIONS(2653), - [anon_sym_SLASH_EQ] = ACTIONS(2653), - [anon_sym_PERCENT_EQ] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2653), - [anon_sym_import] = ACTIONS(2655), - [anon_sym_typealias] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_protocol] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2655), - [anon_sym_var] = ACTIONS(2655), - [anon_sym_func] = ACTIONS(2655), - [anon_sym_extension] = ACTIONS(2655), - [anon_sym_indirect] = ACTIONS(2655), - [anon_sym_init] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_deinit] = ACTIONS(2655), - [anon_sym_subscript] = ACTIONS(2655), - [anon_sym_prefix] = ACTIONS(2655), - [anon_sym_infix] = ACTIONS(2655), - [anon_sym_postfix] = ACTIONS(2655), - [anon_sym_precedencegroup] = ACTIONS(2655), - [anon_sym_associatedtype] = ACTIONS(2655), - [anon_sym_AT] = ACTIONS(2655), - [sym_property_behavior_modifier] = ACTIONS(2655), - [anon_sym_override] = ACTIONS(2655), - [anon_sym_convenience] = ACTIONS(2655), - [anon_sym_required] = ACTIONS(2655), - [anon_sym_nonisolated] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_internal] = ACTIONS(2655), - [anon_sym_fileprivate] = ACTIONS(2655), - [anon_sym_open] = ACTIONS(2655), - [anon_sym_mutating] = ACTIONS(2655), - [anon_sym_nonmutating] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_dynamic] = ACTIONS(2655), - [anon_sym_optional] = ACTIONS(2655), - [anon_sym_final] = ACTIONS(2655), - [anon_sym_inout] = ACTIONS(2655), - [anon_sym_ATescaping] = ACTIONS(2653), - [anon_sym_ATautoclosure] = ACTIONS(2653), - [anon_sym_weak] = ACTIONS(2655), - [anon_sym_unowned] = ACTIONS(2655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2653), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2653), - [sym__conjunction_operator_custom] = ACTIONS(2653), - [sym__disjunction_operator_custom] = ACTIONS(2653), - [sym__nil_coalescing_operator_custom] = ACTIONS(2653), - [sym__eq_eq_custom] = ACTIONS(2653), - [sym__plus_then_ws] = ACTIONS(2653), - [sym__minus_then_ws] = ACTIONS(2653), - [sym_bang] = ACTIONS(2653), - [sym__as_custom] = ACTIONS(2653), - [sym__as_quest_custom] = ACTIONS(2653), - [sym__as_bang_custom] = ACTIONS(2653), - [sym__custom_operator] = ACTIONS(2653), - }, - [637] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_fallthrough] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_prefix] = ACTIONS(2455), - [anon_sym_infix] = ACTIONS(2455), - [anon_sym_postfix] = ACTIONS(2455), - [anon_sym_AT] = ACTIONS(2457), - [sym_property_behavior_modifier] = ACTIONS(2455), - [anon_sym_override] = ACTIONS(2455), - [anon_sym_convenience] = ACTIONS(2455), - [anon_sym_required] = ACTIONS(2455), - [anon_sym_nonisolated] = ACTIONS(2455), - [anon_sym_public] = ACTIONS(2455), - [anon_sym_private] = ACTIONS(2455), - [anon_sym_internal] = ACTIONS(2455), - [anon_sym_fileprivate] = ACTIONS(2455), - [anon_sym_open] = ACTIONS(2455), - [anon_sym_mutating] = ACTIONS(2455), - [anon_sym_nonmutating] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_dynamic] = ACTIONS(2455), - [anon_sym_optional] = ACTIONS(2455), - [anon_sym_final] = ACTIONS(2455), - [anon_sym_inout] = ACTIONS(2455), - [anon_sym_ATescaping] = ACTIONS(2455), - [anon_sym_ATautoclosure] = ACTIONS(2455), - [anon_sym_weak] = ACTIONS(2455), - [anon_sym_unowned] = ACTIONS(2457), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2455), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2455), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2455), - [sym__explicit_semi] = ACTIONS(2455), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2455), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [638] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_fallthrough] = ACTIONS(2459), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_prefix] = ACTIONS(2459), - [anon_sym_infix] = ACTIONS(2459), - [anon_sym_postfix] = ACTIONS(2459), - [anon_sym_AT] = ACTIONS(2461), - [sym_property_behavior_modifier] = ACTIONS(2459), - [anon_sym_override] = ACTIONS(2459), - [anon_sym_convenience] = ACTIONS(2459), - [anon_sym_required] = ACTIONS(2459), - [anon_sym_nonisolated] = ACTIONS(2459), - [anon_sym_public] = ACTIONS(2459), - [anon_sym_private] = ACTIONS(2459), - [anon_sym_internal] = ACTIONS(2459), - [anon_sym_fileprivate] = ACTIONS(2459), - [anon_sym_open] = ACTIONS(2459), - [anon_sym_mutating] = ACTIONS(2459), - [anon_sym_nonmutating] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_dynamic] = ACTIONS(2459), - [anon_sym_optional] = ACTIONS(2459), - [anon_sym_final] = ACTIONS(2459), - [anon_sym_inout] = ACTIONS(2459), - [anon_sym_ATescaping] = ACTIONS(2459), - [anon_sym_ATautoclosure] = ACTIONS(2459), - [anon_sym_weak] = ACTIONS(2459), - [anon_sym_unowned] = ACTIONS(2461), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2459), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2459), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2459), - [sym__explicit_semi] = ACTIONS(2459), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2459), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [639] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_case] = ACTIONS(2657), - [anon_sym_fallthrough] = ACTIONS(2657), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_prefix] = ACTIONS(2657), - [anon_sym_infix] = ACTIONS(2657), - [anon_sym_postfix] = ACTIONS(2657), - [anon_sym_AT] = ACTIONS(2659), - [sym_property_behavior_modifier] = ACTIONS(2657), - [anon_sym_override] = ACTIONS(2657), - [anon_sym_convenience] = ACTIONS(2657), - [anon_sym_required] = ACTIONS(2657), - [anon_sym_nonisolated] = ACTIONS(2657), - [anon_sym_public] = ACTIONS(2657), - [anon_sym_private] = ACTIONS(2657), - [anon_sym_internal] = ACTIONS(2657), - [anon_sym_fileprivate] = ACTIONS(2657), - [anon_sym_open] = ACTIONS(2657), - [anon_sym_mutating] = ACTIONS(2657), - [anon_sym_nonmutating] = ACTIONS(2657), - [anon_sym_static] = ACTIONS(2657), - [anon_sym_dynamic] = ACTIONS(2657), - [anon_sym_optional] = ACTIONS(2657), - [anon_sym_final] = ACTIONS(2657), - [anon_sym_inout] = ACTIONS(2657), - [anon_sym_ATescaping] = ACTIONS(2657), - [anon_sym_ATautoclosure] = ACTIONS(2657), - [anon_sym_weak] = ACTIONS(2657), - [anon_sym_unowned] = ACTIONS(2659), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2657), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2657), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2657), - [sym__explicit_semi] = ACTIONS(2657), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2657), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [640] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_fallthrough] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_prefix] = ACTIONS(2661), - [anon_sym_infix] = ACTIONS(2661), - [anon_sym_postfix] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2663), - [sym_property_behavior_modifier] = ACTIONS(2661), - [anon_sym_override] = ACTIONS(2661), - [anon_sym_convenience] = ACTIONS(2661), - [anon_sym_required] = ACTIONS(2661), - [anon_sym_nonisolated] = ACTIONS(2661), - [anon_sym_public] = ACTIONS(2661), - [anon_sym_private] = ACTIONS(2661), - [anon_sym_internal] = ACTIONS(2661), - [anon_sym_fileprivate] = ACTIONS(2661), - [anon_sym_open] = ACTIONS(2661), - [anon_sym_mutating] = ACTIONS(2661), - [anon_sym_nonmutating] = ACTIONS(2661), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_dynamic] = ACTIONS(2661), - [anon_sym_optional] = ACTIONS(2661), - [anon_sym_final] = ACTIONS(2661), - [anon_sym_inout] = ACTIONS(2661), - [anon_sym_ATescaping] = ACTIONS(2661), - [anon_sym_ATautoclosure] = ACTIONS(2661), - [anon_sym_weak] = ACTIONS(2661), - [anon_sym_unowned] = ACTIONS(2663), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2661), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2661), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2661), - [sym__explicit_semi] = ACTIONS(2661), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2661), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [641] = { - [sym__quest] = STATE(412), - [sym__range_operator] = STATE(279), - [sym_custom_operator] = STATE(278), - [sym_navigation_suffix] = STATE(916), - [sym_call_suffix] = STATE(915), - [sym__fn_call_lambda_arguments] = STATE(910), - [sym_value_arguments] = STATE(865), - [sym_lambda_literal] = STATE(820), - [sym__equality_operator] = STATE(277), - [sym__comparison_operator] = STATE(276), - [sym__three_dot_operator] = STATE(585), - [sym__open_ended_range_operator] = STATE(279), - [sym__is_operator] = STATE(3332), - [sym__additive_operator] = STATE(499), - [sym__multiplicative_operator] = STATE(495), - [sym_as_operator] = STATE(3333), - [sym__bitwise_binary_operator] = STATE(272), - [sym__postfix_unary_operator] = STATE(921), - [sym__eq_eq] = STATE(277), - [sym__dot] = STATE(4583), - [sym__conjunction_operator] = STATE(271), - [sym__disjunction_operator] = STATE(270), - [sym__nil_coalescing_operator] = STATE(269), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_QMARK] = ACTIONS(2595), - [sym__immediate_quest] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2547), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_GT] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_CARET_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_fallthrough] = ACTIONS(2665), - [anon_sym_BANG_EQ] = ACTIONS(2551), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2553), - [anon_sym_LT_EQ] = ACTIONS(2555), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2557), - [anon_sym_is] = ACTIONS(2559), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2563), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_PERCENT] = ACTIONS(2563), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_LT_LT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_prefix] = ACTIONS(2665), - [anon_sym_infix] = ACTIONS(2665), - [anon_sym_postfix] = ACTIONS(2665), - [anon_sym_AT] = ACTIONS(2667), - [sym_property_behavior_modifier] = ACTIONS(2665), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_convenience] = ACTIONS(2665), - [anon_sym_required] = ACTIONS(2665), - [anon_sym_nonisolated] = ACTIONS(2665), - [anon_sym_public] = ACTIONS(2665), - [anon_sym_private] = ACTIONS(2665), - [anon_sym_internal] = ACTIONS(2665), - [anon_sym_fileprivate] = ACTIONS(2665), - [anon_sym_open] = ACTIONS(2665), - [anon_sym_mutating] = ACTIONS(2665), - [anon_sym_nonmutating] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_dynamic] = ACTIONS(2665), - [anon_sym_optional] = ACTIONS(2665), - [anon_sym_final] = ACTIONS(2665), - [anon_sym_inout] = ACTIONS(2665), - [anon_sym_ATescaping] = ACTIONS(2665), - [anon_sym_ATautoclosure] = ACTIONS(2665), - [anon_sym_weak] = ACTIONS(2665), - [anon_sym_unowned] = ACTIONS(2667), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2665), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2665), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2665), - [sym__explicit_semi] = ACTIONS(2665), - [sym__dot_custom] = ACTIONS(2571), - [sym__conjunction_operator_custom] = ACTIONS(2573), - [sym__disjunction_operator_custom] = ACTIONS(2575), - [sym__nil_coalescing_operator_custom] = ACTIONS(2577), - [sym__eq_eq_custom] = ACTIONS(2553), - [sym__plus_then_ws] = ACTIONS(2579), - [sym__minus_then_ws] = ACTIONS(2579), - [sym_bang] = ACTIONS(2567), - [sym_default_keyword] = ACTIONS(2665), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [642] = { - [sym__dot] = STATE(4575), - [aux_sym_user_type_repeat1] = STATE(651), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2669), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [sym__immediate_quest] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [aux_sym_custom_operator_token1] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_CARET_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_DOT_DOT_LT] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_typealias] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_protocol] = ACTIONS(2669), - [anon_sym_let] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2669), - [anon_sym_func] = ACTIONS(2669), - [anon_sym_extension] = ACTIONS(2669), - [anon_sym_indirect] = ACTIONS(2669), - [anon_sym_init] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_deinit] = ACTIONS(2669), - [anon_sym_subscript] = ACTIONS(2669), - [anon_sym_prefix] = ACTIONS(2669), - [anon_sym_infix] = ACTIONS(2669), - [anon_sym_postfix] = ACTIONS(2669), - [anon_sym_precedencegroup] = ACTIONS(2669), - [anon_sym_associatedtype] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2671), - [sym_property_behavior_modifier] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_convenience] = ACTIONS(2669), - [anon_sym_required] = ACTIONS(2669), - [anon_sym_nonisolated] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_internal] = ACTIONS(2669), - [anon_sym_fileprivate] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2669), - [anon_sym_mutating] = ACTIONS(2669), - [anon_sym_nonmutating] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_dynamic] = ACTIONS(2669), - [anon_sym_optional] = ACTIONS(2669), - [anon_sym_final] = ACTIONS(2669), - [anon_sym_inout] = ACTIONS(2669), - [anon_sym_ATescaping] = ACTIONS(2669), - [anon_sym_ATautoclosure] = ACTIONS(2669), - [anon_sym_weak] = ACTIONS(2669), - [anon_sym_unowned] = ACTIONS(2671), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2669), - [sym__dot_custom] = ACTIONS(2673), - [sym__conjunction_operator_custom] = ACTIONS(2669), - [sym__disjunction_operator_custom] = ACTIONS(2669), - [sym__nil_coalescing_operator_custom] = ACTIONS(2669), - [sym__eq_eq_custom] = ACTIONS(2669), - [sym__plus_then_ws] = ACTIONS(2669), - [sym__minus_then_ws] = ACTIONS(2669), - [sym_bang] = ACTIONS(2669), - [sym__throws_keyword] = ACTIONS(2669), - [sym__rethrows_keyword] = ACTIONS(2669), - [sym__as_custom] = ACTIONS(2669), - [sym__as_quest_custom] = ACTIONS(2669), - [sym__as_bang_custom] = ACTIONS(2669), - [sym__async_keyword_custom] = ACTIONS(2669), - [sym__custom_operator] = ACTIONS(2669), - }, - [643] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2676), - [aux_sym_simple_identifier_token2] = ACTIONS(2678), - [aux_sym_simple_identifier_token3] = ACTIONS(2678), - [aux_sym_simple_identifier_token4] = ACTIONS(2678), - [anon_sym_actor] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2676), - [sym__immediate_quest] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_async] = ACTIONS(2676), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2676), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_import] = ACTIONS(2676), - [anon_sym_typealias] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_protocol] = ACTIONS(2676), - [anon_sym_let] = ACTIONS(2676), - [anon_sym_var] = ACTIONS(2676), - [anon_sym_func] = ACTIONS(2676), - [anon_sym_extension] = ACTIONS(2676), - [anon_sym_indirect] = ACTIONS(2676), - [anon_sym_init] = ACTIONS(2676), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_deinit] = ACTIONS(2676), - [anon_sym_subscript] = ACTIONS(2676), - [anon_sym_prefix] = ACTIONS(2676), - [anon_sym_infix] = ACTIONS(2676), - [anon_sym_postfix] = ACTIONS(2676), - [anon_sym_precedencegroup] = ACTIONS(2676), - [anon_sym_associatedtype] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [sym_property_behavior_modifier] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_convenience] = ACTIONS(2676), - [anon_sym_required] = ACTIONS(2676), - [anon_sym_nonisolated] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_internal] = ACTIONS(2676), - [anon_sym_fileprivate] = ACTIONS(2676), - [anon_sym_open] = ACTIONS(2676), - [anon_sym_mutating] = ACTIONS(2676), - [anon_sym_nonmutating] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_dynamic] = ACTIONS(2676), - [anon_sym_optional] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_inout] = ACTIONS(2676), - [anon_sym_ATescaping] = ACTIONS(2678), - [anon_sym_ATautoclosure] = ACTIONS(2678), - [anon_sym_weak] = ACTIONS(2676), - [anon_sym_unowned] = ACTIONS(2676), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2678), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2678), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2678), - [sym__disjunction_operator_custom] = ACTIONS(2678), - [sym__nil_coalescing_operator_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym_bang] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2678), - [sym__as_quest_custom] = ACTIONS(2678), - [sym__as_bang_custom] = ACTIONS(2678), - [sym__custom_operator] = ACTIONS(2678), - }, - [644] = { - [sym__dot] = STATE(4575), - [aux_sym_user_type_repeat1] = STATE(642), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_RBRACK] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [anon_sym_QMARK] = ACTIONS(2682), - [sym__immediate_quest] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [aux_sym_custom_operator_token1] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_GT] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_CARET_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2680), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_DOT_DOT_LT] = ACTIONS(2680), - [anon_sym_is] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2682), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_typealias] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_protocol] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_func] = ACTIONS(2680), - [anon_sym_extension] = ACTIONS(2680), - [anon_sym_indirect] = ACTIONS(2680), - [anon_sym_init] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_deinit] = ACTIONS(2680), - [anon_sym_subscript] = ACTIONS(2680), - [anon_sym_prefix] = ACTIONS(2680), - [anon_sym_infix] = ACTIONS(2680), - [anon_sym_postfix] = ACTIONS(2680), - [anon_sym_precedencegroup] = ACTIONS(2680), - [anon_sym_associatedtype] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2682), - [sym_property_behavior_modifier] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_convenience] = ACTIONS(2680), - [anon_sym_required] = ACTIONS(2680), - [anon_sym_nonisolated] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_internal] = ACTIONS(2680), - [anon_sym_fileprivate] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_mutating] = ACTIONS(2680), - [anon_sym_nonmutating] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_dynamic] = ACTIONS(2680), - [anon_sym_optional] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_inout] = ACTIONS(2680), - [anon_sym_ATescaping] = ACTIONS(2680), - [anon_sym_ATautoclosure] = ACTIONS(2680), - [anon_sym_weak] = ACTIONS(2680), - [anon_sym_unowned] = ACTIONS(2682), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2680), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2680), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2680), - [sym__dot_custom] = ACTIONS(2684), - [sym__conjunction_operator_custom] = ACTIONS(2680), - [sym__disjunction_operator_custom] = ACTIONS(2680), - [sym__nil_coalescing_operator_custom] = ACTIONS(2680), - [sym__eq_eq_custom] = ACTIONS(2680), - [sym__plus_then_ws] = ACTIONS(2680), - [sym__minus_then_ws] = ACTIONS(2680), - [sym_bang] = ACTIONS(2680), - [sym__throws_keyword] = ACTIONS(2680), - [sym__rethrows_keyword] = ACTIONS(2680), - [sym__as_custom] = ACTIONS(2680), - [sym__as_quest_custom] = ACTIONS(2680), - [sym__as_bang_custom] = ACTIONS(2680), - [sym__async_keyword_custom] = ACTIONS(2680), - [sym__custom_operator] = ACTIONS(2680), - }, - [645] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_async] = ACTIONS(2687), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_import] = ACTIONS(2687), - [anon_sym_typealias] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_protocol] = ACTIONS(2687), - [anon_sym_let] = ACTIONS(2687), - [anon_sym_var] = ACTIONS(2687), - [anon_sym_func] = ACTIONS(2687), - [anon_sym_extension] = ACTIONS(2687), - [anon_sym_indirect] = ACTIONS(2687), - [anon_sym_init] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_deinit] = ACTIONS(2687), - [anon_sym_subscript] = ACTIONS(2687), - [anon_sym_prefix] = ACTIONS(2687), - [anon_sym_infix] = ACTIONS(2687), - [anon_sym_postfix] = ACTIONS(2687), - [anon_sym_precedencegroup] = ACTIONS(2687), - [anon_sym_associatedtype] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2687), - [anon_sym_override] = ACTIONS(2687), - [anon_sym_convenience] = ACTIONS(2687), - [anon_sym_required] = ACTIONS(2687), - [anon_sym_nonisolated] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_internal] = ACTIONS(2687), - [anon_sym_fileprivate] = ACTIONS(2687), - [anon_sym_open] = ACTIONS(2687), - [anon_sym_mutating] = ACTIONS(2687), - [anon_sym_nonmutating] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_dynamic] = ACTIONS(2687), - [anon_sym_optional] = ACTIONS(2687), - [anon_sym_final] = ACTIONS(2687), - [anon_sym_inout] = ACTIONS(2687), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2687), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [646] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2691), - [aux_sym_simple_identifier_token2] = ACTIONS(2693), - [aux_sym_simple_identifier_token3] = ACTIONS(2693), - [aux_sym_simple_identifier_token4] = ACTIONS(2693), - [anon_sym_actor] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2691), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_PLUS_EQ] = ACTIONS(2693), - [anon_sym_DASH_EQ] = ACTIONS(2693), - [anon_sym_STAR_EQ] = ACTIONS(2693), - [anon_sym_SLASH_EQ] = ACTIONS(2693), - [anon_sym_PERCENT_EQ] = ACTIONS(2693), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2691), - [anon_sym_typealias] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_protocol] = ACTIONS(2691), - [anon_sym_let] = ACTIONS(2691), - [anon_sym_var] = ACTIONS(2691), - [anon_sym_func] = ACTIONS(2691), - [anon_sym_extension] = ACTIONS(2691), - [anon_sym_indirect] = ACTIONS(2691), - [anon_sym_init] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_deinit] = ACTIONS(2691), - [anon_sym_subscript] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_precedencegroup] = ACTIONS(2691), - [anon_sym_associatedtype] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [647] = { - [sym_simple_identifier] = STATE(708), - [sym__simple_user_type] = STATE(707), - [sym_array_type] = STATE(707), - [sym_dictionary_type] = STATE(707), - [aux_sym_key_path_expression_repeat1] = STATE(701), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2695), - [aux_sym_simple_identifier_token2] = ACTIONS(2697), - [aux_sym_simple_identifier_token3] = ACTIONS(2697), - [aux_sym_simple_identifier_token4] = ACTIONS(2697), - [anon_sym_actor] = ACTIONS(2695), - [anon_sym_COMMA] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_DOT] = ACTIONS(2703), - [anon_sym_QMARK] = ACTIONS(2705), - [sym__immediate_quest] = ACTIONS(2699), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_async] = ACTIONS(2705), - [aux_sym_custom_operator_token1] = ACTIONS(2699), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_CARET_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_BANG_EQ] = ACTIONS(2705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2699), - [anon_sym_LT_EQ] = ACTIONS(2699), - [anon_sym_GT_EQ] = ACTIONS(2699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2699), - [anon_sym_DOT_DOT_LT] = ACTIONS(2699), - [anon_sym_is] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2699), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2699), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_PIPE] = ACTIONS(2699), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_LT_LT] = ACTIONS(2699), - [anon_sym_GT_GT] = ACTIONS(2699), - [anon_sym_import] = ACTIONS(2705), - [anon_sym_typealias] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_protocol] = ACTIONS(2705), - [anon_sym_let] = ACTIONS(2705), - [anon_sym_var] = ACTIONS(2705), - [anon_sym_func] = ACTIONS(2705), - [anon_sym_extension] = ACTIONS(2705), - [anon_sym_indirect] = ACTIONS(2705), - [anon_sym_init] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_deinit] = ACTIONS(2705), - [anon_sym_subscript] = ACTIONS(2705), - [anon_sym_prefix] = ACTIONS(2705), - [anon_sym_infix] = ACTIONS(2705), - [anon_sym_postfix] = ACTIONS(2705), - [anon_sym_precedencegroup] = ACTIONS(2705), - [anon_sym_associatedtype] = ACTIONS(2705), - [anon_sym_AT] = ACTIONS(2705), - [sym_property_behavior_modifier] = ACTIONS(2705), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_convenience] = ACTIONS(2705), - [anon_sym_required] = ACTIONS(2705), - [anon_sym_nonisolated] = ACTIONS(2705), - [anon_sym_public] = ACTIONS(2705), - [anon_sym_private] = ACTIONS(2705), - [anon_sym_internal] = ACTIONS(2705), - [anon_sym_fileprivate] = ACTIONS(2705), - [anon_sym_open] = ACTIONS(2705), - [anon_sym_mutating] = ACTIONS(2705), - [anon_sym_nonmutating] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_dynamic] = ACTIONS(2705), - [anon_sym_optional] = ACTIONS(2705), - [anon_sym_final] = ACTIONS(2705), - [anon_sym_inout] = ACTIONS(2705), - [anon_sym_ATescaping] = ACTIONS(2699), - [anon_sym_ATautoclosure] = ACTIONS(2699), - [anon_sym_weak] = ACTIONS(2705), - [anon_sym_unowned] = ACTIONS(2705), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2699), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2699), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2699), - [sym__conjunction_operator_custom] = ACTIONS(2699), - [sym__disjunction_operator_custom] = ACTIONS(2699), - [sym__nil_coalescing_operator_custom] = ACTIONS(2699), - [sym__eq_eq_custom] = ACTIONS(2699), - [sym__plus_then_ws] = ACTIONS(2699), - [sym__minus_then_ws] = ACTIONS(2699), - [sym_bang] = ACTIONS(2699), - [sym__as_custom] = ACTIONS(2699), - [sym__as_quest_custom] = ACTIONS(2699), - [sym__as_bang_custom] = ACTIONS(2699), - [sym__custom_operator] = ACTIONS(2699), - }, - [648] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2707), - [aux_sym_simple_identifier_token2] = ACTIONS(2709), - [aux_sym_simple_identifier_token3] = ACTIONS(2709), - [aux_sym_simple_identifier_token4] = ACTIONS(2709), - [anon_sym_actor] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_async] = ACTIONS(2707), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_PLUS_EQ] = ACTIONS(2709), - [anon_sym_DASH_EQ] = ACTIONS(2709), - [anon_sym_STAR_EQ] = ACTIONS(2709), - [anon_sym_SLASH_EQ] = ACTIONS(2709), - [anon_sym_PERCENT_EQ] = ACTIONS(2709), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_import] = ACTIONS(2707), - [anon_sym_typealias] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_protocol] = ACTIONS(2707), - [anon_sym_let] = ACTIONS(2707), - [anon_sym_var] = ACTIONS(2707), - [anon_sym_func] = ACTIONS(2707), - [anon_sym_extension] = ACTIONS(2707), - [anon_sym_indirect] = ACTIONS(2707), - [anon_sym_init] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_deinit] = ACTIONS(2707), - [anon_sym_subscript] = ACTIONS(2707), - [anon_sym_prefix] = ACTIONS(2707), - [anon_sym_infix] = ACTIONS(2707), - [anon_sym_postfix] = ACTIONS(2707), - [anon_sym_precedencegroup] = ACTIONS(2707), - [anon_sym_associatedtype] = ACTIONS(2707), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2707), - [anon_sym_override] = ACTIONS(2707), - [anon_sym_convenience] = ACTIONS(2707), - [anon_sym_required] = ACTIONS(2707), - [anon_sym_nonisolated] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_internal] = ACTIONS(2707), - [anon_sym_fileprivate] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(2707), - [anon_sym_mutating] = ACTIONS(2707), - [anon_sym_nonmutating] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_dynamic] = ACTIONS(2707), - [anon_sym_optional] = ACTIONS(2707), - [anon_sym_final] = ACTIONS(2707), - [anon_sym_inout] = ACTIONS(2707), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2707), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [649] = { - [sym_type_arguments] = STATE(1997), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2711), - [anon_sym_RPAREN] = ACTIONS(2711), - [anon_sym_COMMA] = ACTIONS(2711), - [anon_sym_COLON] = ACTIONS(2711), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_RBRACK] = ACTIONS(2711), - [anon_sym_QMARK] = ACTIONS(2716), - [sym__immediate_quest] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [aux_sym_custom_operator_token1] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_CARET_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2711), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_GT_EQ] = ACTIONS(2711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2711), - [anon_sym_DOT_DOT_LT] = ACTIONS(2711), - [anon_sym_is] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_import] = ACTIONS(2711), - [anon_sym_typealias] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_protocol] = ACTIONS(2711), - [anon_sym_let] = ACTIONS(2711), - [anon_sym_var] = ACTIONS(2711), - [anon_sym_func] = ACTIONS(2711), - [anon_sym_extension] = ACTIONS(2711), - [anon_sym_indirect] = ACTIONS(2711), - [anon_sym_init] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_deinit] = ACTIONS(2711), - [anon_sym_subscript] = ACTIONS(2711), - [anon_sym_prefix] = ACTIONS(2711), - [anon_sym_infix] = ACTIONS(2711), - [anon_sym_postfix] = ACTIONS(2711), - [anon_sym_precedencegroup] = ACTIONS(2711), - [anon_sym_associatedtype] = ACTIONS(2711), - [anon_sym_AT] = ACTIONS(2716), - [sym_property_behavior_modifier] = ACTIONS(2711), - [anon_sym_override] = ACTIONS(2711), - [anon_sym_convenience] = ACTIONS(2711), - [anon_sym_required] = ACTIONS(2711), - [anon_sym_nonisolated] = ACTIONS(2711), - [anon_sym_public] = ACTIONS(2711), - [anon_sym_private] = ACTIONS(2711), - [anon_sym_internal] = ACTIONS(2711), - [anon_sym_fileprivate] = ACTIONS(2711), - [anon_sym_open] = ACTIONS(2711), - [anon_sym_mutating] = ACTIONS(2711), - [anon_sym_nonmutating] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_dynamic] = ACTIONS(2711), - [anon_sym_optional] = ACTIONS(2711), - [anon_sym_final] = ACTIONS(2711), - [anon_sym_inout] = ACTIONS(2711), - [anon_sym_ATescaping] = ACTIONS(2711), - [anon_sym_ATautoclosure] = ACTIONS(2711), - [anon_sym_weak] = ACTIONS(2711), - [anon_sym_unowned] = ACTIONS(2716), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2711), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2711), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2713), - [sym__conjunction_operator_custom] = ACTIONS(2711), - [sym__disjunction_operator_custom] = ACTIONS(2711), - [sym__nil_coalescing_operator_custom] = ACTIONS(2711), - [sym__eq_eq_custom] = ACTIONS(2711), - [sym__plus_then_ws] = ACTIONS(2711), - [sym__minus_then_ws] = ACTIONS(2711), - [sym_bang] = ACTIONS(2711), - [sym__as_custom] = ACTIONS(2711), - [sym__as_quest_custom] = ACTIONS(2711), - [sym__as_bang_custom] = ACTIONS(2711), - [sym__custom_operator] = ACTIONS(2711), - }, - [650] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2725), - [aux_sym_simple_identifier_token2] = ACTIONS(2727), - [aux_sym_simple_identifier_token3] = ACTIONS(2727), - [aux_sym_simple_identifier_token4] = ACTIONS(2727), - [anon_sym_actor] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2725), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_PLUS_EQ] = ACTIONS(2727), - [anon_sym_DASH_EQ] = ACTIONS(2727), - [anon_sym_STAR_EQ] = ACTIONS(2727), - [anon_sym_SLASH_EQ] = ACTIONS(2727), - [anon_sym_PERCENT_EQ] = ACTIONS(2727), - [anon_sym_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2725), - [anon_sym_typealias] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_protocol] = ACTIONS(2725), - [anon_sym_let] = ACTIONS(2725), - [anon_sym_var] = ACTIONS(2725), - [anon_sym_func] = ACTIONS(2725), - [anon_sym_extension] = ACTIONS(2725), - [anon_sym_indirect] = ACTIONS(2725), - [anon_sym_init] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_deinit] = ACTIONS(2725), - [anon_sym_subscript] = ACTIONS(2725), - [anon_sym_prefix] = ACTIONS(2725), - [anon_sym_infix] = ACTIONS(2725), - [anon_sym_postfix] = ACTIONS(2725), - [anon_sym_precedencegroup] = ACTIONS(2725), - [anon_sym_associatedtype] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_convenience] = ACTIONS(2725), - [anon_sym_required] = ACTIONS(2725), - [anon_sym_nonisolated] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_internal] = ACTIONS(2725), - [anon_sym_fileprivate] = ACTIONS(2725), - [anon_sym_open] = ACTIONS(2725), - [anon_sym_mutating] = ACTIONS(2725), - [anon_sym_nonmutating] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_dynamic] = ACTIONS(2725), - [anon_sym_optional] = ACTIONS(2725), - [anon_sym_final] = ACTIONS(2725), - [anon_sym_inout] = ACTIONS(2725), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2725), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [651] = { - [sym__dot] = STATE(4575), - [aux_sym_user_type_repeat1] = STATE(651), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2729), - [anon_sym_RPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_RBRACK] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_typealias] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_protocol] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_extension] = ACTIONS(2729), - [anon_sym_indirect] = ACTIONS(2729), - [anon_sym_init] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym_deinit] = ACTIONS(2729), - [anon_sym_subscript] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_precedencegroup] = ACTIONS(2729), - [anon_sym_associatedtype] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(2733), - [sym__conjunction_operator_custom] = ACTIONS(2729), - [sym__disjunction_operator_custom] = ACTIONS(2729), - [sym__nil_coalescing_operator_custom] = ACTIONS(2729), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__as_quest_custom] = ACTIONS(2729), - [sym__as_bang_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [652] = { - [aux_sym_optional_type_repeat1] = STATE(668), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_COLON] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_RBRACK] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [sym__immediate_quest] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_async] = ACTIONS(2736), - [aux_sym_custom_operator_token1] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_GT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_CARET_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2736), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT_LT] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2738), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_typealias] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_protocol] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_func] = ACTIONS(2736), - [anon_sym_extension] = ACTIONS(2736), - [anon_sym_indirect] = ACTIONS(2736), - [anon_sym_init] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_deinit] = ACTIONS(2736), - [anon_sym_subscript] = ACTIONS(2736), - [anon_sym_prefix] = ACTIONS(2736), - [anon_sym_infix] = ACTIONS(2736), - [anon_sym_postfix] = ACTIONS(2736), - [anon_sym_precedencegroup] = ACTIONS(2736), - [anon_sym_associatedtype] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2738), - [sym_property_behavior_modifier] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_convenience] = ACTIONS(2736), - [anon_sym_required] = ACTIONS(2736), - [anon_sym_nonisolated] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_internal] = ACTIONS(2736), - [anon_sym_fileprivate] = ACTIONS(2736), - [anon_sym_open] = ACTIONS(2736), - [anon_sym_mutating] = ACTIONS(2736), - [anon_sym_nonmutating] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_dynamic] = ACTIONS(2736), - [anon_sym_optional] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_inout] = ACTIONS(2736), - [anon_sym_ATescaping] = ACTIONS(2736), - [anon_sym_ATautoclosure] = ACTIONS(2736), - [anon_sym_weak] = ACTIONS(2736), - [anon_sym_unowned] = ACTIONS(2738), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2736), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2736), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2736), - [sym__dot_custom] = ACTIONS(2736), - [sym__conjunction_operator_custom] = ACTIONS(2736), - [sym__disjunction_operator_custom] = ACTIONS(2736), - [sym__nil_coalescing_operator_custom] = ACTIONS(2736), - [sym__eq_eq_custom] = ACTIONS(2736), - [sym__plus_then_ws] = ACTIONS(2736), - [sym__minus_then_ws] = ACTIONS(2736), - [sym_bang] = ACTIONS(2736), - [sym__throws_keyword] = ACTIONS(2736), - [sym__rethrows_keyword] = ACTIONS(2736), - [sym__as_custom] = ACTIONS(2736), - [sym__as_quest_custom] = ACTIONS(2736), - [sym__as_bang_custom] = ACTIONS(2736), - [sym__async_keyword_custom] = ACTIONS(2736), - [sym__custom_operator] = ACTIONS(2736), - }, - [653] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_RBRACK] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2742), - [sym__immediate_quest] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [aux_sym_custom_operator_token1] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_CARET_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), - [anon_sym_DOT_DOT_LT] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2742), - [anon_sym_PERCENT] = ACTIONS(2742), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2742), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_typealias] = ACTIONS(2740), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_protocol] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [anon_sym_func] = ACTIONS(2740), - [anon_sym_extension] = ACTIONS(2740), - [anon_sym_indirect] = ACTIONS(2740), - [anon_sym_init] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_deinit] = ACTIONS(2740), - [anon_sym_subscript] = ACTIONS(2740), - [anon_sym_prefix] = ACTIONS(2740), - [anon_sym_infix] = ACTIONS(2740), - [anon_sym_postfix] = ACTIONS(2740), - [anon_sym_precedencegroup] = ACTIONS(2740), - [anon_sym_associatedtype] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2742), - [sym_property_behavior_modifier] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_convenience] = ACTIONS(2740), - [anon_sym_required] = ACTIONS(2740), - [anon_sym_nonisolated] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_internal] = ACTIONS(2740), - [anon_sym_fileprivate] = ACTIONS(2740), - [anon_sym_open] = ACTIONS(2740), - [anon_sym_mutating] = ACTIONS(2740), - [anon_sym_nonmutating] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_dynamic] = ACTIONS(2740), - [anon_sym_optional] = ACTIONS(2740), - [anon_sym_final] = ACTIONS(2740), - [anon_sym_inout] = ACTIONS(2740), - [anon_sym_ATescaping] = ACTIONS(2740), - [anon_sym_ATautoclosure] = ACTIONS(2740), - [anon_sym_weak] = ACTIONS(2740), - [anon_sym_unowned] = ACTIONS(2742), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2740), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2740), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2740), - [sym__conjunction_operator_custom] = ACTIONS(2740), - [sym__disjunction_operator_custom] = ACTIONS(2740), - [sym__nil_coalescing_operator_custom] = ACTIONS(2740), - [sym__eq_eq_custom] = ACTIONS(2740), - [sym__plus_then_ws] = ACTIONS(2740), - [sym__minus_then_ws] = ACTIONS(2740), - [sym_bang] = ACTIONS(2740), - [sym__as_custom] = ACTIONS(2740), - [sym__as_quest_custom] = ACTIONS(2740), - [sym__as_bang_custom] = ACTIONS(2740), - [sym__custom_operator] = ACTIONS(2740), - }, - [654] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_COLON] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_RBRACK] = ACTIONS(2744), - [anon_sym_QMARK] = ACTIONS(2746), - [sym__immediate_quest] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [aux_sym_custom_operator_token1] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_GT] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_CARET_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_PLUS_EQ] = ACTIONS(2744), - [anon_sym_DASH_EQ] = ACTIONS(2744), - [anon_sym_STAR_EQ] = ACTIONS(2744), - [anon_sym_SLASH_EQ] = ACTIONS(2744), - [anon_sym_PERCENT_EQ] = ACTIONS(2744), - [anon_sym_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2744), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2744), - [anon_sym_DOT_DOT_LT] = ACTIONS(2744), - [anon_sym_is] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_SLASH] = ACTIONS(2746), - [anon_sym_PERCENT] = ACTIONS(2746), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2746), - [anon_sym_LT_LT] = ACTIONS(2744), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_typealias] = ACTIONS(2744), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_protocol] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_func] = ACTIONS(2744), - [anon_sym_extension] = ACTIONS(2744), - [anon_sym_indirect] = ACTIONS(2744), - [anon_sym_init] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_deinit] = ACTIONS(2744), - [anon_sym_subscript] = ACTIONS(2744), - [anon_sym_prefix] = ACTIONS(2744), - [anon_sym_infix] = ACTIONS(2744), - [anon_sym_postfix] = ACTIONS(2744), - [anon_sym_precedencegroup] = ACTIONS(2744), - [anon_sym_associatedtype] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2746), - [sym_property_behavior_modifier] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_convenience] = ACTIONS(2744), - [anon_sym_required] = ACTIONS(2744), - [anon_sym_nonisolated] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_internal] = ACTIONS(2744), - [anon_sym_fileprivate] = ACTIONS(2744), - [anon_sym_open] = ACTIONS(2744), - [anon_sym_mutating] = ACTIONS(2744), - [anon_sym_nonmutating] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_dynamic] = ACTIONS(2744), - [anon_sym_optional] = ACTIONS(2744), - [anon_sym_final] = ACTIONS(2744), - [anon_sym_inout] = ACTIONS(2744), - [anon_sym_ATescaping] = ACTIONS(2744), - [anon_sym_ATautoclosure] = ACTIONS(2744), - [anon_sym_weak] = ACTIONS(2744), - [anon_sym_unowned] = ACTIONS(2746), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2744), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2744), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2744), - [sym__conjunction_operator_custom] = ACTIONS(2744), - [sym__disjunction_operator_custom] = ACTIONS(2744), - [sym__nil_coalescing_operator_custom] = ACTIONS(2744), - [sym__eq_eq_custom] = ACTIONS(2744), - [sym__plus_then_ws] = ACTIONS(2744), - [sym__minus_then_ws] = ACTIONS(2744), - [sym_bang] = ACTIONS(2744), - [sym__as_custom] = ACTIONS(2744), - [sym__as_quest_custom] = ACTIONS(2744), - [sym__as_bang_custom] = ACTIONS(2744), - [sym__custom_operator] = ACTIONS(2744), - }, - [655] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2748), - [anon_sym_RPAREN] = ACTIONS(2748), - [anon_sym_COMMA] = ACTIONS(2748), - [anon_sym_COLON] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_RBRACK] = ACTIONS(2748), - [anon_sym_QMARK] = ACTIONS(2750), - [sym__immediate_quest] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_async] = ACTIONS(2748), - [aux_sym_custom_operator_token1] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_CARET_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_case] = ACTIONS(2748), - [anon_sym_PLUS_EQ] = ACTIONS(2748), - [anon_sym_DASH_EQ] = ACTIONS(2748), - [anon_sym_STAR_EQ] = ACTIONS(2748), - [anon_sym_SLASH_EQ] = ACTIONS(2748), - [anon_sym_PERCENT_EQ] = ACTIONS(2748), - [anon_sym_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2748), - [anon_sym_LT_EQ] = ACTIONS(2748), - [anon_sym_GT_EQ] = ACTIONS(2748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), - [anon_sym_DOT_DOT_LT] = ACTIONS(2748), - [anon_sym_is] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2748), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_import] = ACTIONS(2748), - [anon_sym_typealias] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2748), - [anon_sym_class] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2748), - [anon_sym_protocol] = ACTIONS(2748), - [anon_sym_let] = ACTIONS(2748), - [anon_sym_var] = ACTIONS(2748), - [anon_sym_func] = ACTIONS(2748), - [anon_sym_extension] = ACTIONS(2748), - [anon_sym_indirect] = ACTIONS(2748), - [anon_sym_init] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_deinit] = ACTIONS(2748), - [anon_sym_subscript] = ACTIONS(2748), - [anon_sym_prefix] = ACTIONS(2748), - [anon_sym_infix] = ACTIONS(2748), - [anon_sym_postfix] = ACTIONS(2748), - [anon_sym_precedencegroup] = ACTIONS(2748), - [anon_sym_associatedtype] = ACTIONS(2748), - [anon_sym_AT] = ACTIONS(2750), - [sym_property_behavior_modifier] = ACTIONS(2748), - [anon_sym_override] = ACTIONS(2748), - [anon_sym_convenience] = ACTIONS(2748), - [anon_sym_required] = ACTIONS(2748), - [anon_sym_nonisolated] = ACTIONS(2748), - [anon_sym_public] = ACTIONS(2748), - [anon_sym_private] = ACTIONS(2748), - [anon_sym_internal] = ACTIONS(2748), - [anon_sym_fileprivate] = ACTIONS(2748), - [anon_sym_open] = ACTIONS(2748), - [anon_sym_mutating] = ACTIONS(2748), - [anon_sym_nonmutating] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_dynamic] = ACTIONS(2748), - [anon_sym_optional] = ACTIONS(2748), - [anon_sym_final] = ACTIONS(2748), - [anon_sym_inout] = ACTIONS(2748), - [anon_sym_ATescaping] = ACTIONS(2748), - [anon_sym_ATautoclosure] = ACTIONS(2748), - [anon_sym_weak] = ACTIONS(2748), - [anon_sym_unowned] = ACTIONS(2750), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2748), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2748), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2748), - [sym__conjunction_operator_custom] = ACTIONS(2748), - [sym__disjunction_operator_custom] = ACTIONS(2748), - [sym__nil_coalescing_operator_custom] = ACTIONS(2748), - [sym__eq_eq_custom] = ACTIONS(2748), - [sym__plus_then_ws] = ACTIONS(2748), - [sym__minus_then_ws] = ACTIONS(2748), - [sym_bang] = ACTIONS(2748), - [sym__as_custom] = ACTIONS(2748), - [sym__as_quest_custom] = ACTIONS(2748), - [sym__as_bang_custom] = ACTIONS(2748), - [sym__custom_operator] = ACTIONS(2748), - }, - [656] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2752), - [anon_sym_RPAREN] = ACTIONS(2752), - [anon_sym_COMMA] = ACTIONS(2752), - [anon_sym_COLON] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2752), - [anon_sym_RBRACK] = ACTIONS(2752), - [anon_sym_QMARK] = ACTIONS(2754), - [sym__immediate_quest] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2752), - [aux_sym_custom_operator_token1] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_CARET_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_PLUS_EQ] = ACTIONS(2752), - [anon_sym_DASH_EQ] = ACTIONS(2752), - [anon_sym_STAR_EQ] = ACTIONS(2752), - [anon_sym_SLASH_EQ] = ACTIONS(2752), - [anon_sym_PERCENT_EQ] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2752), - [anon_sym_LT_EQ] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [anon_sym_is] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2752), - [anon_sym_typealias] = ACTIONS(2752), - [anon_sym_struct] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_protocol] = ACTIONS(2752), - [anon_sym_let] = ACTIONS(2752), - [anon_sym_var] = ACTIONS(2752), - [anon_sym_func] = ACTIONS(2752), - [anon_sym_extension] = ACTIONS(2752), - [anon_sym_indirect] = ACTIONS(2752), - [anon_sym_init] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_deinit] = ACTIONS(2752), - [anon_sym_subscript] = ACTIONS(2752), - [anon_sym_prefix] = ACTIONS(2752), - [anon_sym_infix] = ACTIONS(2752), - [anon_sym_postfix] = ACTIONS(2752), - [anon_sym_precedencegroup] = ACTIONS(2752), - [anon_sym_associatedtype] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2754), - [sym_property_behavior_modifier] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_convenience] = ACTIONS(2752), - [anon_sym_required] = ACTIONS(2752), - [anon_sym_nonisolated] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_internal] = ACTIONS(2752), - [anon_sym_fileprivate] = ACTIONS(2752), - [anon_sym_open] = ACTIONS(2752), - [anon_sym_mutating] = ACTIONS(2752), - [anon_sym_nonmutating] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_dynamic] = ACTIONS(2752), - [anon_sym_optional] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_inout] = ACTIONS(2752), - [anon_sym_ATescaping] = ACTIONS(2752), - [anon_sym_ATautoclosure] = ACTIONS(2752), - [anon_sym_weak] = ACTIONS(2752), - [anon_sym_unowned] = ACTIONS(2754), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2752), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2752), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2752), - [sym__conjunction_operator_custom] = ACTIONS(2752), - [sym__disjunction_operator_custom] = ACTIONS(2752), - [sym__nil_coalescing_operator_custom] = ACTIONS(2752), - [sym__eq_eq_custom] = ACTIONS(2752), - [sym__plus_then_ws] = ACTIONS(2752), - [sym__minus_then_ws] = ACTIONS(2752), - [sym_bang] = ACTIONS(2752), - [sym__as_custom] = ACTIONS(2752), - [sym__as_quest_custom] = ACTIONS(2752), - [sym__as_bang_custom] = ACTIONS(2752), - [sym__custom_operator] = ACTIONS(2752), - }, - [657] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_COLON] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_RBRACK] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2758), - [sym__immediate_quest] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [anon_sym_async] = ACTIONS(2756), - [aux_sym_custom_operator_token1] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_CARET_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_case] = ACTIONS(2756), - [anon_sym_PLUS_EQ] = ACTIONS(2756), - [anon_sym_DASH_EQ] = ACTIONS(2756), - [anon_sym_STAR_EQ] = ACTIONS(2756), - [anon_sym_SLASH_EQ] = ACTIONS(2756), - [anon_sym_PERCENT_EQ] = ACTIONS(2756), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2756), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2756), - [anon_sym_DOT_DOT_LT] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_typealias] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_protocol] = ACTIONS(2756), - [anon_sym_let] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2756), - [anon_sym_func] = ACTIONS(2756), - [anon_sym_extension] = ACTIONS(2756), - [anon_sym_indirect] = ACTIONS(2756), - [anon_sym_init] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_deinit] = ACTIONS(2756), - [anon_sym_subscript] = ACTIONS(2756), - [anon_sym_prefix] = ACTIONS(2756), - [anon_sym_infix] = ACTIONS(2756), - [anon_sym_postfix] = ACTIONS(2756), - [anon_sym_precedencegroup] = ACTIONS(2756), - [anon_sym_associatedtype] = ACTIONS(2756), - [anon_sym_AT] = ACTIONS(2758), - [sym_property_behavior_modifier] = ACTIONS(2756), - [anon_sym_override] = ACTIONS(2756), - [anon_sym_convenience] = ACTIONS(2756), - [anon_sym_required] = ACTIONS(2756), - [anon_sym_nonisolated] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_internal] = ACTIONS(2756), - [anon_sym_fileprivate] = ACTIONS(2756), - [anon_sym_open] = ACTIONS(2756), - [anon_sym_mutating] = ACTIONS(2756), - [anon_sym_nonmutating] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_dynamic] = ACTIONS(2756), - [anon_sym_optional] = ACTIONS(2756), - [anon_sym_final] = ACTIONS(2756), - [anon_sym_inout] = ACTIONS(2756), - [anon_sym_ATescaping] = ACTIONS(2756), - [anon_sym_ATautoclosure] = ACTIONS(2756), - [anon_sym_weak] = ACTIONS(2756), - [anon_sym_unowned] = ACTIONS(2758), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2756), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2756), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2756), - [sym__conjunction_operator_custom] = ACTIONS(2756), - [sym__disjunction_operator_custom] = ACTIONS(2756), - [sym__nil_coalescing_operator_custom] = ACTIONS(2756), - [sym__eq_eq_custom] = ACTIONS(2756), - [sym__plus_then_ws] = ACTIONS(2756), - [sym__minus_then_ws] = ACTIONS(2756), - [sym_bang] = ACTIONS(2756), - [sym__as_custom] = ACTIONS(2756), - [sym__as_quest_custom] = ACTIONS(2756), - [sym__as_bang_custom] = ACTIONS(2756), - [sym__custom_operator] = ACTIONS(2756), - }, - [658] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2760), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_COMMA] = ACTIONS(2760), - [anon_sym_COLON] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_RBRACK] = ACTIONS(2760), - [anon_sym_QMARK] = ACTIONS(2762), - [sym__immediate_quest] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), - [anon_sym_async] = ACTIONS(2760), - [aux_sym_custom_operator_token1] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_CARET_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_case] = ACTIONS(2760), - [anon_sym_PLUS_EQ] = ACTIONS(2760), - [anon_sym_DASH_EQ] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2760), - [anon_sym_SLASH_EQ] = ACTIONS(2760), - [anon_sym_PERCENT_EQ] = ACTIONS(2760), - [anon_sym_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2760), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2760), - [anon_sym_LT_EQ] = ACTIONS(2760), - [anon_sym_GT_EQ] = ACTIONS(2760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2760), - [anon_sym_DOT_DOT_LT] = ACTIONS(2760), - [anon_sym_is] = ACTIONS(2760), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2762), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_LT_LT] = ACTIONS(2760), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_import] = ACTIONS(2760), - [anon_sym_typealias] = ACTIONS(2760), - [anon_sym_struct] = ACTIONS(2760), - [anon_sym_class] = ACTIONS(2760), - [anon_sym_enum] = ACTIONS(2760), - [anon_sym_protocol] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_func] = ACTIONS(2760), - [anon_sym_extension] = ACTIONS(2760), - [anon_sym_indirect] = ACTIONS(2760), - [anon_sym_init] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_deinit] = ACTIONS(2760), - [anon_sym_subscript] = ACTIONS(2760), - [anon_sym_prefix] = ACTIONS(2760), - [anon_sym_infix] = ACTIONS(2760), - [anon_sym_postfix] = ACTIONS(2760), - [anon_sym_precedencegroup] = ACTIONS(2760), - [anon_sym_associatedtype] = ACTIONS(2760), - [anon_sym_AT] = ACTIONS(2762), - [sym_property_behavior_modifier] = ACTIONS(2760), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_convenience] = ACTIONS(2760), - [anon_sym_required] = ACTIONS(2760), - [anon_sym_nonisolated] = ACTIONS(2760), - [anon_sym_public] = ACTIONS(2760), - [anon_sym_private] = ACTIONS(2760), - [anon_sym_internal] = ACTIONS(2760), - [anon_sym_fileprivate] = ACTIONS(2760), - [anon_sym_open] = ACTIONS(2760), - [anon_sym_mutating] = ACTIONS(2760), - [anon_sym_nonmutating] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_dynamic] = ACTIONS(2760), - [anon_sym_optional] = ACTIONS(2760), - [anon_sym_final] = ACTIONS(2760), - [anon_sym_inout] = ACTIONS(2760), - [anon_sym_ATescaping] = ACTIONS(2760), - [anon_sym_ATautoclosure] = ACTIONS(2760), - [anon_sym_weak] = ACTIONS(2760), - [anon_sym_unowned] = ACTIONS(2762), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2760), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2760), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2760), - [sym__conjunction_operator_custom] = ACTIONS(2760), - [sym__disjunction_operator_custom] = ACTIONS(2760), - [sym__nil_coalescing_operator_custom] = ACTIONS(2760), - [sym__eq_eq_custom] = ACTIONS(2760), - [sym__plus_then_ws] = ACTIONS(2760), - [sym__minus_then_ws] = ACTIONS(2760), - [sym_bang] = ACTIONS(2760), - [sym__as_custom] = ACTIONS(2760), - [sym__as_quest_custom] = ACTIONS(2760), - [sym__as_bang_custom] = ACTIONS(2760), - [sym__custom_operator] = ACTIONS(2760), - }, - [659] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2764), - [anon_sym_RPAREN] = ACTIONS(2764), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_COLON] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_RBRACK] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2766), - [sym__immediate_quest] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_async] = ACTIONS(2764), - [aux_sym_custom_operator_token1] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_CARET_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_case] = ACTIONS(2764), - [anon_sym_PLUS_EQ] = ACTIONS(2764), - [anon_sym_DASH_EQ] = ACTIONS(2764), - [anon_sym_STAR_EQ] = ACTIONS(2764), - [anon_sym_SLASH_EQ] = ACTIONS(2764), - [anon_sym_PERCENT_EQ] = ACTIONS(2764), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2764), - [anon_sym_DOT_DOT_LT] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_import] = ACTIONS(2764), - [anon_sym_typealias] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_class] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_protocol] = ACTIONS(2764), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_var] = ACTIONS(2764), - [anon_sym_func] = ACTIONS(2764), - [anon_sym_extension] = ACTIONS(2764), - [anon_sym_indirect] = ACTIONS(2764), - [anon_sym_init] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_deinit] = ACTIONS(2764), - [anon_sym_subscript] = ACTIONS(2764), - [anon_sym_prefix] = ACTIONS(2764), - [anon_sym_infix] = ACTIONS(2764), - [anon_sym_postfix] = ACTIONS(2764), - [anon_sym_precedencegroup] = ACTIONS(2764), - [anon_sym_associatedtype] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2766), - [sym_property_behavior_modifier] = ACTIONS(2764), - [anon_sym_override] = ACTIONS(2764), - [anon_sym_convenience] = ACTIONS(2764), - [anon_sym_required] = ACTIONS(2764), - [anon_sym_nonisolated] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_internal] = ACTIONS(2764), - [anon_sym_fileprivate] = ACTIONS(2764), - [anon_sym_open] = ACTIONS(2764), - [anon_sym_mutating] = ACTIONS(2764), - [anon_sym_nonmutating] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_dynamic] = ACTIONS(2764), - [anon_sym_optional] = ACTIONS(2764), - [anon_sym_final] = ACTIONS(2764), - [anon_sym_inout] = ACTIONS(2764), - [anon_sym_ATescaping] = ACTIONS(2764), - [anon_sym_ATautoclosure] = ACTIONS(2764), - [anon_sym_weak] = ACTIONS(2764), - [anon_sym_unowned] = ACTIONS(2766), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2764), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2764), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2764), - [sym__conjunction_operator_custom] = ACTIONS(2764), - [sym__disjunction_operator_custom] = ACTIONS(2764), - [sym__nil_coalescing_operator_custom] = ACTIONS(2764), - [sym__eq_eq_custom] = ACTIONS(2764), - [sym__plus_then_ws] = ACTIONS(2764), - [sym__minus_then_ws] = ACTIONS(2764), - [sym_bang] = ACTIONS(2764), - [sym__as_custom] = ACTIONS(2764), - [sym__as_quest_custom] = ACTIONS(2764), - [sym__as_bang_custom] = ACTIONS(2764), - [sym__custom_operator] = ACTIONS(2764), - }, - [660] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_COLON] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_RBRACK] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2770), - [sym__immediate_quest] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_async] = ACTIONS(2768), - [aux_sym_custom_operator_token1] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_GT] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_CARET_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_PLUS_EQ] = ACTIONS(2768), - [anon_sym_DASH_EQ] = ACTIONS(2768), - [anon_sym_STAR_EQ] = ACTIONS(2768), - [anon_sym_SLASH_EQ] = ACTIONS(2768), - [anon_sym_PERCENT_EQ] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2768), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), - [anon_sym_DOT_DOT_LT] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2770), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_import] = ACTIONS(2768), - [anon_sym_typealias] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_protocol] = ACTIONS(2768), - [anon_sym_let] = ACTIONS(2768), - [anon_sym_var] = ACTIONS(2768), - [anon_sym_func] = ACTIONS(2768), - [anon_sym_extension] = ACTIONS(2768), - [anon_sym_indirect] = ACTIONS(2768), - [anon_sym_init] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_deinit] = ACTIONS(2768), - [anon_sym_subscript] = ACTIONS(2768), - [anon_sym_prefix] = ACTIONS(2768), - [anon_sym_infix] = ACTIONS(2768), - [anon_sym_postfix] = ACTIONS(2768), - [anon_sym_precedencegroup] = ACTIONS(2768), - [anon_sym_associatedtype] = ACTIONS(2768), - [anon_sym_AT] = ACTIONS(2770), - [sym_property_behavior_modifier] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_convenience] = ACTIONS(2768), - [anon_sym_required] = ACTIONS(2768), - [anon_sym_nonisolated] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_internal] = ACTIONS(2768), - [anon_sym_fileprivate] = ACTIONS(2768), - [anon_sym_open] = ACTIONS(2768), - [anon_sym_mutating] = ACTIONS(2768), - [anon_sym_nonmutating] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_dynamic] = ACTIONS(2768), - [anon_sym_optional] = ACTIONS(2768), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_inout] = ACTIONS(2768), - [anon_sym_ATescaping] = ACTIONS(2768), - [anon_sym_ATautoclosure] = ACTIONS(2768), - [anon_sym_weak] = ACTIONS(2768), - [anon_sym_unowned] = ACTIONS(2770), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2768), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2768), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2768), - [sym__conjunction_operator_custom] = ACTIONS(2768), - [sym__disjunction_operator_custom] = ACTIONS(2768), - [sym__nil_coalescing_operator_custom] = ACTIONS(2768), - [sym__eq_eq_custom] = ACTIONS(2768), - [sym__plus_then_ws] = ACTIONS(2768), - [sym__minus_then_ws] = ACTIONS(2768), - [sym_bang] = ACTIONS(2768), - [sym__as_custom] = ACTIONS(2768), - [sym__as_quest_custom] = ACTIONS(2768), - [sym__as_bang_custom] = ACTIONS(2768), - [sym__custom_operator] = ACTIONS(2768), - }, - [661] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_RBRACK] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2774), - [sym__immediate_quest] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2772), - [aux_sym_custom_operator_token1] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_GT] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_CARET_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_case] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_DOT_DOT_LT] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2774), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2774), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_import] = ACTIONS(2772), - [anon_sym_typealias] = ACTIONS(2772), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_protocol] = ACTIONS(2772), - [anon_sym_let] = ACTIONS(2772), - [anon_sym_var] = ACTIONS(2772), - [anon_sym_func] = ACTIONS(2772), - [anon_sym_extension] = ACTIONS(2772), - [anon_sym_indirect] = ACTIONS(2772), - [anon_sym_init] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_deinit] = ACTIONS(2772), - [anon_sym_subscript] = ACTIONS(2772), - [anon_sym_prefix] = ACTIONS(2772), - [anon_sym_infix] = ACTIONS(2772), - [anon_sym_postfix] = ACTIONS(2772), - [anon_sym_precedencegroup] = ACTIONS(2772), - [anon_sym_associatedtype] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2774), - [sym_property_behavior_modifier] = ACTIONS(2772), - [anon_sym_override] = ACTIONS(2772), - [anon_sym_convenience] = ACTIONS(2772), - [anon_sym_required] = ACTIONS(2772), - [anon_sym_nonisolated] = ACTIONS(2772), - [anon_sym_public] = ACTIONS(2772), - [anon_sym_private] = ACTIONS(2772), - [anon_sym_internal] = ACTIONS(2772), - [anon_sym_fileprivate] = ACTIONS(2772), - [anon_sym_open] = ACTIONS(2772), - [anon_sym_mutating] = ACTIONS(2772), - [anon_sym_nonmutating] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_dynamic] = ACTIONS(2772), - [anon_sym_optional] = ACTIONS(2772), - [anon_sym_final] = ACTIONS(2772), - [anon_sym_inout] = ACTIONS(2772), - [anon_sym_ATescaping] = ACTIONS(2772), - [anon_sym_ATautoclosure] = ACTIONS(2772), - [anon_sym_weak] = ACTIONS(2772), - [anon_sym_unowned] = ACTIONS(2774), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2772), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2772), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2772), - [sym__conjunction_operator_custom] = ACTIONS(2772), - [sym__disjunction_operator_custom] = ACTIONS(2772), - [sym__nil_coalescing_operator_custom] = ACTIONS(2772), - [sym__eq_eq_custom] = ACTIONS(2772), - [sym__plus_then_ws] = ACTIONS(2772), - [sym__minus_then_ws] = ACTIONS(2772), - [sym_bang] = ACTIONS(2772), - [sym__as_custom] = ACTIONS(2772), - [sym__as_quest_custom] = ACTIONS(2772), - [sym__as_bang_custom] = ACTIONS(2772), - [sym__custom_operator] = ACTIONS(2772), - }, - [662] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(662), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_RBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [sym__immediate_quest] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2776), - [anon_sym_async] = ACTIONS(2581), - [aux_sym_custom_operator_token1] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_CARET_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2581), - [anon_sym_LT_EQ] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_is] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_typealias] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_protocol] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_func] = ACTIONS(2581), - [anon_sym_extension] = ACTIONS(2581), - [anon_sym_indirect] = ACTIONS(2581), - [anon_sym_init] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2581), - [anon_sym_deinit] = ACTIONS(2581), - [anon_sym_subscript] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_precedencegroup] = ACTIONS(2581), - [anon_sym_associatedtype] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2581), - [sym__dot_custom] = ACTIONS(2581), - [sym__conjunction_operator_custom] = ACTIONS(2581), - [sym__disjunction_operator_custom] = ACTIONS(2581), - [sym__nil_coalescing_operator_custom] = ACTIONS(2581), - [sym__eq_eq_custom] = ACTIONS(2581), - [sym__plus_then_ws] = ACTIONS(2581), - [sym__minus_then_ws] = ACTIONS(2581), - [sym_bang] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2581), - [sym__rethrows_keyword] = ACTIONS(2581), - [sym__as_custom] = ACTIONS(2581), - [sym__as_quest_custom] = ACTIONS(2581), - [sym__as_bang_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(2581), - [sym__custom_operator] = ACTIONS(2581), - }, - [663] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_RBRACK] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_typealias] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_protocol] = ACTIONS(2779), - [anon_sym_let] = ACTIONS(2779), - [anon_sym_var] = ACTIONS(2779), - [anon_sym_func] = ACTIONS(2779), - [anon_sym_extension] = ACTIONS(2779), - [anon_sym_indirect] = ACTIONS(2779), - [anon_sym_init] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_deinit] = ACTIONS(2779), - [anon_sym_subscript] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_precedencegroup] = ACTIONS(2779), - [anon_sym_associatedtype] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [664] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2783), - [anon_sym_RPAREN] = ACTIONS(2783), - [anon_sym_COMMA] = ACTIONS(2783), - [anon_sym_COLON] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_RBRACK] = ACTIONS(2783), - [anon_sym_QMARK] = ACTIONS(2785), - [sym__immediate_quest] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_async] = ACTIONS(2783), - [aux_sym_custom_operator_token1] = ACTIONS(2783), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_GT] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_CARET_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_PLUS_EQ] = ACTIONS(2783), - [anon_sym_DASH_EQ] = ACTIONS(2783), - [anon_sym_STAR_EQ] = ACTIONS(2783), - [anon_sym_SLASH_EQ] = ACTIONS(2783), - [anon_sym_PERCENT_EQ] = ACTIONS(2783), - [anon_sym_EQ] = ACTIONS(2785), - [anon_sym_BANG_EQ] = ACTIONS(2785), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2783), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2783), - [anon_sym_DOT_DOT_LT] = ACTIONS(2783), - [anon_sym_is] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_SLASH] = ACTIONS(2785), - [anon_sym_PERCENT] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PIPE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2785), - [anon_sym_LT_LT] = ACTIONS(2783), - [anon_sym_GT_GT] = ACTIONS(2783), - [anon_sym_import] = ACTIONS(2783), - [anon_sym_typealias] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_protocol] = ACTIONS(2783), - [anon_sym_let] = ACTIONS(2783), - [anon_sym_var] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(2783), - [anon_sym_extension] = ACTIONS(2783), - [anon_sym_indirect] = ACTIONS(2783), - [anon_sym_init] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_deinit] = ACTIONS(2783), - [anon_sym_subscript] = ACTIONS(2783), - [anon_sym_prefix] = ACTIONS(2783), - [anon_sym_infix] = ACTIONS(2783), - [anon_sym_postfix] = ACTIONS(2783), - [anon_sym_precedencegroup] = ACTIONS(2783), - [anon_sym_associatedtype] = ACTIONS(2783), - [anon_sym_AT] = ACTIONS(2785), - [sym_property_behavior_modifier] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2783), - [anon_sym_convenience] = ACTIONS(2783), - [anon_sym_required] = ACTIONS(2783), - [anon_sym_nonisolated] = ACTIONS(2783), - [anon_sym_public] = ACTIONS(2783), - [anon_sym_private] = ACTIONS(2783), - [anon_sym_internal] = ACTIONS(2783), - [anon_sym_fileprivate] = ACTIONS(2783), - [anon_sym_open] = ACTIONS(2783), - [anon_sym_mutating] = ACTIONS(2783), - [anon_sym_nonmutating] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_dynamic] = ACTIONS(2783), - [anon_sym_optional] = ACTIONS(2783), - [anon_sym_final] = ACTIONS(2783), - [anon_sym_inout] = ACTIONS(2783), - [anon_sym_ATescaping] = ACTIONS(2783), - [anon_sym_ATautoclosure] = ACTIONS(2783), - [anon_sym_weak] = ACTIONS(2783), - [anon_sym_unowned] = ACTIONS(2785), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2783), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2783), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2783), - [sym__conjunction_operator_custom] = ACTIONS(2783), - [sym__disjunction_operator_custom] = ACTIONS(2783), - [sym__nil_coalescing_operator_custom] = ACTIONS(2783), - [sym__eq_eq_custom] = ACTIONS(2783), - [sym__plus_then_ws] = ACTIONS(2783), - [sym__minus_then_ws] = ACTIONS(2783), - [sym_bang] = ACTIONS(2783), - [sym__as_custom] = ACTIONS(2783), - [sym__as_quest_custom] = ACTIONS(2783), - [sym__as_bang_custom] = ACTIONS(2783), - [sym__custom_operator] = ACTIONS(2783), - }, - [665] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(662), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2787), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_COMMA] = ACTIONS(2787), - [anon_sym_COLON] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_RBRACK] = ACTIONS(2787), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [sym__immediate_quest] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [aux_sym_custom_operator_token1] = ACTIONS(2787), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_CARET_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_case] = ACTIONS(2787), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2787), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2787), - [anon_sym_LT_EQ] = ACTIONS(2787), - [anon_sym_GT_EQ] = ACTIONS(2787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2787), - [anon_sym_DOT_DOT_LT] = ACTIONS(2787), - [anon_sym_is] = ACTIONS(2787), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PIPE] = ACTIONS(2787), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2787), - [anon_sym_GT_GT] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_typealias] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_protocol] = ACTIONS(2787), - [anon_sym_let] = ACTIONS(2787), - [anon_sym_var] = ACTIONS(2787), - [anon_sym_func] = ACTIONS(2787), - [anon_sym_extension] = ACTIONS(2787), - [anon_sym_indirect] = ACTIONS(2787), - [anon_sym_init] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_deinit] = ACTIONS(2787), - [anon_sym_subscript] = ACTIONS(2787), - [anon_sym_prefix] = ACTIONS(2787), - [anon_sym_infix] = ACTIONS(2787), - [anon_sym_postfix] = ACTIONS(2787), - [anon_sym_precedencegroup] = ACTIONS(2787), - [anon_sym_associatedtype] = ACTIONS(2787), - [anon_sym_AT] = ACTIONS(2789), - [sym_property_behavior_modifier] = ACTIONS(2787), - [anon_sym_override] = ACTIONS(2787), - [anon_sym_convenience] = ACTIONS(2787), - [anon_sym_required] = ACTIONS(2787), - [anon_sym_nonisolated] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_private] = ACTIONS(2787), - [anon_sym_internal] = ACTIONS(2787), - [anon_sym_fileprivate] = ACTIONS(2787), - [anon_sym_open] = ACTIONS(2787), - [anon_sym_mutating] = ACTIONS(2787), - [anon_sym_nonmutating] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_dynamic] = ACTIONS(2787), - [anon_sym_optional] = ACTIONS(2787), - [anon_sym_final] = ACTIONS(2787), - [anon_sym_inout] = ACTIONS(2787), - [anon_sym_ATescaping] = ACTIONS(2787), - [anon_sym_ATautoclosure] = ACTIONS(2787), - [anon_sym_weak] = ACTIONS(2787), - [anon_sym_unowned] = ACTIONS(2789), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2787), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2787), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2787), - [sym__dot_custom] = ACTIONS(2787), - [sym__conjunction_operator_custom] = ACTIONS(2787), - [sym__disjunction_operator_custom] = ACTIONS(2787), - [sym__nil_coalescing_operator_custom] = ACTIONS(2787), - [sym__eq_eq_custom] = ACTIONS(2787), - [sym__plus_then_ws] = ACTIONS(2787), - [sym__minus_then_ws] = ACTIONS(2787), - [sym_bang] = ACTIONS(2787), - [sym__throws_keyword] = ACTIONS(2787), - [sym__rethrows_keyword] = ACTIONS(2787), - [sym__as_custom] = ACTIONS(2787), - [sym__as_quest_custom] = ACTIONS(2787), - [sym__as_bang_custom] = ACTIONS(2787), - [sym__async_keyword_custom] = ACTIONS(2787), - [sym__custom_operator] = ACTIONS(2787), - }, - [666] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2791), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_COLON] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_RBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2793), - [sym__immediate_quest] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_async] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2791), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_GT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_EQ] = ACTIONS(2793), - [anon_sym_BANG_EQ] = ACTIONS(2793), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_SLASH] = ACTIONS(2793), - [anon_sym_PERCENT] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2793), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [anon_sym_import] = ACTIONS(2791), - [anon_sym_typealias] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_protocol] = ACTIONS(2791), - [anon_sym_let] = ACTIONS(2791), - [anon_sym_var] = ACTIONS(2791), - [anon_sym_func] = ACTIONS(2791), - [anon_sym_extension] = ACTIONS(2791), - [anon_sym_indirect] = ACTIONS(2791), - [anon_sym_init] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_deinit] = ACTIONS(2791), - [anon_sym_subscript] = ACTIONS(2791), - [anon_sym_prefix] = ACTIONS(2791), - [anon_sym_infix] = ACTIONS(2791), - [anon_sym_postfix] = ACTIONS(2791), - [anon_sym_precedencegroup] = ACTIONS(2791), - [anon_sym_associatedtype] = ACTIONS(2791), - [anon_sym_AT] = ACTIONS(2793), - [sym_property_behavior_modifier] = ACTIONS(2791), - [anon_sym_override] = ACTIONS(2791), - [anon_sym_convenience] = ACTIONS(2791), - [anon_sym_required] = ACTIONS(2791), - [anon_sym_nonisolated] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_internal] = ACTIONS(2791), - [anon_sym_fileprivate] = ACTIONS(2791), - [anon_sym_open] = ACTIONS(2791), - [anon_sym_mutating] = ACTIONS(2791), - [anon_sym_nonmutating] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_dynamic] = ACTIONS(2791), - [anon_sym_optional] = ACTIONS(2791), - [anon_sym_final] = ACTIONS(2791), - [anon_sym_inout] = ACTIONS(2791), - [anon_sym_ATescaping] = ACTIONS(2791), - [anon_sym_ATautoclosure] = ACTIONS(2791), - [anon_sym_weak] = ACTIONS(2791), - [anon_sym_unowned] = ACTIONS(2793), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2791), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2791), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(2791), - [sym__minus_then_ws] = ACTIONS(2791), - [sym_bang] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2791), - }, - [667] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2795), - [anon_sym_RPAREN] = ACTIONS(2795), - [anon_sym_COMMA] = ACTIONS(2795), - [anon_sym_COLON] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_RBRACK] = ACTIONS(2795), - [anon_sym_QMARK] = ACTIONS(2797), - [sym__immediate_quest] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_async] = ACTIONS(2795), - [aux_sym_custom_operator_token1] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_CARET_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_PLUS_EQ] = ACTIONS(2795), - [anon_sym_DASH_EQ] = ACTIONS(2795), - [anon_sym_STAR_EQ] = ACTIONS(2795), - [anon_sym_SLASH_EQ] = ACTIONS(2795), - [anon_sym_PERCENT_EQ] = ACTIONS(2795), - [anon_sym_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2795), - [anon_sym_LT_EQ] = ACTIONS(2795), - [anon_sym_GT_EQ] = ACTIONS(2795), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), - [anon_sym_DOT_DOT_LT] = ACTIONS(2795), - [anon_sym_is] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_PERCENT] = ACTIONS(2797), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2797), - [anon_sym_LT_LT] = ACTIONS(2795), - [anon_sym_GT_GT] = ACTIONS(2795), - [anon_sym_import] = ACTIONS(2795), - [anon_sym_typealias] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_protocol] = ACTIONS(2795), - [anon_sym_let] = ACTIONS(2795), - [anon_sym_var] = ACTIONS(2795), - [anon_sym_func] = ACTIONS(2795), - [anon_sym_extension] = ACTIONS(2795), - [anon_sym_indirect] = ACTIONS(2795), - [anon_sym_init] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_deinit] = ACTIONS(2795), - [anon_sym_subscript] = ACTIONS(2795), - [anon_sym_prefix] = ACTIONS(2795), - [anon_sym_infix] = ACTIONS(2795), - [anon_sym_postfix] = ACTIONS(2795), - [anon_sym_precedencegroup] = ACTIONS(2795), - [anon_sym_associatedtype] = ACTIONS(2795), - [anon_sym_AT] = ACTIONS(2797), - [sym_property_behavior_modifier] = ACTIONS(2795), - [anon_sym_override] = ACTIONS(2795), - [anon_sym_convenience] = ACTIONS(2795), - [anon_sym_required] = ACTIONS(2795), - [anon_sym_nonisolated] = ACTIONS(2795), - [anon_sym_public] = ACTIONS(2795), - [anon_sym_private] = ACTIONS(2795), - [anon_sym_internal] = ACTIONS(2795), - [anon_sym_fileprivate] = ACTIONS(2795), - [anon_sym_open] = ACTIONS(2795), - [anon_sym_mutating] = ACTIONS(2795), - [anon_sym_nonmutating] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_dynamic] = ACTIONS(2795), - [anon_sym_optional] = ACTIONS(2795), - [anon_sym_final] = ACTIONS(2795), - [anon_sym_inout] = ACTIONS(2795), - [anon_sym_ATescaping] = ACTIONS(2795), - [anon_sym_ATautoclosure] = ACTIONS(2795), - [anon_sym_weak] = ACTIONS(2795), - [anon_sym_unowned] = ACTIONS(2797), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2795), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2795), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2795), - [sym__conjunction_operator_custom] = ACTIONS(2795), - [sym__disjunction_operator_custom] = ACTIONS(2795), - [sym__nil_coalescing_operator_custom] = ACTIONS(2795), - [sym__eq_eq_custom] = ACTIONS(2795), - [sym__plus_then_ws] = ACTIONS(2795), - [sym__minus_then_ws] = ACTIONS(2795), - [sym_bang] = ACTIONS(2795), - [sym__as_custom] = ACTIONS(2795), - [sym__as_quest_custom] = ACTIONS(2795), - [sym__as_bang_custom] = ACTIONS(2795), - [sym__custom_operator] = ACTIONS(2795), - }, - [668] = { - [aux_sym_optional_type_repeat1] = STATE(668), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2799), - [anon_sym_RPAREN] = ACTIONS(2799), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_COLON] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_RBRACK] = ACTIONS(2799), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [sym__immediate_quest] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_async] = ACTIONS(2799), - [aux_sym_custom_operator_token1] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_CARET_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_BANG_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2799), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), - [anon_sym_DOT_DOT_LT] = ACTIONS(2799), - [anon_sym_is] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2799), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_LT_LT] = ACTIONS(2799), - [anon_sym_GT_GT] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2799), - [anon_sym_typealias] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_protocol] = ACTIONS(2799), - [anon_sym_let] = ACTIONS(2799), - [anon_sym_var] = ACTIONS(2799), - [anon_sym_func] = ACTIONS(2799), - [anon_sym_extension] = ACTIONS(2799), - [anon_sym_indirect] = ACTIONS(2799), - [anon_sym_init] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_deinit] = ACTIONS(2799), - [anon_sym_subscript] = ACTIONS(2799), - [anon_sym_prefix] = ACTIONS(2799), - [anon_sym_infix] = ACTIONS(2799), - [anon_sym_postfix] = ACTIONS(2799), - [anon_sym_precedencegroup] = ACTIONS(2799), - [anon_sym_associatedtype] = ACTIONS(2799), - [anon_sym_AT] = ACTIONS(2801), - [sym_property_behavior_modifier] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2799), - [anon_sym_convenience] = ACTIONS(2799), - [anon_sym_required] = ACTIONS(2799), - [anon_sym_nonisolated] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_internal] = ACTIONS(2799), - [anon_sym_fileprivate] = ACTIONS(2799), - [anon_sym_open] = ACTIONS(2799), - [anon_sym_mutating] = ACTIONS(2799), - [anon_sym_nonmutating] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_dynamic] = ACTIONS(2799), - [anon_sym_optional] = ACTIONS(2799), - [anon_sym_final] = ACTIONS(2799), - [anon_sym_inout] = ACTIONS(2799), - [anon_sym_ATescaping] = ACTIONS(2799), - [anon_sym_ATautoclosure] = ACTIONS(2799), - [anon_sym_weak] = ACTIONS(2799), - [anon_sym_unowned] = ACTIONS(2801), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2799), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2799), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2799), - [sym__dot_custom] = ACTIONS(2799), - [sym__conjunction_operator_custom] = ACTIONS(2799), - [sym__disjunction_operator_custom] = ACTIONS(2799), - [sym__nil_coalescing_operator_custom] = ACTIONS(2799), - [sym__eq_eq_custom] = ACTIONS(2799), - [sym__plus_then_ws] = ACTIONS(2799), - [sym__minus_then_ws] = ACTIONS(2799), - [sym_bang] = ACTIONS(2799), - [sym__throws_keyword] = ACTIONS(2799), - [sym__rethrows_keyword] = ACTIONS(2799), - [sym__as_custom] = ACTIONS(2799), - [sym__as_quest_custom] = ACTIONS(2799), - [sym__as_bang_custom] = ACTIONS(2799), - [sym__async_keyword_custom] = ACTIONS(2799), - [sym__custom_operator] = ACTIONS(2799), - }, - [669] = { - [aux_sym_optional_type_repeat1] = STATE(652), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [aux_sym_custom_operator_token1] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_CARET_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_LT] = ACTIONS(2626), - [anon_sym_is] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2626), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_typealias] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_protocol] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_func] = ACTIONS(2626), - [anon_sym_extension] = ACTIONS(2626), - [anon_sym_indirect] = ACTIONS(2626), - [anon_sym_init] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_deinit] = ACTIONS(2626), - [anon_sym_subscript] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_precedencegroup] = ACTIONS(2626), - [anon_sym_associatedtype] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2626), - [sym__dot_custom] = ACTIONS(2626), - [sym__conjunction_operator_custom] = ACTIONS(2626), - [sym__disjunction_operator_custom] = ACTIONS(2626), - [sym__nil_coalescing_operator_custom] = ACTIONS(2626), - [sym__eq_eq_custom] = ACTIONS(2626), - [sym__plus_then_ws] = ACTIONS(2626), - [sym__minus_then_ws] = ACTIONS(2626), - [sym_bang] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2626), - [sym__rethrows_keyword] = ACTIONS(2626), - [sym__as_custom] = ACTIONS(2626), - [sym__as_quest_custom] = ACTIONS(2626), - [sym__as_bang_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(2626), - [sym__custom_operator] = ACTIONS(2626), - }, - [670] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_RBRACK] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2809), - [sym__immediate_quest] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_async] = ACTIONS(2806), - [aux_sym_custom_operator_token1] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_CARET_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2809), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2806), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), - [anon_sym_DOT_DOT_LT] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_PERCENT] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2809), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_import] = ACTIONS(2806), - [anon_sym_typealias] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_protocol] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_var] = ACTIONS(2806), - [anon_sym_func] = ACTIONS(2806), - [anon_sym_extension] = ACTIONS(2806), - [anon_sym_indirect] = ACTIONS(2806), - [anon_sym_init] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_deinit] = ACTIONS(2806), - [anon_sym_subscript] = ACTIONS(2806), - [anon_sym_prefix] = ACTIONS(2806), - [anon_sym_infix] = ACTIONS(2806), - [anon_sym_postfix] = ACTIONS(2806), - [anon_sym_precedencegroup] = ACTIONS(2806), - [anon_sym_associatedtype] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2809), - [sym_property_behavior_modifier] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_convenience] = ACTIONS(2806), - [anon_sym_required] = ACTIONS(2806), - [anon_sym_nonisolated] = ACTIONS(2806), - [anon_sym_public] = ACTIONS(2806), - [anon_sym_private] = ACTIONS(2806), - [anon_sym_internal] = ACTIONS(2806), - [anon_sym_fileprivate] = ACTIONS(2806), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_mutating] = ACTIONS(2806), - [anon_sym_nonmutating] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_dynamic] = ACTIONS(2806), - [anon_sym_optional] = ACTIONS(2806), - [anon_sym_final] = ACTIONS(2806), - [anon_sym_inout] = ACTIONS(2806), - [anon_sym_ATescaping] = ACTIONS(2806), - [anon_sym_ATautoclosure] = ACTIONS(2806), - [anon_sym_weak] = ACTIONS(2806), - [anon_sym_unowned] = ACTIONS(2809), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2806), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2806), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2806), - [sym__conjunction_operator_custom] = ACTIONS(2806), - [sym__disjunction_operator_custom] = ACTIONS(2806), - [sym__nil_coalescing_operator_custom] = ACTIONS(2806), - [sym__eq_eq_custom] = ACTIONS(2806), - [sym__plus_then_ws] = ACTIONS(2806), - [sym__minus_then_ws] = ACTIONS(2806), - [sym_bang] = ACTIONS(2806), - [sym__as_custom] = ACTIONS(2806), - [sym__as_quest_custom] = ACTIONS(2806), - [sym__as_bang_custom] = ACTIONS(2806), - [sym__custom_operator] = ACTIONS(2806), - }, - [671] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2812), - [anon_sym_RPAREN] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_COLON] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_RBRACK] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2814), - [sym__immediate_quest] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_async] = ACTIONS(2812), - [aux_sym_custom_operator_token1] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_CARET_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_case] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2812), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2812), - [anon_sym_DOT_DOT_LT] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_import] = ACTIONS(2812), - [anon_sym_typealias] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_protocol] = ACTIONS(2812), - [anon_sym_let] = ACTIONS(2812), - [anon_sym_var] = ACTIONS(2812), - [anon_sym_func] = ACTIONS(2812), - [anon_sym_extension] = ACTIONS(2812), - [anon_sym_indirect] = ACTIONS(2812), - [anon_sym_init] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_deinit] = ACTIONS(2812), - [anon_sym_subscript] = ACTIONS(2812), - [anon_sym_prefix] = ACTIONS(2812), - [anon_sym_infix] = ACTIONS(2812), - [anon_sym_postfix] = ACTIONS(2812), - [anon_sym_precedencegroup] = ACTIONS(2812), - [anon_sym_associatedtype] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2814), - [sym_property_behavior_modifier] = ACTIONS(2812), - [anon_sym_override] = ACTIONS(2812), - [anon_sym_convenience] = ACTIONS(2812), - [anon_sym_required] = ACTIONS(2812), - [anon_sym_nonisolated] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_internal] = ACTIONS(2812), - [anon_sym_fileprivate] = ACTIONS(2812), - [anon_sym_open] = ACTIONS(2812), - [anon_sym_mutating] = ACTIONS(2812), - [anon_sym_nonmutating] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_dynamic] = ACTIONS(2812), - [anon_sym_optional] = ACTIONS(2812), - [anon_sym_final] = ACTIONS(2812), - [anon_sym_inout] = ACTIONS(2812), - [anon_sym_ATescaping] = ACTIONS(2812), - [anon_sym_ATautoclosure] = ACTIONS(2812), - [anon_sym_weak] = ACTIONS(2812), - [anon_sym_unowned] = ACTIONS(2814), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2812), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2812), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2812), - [sym__conjunction_operator_custom] = ACTIONS(2812), - [sym__disjunction_operator_custom] = ACTIONS(2812), - [sym__nil_coalescing_operator_custom] = ACTIONS(2812), - [sym__eq_eq_custom] = ACTIONS(2812), - [sym__plus_then_ws] = ACTIONS(2812), - [sym__minus_then_ws] = ACTIONS(2812), - [sym_bang] = ACTIONS(2812), - [sym__as_custom] = ACTIONS(2812), - [sym__as_quest_custom] = ACTIONS(2812), - [sym__as_bang_custom] = ACTIONS(2812), - [sym__custom_operator] = ACTIONS(2812), - }, - [672] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_COLON] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_RBRACK] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2818), - [sym__immediate_quest] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_async] = ACTIONS(2816), - [aux_sym_custom_operator_token1] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_CARET_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_case] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2816), - [anon_sym_DOT_DOT_LT] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_import] = ACTIONS(2816), - [anon_sym_typealias] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_protocol] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2816), - [anon_sym_var] = ACTIONS(2816), - [anon_sym_func] = ACTIONS(2816), - [anon_sym_extension] = ACTIONS(2816), - [anon_sym_indirect] = ACTIONS(2816), - [anon_sym_init] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_deinit] = ACTIONS(2816), - [anon_sym_subscript] = ACTIONS(2816), - [anon_sym_prefix] = ACTIONS(2816), - [anon_sym_infix] = ACTIONS(2816), - [anon_sym_postfix] = ACTIONS(2816), - [anon_sym_precedencegroup] = ACTIONS(2816), - [anon_sym_associatedtype] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2818), - [sym_property_behavior_modifier] = ACTIONS(2816), - [anon_sym_override] = ACTIONS(2816), - [anon_sym_convenience] = ACTIONS(2816), - [anon_sym_required] = ACTIONS(2816), - [anon_sym_nonisolated] = ACTIONS(2816), - [anon_sym_public] = ACTIONS(2816), - [anon_sym_private] = ACTIONS(2816), - [anon_sym_internal] = ACTIONS(2816), - [anon_sym_fileprivate] = ACTIONS(2816), - [anon_sym_open] = ACTIONS(2816), - [anon_sym_mutating] = ACTIONS(2816), - [anon_sym_nonmutating] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_dynamic] = ACTIONS(2816), - [anon_sym_optional] = ACTIONS(2816), - [anon_sym_final] = ACTIONS(2816), - [anon_sym_inout] = ACTIONS(2816), - [anon_sym_ATescaping] = ACTIONS(2816), - [anon_sym_ATautoclosure] = ACTIONS(2816), - [anon_sym_weak] = ACTIONS(2816), - [anon_sym_unowned] = ACTIONS(2818), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2816), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2816), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2816), - [sym__conjunction_operator_custom] = ACTIONS(2816), - [sym__disjunction_operator_custom] = ACTIONS(2816), - [sym__nil_coalescing_operator_custom] = ACTIONS(2816), - [sym__eq_eq_custom] = ACTIONS(2816), - [sym__plus_then_ws] = ACTIONS(2816), - [sym__minus_then_ws] = ACTIONS(2816), - [sym_bang] = ACTIONS(2816), - [sym__as_custom] = ACTIONS(2816), - [sym__as_quest_custom] = ACTIONS(2816), - [sym__as_bang_custom] = ACTIONS(2816), - [sym__custom_operator] = ACTIONS(2816), - }, - [673] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2820), - [anon_sym_RPAREN] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_COLON] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_RBRACK] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2823), - [sym__immediate_quest] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_async] = ACTIONS(2820), - [aux_sym_custom_operator_token1] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_GT] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_CARET_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2820), - [anon_sym_DOT_DOT_LT] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_PERCENT] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2823), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_import] = ACTIONS(2820), - [anon_sym_typealias] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_protocol] = ACTIONS(2820), - [anon_sym_let] = ACTIONS(2820), - [anon_sym_var] = ACTIONS(2820), - [anon_sym_func] = ACTIONS(2820), - [anon_sym_extension] = ACTIONS(2820), - [anon_sym_indirect] = ACTIONS(2820), - [anon_sym_init] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_deinit] = ACTIONS(2820), - [anon_sym_subscript] = ACTIONS(2820), - [anon_sym_prefix] = ACTIONS(2820), - [anon_sym_infix] = ACTIONS(2820), - [anon_sym_postfix] = ACTIONS(2820), - [anon_sym_precedencegroup] = ACTIONS(2820), - [anon_sym_associatedtype] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2823), - [sym_property_behavior_modifier] = ACTIONS(2820), - [anon_sym_override] = ACTIONS(2820), - [anon_sym_convenience] = ACTIONS(2820), - [anon_sym_required] = ACTIONS(2820), - [anon_sym_nonisolated] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_internal] = ACTIONS(2820), - [anon_sym_fileprivate] = ACTIONS(2820), - [anon_sym_open] = ACTIONS(2820), - [anon_sym_mutating] = ACTIONS(2820), - [anon_sym_nonmutating] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_dynamic] = ACTIONS(2820), - [anon_sym_optional] = ACTIONS(2820), - [anon_sym_final] = ACTIONS(2820), - [anon_sym_inout] = ACTIONS(2820), - [anon_sym_ATescaping] = ACTIONS(2820), - [anon_sym_ATautoclosure] = ACTIONS(2820), - [anon_sym_weak] = ACTIONS(2820), - [anon_sym_unowned] = ACTIONS(2823), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2820), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2820), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2820), - [sym__conjunction_operator_custom] = ACTIONS(2820), - [sym__disjunction_operator_custom] = ACTIONS(2820), - [sym__nil_coalescing_operator_custom] = ACTIONS(2820), - [sym__eq_eq_custom] = ACTIONS(2820), - [sym__plus_then_ws] = ACTIONS(2820), - [sym__minus_then_ws] = ACTIONS(2820), - [sym_bang] = ACTIONS(2820), - [sym__as_custom] = ACTIONS(2820), - [sym__as_quest_custom] = ACTIONS(2820), - [sym__as_bang_custom] = ACTIONS(2820), - [sym__custom_operator] = ACTIONS(2820), - }, - [674] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2826), - [anon_sym_RPAREN] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_COLON] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2828), - [sym__immediate_quest] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [aux_sym_custom_operator_token1] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_CARET_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2826), - [anon_sym_DOT_DOT_LT] = ACTIONS(2826), - [anon_sym_is] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2826), - [anon_sym_import] = ACTIONS(2826), - [anon_sym_typealias] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_protocol] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_var] = ACTIONS(2826), - [anon_sym_func] = ACTIONS(2826), - [anon_sym_extension] = ACTIONS(2826), - [anon_sym_indirect] = ACTIONS(2826), - [anon_sym_init] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_deinit] = ACTIONS(2826), - [anon_sym_subscript] = ACTIONS(2826), - [anon_sym_prefix] = ACTIONS(2826), - [anon_sym_infix] = ACTIONS(2826), - [anon_sym_postfix] = ACTIONS(2826), - [anon_sym_precedencegroup] = ACTIONS(2826), - [anon_sym_associatedtype] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2828), - [sym_property_behavior_modifier] = ACTIONS(2826), - [anon_sym_override] = ACTIONS(2826), - [anon_sym_convenience] = ACTIONS(2826), - [anon_sym_required] = ACTIONS(2826), - [anon_sym_nonisolated] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_internal] = ACTIONS(2826), - [anon_sym_fileprivate] = ACTIONS(2826), - [anon_sym_open] = ACTIONS(2826), - [anon_sym_mutating] = ACTIONS(2826), - [anon_sym_nonmutating] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_dynamic] = ACTIONS(2826), - [anon_sym_optional] = ACTIONS(2826), - [anon_sym_final] = ACTIONS(2826), - [anon_sym_inout] = ACTIONS(2826), - [anon_sym_ATescaping] = ACTIONS(2826), - [anon_sym_ATautoclosure] = ACTIONS(2826), - [anon_sym_weak] = ACTIONS(2826), - [anon_sym_unowned] = ACTIONS(2828), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2826), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2826), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2826), - [sym__conjunction_operator_custom] = ACTIONS(2826), - [sym__disjunction_operator_custom] = ACTIONS(2826), - [sym__nil_coalescing_operator_custom] = ACTIONS(2826), - [sym__eq_eq_custom] = ACTIONS(2826), - [sym__plus_then_ws] = ACTIONS(2826), - [sym__minus_then_ws] = ACTIONS(2826), - [sym_bang] = ACTIONS(2826), - [sym__as_custom] = ACTIONS(2826), - [sym__as_quest_custom] = ACTIONS(2826), - [sym__as_bang_custom] = ACTIONS(2826), - [sym__custom_operator] = ACTIONS(2826), - }, - [675] = { - [sym_type_arguments] = STATE(680), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [aux_sym_custom_operator_token1] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_CARET_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_typealias] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_protocol] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_func] = ACTIONS(2830), - [anon_sym_extension] = ACTIONS(2830), - [anon_sym_indirect] = ACTIONS(2830), - [anon_sym_init] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_deinit] = ACTIONS(2830), - [anon_sym_subscript] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_precedencegroup] = ACTIONS(2830), - [anon_sym_associatedtype] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__conjunction_operator_custom] = ACTIONS(2830), - [sym__disjunction_operator_custom] = ACTIONS(2830), - [sym__nil_coalescing_operator_custom] = ACTIONS(2830), - [sym__eq_eq_custom] = ACTIONS(2830), - [sym__plus_then_ws] = ACTIONS(2830), - [sym__minus_then_ws] = ACTIONS(2830), - [sym_bang] = ACTIONS(2830), - [sym__throws_keyword] = ACTIONS(2830), - [sym__rethrows_keyword] = ACTIONS(2830), - [sym__as_custom] = ACTIONS(2830), - [sym__as_quest_custom] = ACTIONS(2830), - [sym__as_bang_custom] = ACTIONS(2830), - [sym__async_keyword_custom] = ACTIONS(2830), - [sym__custom_operator] = ACTIONS(2830), - }, - [676] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2836), - [anon_sym_RPAREN] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_COLON] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_RBRACK] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2838), - [sym__immediate_quest] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_async] = ACTIONS(2836), - [aux_sym_custom_operator_token1] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_CARET_LBRACE] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2836), - [anon_sym_DOT_DOT_LT] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_import] = ACTIONS(2836), - [anon_sym_typealias] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_protocol] = ACTIONS(2836), - [anon_sym_let] = ACTIONS(2836), - [anon_sym_var] = ACTIONS(2836), - [anon_sym_func] = ACTIONS(2836), - [anon_sym_extension] = ACTIONS(2836), - [anon_sym_indirect] = ACTIONS(2836), - [anon_sym_init] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_deinit] = ACTIONS(2836), - [anon_sym_subscript] = ACTIONS(2836), - [anon_sym_prefix] = ACTIONS(2836), - [anon_sym_infix] = ACTIONS(2836), - [anon_sym_postfix] = ACTIONS(2836), - [anon_sym_precedencegroup] = ACTIONS(2836), - [anon_sym_associatedtype] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2838), - [sym_property_behavior_modifier] = ACTIONS(2836), - [anon_sym_override] = ACTIONS(2836), - [anon_sym_convenience] = ACTIONS(2836), - [anon_sym_required] = ACTIONS(2836), - [anon_sym_nonisolated] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_internal] = ACTIONS(2836), - [anon_sym_fileprivate] = ACTIONS(2836), - [anon_sym_open] = ACTIONS(2836), - [anon_sym_mutating] = ACTIONS(2836), - [anon_sym_nonmutating] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_dynamic] = ACTIONS(2836), - [anon_sym_optional] = ACTIONS(2836), - [anon_sym_final] = ACTIONS(2836), - [anon_sym_inout] = ACTIONS(2836), - [anon_sym_ATescaping] = ACTIONS(2836), - [anon_sym_ATautoclosure] = ACTIONS(2836), - [anon_sym_weak] = ACTIONS(2836), - [anon_sym_unowned] = ACTIONS(2838), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2836), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2836), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2836), - [sym__conjunction_operator_custom] = ACTIONS(2836), - [sym__disjunction_operator_custom] = ACTIONS(2836), - [sym__nil_coalescing_operator_custom] = ACTIONS(2836), - [sym__eq_eq_custom] = ACTIONS(2836), - [sym__plus_then_ws] = ACTIONS(2836), - [sym__minus_then_ws] = ACTIONS(2836), - [sym_bang] = ACTIONS(2836), - [sym__as_custom] = ACTIONS(2836), - [sym__as_quest_custom] = ACTIONS(2836), - [sym__as_bang_custom] = ACTIONS(2836), - [sym__custom_operator] = ACTIONS(2836), - }, - [677] = { - [sym__fn_call_lambda_arguments] = STATE(656), - [sym_lambda_literal] = STATE(635), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2842), - [sym__immediate_quest] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_async] = ACTIONS(2840), - [aux_sym_custom_operator_token1] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_CARET_LBRACE] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2840), - [anon_sym_DOT_DOT_LT] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_import] = ACTIONS(2840), - [anon_sym_typealias] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_protocol] = ACTIONS(2840), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_var] = ACTIONS(2840), - [anon_sym_func] = ACTIONS(2840), - [anon_sym_extension] = ACTIONS(2840), - [anon_sym_indirect] = ACTIONS(2840), - [anon_sym_init] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_deinit] = ACTIONS(2840), - [anon_sym_subscript] = ACTIONS(2840), - [anon_sym_prefix] = ACTIONS(2840), - [anon_sym_infix] = ACTIONS(2840), - [anon_sym_postfix] = ACTIONS(2840), - [anon_sym_precedencegroup] = ACTIONS(2840), - [anon_sym_associatedtype] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2842), - [sym_property_behavior_modifier] = ACTIONS(2840), - [anon_sym_override] = ACTIONS(2840), - [anon_sym_convenience] = ACTIONS(2840), - [anon_sym_required] = ACTIONS(2840), - [anon_sym_nonisolated] = ACTIONS(2840), - [anon_sym_public] = ACTIONS(2840), - [anon_sym_private] = ACTIONS(2840), - [anon_sym_internal] = ACTIONS(2840), - [anon_sym_fileprivate] = ACTIONS(2840), - [anon_sym_open] = ACTIONS(2840), - [anon_sym_mutating] = ACTIONS(2840), - [anon_sym_nonmutating] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_dynamic] = ACTIONS(2840), - [anon_sym_optional] = ACTIONS(2840), - [anon_sym_final] = ACTIONS(2840), - [anon_sym_inout] = ACTIONS(2840), - [anon_sym_ATescaping] = ACTIONS(2840), - [anon_sym_ATautoclosure] = ACTIONS(2840), - [anon_sym_weak] = ACTIONS(2840), - [anon_sym_unowned] = ACTIONS(2842), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2840), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2840), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2840), - [sym__conjunction_operator_custom] = ACTIONS(2840), - [sym__disjunction_operator_custom] = ACTIONS(2840), - [sym__nil_coalescing_operator_custom] = ACTIONS(2840), - [sym__eq_eq_custom] = ACTIONS(2840), - [sym__plus_then_ws] = ACTIONS(2840), - [sym__minus_then_ws] = ACTIONS(2840), - [sym_bang] = ACTIONS(2840), - [sym__as_custom] = ACTIONS(2840), - [sym__as_quest_custom] = ACTIONS(2840), - [sym__as_bang_custom] = ACTIONS(2840), - [sym__custom_operator] = ACTIONS(2840), - }, - [678] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_COLON] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [sym__immediate_quest] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_async] = ACTIONS(2847), - [aux_sym_custom_operator_token1] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_CARET_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), - [anon_sym_DOT_DOT_LT] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_import] = ACTIONS(2847), - [anon_sym_typealias] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_protocol] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2847), - [anon_sym_var] = ACTIONS(2847), - [anon_sym_func] = ACTIONS(2847), - [anon_sym_extension] = ACTIONS(2847), - [anon_sym_indirect] = ACTIONS(2847), - [anon_sym_init] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_deinit] = ACTIONS(2847), - [anon_sym_subscript] = ACTIONS(2847), - [anon_sym_prefix] = ACTIONS(2847), - [anon_sym_infix] = ACTIONS(2847), - [anon_sym_postfix] = ACTIONS(2847), - [anon_sym_precedencegroup] = ACTIONS(2847), - [anon_sym_associatedtype] = ACTIONS(2847), - [anon_sym_AT] = ACTIONS(2849), - [sym_property_behavior_modifier] = ACTIONS(2847), - [anon_sym_override] = ACTIONS(2847), - [anon_sym_convenience] = ACTIONS(2847), - [anon_sym_required] = ACTIONS(2847), - [anon_sym_nonisolated] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_internal] = ACTIONS(2847), - [anon_sym_fileprivate] = ACTIONS(2847), - [anon_sym_open] = ACTIONS(2847), - [anon_sym_mutating] = ACTIONS(2847), - [anon_sym_nonmutating] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_dynamic] = ACTIONS(2847), - [anon_sym_optional] = ACTIONS(2847), - [anon_sym_final] = ACTIONS(2847), - [anon_sym_inout] = ACTIONS(2847), - [anon_sym_ATescaping] = ACTIONS(2847), - [anon_sym_ATautoclosure] = ACTIONS(2847), - [anon_sym_weak] = ACTIONS(2847), - [anon_sym_unowned] = ACTIONS(2849), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2847), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2847), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2847), - [sym__dot_custom] = ACTIONS(2847), - [sym__conjunction_operator_custom] = ACTIONS(2847), - [sym__disjunction_operator_custom] = ACTIONS(2847), - [sym__nil_coalescing_operator_custom] = ACTIONS(2847), - [sym__eq_eq_custom] = ACTIONS(2847), - [sym__plus_then_ws] = ACTIONS(2847), - [sym__minus_then_ws] = ACTIONS(2847), - [sym_bang] = ACTIONS(2847), - [sym__throws_keyword] = ACTIONS(2847), - [sym__rethrows_keyword] = ACTIONS(2847), - [sym__as_custom] = ACTIONS(2847), - [sym__as_quest_custom] = ACTIONS(2847), - [sym__as_bang_custom] = ACTIONS(2847), - [sym__async_keyword_custom] = ACTIONS(2847), - [sym__custom_operator] = ACTIONS(2847), - }, - [679] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2851), - [anon_sym_RPAREN] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_COLON] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_RBRACK] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_QMARK] = ACTIONS(2853), - [sym__immediate_quest] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_async] = ACTIONS(2851), - [aux_sym_custom_operator_token1] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_CARET_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_LT] = ACTIONS(2851), - [anon_sym_is] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_import] = ACTIONS(2851), - [anon_sym_typealias] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_enum] = ACTIONS(2851), - [anon_sym_protocol] = ACTIONS(2851), - [anon_sym_let] = ACTIONS(2851), - [anon_sym_var] = ACTIONS(2851), - [anon_sym_func] = ACTIONS(2851), - [anon_sym_extension] = ACTIONS(2851), - [anon_sym_indirect] = ACTIONS(2851), - [anon_sym_init] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_deinit] = ACTIONS(2851), - [anon_sym_subscript] = ACTIONS(2851), - [anon_sym_prefix] = ACTIONS(2851), - [anon_sym_infix] = ACTIONS(2851), - [anon_sym_postfix] = ACTIONS(2851), - [anon_sym_precedencegroup] = ACTIONS(2851), - [anon_sym_associatedtype] = ACTIONS(2851), - [anon_sym_AT] = ACTIONS(2853), - [sym_property_behavior_modifier] = ACTIONS(2851), - [anon_sym_override] = ACTIONS(2851), - [anon_sym_convenience] = ACTIONS(2851), - [anon_sym_required] = ACTIONS(2851), - [anon_sym_nonisolated] = ACTIONS(2851), - [anon_sym_public] = ACTIONS(2851), - [anon_sym_private] = ACTIONS(2851), - [anon_sym_internal] = ACTIONS(2851), - [anon_sym_fileprivate] = ACTIONS(2851), - [anon_sym_open] = ACTIONS(2851), - [anon_sym_mutating] = ACTIONS(2851), - [anon_sym_nonmutating] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_dynamic] = ACTIONS(2851), - [anon_sym_optional] = ACTIONS(2851), - [anon_sym_final] = ACTIONS(2851), - [anon_sym_inout] = ACTIONS(2851), - [anon_sym_ATescaping] = ACTIONS(2851), - [anon_sym_ATautoclosure] = ACTIONS(2851), - [anon_sym_weak] = ACTIONS(2851), - [anon_sym_unowned] = ACTIONS(2853), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2851), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2851), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2851), - [sym__dot_custom] = ACTIONS(2851), - [sym__conjunction_operator_custom] = ACTIONS(2851), - [sym__disjunction_operator_custom] = ACTIONS(2851), - [sym__nil_coalescing_operator_custom] = ACTIONS(2851), - [sym__eq_eq_custom] = ACTIONS(2851), - [sym__plus_then_ws] = ACTIONS(2851), - [sym__minus_then_ws] = ACTIONS(2851), - [sym_bang] = ACTIONS(2851), - [sym__throws_keyword] = ACTIONS(2851), - [sym__rethrows_keyword] = ACTIONS(2851), - [sym__as_custom] = ACTIONS(2851), - [sym__as_quest_custom] = ACTIONS(2851), - [sym__as_bang_custom] = ACTIONS(2851), - [sym__async_keyword_custom] = ACTIONS(2851), - [sym__custom_operator] = ACTIONS(2851), - }, - [680] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_COLON] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_QMARK] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2855), - [aux_sym_custom_operator_token1] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_import] = ACTIONS(2855), - [anon_sym_typealias] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_protocol] = ACTIONS(2855), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_var] = ACTIONS(2855), - [anon_sym_func] = ACTIONS(2855), - [anon_sym_extension] = ACTIONS(2855), - [anon_sym_indirect] = ACTIONS(2855), - [anon_sym_init] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_deinit] = ACTIONS(2855), - [anon_sym_subscript] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_precedencegroup] = ACTIONS(2855), - [anon_sym_associatedtype] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__conjunction_operator_custom] = ACTIONS(2855), - [sym__disjunction_operator_custom] = ACTIONS(2855), - [sym__nil_coalescing_operator_custom] = ACTIONS(2855), - [sym__eq_eq_custom] = ACTIONS(2855), - [sym__plus_then_ws] = ACTIONS(2855), - [sym__minus_then_ws] = ACTIONS(2855), - [sym_bang] = ACTIONS(2855), - [sym__throws_keyword] = ACTIONS(2855), - [sym__rethrows_keyword] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2855), - [sym__as_quest_custom] = ACTIONS(2855), - [sym__as_bang_custom] = ACTIONS(2855), - [sym__async_keyword_custom] = ACTIONS(2855), - [sym__custom_operator] = ACTIONS(2855), - }, - [681] = { - [sym__fn_call_lambda_arguments] = STATE(656), - [sym_lambda_literal] = STATE(635), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2859), - [anon_sym_COMMA] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2862), - [sym__immediate_quest] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_async] = ACTIONS(2859), - [aux_sym_custom_operator_token1] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_CARET_LBRACE] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2859), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2859), - [anon_sym_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_EQ] = ACTIONS(2859), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), - [anon_sym_DOT_DOT_LT] = ACTIONS(2859), - [anon_sym_is] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2859), - [anon_sym_GT_GT] = ACTIONS(2859), - [anon_sym_import] = ACTIONS(2859), - [anon_sym_typealias] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_enum] = ACTIONS(2859), - [anon_sym_protocol] = ACTIONS(2859), - [anon_sym_let] = ACTIONS(2859), - [anon_sym_var] = ACTIONS(2859), - [anon_sym_func] = ACTIONS(2859), - [anon_sym_extension] = ACTIONS(2859), - [anon_sym_indirect] = ACTIONS(2859), - [anon_sym_init] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2859), - [anon_sym_deinit] = ACTIONS(2859), - [anon_sym_subscript] = ACTIONS(2859), - [anon_sym_prefix] = ACTIONS(2859), - [anon_sym_infix] = ACTIONS(2859), - [anon_sym_postfix] = ACTIONS(2859), - [anon_sym_precedencegroup] = ACTIONS(2859), - [anon_sym_associatedtype] = ACTIONS(2859), - [anon_sym_AT] = ACTIONS(2862), - [sym_property_behavior_modifier] = ACTIONS(2859), - [anon_sym_override] = ACTIONS(2859), - [anon_sym_convenience] = ACTIONS(2859), - [anon_sym_required] = ACTIONS(2859), - [anon_sym_nonisolated] = ACTIONS(2859), - [anon_sym_public] = ACTIONS(2859), - [anon_sym_private] = ACTIONS(2859), - [anon_sym_internal] = ACTIONS(2859), - [anon_sym_fileprivate] = ACTIONS(2859), - [anon_sym_open] = ACTIONS(2859), - [anon_sym_mutating] = ACTIONS(2859), - [anon_sym_nonmutating] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_dynamic] = ACTIONS(2859), - [anon_sym_optional] = ACTIONS(2859), - [anon_sym_final] = ACTIONS(2859), - [anon_sym_inout] = ACTIONS(2859), - [anon_sym_ATescaping] = ACTIONS(2859), - [anon_sym_ATautoclosure] = ACTIONS(2859), - [anon_sym_weak] = ACTIONS(2859), - [anon_sym_unowned] = ACTIONS(2862), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2859), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2859), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2859), - [sym__conjunction_operator_custom] = ACTIONS(2859), - [sym__disjunction_operator_custom] = ACTIONS(2859), - [sym__nil_coalescing_operator_custom] = ACTIONS(2859), - [sym__eq_eq_custom] = ACTIONS(2859), - [sym__plus_then_ws] = ACTIONS(2859), - [sym__minus_then_ws] = ACTIONS(2859), - [sym_bang] = ACTIONS(2859), - [sym__as_custom] = ACTIONS(2859), - [sym__as_quest_custom] = ACTIONS(2859), - [sym__as_bang_custom] = ACTIONS(2859), - [sym__custom_operator] = ACTIONS(2859), - }, - [682] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2869), - [anon_sym_RPAREN] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_COLON] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_RBRACK] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_QMARK] = ACTIONS(2871), - [sym__immediate_quest] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_async] = ACTIONS(2869), - [aux_sym_custom_operator_token1] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2871), - [anon_sym_GT] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), - [anon_sym_DOT_DOT_LT] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2871), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2871), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_import] = ACTIONS(2869), - [anon_sym_typealias] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_protocol] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_var] = ACTIONS(2869), - [anon_sym_func] = ACTIONS(2869), - [anon_sym_extension] = ACTIONS(2869), - [anon_sym_indirect] = ACTIONS(2869), - [anon_sym_init] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_deinit] = ACTIONS(2869), - [anon_sym_subscript] = ACTIONS(2869), - [anon_sym_prefix] = ACTIONS(2869), - [anon_sym_infix] = ACTIONS(2869), - [anon_sym_postfix] = ACTIONS(2869), - [anon_sym_precedencegroup] = ACTIONS(2869), - [anon_sym_associatedtype] = ACTIONS(2869), - [anon_sym_AT] = ACTIONS(2871), - [sym_property_behavior_modifier] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2869), - [anon_sym_convenience] = ACTIONS(2869), - [anon_sym_required] = ACTIONS(2869), - [anon_sym_nonisolated] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_internal] = ACTIONS(2869), - [anon_sym_fileprivate] = ACTIONS(2869), - [anon_sym_open] = ACTIONS(2869), - [anon_sym_mutating] = ACTIONS(2869), - [anon_sym_nonmutating] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_dynamic] = ACTIONS(2869), - [anon_sym_optional] = ACTIONS(2869), - [anon_sym_final] = ACTIONS(2869), - [anon_sym_inout] = ACTIONS(2869), - [anon_sym_ATescaping] = ACTIONS(2869), - [anon_sym_ATautoclosure] = ACTIONS(2869), - [anon_sym_weak] = ACTIONS(2869), - [anon_sym_unowned] = ACTIONS(2871), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2869), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2869), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2869), - [sym__dot_custom] = ACTIONS(2869), - [sym__conjunction_operator_custom] = ACTIONS(2869), - [sym__disjunction_operator_custom] = ACTIONS(2869), - [sym__nil_coalescing_operator_custom] = ACTIONS(2869), - [sym__eq_eq_custom] = ACTIONS(2869), - [sym__plus_then_ws] = ACTIONS(2869), - [sym__minus_then_ws] = ACTIONS(2869), - [sym_bang] = ACTIONS(2869), - [sym__throws_keyword] = ACTIONS(2869), - [sym__rethrows_keyword] = ACTIONS(2869), - [sym__as_custom] = ACTIONS(2869), - [sym__as_quest_custom] = ACTIONS(2869), - [sym__as_bang_custom] = ACTIONS(2869), - [sym__async_keyword_custom] = ACTIONS(2869), - [sym__custom_operator] = ACTIONS(2869), - }, - [683] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2873), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_COLON] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_RBRACK] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [aux_sym_custom_operator_token1] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_CARET_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_DOT_DOT_LT] = ACTIONS(2873), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_typealias] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_protocol] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2873), - [anon_sym_extension] = ACTIONS(2873), - [anon_sym_indirect] = ACTIONS(2873), - [anon_sym_init] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_deinit] = ACTIONS(2873), - [anon_sym_subscript] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_precedencegroup] = ACTIONS(2873), - [anon_sym_associatedtype] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__conjunction_operator_custom] = ACTIONS(2873), - [sym__disjunction_operator_custom] = ACTIONS(2873), - [sym__nil_coalescing_operator_custom] = ACTIONS(2873), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2873), - [sym__minus_then_ws] = ACTIONS(2873), - [sym_bang] = ACTIONS(2873), - [sym__throws_keyword] = ACTIONS(2873), - [sym__rethrows_keyword] = ACTIONS(2873), - [sym__as_custom] = ACTIONS(2873), - [sym__as_quest_custom] = ACTIONS(2873), - [sym__as_bang_custom] = ACTIONS(2873), - [sym__async_keyword_custom] = ACTIONS(2873), - [sym__custom_operator] = ACTIONS(2873), - }, - [684] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2877), - [anon_sym_RPAREN] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_COLON] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_RBRACK] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2879), - [anon_sym_QMARK] = ACTIONS(2879), - [sym__immediate_quest] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_async] = ACTIONS(2877), - [aux_sym_custom_operator_token1] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_CARET_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2877), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2879), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2879), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_import] = ACTIONS(2877), - [anon_sym_typealias] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_protocol] = ACTIONS(2877), - [anon_sym_let] = ACTIONS(2877), - [anon_sym_var] = ACTIONS(2877), - [anon_sym_func] = ACTIONS(2877), - [anon_sym_extension] = ACTIONS(2877), - [anon_sym_indirect] = ACTIONS(2877), - [anon_sym_init] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2877), - [anon_sym_deinit] = ACTIONS(2877), - [anon_sym_subscript] = ACTIONS(2877), - [anon_sym_prefix] = ACTIONS(2877), - [anon_sym_infix] = ACTIONS(2877), - [anon_sym_postfix] = ACTIONS(2877), - [anon_sym_precedencegroup] = ACTIONS(2877), - [anon_sym_associatedtype] = ACTIONS(2877), - [anon_sym_AT] = ACTIONS(2879), - [sym_property_behavior_modifier] = ACTIONS(2877), - [anon_sym_override] = ACTIONS(2877), - [anon_sym_convenience] = ACTIONS(2877), - [anon_sym_required] = ACTIONS(2877), - [anon_sym_nonisolated] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_internal] = ACTIONS(2877), - [anon_sym_fileprivate] = ACTIONS(2877), - [anon_sym_open] = ACTIONS(2877), - [anon_sym_mutating] = ACTIONS(2877), - [anon_sym_nonmutating] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_dynamic] = ACTIONS(2877), - [anon_sym_optional] = ACTIONS(2877), - [anon_sym_final] = ACTIONS(2877), - [anon_sym_inout] = ACTIONS(2877), - [anon_sym_ATescaping] = ACTIONS(2877), - [anon_sym_ATautoclosure] = ACTIONS(2877), - [anon_sym_weak] = ACTIONS(2877), - [anon_sym_unowned] = ACTIONS(2879), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2877), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2877), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2877), - [sym__dot_custom] = ACTIONS(2877), - [sym__conjunction_operator_custom] = ACTIONS(2877), - [sym__disjunction_operator_custom] = ACTIONS(2877), - [sym__nil_coalescing_operator_custom] = ACTIONS(2877), - [sym__eq_eq_custom] = ACTIONS(2877), - [sym__plus_then_ws] = ACTIONS(2877), - [sym__minus_then_ws] = ACTIONS(2877), - [sym_bang] = ACTIONS(2877), - [sym__throws_keyword] = ACTIONS(2877), - [sym__rethrows_keyword] = ACTIONS(2877), - [sym__as_custom] = ACTIONS(2877), - [sym__as_quest_custom] = ACTIONS(2877), - [sym__as_bang_custom] = ACTIONS(2877), - [sym__async_keyword_custom] = ACTIONS(2877), - [sym__custom_operator] = ACTIONS(2877), - }, - [685] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2881), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_COLON] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [sym__immediate_quest] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_async] = ACTIONS(2881), - [aux_sym_custom_operator_token1] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_CARET_LBRACE] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2881), - [anon_sym_LT_EQ] = ACTIONS(2881), - [anon_sym_GT_EQ] = ACTIONS(2881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2881), - [anon_sym_DOT_DOT_LT] = ACTIONS(2881), - [anon_sym_is] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2881), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_import] = ACTIONS(2881), - [anon_sym_typealias] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), - [anon_sym_protocol] = ACTIONS(2881), - [anon_sym_let] = ACTIONS(2881), - [anon_sym_var] = ACTIONS(2881), - [anon_sym_func] = ACTIONS(2881), - [anon_sym_extension] = ACTIONS(2881), - [anon_sym_indirect] = ACTIONS(2881), - [anon_sym_init] = ACTIONS(2881), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_deinit] = ACTIONS(2881), - [anon_sym_subscript] = ACTIONS(2881), - [anon_sym_prefix] = ACTIONS(2881), - [anon_sym_infix] = ACTIONS(2881), - [anon_sym_postfix] = ACTIONS(2881), - [anon_sym_precedencegroup] = ACTIONS(2881), - [anon_sym_associatedtype] = ACTIONS(2881), - [anon_sym_AT] = ACTIONS(2883), - [sym_property_behavior_modifier] = ACTIONS(2881), - [anon_sym_override] = ACTIONS(2881), - [anon_sym_convenience] = ACTIONS(2881), - [anon_sym_required] = ACTIONS(2881), - [anon_sym_nonisolated] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_internal] = ACTIONS(2881), - [anon_sym_fileprivate] = ACTIONS(2881), - [anon_sym_open] = ACTIONS(2881), - [anon_sym_mutating] = ACTIONS(2881), - [anon_sym_nonmutating] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_dynamic] = ACTIONS(2881), - [anon_sym_optional] = ACTIONS(2881), - [anon_sym_final] = ACTIONS(2881), - [anon_sym_inout] = ACTIONS(2881), - [anon_sym_ATescaping] = ACTIONS(2881), - [anon_sym_ATautoclosure] = ACTIONS(2881), - [anon_sym_weak] = ACTIONS(2881), - [anon_sym_unowned] = ACTIONS(2883), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2881), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2881), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2881), - [sym__dot_custom] = ACTIONS(2881), - [sym__conjunction_operator_custom] = ACTIONS(2881), - [sym__disjunction_operator_custom] = ACTIONS(2881), - [sym__nil_coalescing_operator_custom] = ACTIONS(2881), - [sym__eq_eq_custom] = ACTIONS(2881), - [sym__plus_then_ws] = ACTIONS(2881), - [sym__minus_then_ws] = ACTIONS(2881), - [sym_bang] = ACTIONS(2881), - [sym__throws_keyword] = ACTIONS(2881), - [sym__rethrows_keyword] = ACTIONS(2881), - [sym__as_custom] = ACTIONS(2881), - [sym__as_quest_custom] = ACTIONS(2881), - [sym__as_bang_custom] = ACTIONS(2881), - [sym__async_keyword_custom] = ACTIONS(2881), - [sym__custom_operator] = ACTIONS(2881), - }, - [686] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_COLON] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [sym__immediate_quest] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_async] = ACTIONS(2885), - [aux_sym_custom_operator_token1] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_CARET_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_LT] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2885), - [anon_sym_typealias] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_protocol] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2885), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_func] = ACTIONS(2885), - [anon_sym_extension] = ACTIONS(2885), - [anon_sym_indirect] = ACTIONS(2885), - [anon_sym_init] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_deinit] = ACTIONS(2885), - [anon_sym_subscript] = ACTIONS(2885), - [anon_sym_prefix] = ACTIONS(2885), - [anon_sym_infix] = ACTIONS(2885), - [anon_sym_postfix] = ACTIONS(2885), - [anon_sym_precedencegroup] = ACTIONS(2885), - [anon_sym_associatedtype] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2887), - [sym_property_behavior_modifier] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_convenience] = ACTIONS(2885), - [anon_sym_required] = ACTIONS(2885), - [anon_sym_nonisolated] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_internal] = ACTIONS(2885), - [anon_sym_fileprivate] = ACTIONS(2885), - [anon_sym_open] = ACTIONS(2885), - [anon_sym_mutating] = ACTIONS(2885), - [anon_sym_nonmutating] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_dynamic] = ACTIONS(2885), - [anon_sym_optional] = ACTIONS(2885), - [anon_sym_final] = ACTIONS(2885), - [anon_sym_inout] = ACTIONS(2885), - [anon_sym_ATescaping] = ACTIONS(2885), - [anon_sym_ATautoclosure] = ACTIONS(2885), - [anon_sym_weak] = ACTIONS(2885), - [anon_sym_unowned] = ACTIONS(2887), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2885), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2885), - [sym__dot_custom] = ACTIONS(2885), - [sym__conjunction_operator_custom] = ACTIONS(2885), - [sym__disjunction_operator_custom] = ACTIONS(2885), - [sym__nil_coalescing_operator_custom] = ACTIONS(2885), - [sym__eq_eq_custom] = ACTIONS(2885), - [sym__plus_then_ws] = ACTIONS(2885), - [sym__minus_then_ws] = ACTIONS(2885), - [sym_bang] = ACTIONS(2885), - [sym__throws_keyword] = ACTIONS(2885), - [sym__rethrows_keyword] = ACTIONS(2885), - [sym__as_custom] = ACTIONS(2885), - [sym__as_quest_custom] = ACTIONS(2885), - [sym__as_bang_custom] = ACTIONS(2885), - [sym__async_keyword_custom] = ACTIONS(2885), - [sym__custom_operator] = ACTIONS(2885), - }, - [687] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2889), - [anon_sym_RPAREN] = ACTIONS(2889), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_COLON] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [sym__immediate_quest] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [aux_sym_custom_operator_token1] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_CARET_LBRACE] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2889), - [anon_sym_LT_EQ] = ACTIONS(2889), - [anon_sym_GT_EQ] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_LT] = ACTIONS(2889), - [anon_sym_is] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2889), - [anon_sym_GT_GT] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_typealias] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), - [anon_sym_protocol] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_func] = ACTIONS(2889), - [anon_sym_extension] = ACTIONS(2889), - [anon_sym_indirect] = ACTIONS(2889), - [anon_sym_init] = ACTIONS(2889), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym_deinit] = ACTIONS(2889), - [anon_sym_subscript] = ACTIONS(2889), - [anon_sym_prefix] = ACTIONS(2889), - [anon_sym_infix] = ACTIONS(2889), - [anon_sym_postfix] = ACTIONS(2889), - [anon_sym_precedencegroup] = ACTIONS(2889), - [anon_sym_associatedtype] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2891), - [sym_property_behavior_modifier] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_convenience] = ACTIONS(2889), - [anon_sym_required] = ACTIONS(2889), - [anon_sym_nonisolated] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_internal] = ACTIONS(2889), - [anon_sym_fileprivate] = ACTIONS(2889), - [anon_sym_open] = ACTIONS(2889), - [anon_sym_mutating] = ACTIONS(2889), - [anon_sym_nonmutating] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_dynamic] = ACTIONS(2889), - [anon_sym_optional] = ACTIONS(2889), - [anon_sym_final] = ACTIONS(2889), - [anon_sym_inout] = ACTIONS(2889), - [anon_sym_ATescaping] = ACTIONS(2889), - [anon_sym_ATautoclosure] = ACTIONS(2889), - [anon_sym_weak] = ACTIONS(2889), - [anon_sym_unowned] = ACTIONS(2891), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2889), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2889), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2889), - [sym__dot_custom] = ACTIONS(2889), - [sym__conjunction_operator_custom] = ACTIONS(2889), - [sym__disjunction_operator_custom] = ACTIONS(2889), - [sym__nil_coalescing_operator_custom] = ACTIONS(2889), - [sym__eq_eq_custom] = ACTIONS(2889), - [sym__plus_then_ws] = ACTIONS(2889), - [sym__minus_then_ws] = ACTIONS(2889), - [sym_bang] = ACTIONS(2889), - [sym__throws_keyword] = ACTIONS(2889), - [sym__rethrows_keyword] = ACTIONS(2889), - [sym__as_custom] = ACTIONS(2889), - [sym__as_quest_custom] = ACTIONS(2889), - [sym__as_bang_custom] = ACTIONS(2889), - [sym__async_keyword_custom] = ACTIONS(2889), - [sym__custom_operator] = ACTIONS(2889), - }, - [688] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_RBRACK] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_typealias] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_protocol] = ACTIONS(2779), - [anon_sym_let] = ACTIONS(2779), - [anon_sym_var] = ACTIONS(2779), - [anon_sym_func] = ACTIONS(2779), - [anon_sym_extension] = ACTIONS(2779), - [anon_sym_indirect] = ACTIONS(2779), - [anon_sym_init] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_deinit] = ACTIONS(2779), - [anon_sym_subscript] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_precedencegroup] = ACTIONS(2779), - [anon_sym_associatedtype] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [689] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2893), - [anon_sym_RPAREN] = ACTIONS(2893), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_COLON] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [sym__immediate_quest] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2893), - [aux_sym_custom_operator_token1] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_CARET_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2893), - [anon_sym_LT_EQ] = ACTIONS(2893), - [anon_sym_GT_EQ] = ACTIONS(2893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2893), - [anon_sym_DOT_DOT_LT] = ACTIONS(2893), - [anon_sym_is] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2893), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2893), - [anon_sym_GT_GT] = ACTIONS(2893), - [anon_sym_import] = ACTIONS(2893), - [anon_sym_typealias] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), - [anon_sym_protocol] = ACTIONS(2893), - [anon_sym_let] = ACTIONS(2893), - [anon_sym_var] = ACTIONS(2893), - [anon_sym_func] = ACTIONS(2893), - [anon_sym_extension] = ACTIONS(2893), - [anon_sym_indirect] = ACTIONS(2893), - [anon_sym_init] = ACTIONS(2893), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym_deinit] = ACTIONS(2893), - [anon_sym_subscript] = ACTIONS(2893), - [anon_sym_prefix] = ACTIONS(2893), - [anon_sym_infix] = ACTIONS(2893), - [anon_sym_postfix] = ACTIONS(2893), - [anon_sym_precedencegroup] = ACTIONS(2893), - [anon_sym_associatedtype] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2895), - [sym_property_behavior_modifier] = ACTIONS(2893), - [anon_sym_override] = ACTIONS(2893), - [anon_sym_convenience] = ACTIONS(2893), - [anon_sym_required] = ACTIONS(2893), - [anon_sym_nonisolated] = ACTIONS(2893), - [anon_sym_public] = ACTIONS(2893), - [anon_sym_private] = ACTIONS(2893), - [anon_sym_internal] = ACTIONS(2893), - [anon_sym_fileprivate] = ACTIONS(2893), - [anon_sym_open] = ACTIONS(2893), - [anon_sym_mutating] = ACTIONS(2893), - [anon_sym_nonmutating] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_dynamic] = ACTIONS(2893), - [anon_sym_optional] = ACTIONS(2893), - [anon_sym_final] = ACTIONS(2893), - [anon_sym_inout] = ACTIONS(2893), - [anon_sym_ATescaping] = ACTIONS(2893), - [anon_sym_ATautoclosure] = ACTIONS(2893), - [anon_sym_weak] = ACTIONS(2893), - [anon_sym_unowned] = ACTIONS(2895), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2893), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2893), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2893), - [sym__dot_custom] = ACTIONS(2893), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2893), - [sym__nil_coalescing_operator_custom] = ACTIONS(2893), - [sym__eq_eq_custom] = ACTIONS(2893), - [sym__plus_then_ws] = ACTIONS(2893), - [sym__minus_then_ws] = ACTIONS(2893), - [sym_bang] = ACTIONS(2893), - [sym__throws_keyword] = ACTIONS(2893), - [sym__rethrows_keyword] = ACTIONS(2893), - [sym__as_custom] = ACTIONS(2893), - [sym__as_quest_custom] = ACTIONS(2893), - [sym__as_bang_custom] = ACTIONS(2893), - [sym__async_keyword_custom] = ACTIONS(2893), - [sym__custom_operator] = ACTIONS(2893), - }, - [690] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2729), - [anon_sym_RPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_RBRACK] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_typealias] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_protocol] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_extension] = ACTIONS(2729), - [anon_sym_indirect] = ACTIONS(2729), - [anon_sym_init] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym_deinit] = ACTIONS(2729), - [anon_sym_subscript] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_precedencegroup] = ACTIONS(2729), - [anon_sym_associatedtype] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(2729), - [sym__conjunction_operator_custom] = ACTIONS(2729), - [sym__disjunction_operator_custom] = ACTIONS(2729), - [sym__nil_coalescing_operator_custom] = ACTIONS(2729), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__as_quest_custom] = ACTIONS(2729), - [sym__as_bang_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [691] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_COLON] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [aux_sym_custom_operator_token1] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_CARET_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_DOT_DOT_LT] = ACTIONS(2897), - [anon_sym_is] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_import] = ACTIONS(2897), - [anon_sym_typealias] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_protocol] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_var] = ACTIONS(2897), - [anon_sym_func] = ACTIONS(2897), - [anon_sym_extension] = ACTIONS(2897), - [anon_sym_indirect] = ACTIONS(2897), - [anon_sym_init] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_deinit] = ACTIONS(2897), - [anon_sym_subscript] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_precedencegroup] = ACTIONS(2897), - [anon_sym_associatedtype] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__conjunction_operator_custom] = ACTIONS(2897), - [sym__disjunction_operator_custom] = ACTIONS(2897), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_eq_custom] = ACTIONS(2897), - [sym__plus_then_ws] = ACTIONS(2897), - [sym__minus_then_ws] = ACTIONS(2897), - [sym_bang] = ACTIONS(2897), - [sym__throws_keyword] = ACTIONS(2897), - [sym__rethrows_keyword] = ACTIONS(2897), - [sym__as_custom] = ACTIONS(2897), - [sym__as_quest_custom] = ACTIONS(2897), - [sym__as_bang_custom] = ACTIONS(2897), - [sym__async_keyword_custom] = ACTIONS(2897), - [sym__custom_operator] = ACTIONS(2897), - }, - [692] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2901), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_COLON] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [sym__immediate_quest] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [aux_sym_custom_operator_token1] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_CARET_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2901), - [anon_sym_LT_EQ] = ACTIONS(2901), - [anon_sym_GT_EQ] = ACTIONS(2901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2901), - [anon_sym_DOT_DOT_LT] = ACTIONS(2901), - [anon_sym_is] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2901), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2901), - [anon_sym_GT_GT] = ACTIONS(2901), - [anon_sym_import] = ACTIONS(2901), - [anon_sym_typealias] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_protocol] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_var] = ACTIONS(2901), - [anon_sym_func] = ACTIONS(2901), - [anon_sym_extension] = ACTIONS(2901), - [anon_sym_indirect] = ACTIONS(2901), - [anon_sym_init] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym_deinit] = ACTIONS(2901), - [anon_sym_subscript] = ACTIONS(2901), - [anon_sym_prefix] = ACTIONS(2901), - [anon_sym_infix] = ACTIONS(2901), - [anon_sym_postfix] = ACTIONS(2901), - [anon_sym_precedencegroup] = ACTIONS(2901), - [anon_sym_associatedtype] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2903), - [sym_property_behavior_modifier] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_convenience] = ACTIONS(2901), - [anon_sym_required] = ACTIONS(2901), - [anon_sym_nonisolated] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_internal] = ACTIONS(2901), - [anon_sym_fileprivate] = ACTIONS(2901), - [anon_sym_open] = ACTIONS(2901), - [anon_sym_mutating] = ACTIONS(2901), - [anon_sym_nonmutating] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_dynamic] = ACTIONS(2901), - [anon_sym_optional] = ACTIONS(2901), - [anon_sym_final] = ACTIONS(2901), - [anon_sym_inout] = ACTIONS(2901), - [anon_sym_ATescaping] = ACTIONS(2901), - [anon_sym_ATautoclosure] = ACTIONS(2901), - [anon_sym_weak] = ACTIONS(2901), - [anon_sym_unowned] = ACTIONS(2903), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2901), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2901), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2901), - [sym__dot_custom] = ACTIONS(2901), - [sym__conjunction_operator_custom] = ACTIONS(2901), - [sym__disjunction_operator_custom] = ACTIONS(2901), - [sym__nil_coalescing_operator_custom] = ACTIONS(2901), - [sym__eq_eq_custom] = ACTIONS(2901), - [sym__plus_then_ws] = ACTIONS(2901), - [sym__minus_then_ws] = ACTIONS(2901), - [sym_bang] = ACTIONS(2901), - [sym__throws_keyword] = ACTIONS(2901), - [sym__rethrows_keyword] = ACTIONS(2901), - [sym__as_custom] = ACTIONS(2901), - [sym__as_quest_custom] = ACTIONS(2901), - [sym__as_bang_custom] = ACTIONS(2901), - [sym__async_keyword_custom] = ACTIONS(2901), - [sym__custom_operator] = ACTIONS(2901), - }, - [693] = { - [sym__key_path_postfixes] = STATE(693), - [aux_sym__key_path_component_repeat1] = STATE(693), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_COLON] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2912), - [sym__immediate_quest] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_async] = ACTIONS(2905), - [aux_sym_custom_operator_token1] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_CARET_LBRACE] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_self] = ACTIONS(2915), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2905), - [anon_sym_LT_EQ] = ACTIONS(2905), - [anon_sym_GT_EQ] = ACTIONS(2905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_LT] = ACTIONS(2905), - [anon_sym_is] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_import] = ACTIONS(2905), - [anon_sym_typealias] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), - [anon_sym_protocol] = ACTIONS(2905), - [anon_sym_let] = ACTIONS(2905), - [anon_sym_var] = ACTIONS(2905), - [anon_sym_func] = ACTIONS(2905), - [anon_sym_extension] = ACTIONS(2905), - [anon_sym_indirect] = ACTIONS(2905), - [anon_sym_init] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_deinit] = ACTIONS(2905), - [anon_sym_subscript] = ACTIONS(2905), - [anon_sym_prefix] = ACTIONS(2905), - [anon_sym_infix] = ACTIONS(2905), - [anon_sym_postfix] = ACTIONS(2905), - [anon_sym_precedencegroup] = ACTIONS(2905), - [anon_sym_associatedtype] = ACTIONS(2905), - [anon_sym_AT] = ACTIONS(2910), - [sym_property_behavior_modifier] = ACTIONS(2905), - [anon_sym_override] = ACTIONS(2905), - [anon_sym_convenience] = ACTIONS(2905), - [anon_sym_required] = ACTIONS(2905), - [anon_sym_nonisolated] = ACTIONS(2905), - [anon_sym_public] = ACTIONS(2905), - [anon_sym_private] = ACTIONS(2905), - [anon_sym_internal] = ACTIONS(2905), - [anon_sym_fileprivate] = ACTIONS(2905), - [anon_sym_open] = ACTIONS(2905), - [anon_sym_mutating] = ACTIONS(2905), - [anon_sym_nonmutating] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_dynamic] = ACTIONS(2905), - [anon_sym_optional] = ACTIONS(2905), - [anon_sym_final] = ACTIONS(2905), - [anon_sym_inout] = ACTIONS(2905), - [anon_sym_ATescaping] = ACTIONS(2905), - [anon_sym_ATautoclosure] = ACTIONS(2905), - [anon_sym_weak] = ACTIONS(2905), - [anon_sym_unowned] = ACTIONS(2910), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2905), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2905), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2905), - [sym__conjunction_operator_custom] = ACTIONS(2905), - [sym__disjunction_operator_custom] = ACTIONS(2905), - [sym__nil_coalescing_operator_custom] = ACTIONS(2905), - [sym__eq_eq_custom] = ACTIONS(2905), - [sym__plus_then_ws] = ACTIONS(2905), - [sym__minus_then_ws] = ACTIONS(2905), - [sym_bang] = ACTIONS(2915), - [sym__as_custom] = ACTIONS(2905), - [sym__as_quest_custom] = ACTIONS(2905), - [sym__as_bang_custom] = ACTIONS(2905), - [sym__custom_operator] = ACTIONS(2905), - }, - [694] = { - [sym__key_path_postfixes] = STATE(693), - [aux_sym__key_path_component_repeat1] = STATE(693), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2918), - [anon_sym_RPAREN] = ACTIONS(2918), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_RBRACK] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [sym__immediate_quest] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [anon_sym_async] = ACTIONS(2918), - [aux_sym_custom_operator_token1] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_CARET_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_self] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2918), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_LT] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_typealias] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_protocol] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [anon_sym_func] = ACTIONS(2918), - [anon_sym_extension] = ACTIONS(2918), - [anon_sym_indirect] = ACTIONS(2918), - [anon_sym_init] = ACTIONS(2918), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_deinit] = ACTIONS(2918), - [anon_sym_subscript] = ACTIONS(2918), - [anon_sym_prefix] = ACTIONS(2918), - [anon_sym_infix] = ACTIONS(2918), - [anon_sym_postfix] = ACTIONS(2918), - [anon_sym_precedencegroup] = ACTIONS(2918), - [anon_sym_associatedtype] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2920), - [sym_property_behavior_modifier] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_convenience] = ACTIONS(2918), - [anon_sym_required] = ACTIONS(2918), - [anon_sym_nonisolated] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_internal] = ACTIONS(2918), - [anon_sym_fileprivate] = ACTIONS(2918), - [anon_sym_open] = ACTIONS(2918), - [anon_sym_mutating] = ACTIONS(2918), - [anon_sym_nonmutating] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_dynamic] = ACTIONS(2918), - [anon_sym_optional] = ACTIONS(2918), - [anon_sym_final] = ACTIONS(2918), - [anon_sym_inout] = ACTIONS(2918), - [anon_sym_ATescaping] = ACTIONS(2918), - [anon_sym_ATautoclosure] = ACTIONS(2918), - [anon_sym_weak] = ACTIONS(2918), - [anon_sym_unowned] = ACTIONS(2920), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2918), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2918), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2918), - [sym__conjunction_operator_custom] = ACTIONS(2918), - [sym__disjunction_operator_custom] = ACTIONS(2918), - [sym__nil_coalescing_operator_custom] = ACTIONS(2918), - [sym__eq_eq_custom] = ACTIONS(2918), - [sym__plus_then_ws] = ACTIONS(2918), - [sym__minus_then_ws] = ACTIONS(2918), - [sym_bang] = ACTIONS(2918), - [sym__as_custom] = ACTIONS(2918), - [sym__as_quest_custom] = ACTIONS(2918), - [sym__as_bang_custom] = ACTIONS(2918), - [sym__custom_operator] = ACTIONS(2918), - }, - [695] = { - [sym__key_path_postfixes] = STATE(693), - [aux_sym__key_path_component_repeat1] = STATE(693), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2924), - [anon_sym_RPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_RBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [sym__immediate_quest] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [aux_sym_custom_operator_token1] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_CARET_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_self] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_LT] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_import] = ACTIONS(2924), - [anon_sym_typealias] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_protocol] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_var] = ACTIONS(2924), - [anon_sym_func] = ACTIONS(2924), - [anon_sym_extension] = ACTIONS(2924), - [anon_sym_indirect] = ACTIONS(2924), - [anon_sym_init] = ACTIONS(2924), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_deinit] = ACTIONS(2924), - [anon_sym_subscript] = ACTIONS(2924), - [anon_sym_prefix] = ACTIONS(2924), - [anon_sym_infix] = ACTIONS(2924), - [anon_sym_postfix] = ACTIONS(2924), - [anon_sym_precedencegroup] = ACTIONS(2924), - [anon_sym_associatedtype] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2926), - [sym_property_behavior_modifier] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_convenience] = ACTIONS(2924), - [anon_sym_required] = ACTIONS(2924), - [anon_sym_nonisolated] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_internal] = ACTIONS(2924), - [anon_sym_fileprivate] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_mutating] = ACTIONS(2924), - [anon_sym_nonmutating] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_dynamic] = ACTIONS(2924), - [anon_sym_optional] = ACTIONS(2924), - [anon_sym_final] = ACTIONS(2924), - [anon_sym_inout] = ACTIONS(2924), - [anon_sym_ATescaping] = ACTIONS(2924), - [anon_sym_ATautoclosure] = ACTIONS(2924), - [anon_sym_weak] = ACTIONS(2924), - [anon_sym_unowned] = ACTIONS(2926), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2924), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2924), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2924), - [sym__conjunction_operator_custom] = ACTIONS(2924), - [sym__disjunction_operator_custom] = ACTIONS(2924), - [sym__nil_coalescing_operator_custom] = ACTIONS(2924), - [sym__eq_eq_custom] = ACTIONS(2924), - [sym__plus_then_ws] = ACTIONS(2924), - [sym__minus_then_ws] = ACTIONS(2924), - [sym_bang] = ACTIONS(2924), - [sym__as_custom] = ACTIONS(2924), - [sym__as_quest_custom] = ACTIONS(2924), - [sym__as_bang_custom] = ACTIONS(2924), - [sym__custom_operator] = ACTIONS(2924), - }, - [696] = { - [sym__key_path_postfixes] = STATE(694), - [aux_sym__key_path_component_repeat1] = STATE(694), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2924), - [anon_sym_RPAREN] = ACTIONS(2924), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_RBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [sym__immediate_quest] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [aux_sym_custom_operator_token1] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_CARET_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_self] = ACTIONS(2928), - [anon_sym_case] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_LT] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_import] = ACTIONS(2924), - [anon_sym_typealias] = ACTIONS(2924), - [anon_sym_struct] = ACTIONS(2924), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [anon_sym_protocol] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_var] = ACTIONS(2924), - [anon_sym_func] = ACTIONS(2924), - [anon_sym_extension] = ACTIONS(2924), - [anon_sym_indirect] = ACTIONS(2924), - [anon_sym_init] = ACTIONS(2924), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_deinit] = ACTIONS(2924), - [anon_sym_subscript] = ACTIONS(2924), - [anon_sym_prefix] = ACTIONS(2924), - [anon_sym_infix] = ACTIONS(2924), - [anon_sym_postfix] = ACTIONS(2924), - [anon_sym_precedencegroup] = ACTIONS(2924), - [anon_sym_associatedtype] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2926), - [sym_property_behavior_modifier] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_convenience] = ACTIONS(2924), - [anon_sym_required] = ACTIONS(2924), - [anon_sym_nonisolated] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_internal] = ACTIONS(2924), - [anon_sym_fileprivate] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_mutating] = ACTIONS(2924), - [anon_sym_nonmutating] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_dynamic] = ACTIONS(2924), - [anon_sym_optional] = ACTIONS(2924), - [anon_sym_final] = ACTIONS(2924), - [anon_sym_inout] = ACTIONS(2924), - [anon_sym_ATescaping] = ACTIONS(2924), - [anon_sym_ATautoclosure] = ACTIONS(2924), - [anon_sym_weak] = ACTIONS(2924), - [anon_sym_unowned] = ACTIONS(2926), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2924), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2924), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2924), - [sym__conjunction_operator_custom] = ACTIONS(2924), - [sym__disjunction_operator_custom] = ACTIONS(2924), - [sym__nil_coalescing_operator_custom] = ACTIONS(2924), - [sym__eq_eq_custom] = ACTIONS(2924), - [sym__plus_then_ws] = ACTIONS(2924), - [sym__minus_then_ws] = ACTIONS(2924), - [sym_bang] = ACTIONS(2924), - [sym__as_custom] = ACTIONS(2924), - [sym__as_quest_custom] = ACTIONS(2924), - [sym__as_bang_custom] = ACTIONS(2924), - [sym__custom_operator] = ACTIONS(2924), - }, - [697] = { - [sym_simple_identifier] = STATE(6338), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(699), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2615), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2620), - [sym__immediate_quest] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2620), - [aux_sym_custom_operator_token1] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_CARET_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2618), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_DOT_DOT_LT] = ACTIONS(2618), - [anon_sym_is] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2618), - [anon_sym_import] = ACTIONS(2620), - [anon_sym_typealias] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(2620), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [anon_sym_protocol] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_var] = ACTIONS(2620), - [anon_sym_func] = ACTIONS(2620), - [anon_sym_extension] = ACTIONS(2620), - [anon_sym_indirect] = ACTIONS(2620), - [anon_sym_init] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_deinit] = ACTIONS(2620), - [anon_sym_subscript] = ACTIONS(2620), - [anon_sym_prefix] = ACTIONS(2620), - [anon_sym_infix] = ACTIONS(2620), - [anon_sym_postfix] = ACTIONS(2620), - [anon_sym_precedencegroup] = ACTIONS(2620), - [anon_sym_associatedtype] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [sym_property_behavior_modifier] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_convenience] = ACTIONS(2620), - [anon_sym_required] = ACTIONS(2620), - [anon_sym_nonisolated] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_internal] = ACTIONS(2620), - [anon_sym_fileprivate] = ACTIONS(2620), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_mutating] = ACTIONS(2620), - [anon_sym_nonmutating] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_dynamic] = ACTIONS(2620), - [anon_sym_optional] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_inout] = ACTIONS(2620), - [anon_sym_ATescaping] = ACTIONS(2618), - [anon_sym_ATautoclosure] = ACTIONS(2618), - [anon_sym_weak] = ACTIONS(2620), - [anon_sym_unowned] = ACTIONS(2620), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2618), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2618), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2618), - [sym__conjunction_operator_custom] = ACTIONS(2618), - [sym__disjunction_operator_custom] = ACTIONS(2618), - [sym__nil_coalescing_operator_custom] = ACTIONS(2618), - [sym__eq_eq_custom] = ACTIONS(2618), - [sym__plus_then_ws] = ACTIONS(2618), - [sym__minus_then_ws] = ACTIONS(2618), - [sym_bang] = ACTIONS(2618), - [sym__as_custom] = ACTIONS(2618), - [sym__as_quest_custom] = ACTIONS(2618), - [sym__as_bang_custom] = ACTIONS(2618), - [sym__custom_operator] = ACTIONS(2618), - }, - [698] = { - [sym_simple_identifier] = STATE(6338), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(697), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2640), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2645), - [sym__immediate_quest] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_async] = ACTIONS(2645), - [aux_sym_custom_operator_token1] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_GT] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_CARET_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_DOT_DOT_LT] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_import] = ACTIONS(2645), - [anon_sym_typealias] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(2645), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_enum] = ACTIONS(2645), - [anon_sym_protocol] = ACTIONS(2645), - [anon_sym_let] = ACTIONS(2645), - [anon_sym_var] = ACTIONS(2645), - [anon_sym_func] = ACTIONS(2645), - [anon_sym_extension] = ACTIONS(2645), - [anon_sym_indirect] = ACTIONS(2645), - [anon_sym_init] = ACTIONS(2645), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym_deinit] = ACTIONS(2645), - [anon_sym_subscript] = ACTIONS(2645), - [anon_sym_prefix] = ACTIONS(2645), - [anon_sym_infix] = ACTIONS(2645), - [anon_sym_postfix] = ACTIONS(2645), - [anon_sym_precedencegroup] = ACTIONS(2645), - [anon_sym_associatedtype] = ACTIONS(2645), - [anon_sym_AT] = ACTIONS(2645), - [sym_property_behavior_modifier] = ACTIONS(2645), - [anon_sym_override] = ACTIONS(2645), - [anon_sym_convenience] = ACTIONS(2645), - [anon_sym_required] = ACTIONS(2645), - [anon_sym_nonisolated] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2645), - [anon_sym_private] = ACTIONS(2645), - [anon_sym_internal] = ACTIONS(2645), - [anon_sym_fileprivate] = ACTIONS(2645), - [anon_sym_open] = ACTIONS(2645), - [anon_sym_mutating] = ACTIONS(2645), - [anon_sym_nonmutating] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_dynamic] = ACTIONS(2645), - [anon_sym_optional] = ACTIONS(2645), - [anon_sym_final] = ACTIONS(2645), - [anon_sym_inout] = ACTIONS(2645), - [anon_sym_ATescaping] = ACTIONS(2643), - [anon_sym_ATautoclosure] = ACTIONS(2643), - [anon_sym_weak] = ACTIONS(2645), - [anon_sym_unowned] = ACTIONS(2645), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2643), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2643), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2643), - [sym__conjunction_operator_custom] = ACTIONS(2643), - [sym__disjunction_operator_custom] = ACTIONS(2643), - [sym__nil_coalescing_operator_custom] = ACTIONS(2643), - [sym__eq_eq_custom] = ACTIONS(2643), - [sym__plus_then_ws] = ACTIONS(2643), - [sym__minus_then_ws] = ACTIONS(2643), - [sym_bang] = ACTIONS(2643), - [sym__as_custom] = ACTIONS(2643), - [sym__as_quest_custom] = ACTIONS(2643), - [sym__as_bang_custom] = ACTIONS(2643), - [sym__custom_operator] = ACTIONS(2643), - }, - [699] = { - [sym_simple_identifier] = STATE(6338), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(699), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2647), - [aux_sym_simple_identifier_token2] = ACTIONS(2650), - [aux_sym_simple_identifier_token3] = ACTIONS(2650), - [aux_sym_simple_identifier_token4] = ACTIONS(2650), - [anon_sym_actor] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2655), - [sym__immediate_quest] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2655), - [aux_sym_custom_operator_token1] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_CARET_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2653), - [anon_sym_import] = ACTIONS(2655), - [anon_sym_typealias] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_protocol] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2655), - [anon_sym_var] = ACTIONS(2655), - [anon_sym_func] = ACTIONS(2655), - [anon_sym_extension] = ACTIONS(2655), - [anon_sym_indirect] = ACTIONS(2655), - [anon_sym_init] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_deinit] = ACTIONS(2655), - [anon_sym_subscript] = ACTIONS(2655), - [anon_sym_prefix] = ACTIONS(2655), - [anon_sym_infix] = ACTIONS(2655), - [anon_sym_postfix] = ACTIONS(2655), - [anon_sym_precedencegroup] = ACTIONS(2655), - [anon_sym_associatedtype] = ACTIONS(2655), - [anon_sym_AT] = ACTIONS(2655), - [sym_property_behavior_modifier] = ACTIONS(2655), - [anon_sym_override] = ACTIONS(2655), - [anon_sym_convenience] = ACTIONS(2655), - [anon_sym_required] = ACTIONS(2655), - [anon_sym_nonisolated] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_internal] = ACTIONS(2655), - [anon_sym_fileprivate] = ACTIONS(2655), - [anon_sym_open] = ACTIONS(2655), - [anon_sym_mutating] = ACTIONS(2655), - [anon_sym_nonmutating] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_dynamic] = ACTIONS(2655), - [anon_sym_optional] = ACTIONS(2655), - [anon_sym_final] = ACTIONS(2655), - [anon_sym_inout] = ACTIONS(2655), - [anon_sym_ATescaping] = ACTIONS(2653), - [anon_sym_ATautoclosure] = ACTIONS(2653), - [anon_sym_weak] = ACTIONS(2655), - [anon_sym_unowned] = ACTIONS(2655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2653), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2653), - [sym__conjunction_operator_custom] = ACTIONS(2653), - [sym__disjunction_operator_custom] = ACTIONS(2653), - [sym__nil_coalescing_operator_custom] = ACTIONS(2653), - [sym__eq_eq_custom] = ACTIONS(2653), - [sym__plus_then_ws] = ACTIONS(2653), - [sym__minus_then_ws] = ACTIONS(2653), - [sym_bang] = ACTIONS(2653), - [sym__as_custom] = ACTIONS(2653), - [sym__as_quest_custom] = ACTIONS(2653), - [sym__as_bang_custom] = ACTIONS(2653), - [sym__custom_operator] = ACTIONS(2653), - }, - [700] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2930), - [anon_sym_RPAREN] = ACTIONS(2930), - [anon_sym_COMMA] = ACTIONS(2930), - [anon_sym_COLON] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_RBRACK] = ACTIONS(2930), - [anon_sym_DOT] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(2932), - [sym__immediate_quest] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_async] = ACTIONS(2930), - [aux_sym_custom_operator_token1] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_GT] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_CARET_LBRACE] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_self] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2930), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2930), - [anon_sym_DOT_DOT_LT] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2932), - [anon_sym_DASH] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2932), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_LT_LT] = ACTIONS(2930), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_import] = ACTIONS(2930), - [anon_sym_typealias] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_protocol] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_var] = ACTIONS(2930), - [anon_sym_func] = ACTIONS(2930), - [anon_sym_extension] = ACTIONS(2930), - [anon_sym_indirect] = ACTIONS(2930), - [anon_sym_init] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2930), - [anon_sym_deinit] = ACTIONS(2930), - [anon_sym_subscript] = ACTIONS(2930), - [anon_sym_prefix] = ACTIONS(2930), - [anon_sym_infix] = ACTIONS(2930), - [anon_sym_postfix] = ACTIONS(2930), - [anon_sym_precedencegroup] = ACTIONS(2930), - [anon_sym_associatedtype] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2932), - [sym_property_behavior_modifier] = ACTIONS(2930), - [anon_sym_override] = ACTIONS(2930), - [anon_sym_convenience] = ACTIONS(2930), - [anon_sym_required] = ACTIONS(2930), - [anon_sym_nonisolated] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_internal] = ACTIONS(2930), - [anon_sym_fileprivate] = ACTIONS(2930), - [anon_sym_open] = ACTIONS(2930), - [anon_sym_mutating] = ACTIONS(2930), - [anon_sym_nonmutating] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_dynamic] = ACTIONS(2930), - [anon_sym_optional] = ACTIONS(2930), - [anon_sym_final] = ACTIONS(2930), - [anon_sym_inout] = ACTIONS(2930), - [anon_sym_ATescaping] = ACTIONS(2930), - [anon_sym_ATautoclosure] = ACTIONS(2930), - [anon_sym_weak] = ACTIONS(2930), - [anon_sym_unowned] = ACTIONS(2932), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2930), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2930), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2930), - [sym__conjunction_operator_custom] = ACTIONS(2930), - [sym__disjunction_operator_custom] = ACTIONS(2930), - [sym__nil_coalescing_operator_custom] = ACTIONS(2930), - [sym__eq_eq_custom] = ACTIONS(2930), - [sym__plus_then_ws] = ACTIONS(2930), - [sym__minus_then_ws] = ACTIONS(2930), - [sym_bang] = ACTIONS(2930), - [sym__as_custom] = ACTIONS(2930), - [sym__as_quest_custom] = ACTIONS(2930), - [sym__as_bang_custom] = ACTIONS(2930), - [sym__custom_operator] = ACTIONS(2930), - }, - [701] = { - [aux_sym_key_path_expression_repeat1] = STATE(703), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_RBRACK] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2703), - [anon_sym_QMARK] = ACTIONS(2936), - [sym__immediate_quest] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_async] = ACTIONS(2934), - [aux_sym_custom_operator_token1] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_CARET_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT_LT] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_typealias] = ACTIONS(2934), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_protocol] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [anon_sym_func] = ACTIONS(2934), - [anon_sym_extension] = ACTIONS(2934), - [anon_sym_indirect] = ACTIONS(2934), - [anon_sym_init] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [anon_sym_deinit] = ACTIONS(2934), - [anon_sym_subscript] = ACTIONS(2934), - [anon_sym_prefix] = ACTIONS(2934), - [anon_sym_infix] = ACTIONS(2934), - [anon_sym_postfix] = ACTIONS(2934), - [anon_sym_precedencegroup] = ACTIONS(2934), - [anon_sym_associatedtype] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2936), - [sym_property_behavior_modifier] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_convenience] = ACTIONS(2934), - [anon_sym_required] = ACTIONS(2934), - [anon_sym_nonisolated] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_internal] = ACTIONS(2934), - [anon_sym_fileprivate] = ACTIONS(2934), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_mutating] = ACTIONS(2934), - [anon_sym_nonmutating] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_dynamic] = ACTIONS(2934), - [anon_sym_optional] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_inout] = ACTIONS(2934), - [anon_sym_ATescaping] = ACTIONS(2934), - [anon_sym_ATautoclosure] = ACTIONS(2934), - [anon_sym_weak] = ACTIONS(2934), - [anon_sym_unowned] = ACTIONS(2936), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2934), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2934), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2934), - [sym__conjunction_operator_custom] = ACTIONS(2934), - [sym__disjunction_operator_custom] = ACTIONS(2934), - [sym__nil_coalescing_operator_custom] = ACTIONS(2934), - [sym__eq_eq_custom] = ACTIONS(2934), - [sym__plus_then_ws] = ACTIONS(2934), - [sym__minus_then_ws] = ACTIONS(2934), - [sym_bang] = ACTIONS(2934), - [sym__as_custom] = ACTIONS(2934), - [sym__as_quest_custom] = ACTIONS(2934), - [sym__as_bang_custom] = ACTIONS(2934), - [sym__custom_operator] = ACTIONS(2934), - }, - [702] = { - [aux_sym_key_path_expression_repeat1] = STATE(703), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2938), - [anon_sym_RPAREN] = ACTIONS(2938), - [anon_sym_COMMA] = ACTIONS(2938), - [anon_sym_COLON] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2938), - [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(2703), - [anon_sym_QMARK] = ACTIONS(2940), - [sym__immediate_quest] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_async] = ACTIONS(2938), - [aux_sym_custom_operator_token1] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2940), - [anon_sym_GT] = ACTIONS(2940), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_CARET_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_BANG_EQ] = ACTIONS(2940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2938), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2938), - [anon_sym_DOT_DOT_LT] = ACTIONS(2938), - [anon_sym_is] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2940), - [anon_sym_DASH] = ACTIONS(2940), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2940), - [anon_sym_PERCENT] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2940), - [anon_sym_LT_LT] = ACTIONS(2938), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2938), - [anon_sym_typealias] = ACTIONS(2938), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_class] = ACTIONS(2938), - [anon_sym_enum] = ACTIONS(2938), - [anon_sym_protocol] = ACTIONS(2938), - [anon_sym_let] = ACTIONS(2938), - [anon_sym_var] = ACTIONS(2938), - [anon_sym_func] = ACTIONS(2938), - [anon_sym_extension] = ACTIONS(2938), - [anon_sym_indirect] = ACTIONS(2938), - [anon_sym_init] = ACTIONS(2938), - [anon_sym_SEMI] = ACTIONS(2938), - [anon_sym_deinit] = ACTIONS(2938), - [anon_sym_subscript] = ACTIONS(2938), - [anon_sym_prefix] = ACTIONS(2938), - [anon_sym_infix] = ACTIONS(2938), - [anon_sym_postfix] = ACTIONS(2938), - [anon_sym_precedencegroup] = ACTIONS(2938), - [anon_sym_associatedtype] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2940), - [sym_property_behavior_modifier] = ACTIONS(2938), - [anon_sym_override] = ACTIONS(2938), - [anon_sym_convenience] = ACTIONS(2938), - [anon_sym_required] = ACTIONS(2938), - [anon_sym_nonisolated] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_internal] = ACTIONS(2938), - [anon_sym_fileprivate] = ACTIONS(2938), - [anon_sym_open] = ACTIONS(2938), - [anon_sym_mutating] = ACTIONS(2938), - [anon_sym_nonmutating] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_dynamic] = ACTIONS(2938), - [anon_sym_optional] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_inout] = ACTIONS(2938), - [anon_sym_ATescaping] = ACTIONS(2938), - [anon_sym_ATautoclosure] = ACTIONS(2938), - [anon_sym_weak] = ACTIONS(2938), - [anon_sym_unowned] = ACTIONS(2940), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2938), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2938), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2938), - [sym__conjunction_operator_custom] = ACTIONS(2938), - [sym__disjunction_operator_custom] = ACTIONS(2938), - [sym__nil_coalescing_operator_custom] = ACTIONS(2938), - [sym__eq_eq_custom] = ACTIONS(2938), - [sym__plus_then_ws] = ACTIONS(2938), - [sym__minus_then_ws] = ACTIONS(2938), - [sym_bang] = ACTIONS(2938), - [sym__as_custom] = ACTIONS(2938), - [sym__as_quest_custom] = ACTIONS(2938), - [sym__as_bang_custom] = ACTIONS(2938), - [sym__custom_operator] = ACTIONS(2938), - }, - [703] = { - [aux_sym_key_path_expression_repeat1] = STATE(703), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2942), - [anon_sym_RPAREN] = ACTIONS(2942), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_COLON] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_RBRACK] = ACTIONS(2942), - [anon_sym_DOT] = ACTIONS(2944), - [anon_sym_QMARK] = ACTIONS(2947), - [sym__immediate_quest] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [aux_sym_custom_operator_token1] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_CARET_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2942), - [anon_sym_DOT_DOT_LT] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_typealias] = ACTIONS(2942), - [anon_sym_struct] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [anon_sym_protocol] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_func] = ACTIONS(2942), - [anon_sym_extension] = ACTIONS(2942), - [anon_sym_indirect] = ACTIONS(2942), - [anon_sym_init] = ACTIONS(2942), - [anon_sym_SEMI] = ACTIONS(2942), - [anon_sym_deinit] = ACTIONS(2942), - [anon_sym_subscript] = ACTIONS(2942), - [anon_sym_prefix] = ACTIONS(2942), - [anon_sym_infix] = ACTIONS(2942), - [anon_sym_postfix] = ACTIONS(2942), - [anon_sym_precedencegroup] = ACTIONS(2942), - [anon_sym_associatedtype] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2947), - [sym_property_behavior_modifier] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_convenience] = ACTIONS(2942), - [anon_sym_required] = ACTIONS(2942), - [anon_sym_nonisolated] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_internal] = ACTIONS(2942), - [anon_sym_fileprivate] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_mutating] = ACTIONS(2942), - [anon_sym_nonmutating] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_dynamic] = ACTIONS(2942), - [anon_sym_optional] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_inout] = ACTIONS(2942), - [anon_sym_ATescaping] = ACTIONS(2942), - [anon_sym_ATautoclosure] = ACTIONS(2942), - [anon_sym_weak] = ACTIONS(2942), - [anon_sym_unowned] = ACTIONS(2947), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2942), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2942), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2942), - [sym__conjunction_operator_custom] = ACTIONS(2942), - [sym__disjunction_operator_custom] = ACTIONS(2942), - [sym__nil_coalescing_operator_custom] = ACTIONS(2942), - [sym__eq_eq_custom] = ACTIONS(2942), - [sym__plus_then_ws] = ACTIONS(2942), - [sym__minus_then_ws] = ACTIONS(2942), - [sym_bang] = ACTIONS(2942), - [sym__as_custom] = ACTIONS(2942), - [sym__as_quest_custom] = ACTIONS(2942), - [sym__as_bang_custom] = ACTIONS(2942), - [sym__custom_operator] = ACTIONS(2942), - }, - [704] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2949), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_COLON] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [sym__immediate_quest] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_async] = ACTIONS(2949), - [aux_sym_custom_operator_token1] = ACTIONS(2949), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_CARET_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_self] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2949), - [anon_sym_LT_EQ] = ACTIONS(2949), - [anon_sym_GT_EQ] = ACTIONS(2949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2949), - [anon_sym_DOT_DOT_LT] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_GT_GT] = ACTIONS(2949), - [anon_sym_import] = ACTIONS(2949), - [anon_sym_typealias] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_protocol] = ACTIONS(2949), - [anon_sym_let] = ACTIONS(2949), - [anon_sym_var] = ACTIONS(2949), - [anon_sym_func] = ACTIONS(2949), - [anon_sym_extension] = ACTIONS(2949), - [anon_sym_indirect] = ACTIONS(2949), - [anon_sym_init] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_deinit] = ACTIONS(2949), - [anon_sym_subscript] = ACTIONS(2949), - [anon_sym_prefix] = ACTIONS(2949), - [anon_sym_infix] = ACTIONS(2949), - [anon_sym_postfix] = ACTIONS(2949), - [anon_sym_precedencegroup] = ACTIONS(2949), - [anon_sym_associatedtype] = ACTIONS(2949), - [anon_sym_AT] = ACTIONS(2951), - [sym_property_behavior_modifier] = ACTIONS(2949), - [anon_sym_override] = ACTIONS(2949), - [anon_sym_convenience] = ACTIONS(2949), - [anon_sym_required] = ACTIONS(2949), - [anon_sym_nonisolated] = ACTIONS(2949), - [anon_sym_public] = ACTIONS(2949), - [anon_sym_private] = ACTIONS(2949), - [anon_sym_internal] = ACTIONS(2949), - [anon_sym_fileprivate] = ACTIONS(2949), - [anon_sym_open] = ACTIONS(2949), - [anon_sym_mutating] = ACTIONS(2949), - [anon_sym_nonmutating] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_dynamic] = ACTIONS(2949), - [anon_sym_optional] = ACTIONS(2949), - [anon_sym_final] = ACTIONS(2949), - [anon_sym_inout] = ACTIONS(2949), - [anon_sym_ATescaping] = ACTIONS(2949), - [anon_sym_ATautoclosure] = ACTIONS(2949), - [anon_sym_weak] = ACTIONS(2949), - [anon_sym_unowned] = ACTIONS(2951), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2949), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2949), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2949), - [sym__conjunction_operator_custom] = ACTIONS(2949), - [sym__disjunction_operator_custom] = ACTIONS(2949), - [sym__nil_coalescing_operator_custom] = ACTIONS(2949), - [sym__eq_eq_custom] = ACTIONS(2949), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym_bang] = ACTIONS(2949), - [sym__as_custom] = ACTIONS(2949), - [sym__as_quest_custom] = ACTIONS(2949), - [sym__as_bang_custom] = ACTIONS(2949), - [sym__custom_operator] = ACTIONS(2949), - }, - [705] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [sym__immediate_quest] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_async] = ACTIONS(2953), - [aux_sym_custom_operator_token1] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_CARET_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_self] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_LT] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_import] = ACTIONS(2953), - [anon_sym_typealias] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_protocol] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_var] = ACTIONS(2953), - [anon_sym_func] = ACTIONS(2953), - [anon_sym_extension] = ACTIONS(2953), - [anon_sym_indirect] = ACTIONS(2953), - [anon_sym_init] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_deinit] = ACTIONS(2953), - [anon_sym_subscript] = ACTIONS(2953), - [anon_sym_prefix] = ACTIONS(2953), - [anon_sym_infix] = ACTIONS(2953), - [anon_sym_postfix] = ACTIONS(2953), - [anon_sym_precedencegroup] = ACTIONS(2953), - [anon_sym_associatedtype] = ACTIONS(2953), - [anon_sym_AT] = ACTIONS(2955), - [sym_property_behavior_modifier] = ACTIONS(2953), - [anon_sym_override] = ACTIONS(2953), - [anon_sym_convenience] = ACTIONS(2953), - [anon_sym_required] = ACTIONS(2953), - [anon_sym_nonisolated] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_private] = ACTIONS(2953), - [anon_sym_internal] = ACTIONS(2953), - [anon_sym_fileprivate] = ACTIONS(2953), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_mutating] = ACTIONS(2953), - [anon_sym_nonmutating] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_dynamic] = ACTIONS(2953), - [anon_sym_optional] = ACTIONS(2953), - [anon_sym_final] = ACTIONS(2953), - [anon_sym_inout] = ACTIONS(2953), - [anon_sym_ATescaping] = ACTIONS(2953), - [anon_sym_ATautoclosure] = ACTIONS(2953), - [anon_sym_weak] = ACTIONS(2953), - [anon_sym_unowned] = ACTIONS(2955), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2953), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2953), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2953), - [sym__conjunction_operator_custom] = ACTIONS(2953), - [sym__disjunction_operator_custom] = ACTIONS(2953), - [sym__nil_coalescing_operator_custom] = ACTIONS(2953), - [sym__eq_eq_custom] = ACTIONS(2953), - [sym__plus_then_ws] = ACTIONS(2953), - [sym__minus_then_ws] = ACTIONS(2953), - [sym_bang] = ACTIONS(2953), - [sym__as_custom] = ACTIONS(2953), - [sym__as_quest_custom] = ACTIONS(2953), - [sym__as_bang_custom] = ACTIONS(2953), - [sym__custom_operator] = ACTIONS(2953), - }, - [706] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_RBRACK] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_self] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_typealias] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_protocol] = ACTIONS(2779), - [anon_sym_let] = ACTIONS(2779), - [anon_sym_var] = ACTIONS(2779), - [anon_sym_func] = ACTIONS(2779), - [anon_sym_extension] = ACTIONS(2779), - [anon_sym_indirect] = ACTIONS(2779), - [anon_sym_init] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_deinit] = ACTIONS(2779), - [anon_sym_subscript] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_precedencegroup] = ACTIONS(2779), - [anon_sym_associatedtype] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [707] = { - [aux_sym_key_path_expression_repeat1] = STATE(702), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2934), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_COLON] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_RBRACK] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(2703), - [anon_sym_QMARK] = ACTIONS(2936), - [sym__immediate_quest] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_async] = ACTIONS(2934), - [aux_sym_custom_operator_token1] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_CARET_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT_LT] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_typealias] = ACTIONS(2934), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_protocol] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [anon_sym_func] = ACTIONS(2934), - [anon_sym_extension] = ACTIONS(2934), - [anon_sym_indirect] = ACTIONS(2934), - [anon_sym_init] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2934), - [anon_sym_deinit] = ACTIONS(2934), - [anon_sym_subscript] = ACTIONS(2934), - [anon_sym_prefix] = ACTIONS(2934), - [anon_sym_infix] = ACTIONS(2934), - [anon_sym_postfix] = ACTIONS(2934), - [anon_sym_precedencegroup] = ACTIONS(2934), - [anon_sym_associatedtype] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2936), - [sym_property_behavior_modifier] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_convenience] = ACTIONS(2934), - [anon_sym_required] = ACTIONS(2934), - [anon_sym_nonisolated] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_internal] = ACTIONS(2934), - [anon_sym_fileprivate] = ACTIONS(2934), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_mutating] = ACTIONS(2934), - [anon_sym_nonmutating] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_dynamic] = ACTIONS(2934), - [anon_sym_optional] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_inout] = ACTIONS(2934), - [anon_sym_ATescaping] = ACTIONS(2934), - [anon_sym_ATautoclosure] = ACTIONS(2934), - [anon_sym_weak] = ACTIONS(2934), - [anon_sym_unowned] = ACTIONS(2936), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2934), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2934), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2934), - [sym__conjunction_operator_custom] = ACTIONS(2934), - [sym__disjunction_operator_custom] = ACTIONS(2934), - [sym__nil_coalescing_operator_custom] = ACTIONS(2934), - [sym__eq_eq_custom] = ACTIONS(2934), - [sym__plus_then_ws] = ACTIONS(2934), - [sym__minus_then_ws] = ACTIONS(2934), - [sym_bang] = ACTIONS(2934), - [sym__as_custom] = ACTIONS(2934), - [sym__as_quest_custom] = ACTIONS(2934), - [sym__as_bang_custom] = ACTIONS(2934), - [sym__custom_operator] = ACTIONS(2934), - }, - [708] = { - [sym_type_arguments] = STATE(710), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [aux_sym_custom_operator_token1] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2957), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_CARET_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_typealias] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_protocol] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_func] = ACTIONS(2830), - [anon_sym_extension] = ACTIONS(2830), - [anon_sym_indirect] = ACTIONS(2830), - [anon_sym_init] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_deinit] = ACTIONS(2830), - [anon_sym_subscript] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_precedencegroup] = ACTIONS(2830), - [anon_sym_associatedtype] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2830), - [sym__conjunction_operator_custom] = ACTIONS(2830), - [sym__disjunction_operator_custom] = ACTIONS(2830), - [sym__nil_coalescing_operator_custom] = ACTIONS(2830), - [sym__eq_eq_custom] = ACTIONS(2830), - [sym__plus_then_ws] = ACTIONS(2830), - [sym__minus_then_ws] = ACTIONS(2830), - [sym_bang] = ACTIONS(2830), - [sym__as_custom] = ACTIONS(2830), - [sym__as_quest_custom] = ACTIONS(2830), - [sym__as_bang_custom] = ACTIONS(2830), - [sym__custom_operator] = ACTIONS(2830), - }, - [709] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2873), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_COLON] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_RBRACK] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [aux_sym_custom_operator_token1] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_CARET_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_DOT_DOT_LT] = ACTIONS(2873), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_typealias] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_protocol] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2873), - [anon_sym_extension] = ACTIONS(2873), - [anon_sym_indirect] = ACTIONS(2873), - [anon_sym_init] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_deinit] = ACTIONS(2873), - [anon_sym_subscript] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_precedencegroup] = ACTIONS(2873), - [anon_sym_associatedtype] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2873), - [sym__conjunction_operator_custom] = ACTIONS(2873), - [sym__disjunction_operator_custom] = ACTIONS(2873), - [sym__nil_coalescing_operator_custom] = ACTIONS(2873), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2873), - [sym__minus_then_ws] = ACTIONS(2873), - [sym_bang] = ACTIONS(2873), - [sym__as_custom] = ACTIONS(2873), - [sym__as_quest_custom] = ACTIONS(2873), - [sym__as_bang_custom] = ACTIONS(2873), - [sym__custom_operator] = ACTIONS(2873), - }, - [710] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_COLON] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_QMARK] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2855), - [aux_sym_custom_operator_token1] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_import] = ACTIONS(2855), - [anon_sym_typealias] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_protocol] = ACTIONS(2855), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_var] = ACTIONS(2855), - [anon_sym_func] = ACTIONS(2855), - [anon_sym_extension] = ACTIONS(2855), - [anon_sym_indirect] = ACTIONS(2855), - [anon_sym_init] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_deinit] = ACTIONS(2855), - [anon_sym_subscript] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_precedencegroup] = ACTIONS(2855), - [anon_sym_associatedtype] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2855), - [sym__conjunction_operator_custom] = ACTIONS(2855), - [sym__disjunction_operator_custom] = ACTIONS(2855), - [sym__nil_coalescing_operator_custom] = ACTIONS(2855), - [sym__eq_eq_custom] = ACTIONS(2855), - [sym__plus_then_ws] = ACTIONS(2855), - [sym__minus_then_ws] = ACTIONS(2855), - [sym_bang] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2855), - [sym__as_quest_custom] = ACTIONS(2855), - [sym__as_bang_custom] = ACTIONS(2855), - [sym__custom_operator] = ACTIONS(2855), - }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__implicit_semi] = ACTIONS(2321), - [sym__explicit_semi] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym_where_keyword] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [712] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2691), - [aux_sym_simple_identifier_token2] = ACTIONS(2693), - [aux_sym_simple_identifier_token3] = ACTIONS(2693), - [aux_sym_simple_identifier_token4] = ACTIONS(2693), - [anon_sym_actor] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2691), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2691), - [anon_sym_typealias] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_protocol] = ACTIONS(2691), - [anon_sym_let] = ACTIONS(2691), - [anon_sym_var] = ACTIONS(2691), - [anon_sym_func] = ACTIONS(2691), - [anon_sym_extension] = ACTIONS(2691), - [anon_sym_indirect] = ACTIONS(2691), - [anon_sym_init] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_deinit] = ACTIONS(2691), - [anon_sym_subscript] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_precedencegroup] = ACTIONS(2691), - [anon_sym_associatedtype] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [713] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_COLON] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [sym__immediate_quest] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_async] = ACTIONS(2847), - [aux_sym_custom_operator_token1] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_CARET_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), - [anon_sym_DOT_DOT_LT] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_import] = ACTIONS(2847), - [anon_sym_typealias] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_protocol] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2847), - [anon_sym_var] = ACTIONS(2847), - [anon_sym_func] = ACTIONS(2847), - [anon_sym_extension] = ACTIONS(2847), - [anon_sym_indirect] = ACTIONS(2847), - [anon_sym_init] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_deinit] = ACTIONS(2847), - [anon_sym_subscript] = ACTIONS(2847), - [anon_sym_prefix] = ACTIONS(2847), - [anon_sym_infix] = ACTIONS(2847), - [anon_sym_postfix] = ACTIONS(2847), - [anon_sym_precedencegroup] = ACTIONS(2847), - [anon_sym_associatedtype] = ACTIONS(2847), - [anon_sym_AT] = ACTIONS(2849), - [sym_property_behavior_modifier] = ACTIONS(2847), - [anon_sym_override] = ACTIONS(2847), - [anon_sym_convenience] = ACTIONS(2847), - [anon_sym_required] = ACTIONS(2847), - [anon_sym_nonisolated] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_internal] = ACTIONS(2847), - [anon_sym_fileprivate] = ACTIONS(2847), - [anon_sym_open] = ACTIONS(2847), - [anon_sym_mutating] = ACTIONS(2847), - [anon_sym_nonmutating] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_dynamic] = ACTIONS(2847), - [anon_sym_optional] = ACTIONS(2847), - [anon_sym_final] = ACTIONS(2847), - [anon_sym_inout] = ACTIONS(2847), - [anon_sym_ATescaping] = ACTIONS(2847), - [anon_sym_ATautoclosure] = ACTIONS(2847), - [anon_sym_weak] = ACTIONS(2847), - [anon_sym_unowned] = ACTIONS(2849), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2847), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2847), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2847), - [sym__conjunction_operator_custom] = ACTIONS(2847), - [sym__disjunction_operator_custom] = ACTIONS(2847), - [sym__nil_coalescing_operator_custom] = ACTIONS(2847), - [sym__eq_eq_custom] = ACTIONS(2847), - [sym__plus_then_ws] = ACTIONS(2847), - [sym__minus_then_ws] = ACTIONS(2847), - [sym_bang] = ACTIONS(2847), - [sym__as_custom] = ACTIONS(2847), - [sym__as_quest_custom] = ACTIONS(2847), - [sym__as_bang_custom] = ACTIONS(2847), - [sym__custom_operator] = ACTIONS(2847), - }, - [714] = { - [ts_builtin_sym_end] = ACTIONS(2330), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2330), - [sym__explicit_semi] = ACTIONS(2330), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym_where_keyword] = ACTIONS(2330), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [715] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2707), - [aux_sym_simple_identifier_token2] = ACTIONS(2709), - [aux_sym_simple_identifier_token3] = ACTIONS(2709), - [aux_sym_simple_identifier_token4] = ACTIONS(2709), - [anon_sym_actor] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_async] = ACTIONS(2707), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_import] = ACTIONS(2707), - [anon_sym_typealias] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_protocol] = ACTIONS(2707), - [anon_sym_let] = ACTIONS(2707), - [anon_sym_var] = ACTIONS(2707), - [anon_sym_func] = ACTIONS(2707), - [anon_sym_extension] = ACTIONS(2707), - [anon_sym_indirect] = ACTIONS(2707), - [anon_sym_init] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_deinit] = ACTIONS(2707), - [anon_sym_subscript] = ACTIONS(2707), - [anon_sym_prefix] = ACTIONS(2707), - [anon_sym_infix] = ACTIONS(2707), - [anon_sym_postfix] = ACTIONS(2707), - [anon_sym_precedencegroup] = ACTIONS(2707), - [anon_sym_associatedtype] = ACTIONS(2707), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2707), - [anon_sym_override] = ACTIONS(2707), - [anon_sym_convenience] = ACTIONS(2707), - [anon_sym_required] = ACTIONS(2707), - [anon_sym_nonisolated] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_internal] = ACTIONS(2707), - [anon_sym_fileprivate] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(2707), - [anon_sym_mutating] = ACTIONS(2707), - [anon_sym_nonmutating] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_dynamic] = ACTIONS(2707), - [anon_sym_optional] = ACTIONS(2707), - [anon_sym_final] = ACTIONS(2707), - [anon_sym_inout] = ACTIONS(2707), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2707), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [716] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2725), - [aux_sym_simple_identifier_token2] = ACTIONS(2727), - [aux_sym_simple_identifier_token3] = ACTIONS(2727), - [aux_sym_simple_identifier_token4] = ACTIONS(2727), - [anon_sym_actor] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2725), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2725), - [anon_sym_typealias] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_protocol] = ACTIONS(2725), - [anon_sym_let] = ACTIONS(2725), - [anon_sym_var] = ACTIONS(2725), - [anon_sym_func] = ACTIONS(2725), - [anon_sym_extension] = ACTIONS(2725), - [anon_sym_indirect] = ACTIONS(2725), - [anon_sym_init] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_deinit] = ACTIONS(2725), - [anon_sym_subscript] = ACTIONS(2725), - [anon_sym_prefix] = ACTIONS(2725), - [anon_sym_infix] = ACTIONS(2725), - [anon_sym_postfix] = ACTIONS(2725), - [anon_sym_precedencegroup] = ACTIONS(2725), - [anon_sym_associatedtype] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_convenience] = ACTIONS(2725), - [anon_sym_required] = ACTIONS(2725), - [anon_sym_nonisolated] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_internal] = ACTIONS(2725), - [anon_sym_fileprivate] = ACTIONS(2725), - [anon_sym_open] = ACTIONS(2725), - [anon_sym_mutating] = ACTIONS(2725), - [anon_sym_nonmutating] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_dynamic] = ACTIONS(2725), - [anon_sym_optional] = ACTIONS(2725), - [anon_sym_final] = ACTIONS(2725), - [anon_sym_inout] = ACTIONS(2725), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2725), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__implicit_semi] = ACTIONS(2357), - [sym__explicit_semi] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym_where_keyword] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [718] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_COLON] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [aux_sym_custom_operator_token1] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_CARET_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_DOT_DOT_LT] = ACTIONS(2897), - [anon_sym_is] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_import] = ACTIONS(2897), - [anon_sym_typealias] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_protocol] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_var] = ACTIONS(2897), - [anon_sym_func] = ACTIONS(2897), - [anon_sym_extension] = ACTIONS(2897), - [anon_sym_indirect] = ACTIONS(2897), - [anon_sym_init] = ACTIONS(2897), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_deinit] = ACTIONS(2897), - [anon_sym_subscript] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_precedencegroup] = ACTIONS(2897), - [anon_sym_associatedtype] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2897), - [sym__conjunction_operator_custom] = ACTIONS(2897), - [sym__disjunction_operator_custom] = ACTIONS(2897), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_eq_custom] = ACTIONS(2897), - [sym__plus_then_ws] = ACTIONS(2897), - [sym__minus_then_ws] = ACTIONS(2897), - [sym_bang] = ACTIONS(2897), - [sym__as_custom] = ACTIONS(2897), - [sym__as_quest_custom] = ACTIONS(2897), - [sym__as_bang_custom] = ACTIONS(2897), - [sym__custom_operator] = ACTIONS(2897), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2359), - [sym__explicit_semi] = ACTIONS(2359), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_where_keyword] = ACTIONS(2359), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [720] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2676), - [aux_sym_simple_identifier_token2] = ACTIONS(2678), - [aux_sym_simple_identifier_token3] = ACTIONS(2678), - [aux_sym_simple_identifier_token4] = ACTIONS(2678), - [anon_sym_actor] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2676), - [sym__immediate_quest] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_async] = ACTIONS(2676), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_import] = ACTIONS(2676), - [anon_sym_typealias] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_protocol] = ACTIONS(2676), - [anon_sym_let] = ACTIONS(2676), - [anon_sym_var] = ACTIONS(2676), - [anon_sym_func] = ACTIONS(2676), - [anon_sym_extension] = ACTIONS(2676), - [anon_sym_indirect] = ACTIONS(2676), - [anon_sym_init] = ACTIONS(2676), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_deinit] = ACTIONS(2676), - [anon_sym_subscript] = ACTIONS(2676), - [anon_sym_prefix] = ACTIONS(2676), - [anon_sym_infix] = ACTIONS(2676), - [anon_sym_postfix] = ACTIONS(2676), - [anon_sym_precedencegroup] = ACTIONS(2676), - [anon_sym_associatedtype] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [sym_property_behavior_modifier] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_convenience] = ACTIONS(2676), - [anon_sym_required] = ACTIONS(2676), - [anon_sym_nonisolated] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_internal] = ACTIONS(2676), - [anon_sym_fileprivate] = ACTIONS(2676), - [anon_sym_open] = ACTIONS(2676), - [anon_sym_mutating] = ACTIONS(2676), - [anon_sym_nonmutating] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_dynamic] = ACTIONS(2676), - [anon_sym_optional] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_inout] = ACTIONS(2676), - [anon_sym_ATescaping] = ACTIONS(2678), - [anon_sym_ATautoclosure] = ACTIONS(2678), - [anon_sym_weak] = ACTIONS(2676), - [anon_sym_unowned] = ACTIONS(2676), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2678), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2678), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2678), - [sym__disjunction_operator_custom] = ACTIONS(2678), - [sym__nil_coalescing_operator_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym_bang] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2678), - [sym__as_quest_custom] = ACTIONS(2678), - [sym__as_bang_custom] = ACTIONS(2678), - [sym__custom_operator] = ACTIONS(2678), - }, - [721] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_COLON] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [sym__immediate_quest] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_async] = ACTIONS(2885), - [aux_sym_custom_operator_token1] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_CARET_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_LT] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2885), - [anon_sym_typealias] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_protocol] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2885), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_func] = ACTIONS(2885), - [anon_sym_extension] = ACTIONS(2885), - [anon_sym_indirect] = ACTIONS(2885), - [anon_sym_init] = ACTIONS(2885), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_deinit] = ACTIONS(2885), - [anon_sym_subscript] = ACTIONS(2885), - [anon_sym_prefix] = ACTIONS(2885), - [anon_sym_infix] = ACTIONS(2885), - [anon_sym_postfix] = ACTIONS(2885), - [anon_sym_precedencegroup] = ACTIONS(2885), - [anon_sym_associatedtype] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2887), - [sym_property_behavior_modifier] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_convenience] = ACTIONS(2885), - [anon_sym_required] = ACTIONS(2885), - [anon_sym_nonisolated] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_internal] = ACTIONS(2885), - [anon_sym_fileprivate] = ACTIONS(2885), - [anon_sym_open] = ACTIONS(2885), - [anon_sym_mutating] = ACTIONS(2885), - [anon_sym_nonmutating] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_dynamic] = ACTIONS(2885), - [anon_sym_optional] = ACTIONS(2885), - [anon_sym_final] = ACTIONS(2885), - [anon_sym_inout] = ACTIONS(2885), - [anon_sym_ATescaping] = ACTIONS(2885), - [anon_sym_ATautoclosure] = ACTIONS(2885), - [anon_sym_weak] = ACTIONS(2885), - [anon_sym_unowned] = ACTIONS(2887), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2885), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2885), - [sym__conjunction_operator_custom] = ACTIONS(2885), - [sym__disjunction_operator_custom] = ACTIONS(2885), - [sym__nil_coalescing_operator_custom] = ACTIONS(2885), - [sym__eq_eq_custom] = ACTIONS(2885), - [sym__plus_then_ws] = ACTIONS(2885), - [sym__minus_then_ws] = ACTIONS(2885), - [sym_bang] = ACTIONS(2885), - [sym__as_custom] = ACTIONS(2885), - [sym__as_quest_custom] = ACTIONS(2885), - [sym__as_bang_custom] = ACTIONS(2885), - [sym__custom_operator] = ACTIONS(2885), - }, - [722] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_async] = ACTIONS(2687), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_import] = ACTIONS(2687), - [anon_sym_typealias] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_protocol] = ACTIONS(2687), - [anon_sym_let] = ACTIONS(2687), - [anon_sym_var] = ACTIONS(2687), - [anon_sym_func] = ACTIONS(2687), - [anon_sym_extension] = ACTIONS(2687), - [anon_sym_indirect] = ACTIONS(2687), - [anon_sym_init] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_deinit] = ACTIONS(2687), - [anon_sym_subscript] = ACTIONS(2687), - [anon_sym_prefix] = ACTIONS(2687), - [anon_sym_infix] = ACTIONS(2687), - [anon_sym_postfix] = ACTIONS(2687), - [anon_sym_precedencegroup] = ACTIONS(2687), - [anon_sym_associatedtype] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2687), - [anon_sym_override] = ACTIONS(2687), - [anon_sym_convenience] = ACTIONS(2687), - [anon_sym_required] = ACTIONS(2687), - [anon_sym_nonisolated] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_internal] = ACTIONS(2687), - [anon_sym_fileprivate] = ACTIONS(2687), - [anon_sym_open] = ACTIONS(2687), - [anon_sym_mutating] = ACTIONS(2687), - [anon_sym_nonmutating] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_dynamic] = ACTIONS(2687), - [anon_sym_optional] = ACTIONS(2687), - [anon_sym_final] = ACTIONS(2687), - [anon_sym_inout] = ACTIONS(2687), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2687), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [723] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2942), - [anon_sym_RPAREN] = ACTIONS(2942), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_COLON] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_RBRACK] = ACTIONS(2942), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [sym__immediate_quest] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [aux_sym_custom_operator_token1] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_CARET_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2942), - [anon_sym_DOT_DOT_LT] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_typealias] = ACTIONS(2942), - [anon_sym_struct] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [anon_sym_protocol] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_func] = ACTIONS(2942), - [anon_sym_extension] = ACTIONS(2942), - [anon_sym_indirect] = ACTIONS(2942), - [anon_sym_init] = ACTIONS(2942), - [anon_sym_SEMI] = ACTIONS(2942), - [anon_sym_deinit] = ACTIONS(2942), - [anon_sym_subscript] = ACTIONS(2942), - [anon_sym_prefix] = ACTIONS(2942), - [anon_sym_infix] = ACTIONS(2942), - [anon_sym_postfix] = ACTIONS(2942), - [anon_sym_precedencegroup] = ACTIONS(2942), - [anon_sym_associatedtype] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2947), - [sym_property_behavior_modifier] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_convenience] = ACTIONS(2942), - [anon_sym_required] = ACTIONS(2942), - [anon_sym_nonisolated] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_internal] = ACTIONS(2942), - [anon_sym_fileprivate] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_mutating] = ACTIONS(2942), - [anon_sym_nonmutating] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_dynamic] = ACTIONS(2942), - [anon_sym_optional] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_inout] = ACTIONS(2942), - [anon_sym_ATescaping] = ACTIONS(2942), - [anon_sym_ATautoclosure] = ACTIONS(2942), - [anon_sym_weak] = ACTIONS(2942), - [anon_sym_unowned] = ACTIONS(2947), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2942), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2942), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2942), - [sym__conjunction_operator_custom] = ACTIONS(2942), - [sym__disjunction_operator_custom] = ACTIONS(2942), - [sym__nil_coalescing_operator_custom] = ACTIONS(2942), - [sym__eq_eq_custom] = ACTIONS(2942), - [sym__plus_then_ws] = ACTIONS(2942), - [sym__minus_then_ws] = ACTIONS(2942), - [sym_bang] = ACTIONS(2942), - [sym__as_custom] = ACTIONS(2942), - [sym__as_quest_custom] = ACTIONS(2942), - [sym__as_bang_custom] = ACTIONS(2942), - [sym__custom_operator] = ACTIONS(2942), - }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2351), - [sym__explicit_semi] = ACTIONS(2351), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_where_keyword] = ACTIONS(2351), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(2340), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2340), - [sym__explicit_semi] = ACTIONS(2340), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym_where_keyword] = ACTIONS(2340), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [726] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2959), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [sym__immediate_quest] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2959), - [anon_sym_typealias] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_protocol] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_var] = ACTIONS(2959), - [anon_sym_func] = ACTIONS(2959), - [anon_sym_extension] = ACTIONS(2959), - [anon_sym_indirect] = ACTIONS(2959), - [anon_sym_init] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_deinit] = ACTIONS(2959), - [anon_sym_subscript] = ACTIONS(2959), - [anon_sym_prefix] = ACTIONS(2959), - [anon_sym_infix] = ACTIONS(2959), - [anon_sym_postfix] = ACTIONS(2959), - [anon_sym_precedencegroup] = ACTIONS(2959), - [anon_sym_associatedtype] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2961), - [sym_property_behavior_modifier] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_convenience] = ACTIONS(2959), - [anon_sym_required] = ACTIONS(2959), - [anon_sym_nonisolated] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_internal] = ACTIONS(2959), - [anon_sym_fileprivate] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_mutating] = ACTIONS(2959), - [anon_sym_nonmutating] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_dynamic] = ACTIONS(2959), - [anon_sym_optional] = ACTIONS(2959), - [anon_sym_final] = ACTIONS(2959), - [anon_sym_inout] = ACTIONS(2959), - [anon_sym_ATescaping] = ACTIONS(2959), - [anon_sym_ATautoclosure] = ACTIONS(2959), - [anon_sym_weak] = ACTIONS(2959), - [anon_sym_unowned] = ACTIONS(2961), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2959), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2959), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym_bang] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [727] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2965), - [sym__immediate_quest] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_async] = ACTIONS(2963), - [aux_sym_custom_operator_token1] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_CARET_LBRACE] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_case] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2963), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2963), - [anon_sym_DOT_DOT_LT] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_typealias] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), - [anon_sym_protocol] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2963), - [anon_sym_func] = ACTIONS(2963), - [anon_sym_extension] = ACTIONS(2963), - [anon_sym_indirect] = ACTIONS(2963), - [anon_sym_init] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_deinit] = ACTIONS(2963), - [anon_sym_subscript] = ACTIONS(2963), - [anon_sym_prefix] = ACTIONS(2963), - [anon_sym_infix] = ACTIONS(2963), - [anon_sym_postfix] = ACTIONS(2963), - [anon_sym_precedencegroup] = ACTIONS(2963), - [anon_sym_associatedtype] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2965), - [sym_property_behavior_modifier] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(2963), - [anon_sym_convenience] = ACTIONS(2963), - [anon_sym_required] = ACTIONS(2963), - [anon_sym_nonisolated] = ACTIONS(2963), - [anon_sym_public] = ACTIONS(2963), - [anon_sym_private] = ACTIONS(2963), - [anon_sym_internal] = ACTIONS(2963), - [anon_sym_fileprivate] = ACTIONS(2963), - [anon_sym_open] = ACTIONS(2963), - [anon_sym_mutating] = ACTIONS(2963), - [anon_sym_nonmutating] = ACTIONS(2963), - [anon_sym_static] = ACTIONS(2963), - [anon_sym_dynamic] = ACTIONS(2963), - [anon_sym_optional] = ACTIONS(2963), - [anon_sym_final] = ACTIONS(2963), - [anon_sym_inout] = ACTIONS(2963), - [anon_sym_ATescaping] = ACTIONS(2963), - [anon_sym_ATautoclosure] = ACTIONS(2963), - [anon_sym_weak] = ACTIONS(2963), - [anon_sym_unowned] = ACTIONS(2965), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2963), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2963), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2963), - [sym__conjunction_operator_custom] = ACTIONS(2963), - [sym__disjunction_operator_custom] = ACTIONS(2963), - [sym__nil_coalescing_operator_custom] = ACTIONS(2963), - [sym__eq_eq_custom] = ACTIONS(2963), - [sym__plus_then_ws] = ACTIONS(2963), - [sym__minus_then_ws] = ACTIONS(2963), - [sym_bang] = ACTIONS(2963), - [sym__as_custom] = ACTIONS(2963), - [sym__as_quest_custom] = ACTIONS(2963), - [sym__as_bang_custom] = ACTIONS(2963), - [sym__custom_operator] = ACTIONS(2963), - }, - [728] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2967), - [anon_sym_RPAREN] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_COLON] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2969), - [sym__immediate_quest] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_async] = ACTIONS(2967), - [aux_sym_custom_operator_token1] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_CARET_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_case] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), - [anon_sym_DOT_DOT_LT] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2969), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_import] = ACTIONS(2967), - [anon_sym_typealias] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), - [anon_sym_protocol] = ACTIONS(2967), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_var] = ACTIONS(2967), - [anon_sym_func] = ACTIONS(2967), - [anon_sym_extension] = ACTIONS(2967), - [anon_sym_indirect] = ACTIONS(2967), - [anon_sym_init] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_deinit] = ACTIONS(2967), - [anon_sym_subscript] = ACTIONS(2967), - [anon_sym_prefix] = ACTIONS(2967), - [anon_sym_infix] = ACTIONS(2967), - [anon_sym_postfix] = ACTIONS(2967), - [anon_sym_precedencegroup] = ACTIONS(2967), - [anon_sym_associatedtype] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2969), - [sym_property_behavior_modifier] = ACTIONS(2967), - [anon_sym_override] = ACTIONS(2967), - [anon_sym_convenience] = ACTIONS(2967), - [anon_sym_required] = ACTIONS(2967), - [anon_sym_nonisolated] = ACTIONS(2967), - [anon_sym_public] = ACTIONS(2967), - [anon_sym_private] = ACTIONS(2967), - [anon_sym_internal] = ACTIONS(2967), - [anon_sym_fileprivate] = ACTIONS(2967), - [anon_sym_open] = ACTIONS(2967), - [anon_sym_mutating] = ACTIONS(2967), - [anon_sym_nonmutating] = ACTIONS(2967), - [anon_sym_static] = ACTIONS(2967), - [anon_sym_dynamic] = ACTIONS(2967), - [anon_sym_optional] = ACTIONS(2967), - [anon_sym_final] = ACTIONS(2967), - [anon_sym_inout] = ACTIONS(2967), - [anon_sym_ATescaping] = ACTIONS(2967), - [anon_sym_ATautoclosure] = ACTIONS(2967), - [anon_sym_weak] = ACTIONS(2967), - [anon_sym_unowned] = ACTIONS(2969), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2967), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2967), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2967), - [sym__conjunction_operator_custom] = ACTIONS(2967), - [sym__disjunction_operator_custom] = ACTIONS(2967), - [sym__nil_coalescing_operator_custom] = ACTIONS(2967), - [sym__eq_eq_custom] = ACTIONS(2967), - [sym__plus_then_ws] = ACTIONS(2967), - [sym__minus_then_ws] = ACTIONS(2967), - [sym_bang] = ACTIONS(2967), - [sym__as_custom] = ACTIONS(2967), - [sym__as_quest_custom] = ACTIONS(2967), - [sym__as_bang_custom] = ACTIONS(2967), - [sym__custom_operator] = ACTIONS(2967), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2359), - [sym__explicit_semi] = ACTIONS(2359), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [730] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_RBRACK] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2973), - [sym__immediate_quest] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_async] = ACTIONS(2971), - [aux_sym_custom_operator_token1] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_CARET_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2971), - [anon_sym_LT_EQ] = ACTIONS(2971), - [anon_sym_GT_EQ] = ACTIONS(2971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), - [anon_sym_DOT_DOT_LT] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_import] = ACTIONS(2971), - [anon_sym_typealias] = ACTIONS(2971), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_class] = ACTIONS(2971), - [anon_sym_enum] = ACTIONS(2971), - [anon_sym_protocol] = ACTIONS(2971), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_var] = ACTIONS(2971), - [anon_sym_func] = ACTIONS(2971), - [anon_sym_extension] = ACTIONS(2971), - [anon_sym_indirect] = ACTIONS(2971), - [anon_sym_init] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_deinit] = ACTIONS(2971), - [anon_sym_subscript] = ACTIONS(2971), - [anon_sym_prefix] = ACTIONS(2971), - [anon_sym_infix] = ACTIONS(2971), - [anon_sym_postfix] = ACTIONS(2971), - [anon_sym_precedencegroup] = ACTIONS(2971), - [anon_sym_associatedtype] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2973), - [sym_property_behavior_modifier] = ACTIONS(2971), - [anon_sym_override] = ACTIONS(2971), - [anon_sym_convenience] = ACTIONS(2971), - [anon_sym_required] = ACTIONS(2971), - [anon_sym_nonisolated] = ACTIONS(2971), - [anon_sym_public] = ACTIONS(2971), - [anon_sym_private] = ACTIONS(2971), - [anon_sym_internal] = ACTIONS(2971), - [anon_sym_fileprivate] = ACTIONS(2971), - [anon_sym_open] = ACTIONS(2971), - [anon_sym_mutating] = ACTIONS(2971), - [anon_sym_nonmutating] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(2971), - [anon_sym_dynamic] = ACTIONS(2971), - [anon_sym_optional] = ACTIONS(2971), - [anon_sym_final] = ACTIONS(2971), - [anon_sym_inout] = ACTIONS(2971), - [anon_sym_ATescaping] = ACTIONS(2971), - [anon_sym_ATautoclosure] = ACTIONS(2971), - [anon_sym_weak] = ACTIONS(2971), - [anon_sym_unowned] = ACTIONS(2973), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2971), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2971), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2971), - [sym__conjunction_operator_custom] = ACTIONS(2971), - [sym__disjunction_operator_custom] = ACTIONS(2971), - [sym__nil_coalescing_operator_custom] = ACTIONS(2971), - [sym__eq_eq_custom] = ACTIONS(2971), - [sym__plus_then_ws] = ACTIONS(2971), - [sym__minus_then_ws] = ACTIONS(2971), - [sym_bang] = ACTIONS(2971), - [sym__as_custom] = ACTIONS(2971), - [sym__as_quest_custom] = ACTIONS(2971), - [sym__as_bang_custom] = ACTIONS(2971), - [sym__custom_operator] = ACTIONS(2971), - }, - [731] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2975), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_COLON] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_RBRACK] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2977), - [sym__immediate_quest] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_async] = ACTIONS(2975), - [aux_sym_custom_operator_token1] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_CARET_LBRACE] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_case] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(2975), - [anon_sym_GT_EQ] = ACTIONS(2975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), - [anon_sym_DOT_DOT_LT] = ACTIONS(2975), - [anon_sym_is] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2975), - [anon_sym_import] = ACTIONS(2975), - [anon_sym_typealias] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2975), - [anon_sym_class] = ACTIONS(2975), - [anon_sym_enum] = ACTIONS(2975), - [anon_sym_protocol] = ACTIONS(2975), - [anon_sym_let] = ACTIONS(2975), - [anon_sym_var] = ACTIONS(2975), - [anon_sym_func] = ACTIONS(2975), - [anon_sym_extension] = ACTIONS(2975), - [anon_sym_indirect] = ACTIONS(2975), - [anon_sym_init] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_deinit] = ACTIONS(2975), - [anon_sym_subscript] = ACTIONS(2975), - [anon_sym_prefix] = ACTIONS(2975), - [anon_sym_infix] = ACTIONS(2975), - [anon_sym_postfix] = ACTIONS(2975), - [anon_sym_precedencegroup] = ACTIONS(2975), - [anon_sym_associatedtype] = ACTIONS(2975), - [anon_sym_AT] = ACTIONS(2977), - [sym_property_behavior_modifier] = ACTIONS(2975), - [anon_sym_override] = ACTIONS(2975), - [anon_sym_convenience] = ACTIONS(2975), - [anon_sym_required] = ACTIONS(2975), - [anon_sym_nonisolated] = ACTIONS(2975), - [anon_sym_public] = ACTIONS(2975), - [anon_sym_private] = ACTIONS(2975), - [anon_sym_internal] = ACTIONS(2975), - [anon_sym_fileprivate] = ACTIONS(2975), - [anon_sym_open] = ACTIONS(2975), - [anon_sym_mutating] = ACTIONS(2975), - [anon_sym_nonmutating] = ACTIONS(2975), - [anon_sym_static] = ACTIONS(2975), - [anon_sym_dynamic] = ACTIONS(2975), - [anon_sym_optional] = ACTIONS(2975), - [anon_sym_final] = ACTIONS(2975), - [anon_sym_inout] = ACTIONS(2975), - [anon_sym_ATescaping] = ACTIONS(2975), - [anon_sym_ATautoclosure] = ACTIONS(2975), - [anon_sym_weak] = ACTIONS(2975), - [anon_sym_unowned] = ACTIONS(2977), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2975), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2975), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2975), - [sym__conjunction_operator_custom] = ACTIONS(2975), - [sym__disjunction_operator_custom] = ACTIONS(2975), - [sym__nil_coalescing_operator_custom] = ACTIONS(2975), - [sym__eq_eq_custom] = ACTIONS(2975), - [sym__plus_then_ws] = ACTIONS(2975), - [sym__minus_then_ws] = ACTIONS(2975), - [sym_bang] = ACTIONS(2975), - [sym__as_custom] = ACTIONS(2975), - [sym__as_quest_custom] = ACTIONS(2975), - [sym__as_bang_custom] = ACTIONS(2975), - [sym__custom_operator] = ACTIONS(2975), - }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(2330), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2330), - [sym__explicit_semi] = ACTIONS(2330), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__implicit_semi] = ACTIONS(2321), - [sym__explicit_semi] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [734] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_COMMA] = ACTIONS(2979), - [anon_sym_COLON] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2981), - [sym__immediate_quest] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_async] = ACTIONS(2979), - [aux_sym_custom_operator_token1] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_CARET_LBRACE] = ACTIONS(2979), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_case] = ACTIONS(2979), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2979), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2979), - [anon_sym_LT_EQ] = ACTIONS(2979), - [anon_sym_GT_EQ] = ACTIONS(2979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2979), - [anon_sym_DOT_DOT_LT] = ACTIONS(2979), - [anon_sym_is] = ACTIONS(2979), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2979), - [anon_sym_import] = ACTIONS(2979), - [anon_sym_typealias] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(2979), - [anon_sym_enum] = ACTIONS(2979), - [anon_sym_protocol] = ACTIONS(2979), - [anon_sym_let] = ACTIONS(2979), - [anon_sym_var] = ACTIONS(2979), - [anon_sym_func] = ACTIONS(2979), - [anon_sym_extension] = ACTIONS(2979), - [anon_sym_indirect] = ACTIONS(2979), - [anon_sym_init] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_deinit] = ACTIONS(2979), - [anon_sym_subscript] = ACTIONS(2979), - [anon_sym_prefix] = ACTIONS(2979), - [anon_sym_infix] = ACTIONS(2979), - [anon_sym_postfix] = ACTIONS(2979), - [anon_sym_precedencegroup] = ACTIONS(2979), - [anon_sym_associatedtype] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2981), - [sym_property_behavior_modifier] = ACTIONS(2979), - [anon_sym_override] = ACTIONS(2979), - [anon_sym_convenience] = ACTIONS(2979), - [anon_sym_required] = ACTIONS(2979), - [anon_sym_nonisolated] = ACTIONS(2979), - [anon_sym_public] = ACTIONS(2979), - [anon_sym_private] = ACTIONS(2979), - [anon_sym_internal] = ACTIONS(2979), - [anon_sym_fileprivate] = ACTIONS(2979), - [anon_sym_open] = ACTIONS(2979), - [anon_sym_mutating] = ACTIONS(2979), - [anon_sym_nonmutating] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(2979), - [anon_sym_dynamic] = ACTIONS(2979), - [anon_sym_optional] = ACTIONS(2979), - [anon_sym_final] = ACTIONS(2979), - [anon_sym_inout] = ACTIONS(2979), - [anon_sym_ATescaping] = ACTIONS(2979), - [anon_sym_ATautoclosure] = ACTIONS(2979), - [anon_sym_weak] = ACTIONS(2979), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2979), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2979), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2979), - [sym__conjunction_operator_custom] = ACTIONS(2979), - [sym__disjunction_operator_custom] = ACTIONS(2979), - [sym__nil_coalescing_operator_custom] = ACTIONS(2979), - [sym__eq_eq_custom] = ACTIONS(2979), - [sym__plus_then_ws] = ACTIONS(2979), - [sym__minus_then_ws] = ACTIONS(2979), - [sym_bang] = ACTIONS(2979), - [sym__as_custom] = ACTIONS(2979), - [sym__as_quest_custom] = ACTIONS(2979), - [sym__as_bang_custom] = ACTIONS(2979), - [sym__custom_operator] = ACTIONS(2979), - }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__implicit_semi] = ACTIONS(2357), - [sym__explicit_semi] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [736] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2983), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2985), - [sym__immediate_quest] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_async] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_typealias] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_enum] = ACTIONS(2983), - [anon_sym_protocol] = ACTIONS(2983), - [anon_sym_let] = ACTIONS(2983), - [anon_sym_var] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_extension] = ACTIONS(2983), - [anon_sym_indirect] = ACTIONS(2983), - [anon_sym_init] = ACTIONS(2983), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym_deinit] = ACTIONS(2983), - [anon_sym_subscript] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_precedencegroup] = ACTIONS(2983), - [anon_sym_associatedtype] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2985), - [sym_property_behavior_modifier] = ACTIONS(2983), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2985), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym_bang] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__custom_operator] = ACTIONS(2983), - }, - [737] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_COLON] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2989), - [sym__immediate_quest] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_async] = ACTIONS(2987), - [aux_sym_custom_operator_token1] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_CARET_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_case] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), - [anon_sym_DOT_DOT_LT] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2987), - [anon_sym_import] = ACTIONS(2987), - [anon_sym_typealias] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2987), - [anon_sym_class] = ACTIONS(2987), - [anon_sym_enum] = ACTIONS(2987), - [anon_sym_protocol] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2987), - [anon_sym_var] = ACTIONS(2987), - [anon_sym_func] = ACTIONS(2987), - [anon_sym_extension] = ACTIONS(2987), - [anon_sym_indirect] = ACTIONS(2987), - [anon_sym_init] = ACTIONS(2987), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_deinit] = ACTIONS(2987), - [anon_sym_subscript] = ACTIONS(2987), - [anon_sym_prefix] = ACTIONS(2987), - [anon_sym_infix] = ACTIONS(2987), - [anon_sym_postfix] = ACTIONS(2987), - [anon_sym_precedencegroup] = ACTIONS(2987), - [anon_sym_associatedtype] = ACTIONS(2987), - [anon_sym_AT] = ACTIONS(2989), - [sym_property_behavior_modifier] = ACTIONS(2987), - [anon_sym_override] = ACTIONS(2987), - [anon_sym_convenience] = ACTIONS(2987), - [anon_sym_required] = ACTIONS(2987), - [anon_sym_nonisolated] = ACTIONS(2987), - [anon_sym_public] = ACTIONS(2987), - [anon_sym_private] = ACTIONS(2987), - [anon_sym_internal] = ACTIONS(2987), - [anon_sym_fileprivate] = ACTIONS(2987), - [anon_sym_open] = ACTIONS(2987), - [anon_sym_mutating] = ACTIONS(2987), - [anon_sym_nonmutating] = ACTIONS(2987), - [anon_sym_static] = ACTIONS(2987), - [anon_sym_dynamic] = ACTIONS(2987), - [anon_sym_optional] = ACTIONS(2987), - [anon_sym_final] = ACTIONS(2987), - [anon_sym_inout] = ACTIONS(2987), - [anon_sym_ATescaping] = ACTIONS(2987), - [anon_sym_ATautoclosure] = ACTIONS(2987), - [anon_sym_weak] = ACTIONS(2987), - [anon_sym_unowned] = ACTIONS(2989), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2987), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2987), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2987), - [sym__conjunction_operator_custom] = ACTIONS(2987), - [sym__disjunction_operator_custom] = ACTIONS(2987), - [sym__nil_coalescing_operator_custom] = ACTIONS(2987), - [sym__eq_eq_custom] = ACTIONS(2987), - [sym__plus_then_ws] = ACTIONS(2987), - [sym__minus_then_ws] = ACTIONS(2987), - [sym_bang] = ACTIONS(2987), - [sym__as_custom] = ACTIONS(2987), - [sym__as_quest_custom] = ACTIONS(2987), - [sym__as_bang_custom] = ACTIONS(2987), - [sym__custom_operator] = ACTIONS(2987), - }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(2340), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2340), - [sym__explicit_semi] = ACTIONS(2340), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [739] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2993), - [sym__immediate_quest] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_async] = ACTIONS(2991), - [aux_sym_custom_operator_token1] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_CARET_LBRACE] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_case] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2991), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2991), - [anon_sym_DOT_DOT_LT] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2991), - [anon_sym_import] = ACTIONS(2991), - [anon_sym_typealias] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2991), - [anon_sym_class] = ACTIONS(2991), - [anon_sym_enum] = ACTIONS(2991), - [anon_sym_protocol] = ACTIONS(2991), - [anon_sym_let] = ACTIONS(2991), - [anon_sym_var] = ACTIONS(2991), - [anon_sym_func] = ACTIONS(2991), - [anon_sym_extension] = ACTIONS(2991), - [anon_sym_indirect] = ACTIONS(2991), - [anon_sym_init] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_deinit] = ACTIONS(2991), - [anon_sym_subscript] = ACTIONS(2991), - [anon_sym_prefix] = ACTIONS(2991), - [anon_sym_infix] = ACTIONS(2991), - [anon_sym_postfix] = ACTIONS(2991), - [anon_sym_precedencegroup] = ACTIONS(2991), - [anon_sym_associatedtype] = ACTIONS(2991), - [anon_sym_AT] = ACTIONS(2993), - [sym_property_behavior_modifier] = ACTIONS(2991), - [anon_sym_override] = ACTIONS(2991), - [anon_sym_convenience] = ACTIONS(2991), - [anon_sym_required] = ACTIONS(2991), - [anon_sym_nonisolated] = ACTIONS(2991), - [anon_sym_public] = ACTIONS(2991), - [anon_sym_private] = ACTIONS(2991), - [anon_sym_internal] = ACTIONS(2991), - [anon_sym_fileprivate] = ACTIONS(2991), - [anon_sym_open] = ACTIONS(2991), - [anon_sym_mutating] = ACTIONS(2991), - [anon_sym_nonmutating] = ACTIONS(2991), - [anon_sym_static] = ACTIONS(2991), - [anon_sym_dynamic] = ACTIONS(2991), - [anon_sym_optional] = ACTIONS(2991), - [anon_sym_final] = ACTIONS(2991), - [anon_sym_inout] = ACTIONS(2991), - [anon_sym_ATescaping] = ACTIONS(2991), - [anon_sym_ATautoclosure] = ACTIONS(2991), - [anon_sym_weak] = ACTIONS(2991), - [anon_sym_unowned] = ACTIONS(2993), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2991), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2991), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2991), - [sym__conjunction_operator_custom] = ACTIONS(2991), - [sym__disjunction_operator_custom] = ACTIONS(2991), - [sym__nil_coalescing_operator_custom] = ACTIONS(2991), - [sym__eq_eq_custom] = ACTIONS(2991), - [sym__plus_then_ws] = ACTIONS(2991), - [sym__minus_then_ws] = ACTIONS(2991), - [sym_bang] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(2991), - [sym__as_quest_custom] = ACTIONS(2991), - [sym__as_bang_custom] = ACTIONS(2991), - [sym__custom_operator] = ACTIONS(2991), - }, - [740] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2995), - [anon_sym_RPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_COLON] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_RBRACK] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [sym__immediate_quest] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_async] = ACTIONS(2995), - [aux_sym_custom_operator_token1] = ACTIONS(2995), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_CARET_LBRACE] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_case] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2995), - [anon_sym_DOT_DOT_LT] = ACTIONS(2995), - [anon_sym_is] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2995), - [anon_sym_GT_GT] = ACTIONS(2995), - [anon_sym_import] = ACTIONS(2995), - [anon_sym_typealias] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(2995), - [anon_sym_protocol] = ACTIONS(2995), - [anon_sym_let] = ACTIONS(2995), - [anon_sym_var] = ACTIONS(2995), - [anon_sym_func] = ACTIONS(2995), - [anon_sym_extension] = ACTIONS(2995), - [anon_sym_indirect] = ACTIONS(2995), - [anon_sym_init] = ACTIONS(2995), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym_deinit] = ACTIONS(2995), - [anon_sym_subscript] = ACTIONS(2995), - [anon_sym_prefix] = ACTIONS(2995), - [anon_sym_infix] = ACTIONS(2995), - [anon_sym_postfix] = ACTIONS(2995), - [anon_sym_precedencegroup] = ACTIONS(2995), - [anon_sym_associatedtype] = ACTIONS(2995), - [anon_sym_AT] = ACTIONS(2997), - [sym_property_behavior_modifier] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2995), - [anon_sym_convenience] = ACTIONS(2995), - [anon_sym_required] = ACTIONS(2995), - [anon_sym_nonisolated] = ACTIONS(2995), - [anon_sym_public] = ACTIONS(2995), - [anon_sym_private] = ACTIONS(2995), - [anon_sym_internal] = ACTIONS(2995), - [anon_sym_fileprivate] = ACTIONS(2995), - [anon_sym_open] = ACTIONS(2995), - [anon_sym_mutating] = ACTIONS(2995), - [anon_sym_nonmutating] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_dynamic] = ACTIONS(2995), - [anon_sym_optional] = ACTIONS(2995), - [anon_sym_final] = ACTIONS(2995), - [anon_sym_inout] = ACTIONS(2995), - [anon_sym_ATescaping] = ACTIONS(2995), - [anon_sym_ATautoclosure] = ACTIONS(2995), - [anon_sym_weak] = ACTIONS(2995), - [anon_sym_unowned] = ACTIONS(2997), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2995), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2995), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2995), - [sym__conjunction_operator_custom] = ACTIONS(2995), - [sym__disjunction_operator_custom] = ACTIONS(2995), - [sym__nil_coalescing_operator_custom] = ACTIONS(2995), - [sym__eq_eq_custom] = ACTIONS(2995), - [sym__plus_then_ws] = ACTIONS(2995), - [sym__minus_then_ws] = ACTIONS(2995), - [sym_bang] = ACTIONS(2995), - [sym__as_custom] = ACTIONS(2995), - [sym__as_quest_custom] = ACTIONS(2995), - [sym__as_bang_custom] = ACTIONS(2995), - [sym__custom_operator] = ACTIONS(2995), - }, - [741] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2999), - [anon_sym_RPAREN] = ACTIONS(2999), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_COLON] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_QMARK] = ACTIONS(3001), - [sym__immediate_quest] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_async] = ACTIONS(2999), - [aux_sym_custom_operator_token1] = ACTIONS(2999), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_CARET_LBRACE] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_case] = ACTIONS(2999), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2999), - [anon_sym_LT_EQ] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2999), - [anon_sym_DOT_DOT_LT] = ACTIONS(2999), - [anon_sym_is] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(2999), - [anon_sym_PLUS_PLUS] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(2999), - [anon_sym_GT_GT] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(2999), - [anon_sym_typealias] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_enum] = ACTIONS(2999), - [anon_sym_protocol] = ACTIONS(2999), - [anon_sym_let] = ACTIONS(2999), - [anon_sym_var] = ACTIONS(2999), - [anon_sym_func] = ACTIONS(2999), - [anon_sym_extension] = ACTIONS(2999), - [anon_sym_indirect] = ACTIONS(2999), - [anon_sym_init] = ACTIONS(2999), - [anon_sym_SEMI] = ACTIONS(2999), - [anon_sym_deinit] = ACTIONS(2999), - [anon_sym_subscript] = ACTIONS(2999), - [anon_sym_prefix] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_postfix] = ACTIONS(2999), - [anon_sym_precedencegroup] = ACTIONS(2999), - [anon_sym_associatedtype] = ACTIONS(2999), - [anon_sym_AT] = ACTIONS(3001), - [sym_property_behavior_modifier] = ACTIONS(2999), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_convenience] = ACTIONS(2999), - [anon_sym_required] = ACTIONS(2999), - [anon_sym_nonisolated] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_fileprivate] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_mutating] = ACTIONS(2999), - [anon_sym_nonmutating] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_dynamic] = ACTIONS(2999), - [anon_sym_optional] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_inout] = ACTIONS(2999), - [anon_sym_ATescaping] = ACTIONS(2999), - [anon_sym_ATautoclosure] = ACTIONS(2999), - [anon_sym_weak] = ACTIONS(2999), - [anon_sym_unowned] = ACTIONS(3001), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2999), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2999), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2999), - [sym__conjunction_operator_custom] = ACTIONS(2999), - [sym__disjunction_operator_custom] = ACTIONS(2999), - [sym__nil_coalescing_operator_custom] = ACTIONS(2999), - [sym__eq_eq_custom] = ACTIONS(2999), - [sym__plus_then_ws] = ACTIONS(2999), - [sym__minus_then_ws] = ACTIONS(2999), - [sym_bang] = ACTIONS(2999), - [sym__as_custom] = ACTIONS(2999), - [sym__as_quest_custom] = ACTIONS(2999), - [sym__as_bang_custom] = ACTIONS(2999), - [sym__custom_operator] = ACTIONS(2999), - }, - [742] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3003), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3005), - [sym__immediate_quest] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_async] = ACTIONS(3003), - [aux_sym_custom_operator_token1] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_CARET_LBRACE] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_case] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ] = ACTIONS(3003), - [anon_sym_GT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_is] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_PLUS_PLUS] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3003), - [anon_sym_GT_GT] = ACTIONS(3003), - [anon_sym_import] = ACTIONS(3003), - [anon_sym_typealias] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3003), - [anon_sym_protocol] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3003), - [anon_sym_var] = ACTIONS(3003), - [anon_sym_func] = ACTIONS(3003), - [anon_sym_extension] = ACTIONS(3003), - [anon_sym_indirect] = ACTIONS(3003), - [anon_sym_init] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3003), - [anon_sym_deinit] = ACTIONS(3003), - [anon_sym_subscript] = ACTIONS(3003), - [anon_sym_prefix] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_postfix] = ACTIONS(3003), - [anon_sym_precedencegroup] = ACTIONS(3003), - [anon_sym_associatedtype] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3005), - [sym_property_behavior_modifier] = ACTIONS(3003), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_convenience] = ACTIONS(3003), - [anon_sym_required] = ACTIONS(3003), - [anon_sym_nonisolated] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_fileprivate] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_mutating] = ACTIONS(3003), - [anon_sym_nonmutating] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_dynamic] = ACTIONS(3003), - [anon_sym_optional] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_inout] = ACTIONS(3003), - [anon_sym_ATescaping] = ACTIONS(3003), - [anon_sym_ATautoclosure] = ACTIONS(3003), - [anon_sym_weak] = ACTIONS(3003), - [anon_sym_unowned] = ACTIONS(3005), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3003), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3003), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3003), - [sym__conjunction_operator_custom] = ACTIONS(3003), - [sym__disjunction_operator_custom] = ACTIONS(3003), - [sym__nil_coalescing_operator_custom] = ACTIONS(3003), - [sym__eq_eq_custom] = ACTIONS(3003), - [sym__plus_then_ws] = ACTIONS(3003), - [sym__minus_then_ws] = ACTIONS(3003), - [sym_bang] = ACTIONS(3003), - [sym__as_custom] = ACTIONS(3003), - [sym__as_quest_custom] = ACTIONS(3003), - [sym__as_bang_custom] = ACTIONS(3003), - [sym__custom_operator] = ACTIONS(3003), - }, - [743] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_COLON] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3009), - [sym__immediate_quest] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_async] = ACTIONS(3007), - [aux_sym_custom_operator_token1] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_CARET_LBRACE] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_case] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), - [anon_sym_DOT_DOT_LT] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3007), - [anon_sym_import] = ACTIONS(3007), - [anon_sym_typealias] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_class] = ACTIONS(3007), - [anon_sym_enum] = ACTIONS(3007), - [anon_sym_protocol] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3007), - [anon_sym_var] = ACTIONS(3007), - [anon_sym_func] = ACTIONS(3007), - [anon_sym_extension] = ACTIONS(3007), - [anon_sym_indirect] = ACTIONS(3007), - [anon_sym_init] = ACTIONS(3007), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_deinit] = ACTIONS(3007), - [anon_sym_subscript] = ACTIONS(3007), - [anon_sym_prefix] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_postfix] = ACTIONS(3007), - [anon_sym_precedencegroup] = ACTIONS(3007), - [anon_sym_associatedtype] = ACTIONS(3007), - [anon_sym_AT] = ACTIONS(3009), - [sym_property_behavior_modifier] = ACTIONS(3007), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_convenience] = ACTIONS(3007), - [anon_sym_required] = ACTIONS(3007), - [anon_sym_nonisolated] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_fileprivate] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_mutating] = ACTIONS(3007), - [anon_sym_nonmutating] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_dynamic] = ACTIONS(3007), - [anon_sym_optional] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_inout] = ACTIONS(3007), - [anon_sym_ATescaping] = ACTIONS(3007), - [anon_sym_ATautoclosure] = ACTIONS(3007), - [anon_sym_weak] = ACTIONS(3007), - [anon_sym_unowned] = ACTIONS(3009), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3007), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3007), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3007), - [sym__conjunction_operator_custom] = ACTIONS(3007), - [sym__disjunction_operator_custom] = ACTIONS(3007), - [sym__nil_coalescing_operator_custom] = ACTIONS(3007), - [sym__eq_eq_custom] = ACTIONS(3007), - [sym__plus_then_ws] = ACTIONS(3007), - [sym__minus_then_ws] = ACTIONS(3007), - [sym_bang] = ACTIONS(3007), - [sym__as_custom] = ACTIONS(3007), - [sym__as_quest_custom] = ACTIONS(3007), - [sym__as_bang_custom] = ACTIONS(3007), - [sym__custom_operator] = ACTIONS(3007), - }, - [744] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_COLON] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3013), - [sym__immediate_quest] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(3011), - [aux_sym_custom_operator_token1] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_CARET_LBRACE] = ACTIONS(3011), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_case] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_DOT_DOT_LT] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_import] = ACTIONS(3011), - [anon_sym_typealias] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_protocol] = ACTIONS(3011), - [anon_sym_let] = ACTIONS(3011), - [anon_sym_var] = ACTIONS(3011), - [anon_sym_func] = ACTIONS(3011), - [anon_sym_extension] = ACTIONS(3011), - [anon_sym_indirect] = ACTIONS(3011), - [anon_sym_init] = ACTIONS(3011), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_deinit] = ACTIONS(3011), - [anon_sym_subscript] = ACTIONS(3011), - [anon_sym_prefix] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_postfix] = ACTIONS(3011), - [anon_sym_precedencegroup] = ACTIONS(3011), - [anon_sym_associatedtype] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(3013), - [sym_property_behavior_modifier] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_convenience] = ACTIONS(3011), - [anon_sym_required] = ACTIONS(3011), - [anon_sym_nonisolated] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_fileprivate] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_mutating] = ACTIONS(3011), - [anon_sym_nonmutating] = ACTIONS(3011), - [anon_sym_static] = ACTIONS(3011), - [anon_sym_dynamic] = ACTIONS(3011), - [anon_sym_optional] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_inout] = ACTIONS(3011), - [anon_sym_ATescaping] = ACTIONS(3011), - [anon_sym_ATautoclosure] = ACTIONS(3011), - [anon_sym_weak] = ACTIONS(3011), - [anon_sym_unowned] = ACTIONS(3013), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3011), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3011), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3011), - [sym__conjunction_operator_custom] = ACTIONS(3011), - [sym__disjunction_operator_custom] = ACTIONS(3011), - [sym__nil_coalescing_operator_custom] = ACTIONS(3011), - [sym__eq_eq_custom] = ACTIONS(3011), - [sym__plus_then_ws] = ACTIONS(3011), - [sym__minus_then_ws] = ACTIONS(3011), - [sym_bang] = ACTIONS(3011), - [sym__as_custom] = ACTIONS(3011), - [sym__as_quest_custom] = ACTIONS(3011), - [sym__as_bang_custom] = ACTIONS(3011), - [sym__custom_operator] = ACTIONS(3011), - }, - [745] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3015), - [anon_sym_RPAREN] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3017), - [sym__immediate_quest] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_async] = ACTIONS(3015), - [aux_sym_custom_operator_token1] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_CARET_LBRACE] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_case] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), - [anon_sym_DOT_DOT_LT] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_import] = ACTIONS(3015), - [anon_sym_typealias] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_protocol] = ACTIONS(3015), - [anon_sym_let] = ACTIONS(3015), - [anon_sym_var] = ACTIONS(3015), - [anon_sym_func] = ACTIONS(3015), - [anon_sym_extension] = ACTIONS(3015), - [anon_sym_indirect] = ACTIONS(3015), - [anon_sym_init] = ACTIONS(3015), - [anon_sym_SEMI] = ACTIONS(3015), - [anon_sym_deinit] = ACTIONS(3015), - [anon_sym_subscript] = ACTIONS(3015), - [anon_sym_prefix] = ACTIONS(3015), - [anon_sym_infix] = ACTIONS(3015), - [anon_sym_postfix] = ACTIONS(3015), - [anon_sym_precedencegroup] = ACTIONS(3015), - [anon_sym_associatedtype] = ACTIONS(3015), - [anon_sym_AT] = ACTIONS(3017), - [sym_property_behavior_modifier] = ACTIONS(3015), - [anon_sym_override] = ACTIONS(3015), - [anon_sym_convenience] = ACTIONS(3015), - [anon_sym_required] = ACTIONS(3015), - [anon_sym_nonisolated] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3015), - [anon_sym_private] = ACTIONS(3015), - [anon_sym_internal] = ACTIONS(3015), - [anon_sym_fileprivate] = ACTIONS(3015), - [anon_sym_open] = ACTIONS(3015), - [anon_sym_mutating] = ACTIONS(3015), - [anon_sym_nonmutating] = ACTIONS(3015), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_dynamic] = ACTIONS(3015), - [anon_sym_optional] = ACTIONS(3015), - [anon_sym_final] = ACTIONS(3015), - [anon_sym_inout] = ACTIONS(3015), - [anon_sym_ATescaping] = ACTIONS(3015), - [anon_sym_ATautoclosure] = ACTIONS(3015), - [anon_sym_weak] = ACTIONS(3015), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3015), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3015), - [sym__conjunction_operator_custom] = ACTIONS(3015), - [sym__disjunction_operator_custom] = ACTIONS(3015), - [sym__nil_coalescing_operator_custom] = ACTIONS(3015), - [sym__eq_eq_custom] = ACTIONS(3015), - [sym__plus_then_ws] = ACTIONS(3015), - [sym__minus_then_ws] = ACTIONS(3015), - [sym_bang] = ACTIONS(3015), - [sym__as_custom] = ACTIONS(3015), - [sym__as_quest_custom] = ACTIONS(3015), - [sym__as_bang_custom] = ACTIONS(3015), - [sym__custom_operator] = ACTIONS(3015), - }, - [746] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_COLON] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_async] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_import] = ACTIONS(2689), - [anon_sym_typealias] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_enum] = ACTIONS(2689), - [anon_sym_protocol] = ACTIONS(2689), - [anon_sym_let] = ACTIONS(2689), - [anon_sym_var] = ACTIONS(2689), - [anon_sym_func] = ACTIONS(2689), - [anon_sym_extension] = ACTIONS(2689), - [anon_sym_indirect] = ACTIONS(2689), - [anon_sym_init] = ACTIONS(2689), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_deinit] = ACTIONS(2689), - [anon_sym_subscript] = ACTIONS(2689), - [anon_sym_prefix] = ACTIONS(2689), - [anon_sym_infix] = ACTIONS(2689), - [anon_sym_postfix] = ACTIONS(2689), - [anon_sym_precedencegroup] = ACTIONS(2689), - [anon_sym_associatedtype] = ACTIONS(2689), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2689), - [anon_sym_override] = ACTIONS(2689), - [anon_sym_convenience] = ACTIONS(2689), - [anon_sym_required] = ACTIONS(2689), - [anon_sym_nonisolated] = ACTIONS(2689), - [anon_sym_public] = ACTIONS(2689), - [anon_sym_private] = ACTIONS(2689), - [anon_sym_internal] = ACTIONS(2689), - [anon_sym_fileprivate] = ACTIONS(2689), - [anon_sym_open] = ACTIONS(2689), - [anon_sym_mutating] = ACTIONS(2689), - [anon_sym_nonmutating] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_dynamic] = ACTIONS(2689), - [anon_sym_optional] = ACTIONS(2689), - [anon_sym_final] = ACTIONS(2689), - [anon_sym_inout] = ACTIONS(2689), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2689), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [747] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3019), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_RBRACK] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [sym__immediate_quest] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_async] = ACTIONS(3019), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_typealias] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_protocol] = ACTIONS(3019), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_var] = ACTIONS(3019), - [anon_sym_func] = ACTIONS(3019), - [anon_sym_extension] = ACTIONS(3019), - [anon_sym_indirect] = ACTIONS(3019), - [anon_sym_init] = ACTIONS(3019), - [anon_sym_SEMI] = ACTIONS(3019), - [anon_sym_deinit] = ACTIONS(3019), - [anon_sym_subscript] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_precedencegroup] = ACTIONS(3019), - [anon_sym_associatedtype] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3021), - [sym_property_behavior_modifier] = ACTIONS(3019), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3021), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym_bang] = ACTIONS(3019), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__custom_operator] = ACTIONS(3019), - }, - [748] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3025), - [sym__immediate_quest] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_async] = ACTIONS(3023), - [aux_sym_custom_operator_token1] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_CARET_LBRACE] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), - [anon_sym_DOT_DOT_LT] = ACTIONS(3023), - [anon_sym_is] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_import] = ACTIONS(3023), - [anon_sym_typealias] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_enum] = ACTIONS(3023), - [anon_sym_protocol] = ACTIONS(3023), - [anon_sym_let] = ACTIONS(3023), - [anon_sym_var] = ACTIONS(3023), - [anon_sym_func] = ACTIONS(3023), - [anon_sym_extension] = ACTIONS(3023), - [anon_sym_indirect] = ACTIONS(3023), - [anon_sym_init] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3023), - [anon_sym_deinit] = ACTIONS(3023), - [anon_sym_subscript] = ACTIONS(3023), - [anon_sym_prefix] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_postfix] = ACTIONS(3023), - [anon_sym_precedencegroup] = ACTIONS(3023), - [anon_sym_associatedtype] = ACTIONS(3023), - [anon_sym_AT] = ACTIONS(3025), - [sym_property_behavior_modifier] = ACTIONS(3023), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_convenience] = ACTIONS(3023), - [anon_sym_required] = ACTIONS(3023), - [anon_sym_nonisolated] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_fileprivate] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_mutating] = ACTIONS(3023), - [anon_sym_nonmutating] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_dynamic] = ACTIONS(3023), - [anon_sym_optional] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_inout] = ACTIONS(3023), - [anon_sym_ATescaping] = ACTIONS(3023), - [anon_sym_ATautoclosure] = ACTIONS(3023), - [anon_sym_weak] = ACTIONS(3023), - [anon_sym_unowned] = ACTIONS(3025), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3023), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3023), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3023), - [sym__conjunction_operator_custom] = ACTIONS(3023), - [sym__disjunction_operator_custom] = ACTIONS(3023), - [sym__nil_coalescing_operator_custom] = ACTIONS(3023), - [sym__eq_eq_custom] = ACTIONS(3023), - [sym__plus_then_ws] = ACTIONS(3023), - [sym__minus_then_ws] = ACTIONS(3023), - [sym_bang] = ACTIONS(3023), - [sym__as_custom] = ACTIONS(3023), - [sym__as_quest_custom] = ACTIONS(3023), - [sym__as_bang_custom] = ACTIONS(3023), - [sym__custom_operator] = ACTIONS(3023), - }, - [749] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3027), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_COLON] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_RBRACK] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3029), - [sym__immediate_quest] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_async] = ACTIONS(3027), - [aux_sym_custom_operator_token1] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_CARET_LBRACE] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3027), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), - [anon_sym_DOT_DOT_LT] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_import] = ACTIONS(3027), - [anon_sym_typealias] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_enum] = ACTIONS(3027), - [anon_sym_protocol] = ACTIONS(3027), - [anon_sym_let] = ACTIONS(3027), - [anon_sym_var] = ACTIONS(3027), - [anon_sym_func] = ACTIONS(3027), - [anon_sym_extension] = ACTIONS(3027), - [anon_sym_indirect] = ACTIONS(3027), - [anon_sym_init] = ACTIONS(3027), - [anon_sym_SEMI] = ACTIONS(3027), - [anon_sym_deinit] = ACTIONS(3027), - [anon_sym_subscript] = ACTIONS(3027), - [anon_sym_prefix] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_postfix] = ACTIONS(3027), - [anon_sym_precedencegroup] = ACTIONS(3027), - [anon_sym_associatedtype] = ACTIONS(3027), - [anon_sym_AT] = ACTIONS(3029), - [sym_property_behavior_modifier] = ACTIONS(3027), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_convenience] = ACTIONS(3027), - [anon_sym_required] = ACTIONS(3027), - [anon_sym_nonisolated] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_fileprivate] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_mutating] = ACTIONS(3027), - [anon_sym_nonmutating] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_dynamic] = ACTIONS(3027), - [anon_sym_optional] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_inout] = ACTIONS(3027), - [anon_sym_ATescaping] = ACTIONS(3027), - [anon_sym_ATautoclosure] = ACTIONS(3027), - [anon_sym_weak] = ACTIONS(3027), - [anon_sym_unowned] = ACTIONS(3029), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3027), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3027), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3027), - [sym__conjunction_operator_custom] = ACTIONS(3027), - [sym__disjunction_operator_custom] = ACTIONS(3027), - [sym__nil_coalescing_operator_custom] = ACTIONS(3027), - [sym__eq_eq_custom] = ACTIONS(3027), - [sym__plus_then_ws] = ACTIONS(3027), - [sym__minus_then_ws] = ACTIONS(3027), - [sym_bang] = ACTIONS(3027), - [sym__as_custom] = ACTIONS(3027), - [sym__as_quest_custom] = ACTIONS(3027), - [sym__as_bang_custom] = ACTIONS(3027), - [sym__custom_operator] = ACTIONS(3027), - }, - [750] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3031), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3033), - [sym__immediate_quest] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_async] = ACTIONS(3031), - [aux_sym_custom_operator_token1] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_CARET_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), - [anon_sym_DOT_DOT_LT] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(3031), - [anon_sym_typealias] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_enum] = ACTIONS(3031), - [anon_sym_protocol] = ACTIONS(3031), - [anon_sym_let] = ACTIONS(3031), - [anon_sym_var] = ACTIONS(3031), - [anon_sym_func] = ACTIONS(3031), - [anon_sym_extension] = ACTIONS(3031), - [anon_sym_indirect] = ACTIONS(3031), - [anon_sym_init] = ACTIONS(3031), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_deinit] = ACTIONS(3031), - [anon_sym_subscript] = ACTIONS(3031), - [anon_sym_prefix] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_postfix] = ACTIONS(3031), - [anon_sym_precedencegroup] = ACTIONS(3031), - [anon_sym_associatedtype] = ACTIONS(3031), - [anon_sym_AT] = ACTIONS(3033), - [sym_property_behavior_modifier] = ACTIONS(3031), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_convenience] = ACTIONS(3031), - [anon_sym_required] = ACTIONS(3031), - [anon_sym_nonisolated] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_fileprivate] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_mutating] = ACTIONS(3031), - [anon_sym_nonmutating] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_dynamic] = ACTIONS(3031), - [anon_sym_optional] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_inout] = ACTIONS(3031), - [anon_sym_ATescaping] = ACTIONS(3031), - [anon_sym_ATautoclosure] = ACTIONS(3031), - [anon_sym_weak] = ACTIONS(3031), - [anon_sym_unowned] = ACTIONS(3033), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3031), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3031), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3031), - [sym__conjunction_operator_custom] = ACTIONS(3031), - [sym__disjunction_operator_custom] = ACTIONS(3031), - [sym__nil_coalescing_operator_custom] = ACTIONS(3031), - [sym__eq_eq_custom] = ACTIONS(3031), - [sym__plus_then_ws] = ACTIONS(3031), - [sym__minus_then_ws] = ACTIONS(3031), - [sym_bang] = ACTIONS(3031), - [sym__as_custom] = ACTIONS(3031), - [sym__as_quest_custom] = ACTIONS(3031), - [sym__as_bang_custom] = ACTIONS(3031), - [sym__custom_operator] = ACTIONS(3031), - }, - [751] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3035), - [anon_sym_RPAREN] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_COLON] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3037), - [sym__immediate_quest] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_async] = ACTIONS(3035), - [aux_sym_custom_operator_token1] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_CARET_LBRACE] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), - [anon_sym_DOT_DOT_LT] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_import] = ACTIONS(3035), - [anon_sym_typealias] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_enum] = ACTIONS(3035), - [anon_sym_protocol] = ACTIONS(3035), - [anon_sym_let] = ACTIONS(3035), - [anon_sym_var] = ACTIONS(3035), - [anon_sym_func] = ACTIONS(3035), - [anon_sym_extension] = ACTIONS(3035), - [anon_sym_indirect] = ACTIONS(3035), - [anon_sym_init] = ACTIONS(3035), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_deinit] = ACTIONS(3035), - [anon_sym_subscript] = ACTIONS(3035), - [anon_sym_prefix] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_postfix] = ACTIONS(3035), - [anon_sym_precedencegroup] = ACTIONS(3035), - [anon_sym_associatedtype] = ACTIONS(3035), - [anon_sym_AT] = ACTIONS(3037), - [sym_property_behavior_modifier] = ACTIONS(3035), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_convenience] = ACTIONS(3035), - [anon_sym_required] = ACTIONS(3035), - [anon_sym_nonisolated] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_fileprivate] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_mutating] = ACTIONS(3035), - [anon_sym_nonmutating] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_dynamic] = ACTIONS(3035), - [anon_sym_optional] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_inout] = ACTIONS(3035), - [anon_sym_ATescaping] = ACTIONS(3035), - [anon_sym_ATautoclosure] = ACTIONS(3035), - [anon_sym_weak] = ACTIONS(3035), - [anon_sym_unowned] = ACTIONS(3037), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3035), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3035), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3035), - [sym__conjunction_operator_custom] = ACTIONS(3035), - [sym__disjunction_operator_custom] = ACTIONS(3035), - [sym__nil_coalescing_operator_custom] = ACTIONS(3035), - [sym__eq_eq_custom] = ACTIONS(3035), - [sym__plus_then_ws] = ACTIONS(3035), - [sym__minus_then_ws] = ACTIONS(3035), - [sym_bang] = ACTIONS(3035), - [sym__as_custom] = ACTIONS(3035), - [sym__as_quest_custom] = ACTIONS(3035), - [sym__as_bang_custom] = ACTIONS(3035), - [sym__custom_operator] = ACTIONS(3035), - }, - [752] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3039), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_COLON] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [sym__immediate_quest] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_async] = ACTIONS(3039), - [aux_sym_custom_operator_token1] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_CARET_LBRACE] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_case] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_import] = ACTIONS(3039), - [anon_sym_typealias] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_class] = ACTIONS(3039), - [anon_sym_enum] = ACTIONS(3039), - [anon_sym_protocol] = ACTIONS(3039), - [anon_sym_let] = ACTIONS(3039), - [anon_sym_var] = ACTIONS(3039), - [anon_sym_func] = ACTIONS(3039), - [anon_sym_extension] = ACTIONS(3039), - [anon_sym_indirect] = ACTIONS(3039), - [anon_sym_init] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym_deinit] = ACTIONS(3039), - [anon_sym_subscript] = ACTIONS(3039), - [anon_sym_prefix] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_postfix] = ACTIONS(3039), - [anon_sym_precedencegroup] = ACTIONS(3039), - [anon_sym_associatedtype] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [sym_property_behavior_modifier] = ACTIONS(3039), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_convenience] = ACTIONS(3039), - [anon_sym_required] = ACTIONS(3039), - [anon_sym_nonisolated] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_fileprivate] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_mutating] = ACTIONS(3039), - [anon_sym_nonmutating] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3039), - [anon_sym_dynamic] = ACTIONS(3039), - [anon_sym_optional] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_inout] = ACTIONS(3039), - [anon_sym_ATescaping] = ACTIONS(3039), - [anon_sym_ATautoclosure] = ACTIONS(3039), - [anon_sym_weak] = ACTIONS(3039), - [anon_sym_unowned] = ACTIONS(3041), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3039), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3039), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3039), - [sym__conjunction_operator_custom] = ACTIONS(3039), - [sym__disjunction_operator_custom] = ACTIONS(3039), - [sym__nil_coalescing_operator_custom] = ACTIONS(3039), - [sym__eq_eq_custom] = ACTIONS(3039), - [sym__plus_then_ws] = ACTIONS(3039), - [sym__minus_then_ws] = ACTIONS(3039), - [sym_bang] = ACTIONS(3039), - [sym__as_custom] = ACTIONS(3039), - [sym__as_quest_custom] = ACTIONS(3039), - [sym__as_bang_custom] = ACTIONS(3039), - [sym__custom_operator] = ACTIONS(3039), - }, - [753] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3043), - [anon_sym_RPAREN] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_RBRACK] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3045), - [sym__immediate_quest] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_async] = ACTIONS(3043), - [aux_sym_custom_operator_token1] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_CARET_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_case] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3043), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3043), - [anon_sym_DOT_DOT_LT] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_import] = ACTIONS(3043), - [anon_sym_typealias] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3043), - [anon_sym_class] = ACTIONS(3043), - [anon_sym_enum] = ACTIONS(3043), - [anon_sym_protocol] = ACTIONS(3043), - [anon_sym_let] = ACTIONS(3043), - [anon_sym_var] = ACTIONS(3043), - [anon_sym_func] = ACTIONS(3043), - [anon_sym_extension] = ACTIONS(3043), - [anon_sym_indirect] = ACTIONS(3043), - [anon_sym_init] = ACTIONS(3043), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_deinit] = ACTIONS(3043), - [anon_sym_subscript] = ACTIONS(3043), - [anon_sym_prefix] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_postfix] = ACTIONS(3043), - [anon_sym_precedencegroup] = ACTIONS(3043), - [anon_sym_associatedtype] = ACTIONS(3043), - [anon_sym_AT] = ACTIONS(3045), - [sym_property_behavior_modifier] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_convenience] = ACTIONS(3043), - [anon_sym_required] = ACTIONS(3043), - [anon_sym_nonisolated] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_fileprivate] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_mutating] = ACTIONS(3043), - [anon_sym_nonmutating] = ACTIONS(3043), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_dynamic] = ACTIONS(3043), - [anon_sym_optional] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_inout] = ACTIONS(3043), - [anon_sym_ATescaping] = ACTIONS(3043), - [anon_sym_ATautoclosure] = ACTIONS(3043), - [anon_sym_weak] = ACTIONS(3043), - [anon_sym_unowned] = ACTIONS(3045), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3043), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3043), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3043), - [sym__conjunction_operator_custom] = ACTIONS(3043), - [sym__disjunction_operator_custom] = ACTIONS(3043), - [sym__nil_coalescing_operator_custom] = ACTIONS(3043), - [sym__eq_eq_custom] = ACTIONS(3043), - [sym__plus_then_ws] = ACTIONS(3043), - [sym__minus_then_ws] = ACTIONS(3043), - [sym_bang] = ACTIONS(3043), - [sym__as_custom] = ACTIONS(3043), - [sym__as_quest_custom] = ACTIONS(3043), - [sym__as_bang_custom] = ACTIONS(3043), - [sym__custom_operator] = ACTIONS(3043), - }, - [754] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3047), - [anon_sym_RPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3050), - [sym__immediate_quest] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_async] = ACTIONS(3047), - [aux_sym_custom_operator_token1] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_CARET_LBRACE] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_case] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3047), - [anon_sym_DOT_DOT_LT] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_import] = ACTIONS(3047), - [anon_sym_typealias] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3047), - [anon_sym_class] = ACTIONS(3047), - [anon_sym_enum] = ACTIONS(3047), - [anon_sym_protocol] = ACTIONS(3047), - [anon_sym_let] = ACTIONS(3047), - [anon_sym_var] = ACTIONS(3047), - [anon_sym_func] = ACTIONS(3047), - [anon_sym_extension] = ACTIONS(3047), - [anon_sym_indirect] = ACTIONS(3047), - [anon_sym_init] = ACTIONS(3047), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym_deinit] = ACTIONS(3047), - [anon_sym_subscript] = ACTIONS(3047), - [anon_sym_prefix] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_postfix] = ACTIONS(3047), - [anon_sym_precedencegroup] = ACTIONS(3047), - [anon_sym_associatedtype] = ACTIONS(3047), - [anon_sym_AT] = ACTIONS(3050), - [sym_property_behavior_modifier] = ACTIONS(3047), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_convenience] = ACTIONS(3047), - [anon_sym_required] = ACTIONS(3047), - [anon_sym_nonisolated] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_fileprivate] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_mutating] = ACTIONS(3047), - [anon_sym_nonmutating] = ACTIONS(3047), - [anon_sym_static] = ACTIONS(3047), - [anon_sym_dynamic] = ACTIONS(3047), - [anon_sym_optional] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_inout] = ACTIONS(3047), - [anon_sym_ATescaping] = ACTIONS(3047), - [anon_sym_ATautoclosure] = ACTIONS(3047), - [anon_sym_weak] = ACTIONS(3047), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3047), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3047), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3047), - [sym__conjunction_operator_custom] = ACTIONS(3047), - [sym__disjunction_operator_custom] = ACTIONS(3047), - [sym__nil_coalescing_operator_custom] = ACTIONS(3047), - [sym__eq_eq_custom] = ACTIONS(3047), - [sym__plus_then_ws] = ACTIONS(3047), - [sym__minus_then_ws] = ACTIONS(3047), - [sym_bang] = ACTIONS(3047), - [sym__as_custom] = ACTIONS(3047), - [sym__as_quest_custom] = ACTIONS(3047), - [sym__as_bang_custom] = ACTIONS(3047), - [sym__custom_operator] = ACTIONS(3047), - }, - [755] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2449), - [sym__immediate_quest] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [aux_sym_custom_operator_token1] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_CARET_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2447), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2447), - [anon_sym_DOT_DOT_LT] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [anon_sym_import] = ACTIONS(2447), - [anon_sym_typealias] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_protocol] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_var] = ACTIONS(2447), - [anon_sym_func] = ACTIONS(2447), - [anon_sym_extension] = ACTIONS(2447), - [anon_sym_indirect] = ACTIONS(2447), - [anon_sym_init] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_deinit] = ACTIONS(2447), - [anon_sym_subscript] = ACTIONS(2447), - [anon_sym_prefix] = ACTIONS(2447), - [anon_sym_infix] = ACTIONS(2447), - [anon_sym_postfix] = ACTIONS(2447), - [anon_sym_precedencegroup] = ACTIONS(2447), - [anon_sym_associatedtype] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2449), - [sym_property_behavior_modifier] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_convenience] = ACTIONS(2447), - [anon_sym_required] = ACTIONS(2447), - [anon_sym_nonisolated] = ACTIONS(2447), - [anon_sym_public] = ACTIONS(2447), - [anon_sym_private] = ACTIONS(2447), - [anon_sym_internal] = ACTIONS(2447), - [anon_sym_fileprivate] = ACTIONS(2447), - [anon_sym_open] = ACTIONS(2447), - [anon_sym_mutating] = ACTIONS(2447), - [anon_sym_nonmutating] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_dynamic] = ACTIONS(2447), - [anon_sym_optional] = ACTIONS(2447), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_inout] = ACTIONS(2447), - [anon_sym_ATescaping] = ACTIONS(2447), - [anon_sym_ATautoclosure] = ACTIONS(2447), - [anon_sym_weak] = ACTIONS(2447), - [anon_sym_unowned] = ACTIONS(2449), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2447), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2447), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2447), - [sym__conjunction_operator_custom] = ACTIONS(2447), - [sym__disjunction_operator_custom] = ACTIONS(2447), - [sym__nil_coalescing_operator_custom] = ACTIONS(2447), - [sym__eq_eq_custom] = ACTIONS(2447), - [sym__plus_then_ws] = ACTIONS(2447), - [sym__minus_then_ws] = ACTIONS(2447), - [sym_bang] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2447), - [sym__as_quest_custom] = ACTIONS(2447), - [sym__as_bang_custom] = ACTIONS(2447), - [sym__custom_operator] = ACTIONS(2447), - }, - [756] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3053), - [anon_sym_RPAREN] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_COLON] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3056), - [sym__immediate_quest] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_async] = ACTIONS(3053), - [aux_sym_custom_operator_token1] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_CARET_LBRACE] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3053), - [anon_sym_DOT_DOT_LT] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_import] = ACTIONS(3053), - [anon_sym_typealias] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_protocol] = ACTIONS(3053), - [anon_sym_let] = ACTIONS(3053), - [anon_sym_var] = ACTIONS(3053), - [anon_sym_func] = ACTIONS(3053), - [anon_sym_extension] = ACTIONS(3053), - [anon_sym_indirect] = ACTIONS(3053), - [anon_sym_init] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_deinit] = ACTIONS(3053), - [anon_sym_subscript] = ACTIONS(3053), - [anon_sym_prefix] = ACTIONS(3053), - [anon_sym_infix] = ACTIONS(3053), - [anon_sym_postfix] = ACTIONS(3053), - [anon_sym_precedencegroup] = ACTIONS(3053), - [anon_sym_associatedtype] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3056), - [sym_property_behavior_modifier] = ACTIONS(3053), - [anon_sym_override] = ACTIONS(3053), - [anon_sym_convenience] = ACTIONS(3053), - [anon_sym_required] = ACTIONS(3053), - [anon_sym_nonisolated] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_internal] = ACTIONS(3053), - [anon_sym_fileprivate] = ACTIONS(3053), - [anon_sym_open] = ACTIONS(3053), - [anon_sym_mutating] = ACTIONS(3053), - [anon_sym_nonmutating] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_dynamic] = ACTIONS(3053), - [anon_sym_optional] = ACTIONS(3053), - [anon_sym_final] = ACTIONS(3053), - [anon_sym_inout] = ACTIONS(3053), - [anon_sym_ATescaping] = ACTIONS(3053), - [anon_sym_ATautoclosure] = ACTIONS(3053), - [anon_sym_weak] = ACTIONS(3053), - [anon_sym_unowned] = ACTIONS(3056), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3053), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3053), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3053), - [sym__conjunction_operator_custom] = ACTIONS(3053), - [sym__disjunction_operator_custom] = ACTIONS(3053), - [sym__nil_coalescing_operator_custom] = ACTIONS(3053), - [sym__eq_eq_custom] = ACTIONS(3053), - [sym__plus_then_ws] = ACTIONS(3053), - [sym__minus_then_ws] = ACTIONS(3053), - [sym_bang] = ACTIONS(3053), - [sym__as_custom] = ACTIONS(3053), - [sym__as_quest_custom] = ACTIONS(3053), - [sym__as_bang_custom] = ACTIONS(3053), - [sym__custom_operator] = ACTIONS(3053), - }, - [757] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_COLON] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_RBRACK] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [sym__immediate_quest] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_async] = ACTIONS(3059), - [aux_sym_custom_operator_token1] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_CARET_LBRACE] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_import] = ACTIONS(3059), - [anon_sym_typealias] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_protocol] = ACTIONS(3059), - [anon_sym_let] = ACTIONS(3059), - [anon_sym_var] = ACTIONS(3059), - [anon_sym_func] = ACTIONS(3059), - [anon_sym_extension] = ACTIONS(3059), - [anon_sym_indirect] = ACTIONS(3059), - [anon_sym_init] = ACTIONS(3059), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym_deinit] = ACTIONS(3059), - [anon_sym_subscript] = ACTIONS(3059), - [anon_sym_prefix] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_postfix] = ACTIONS(3059), - [anon_sym_precedencegroup] = ACTIONS(3059), - [anon_sym_associatedtype] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3061), - [sym_property_behavior_modifier] = ACTIONS(3059), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_convenience] = ACTIONS(3059), - [anon_sym_required] = ACTIONS(3059), - [anon_sym_nonisolated] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_fileprivate] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_mutating] = ACTIONS(3059), - [anon_sym_nonmutating] = ACTIONS(3059), - [anon_sym_static] = ACTIONS(3059), - [anon_sym_dynamic] = ACTIONS(3059), - [anon_sym_optional] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_inout] = ACTIONS(3059), - [anon_sym_ATescaping] = ACTIONS(3059), - [anon_sym_ATautoclosure] = ACTIONS(3059), - [anon_sym_weak] = ACTIONS(3059), - [anon_sym_unowned] = ACTIONS(3061), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3059), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3059), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3059), - [sym__conjunction_operator_custom] = ACTIONS(3059), - [sym__disjunction_operator_custom] = ACTIONS(3059), - [sym__nil_coalescing_operator_custom] = ACTIONS(3059), - [sym__eq_eq_custom] = ACTIONS(3059), - [sym__plus_then_ws] = ACTIONS(3059), - [sym__minus_then_ws] = ACTIONS(3059), - [sym_bang] = ACTIONS(3059), - [sym__as_custom] = ACTIONS(3059), - [sym__as_quest_custom] = ACTIONS(3059), - [sym__as_bang_custom] = ACTIONS(3059), - [sym__custom_operator] = ACTIONS(3059), - }, - [758] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3063), - [anon_sym_RPAREN] = ACTIONS(3063), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_COLON] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_RBRACK] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3065), - [sym__immediate_quest] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_async] = ACTIONS(3063), - [aux_sym_custom_operator_token1] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_CARET_LBRACE] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3063), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3063), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT_EQ] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3063), - [anon_sym_DOT_DOT_LT] = ACTIONS(3063), - [anon_sym_is] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3063), - [anon_sym_import] = ACTIONS(3063), - [anon_sym_typealias] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_protocol] = ACTIONS(3063), - [anon_sym_let] = ACTIONS(3063), - [anon_sym_var] = ACTIONS(3063), - [anon_sym_func] = ACTIONS(3063), - [anon_sym_extension] = ACTIONS(3063), - [anon_sym_indirect] = ACTIONS(3063), - [anon_sym_init] = ACTIONS(3063), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_deinit] = ACTIONS(3063), - [anon_sym_subscript] = ACTIONS(3063), - [anon_sym_prefix] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_postfix] = ACTIONS(3063), - [anon_sym_precedencegroup] = ACTIONS(3063), - [anon_sym_associatedtype] = ACTIONS(3063), - [anon_sym_AT] = ACTIONS(3065), - [sym_property_behavior_modifier] = ACTIONS(3063), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_convenience] = ACTIONS(3063), - [anon_sym_required] = ACTIONS(3063), - [anon_sym_nonisolated] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_fileprivate] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_mutating] = ACTIONS(3063), - [anon_sym_nonmutating] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_dynamic] = ACTIONS(3063), - [anon_sym_optional] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_inout] = ACTIONS(3063), - [anon_sym_ATescaping] = ACTIONS(3063), - [anon_sym_ATautoclosure] = ACTIONS(3063), - [anon_sym_weak] = ACTIONS(3063), - [anon_sym_unowned] = ACTIONS(3065), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3063), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3063), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3063), - [sym__conjunction_operator_custom] = ACTIONS(3063), - [sym__disjunction_operator_custom] = ACTIONS(3063), - [sym__nil_coalescing_operator_custom] = ACTIONS(3063), - [sym__eq_eq_custom] = ACTIONS(3063), - [sym__plus_then_ws] = ACTIONS(3063), - [sym__minus_then_ws] = ACTIONS(3063), - [sym_bang] = ACTIONS(3063), - [sym__as_custom] = ACTIONS(3063), - [sym__as_quest_custom] = ACTIONS(3063), - [sym__as_bang_custom] = ACTIONS(3063), - [sym__custom_operator] = ACTIONS(3063), - }, - [759] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_COLON] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_RBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [sym__immediate_quest] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_async] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_import] = ACTIONS(3067), - [anon_sym_typealias] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_enum] = ACTIONS(3067), - [anon_sym_protocol] = ACTIONS(3067), - [anon_sym_let] = ACTIONS(3067), - [anon_sym_var] = ACTIONS(3067), - [anon_sym_func] = ACTIONS(3067), - [anon_sym_extension] = ACTIONS(3067), - [anon_sym_indirect] = ACTIONS(3067), - [anon_sym_init] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_deinit] = ACTIONS(3067), - [anon_sym_subscript] = ACTIONS(3067), - [anon_sym_prefix] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_postfix] = ACTIONS(3067), - [anon_sym_precedencegroup] = ACTIONS(3067), - [anon_sym_associatedtype] = ACTIONS(3067), - [anon_sym_AT] = ACTIONS(3069), - [sym_property_behavior_modifier] = ACTIONS(3067), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_convenience] = ACTIONS(3067), - [anon_sym_required] = ACTIONS(3067), - [anon_sym_nonisolated] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_fileprivate] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_mutating] = ACTIONS(3067), - [anon_sym_nonmutating] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_dynamic] = ACTIONS(3067), - [anon_sym_optional] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_inout] = ACTIONS(3067), - [anon_sym_ATescaping] = ACTIONS(3067), - [anon_sym_ATautoclosure] = ACTIONS(3067), - [anon_sym_weak] = ACTIONS(3067), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3067), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym_bang] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [760] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_COLON] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_QMARK] = ACTIONS(3073), - [sym__immediate_quest] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3071), - [anon_sym_async] = ACTIONS(3071), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_import] = ACTIONS(3071), - [anon_sym_typealias] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_enum] = ACTIONS(3071), - [anon_sym_protocol] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3071), - [anon_sym_var] = ACTIONS(3071), - [anon_sym_func] = ACTIONS(3071), - [anon_sym_extension] = ACTIONS(3071), - [anon_sym_indirect] = ACTIONS(3071), - [anon_sym_init] = ACTIONS(3071), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_deinit] = ACTIONS(3071), - [anon_sym_subscript] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_precedencegroup] = ACTIONS(3071), - [anon_sym_associatedtype] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3073), - [sym_property_behavior_modifier] = ACTIONS(3071), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3073), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym_bang] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__custom_operator] = ACTIONS(3071), - }, - [761] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3075), - [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_COLON] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_QMARK] = ACTIONS(3077), - [sym__immediate_quest] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_async] = ACTIONS(3075), - [aux_sym_custom_operator_token1] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_CARET_LBRACE] = ACTIONS(3075), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3075), - [anon_sym_LT_EQ] = ACTIONS(3075), - [anon_sym_GT_EQ] = ACTIONS(3075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), - [anon_sym_DOT_DOT_LT] = ACTIONS(3075), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3075), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3075), - [anon_sym_GT_GT] = ACTIONS(3075), - [anon_sym_import] = ACTIONS(3075), - [anon_sym_typealias] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_enum] = ACTIONS(3075), - [anon_sym_protocol] = ACTIONS(3075), - [anon_sym_let] = ACTIONS(3075), - [anon_sym_var] = ACTIONS(3075), - [anon_sym_func] = ACTIONS(3075), - [anon_sym_extension] = ACTIONS(3075), - [anon_sym_indirect] = ACTIONS(3075), - [anon_sym_init] = ACTIONS(3075), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym_deinit] = ACTIONS(3075), - [anon_sym_subscript] = ACTIONS(3075), - [anon_sym_prefix] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_postfix] = ACTIONS(3075), - [anon_sym_precedencegroup] = ACTIONS(3075), - [anon_sym_associatedtype] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(3077), - [sym_property_behavior_modifier] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_convenience] = ACTIONS(3075), - [anon_sym_required] = ACTIONS(3075), - [anon_sym_nonisolated] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_fileprivate] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_mutating] = ACTIONS(3075), - [anon_sym_nonmutating] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_dynamic] = ACTIONS(3075), - [anon_sym_optional] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_inout] = ACTIONS(3075), - [anon_sym_ATescaping] = ACTIONS(3075), - [anon_sym_ATautoclosure] = ACTIONS(3075), - [anon_sym_weak] = ACTIONS(3075), - [anon_sym_unowned] = ACTIONS(3077), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3075), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3075), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3075), - [sym__conjunction_operator_custom] = ACTIONS(3075), - [sym__disjunction_operator_custom] = ACTIONS(3075), - [sym__nil_coalescing_operator_custom] = ACTIONS(3075), - [sym__eq_eq_custom] = ACTIONS(3075), - [sym__plus_then_ws] = ACTIONS(3075), - [sym__minus_then_ws] = ACTIONS(3075), - [sym_bang] = ACTIONS(3075), - [sym__as_custom] = ACTIONS(3075), - [sym__as_quest_custom] = ACTIONS(3075), - [sym__as_bang_custom] = ACTIONS(3075), - [sym__custom_operator] = ACTIONS(3075), - }, - [762] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3081), - [sym__immediate_quest] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_async] = ACTIONS(3079), - [aux_sym_custom_operator_token1] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_CARET_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_case] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT_EQ] = ACTIONS(3079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3079), - [anon_sym_DOT_DOT_LT] = ACTIONS(3079), - [anon_sym_is] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3079), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_import] = ACTIONS(3079), - [anon_sym_typealias] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_enum] = ACTIONS(3079), - [anon_sym_protocol] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3079), - [anon_sym_var] = ACTIONS(3079), - [anon_sym_func] = ACTIONS(3079), - [anon_sym_extension] = ACTIONS(3079), - [anon_sym_indirect] = ACTIONS(3079), - [anon_sym_init] = ACTIONS(3079), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym_deinit] = ACTIONS(3079), - [anon_sym_subscript] = ACTIONS(3079), - [anon_sym_prefix] = ACTIONS(3079), - [anon_sym_infix] = ACTIONS(3079), - [anon_sym_postfix] = ACTIONS(3079), - [anon_sym_precedencegroup] = ACTIONS(3079), - [anon_sym_associatedtype] = ACTIONS(3079), - [anon_sym_AT] = ACTIONS(3081), - [sym_property_behavior_modifier] = ACTIONS(3079), - [anon_sym_override] = ACTIONS(3079), - [anon_sym_convenience] = ACTIONS(3079), - [anon_sym_required] = ACTIONS(3079), - [anon_sym_nonisolated] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_internal] = ACTIONS(3079), - [anon_sym_fileprivate] = ACTIONS(3079), - [anon_sym_open] = ACTIONS(3079), - [anon_sym_mutating] = ACTIONS(3079), - [anon_sym_nonmutating] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_dynamic] = ACTIONS(3079), - [anon_sym_optional] = ACTIONS(3079), - [anon_sym_final] = ACTIONS(3079), - [anon_sym_inout] = ACTIONS(3079), - [anon_sym_ATescaping] = ACTIONS(3079), - [anon_sym_ATautoclosure] = ACTIONS(3079), - [anon_sym_weak] = ACTIONS(3079), - [anon_sym_unowned] = ACTIONS(3081), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3079), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3079), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3079), - [sym__conjunction_operator_custom] = ACTIONS(3079), - [sym__disjunction_operator_custom] = ACTIONS(3079), - [sym__nil_coalescing_operator_custom] = ACTIONS(3079), - [sym__eq_eq_custom] = ACTIONS(3079), - [sym__plus_then_ws] = ACTIONS(3079), - [sym__minus_then_ws] = ACTIONS(3079), - [sym_bang] = ACTIONS(3079), - [sym__as_custom] = ACTIONS(3079), - [sym__as_quest_custom] = ACTIONS(3079), - [sym__as_bang_custom] = ACTIONS(3079), - [sym__custom_operator] = ACTIONS(3079), - }, - [763] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3085), - [sym__immediate_quest] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_async] = ACTIONS(3083), - [aux_sym_custom_operator_token1] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_CARET_LBRACE] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), - [anon_sym_DOT_DOT_LT] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(3083), - [anon_sym_typealias] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_enum] = ACTIONS(3083), - [anon_sym_protocol] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_var] = ACTIONS(3083), - [anon_sym_func] = ACTIONS(3083), - [anon_sym_extension] = ACTIONS(3083), - [anon_sym_indirect] = ACTIONS(3083), - [anon_sym_init] = ACTIONS(3083), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_deinit] = ACTIONS(3083), - [anon_sym_subscript] = ACTIONS(3083), - [anon_sym_prefix] = ACTIONS(3083), - [anon_sym_infix] = ACTIONS(3083), - [anon_sym_postfix] = ACTIONS(3083), - [anon_sym_precedencegroup] = ACTIONS(3083), - [anon_sym_associatedtype] = ACTIONS(3083), - [anon_sym_AT] = ACTIONS(3085), - [sym_property_behavior_modifier] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3083), - [anon_sym_convenience] = ACTIONS(3083), - [anon_sym_required] = ACTIONS(3083), - [anon_sym_nonisolated] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_internal] = ACTIONS(3083), - [anon_sym_fileprivate] = ACTIONS(3083), - [anon_sym_open] = ACTIONS(3083), - [anon_sym_mutating] = ACTIONS(3083), - [anon_sym_nonmutating] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_dynamic] = ACTIONS(3083), - [anon_sym_optional] = ACTIONS(3083), - [anon_sym_final] = ACTIONS(3083), - [anon_sym_inout] = ACTIONS(3083), - [anon_sym_ATescaping] = ACTIONS(3083), - [anon_sym_ATautoclosure] = ACTIONS(3083), - [anon_sym_weak] = ACTIONS(3083), - [anon_sym_unowned] = ACTIONS(3085), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3083), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3083), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3083), - [sym__conjunction_operator_custom] = ACTIONS(3083), - [sym__disjunction_operator_custom] = ACTIONS(3083), - [sym__nil_coalescing_operator_custom] = ACTIONS(3083), - [sym__eq_eq_custom] = ACTIONS(3083), - [sym__plus_then_ws] = ACTIONS(3083), - [sym__minus_then_ws] = ACTIONS(3083), - [sym_bang] = ACTIONS(3083), - [sym__as_custom] = ACTIONS(3083), - [sym__as_quest_custom] = ACTIONS(3083), - [sym__as_bang_custom] = ACTIONS(3083), - [sym__custom_operator] = ACTIONS(3083), - }, - [764] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2693), - [anon_sym_RPAREN] = ACTIONS(2693), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_COLON] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_RBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_typealias] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), - [anon_sym_protocol] = ACTIONS(2693), - [anon_sym_let] = ACTIONS(2693), - [anon_sym_var] = ACTIONS(2693), - [anon_sym_func] = ACTIONS(2693), - [anon_sym_extension] = ACTIONS(2693), - [anon_sym_indirect] = ACTIONS(2693), - [anon_sym_init] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_deinit] = ACTIONS(2693), - [anon_sym_subscript] = ACTIONS(2693), - [anon_sym_prefix] = ACTIONS(2693), - [anon_sym_infix] = ACTIONS(2693), - [anon_sym_postfix] = ACTIONS(2693), - [anon_sym_precedencegroup] = ACTIONS(2693), - [anon_sym_associatedtype] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_convenience] = ACTIONS(2693), - [anon_sym_required] = ACTIONS(2693), - [anon_sym_nonisolated] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_internal] = ACTIONS(2693), - [anon_sym_fileprivate] = ACTIONS(2693), - [anon_sym_open] = ACTIONS(2693), - [anon_sym_mutating] = ACTIONS(2693), - [anon_sym_nonmutating] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_dynamic] = ACTIONS(2693), - [anon_sym_optional] = ACTIONS(2693), - [anon_sym_final] = ACTIONS(2693), - [anon_sym_inout] = ACTIONS(2693), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2693), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [765] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2709), - [anon_sym_RPAREN] = ACTIONS(2709), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_COLON] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_RBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_async] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_import] = ACTIONS(2709), - [anon_sym_typealias] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_protocol] = ACTIONS(2709), - [anon_sym_let] = ACTIONS(2709), - [anon_sym_var] = ACTIONS(2709), - [anon_sym_func] = ACTIONS(2709), - [anon_sym_extension] = ACTIONS(2709), - [anon_sym_indirect] = ACTIONS(2709), - [anon_sym_init] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_deinit] = ACTIONS(2709), - [anon_sym_subscript] = ACTIONS(2709), - [anon_sym_prefix] = ACTIONS(2709), - [anon_sym_infix] = ACTIONS(2709), - [anon_sym_postfix] = ACTIONS(2709), - [anon_sym_precedencegroup] = ACTIONS(2709), - [anon_sym_associatedtype] = ACTIONS(2709), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2709), - [anon_sym_convenience] = ACTIONS(2709), - [anon_sym_required] = ACTIONS(2709), - [anon_sym_nonisolated] = ACTIONS(2709), - [anon_sym_public] = ACTIONS(2709), - [anon_sym_private] = ACTIONS(2709), - [anon_sym_internal] = ACTIONS(2709), - [anon_sym_fileprivate] = ACTIONS(2709), - [anon_sym_open] = ACTIONS(2709), - [anon_sym_mutating] = ACTIONS(2709), - [anon_sym_nonmutating] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_dynamic] = ACTIONS(2709), - [anon_sym_optional] = ACTIONS(2709), - [anon_sym_final] = ACTIONS(2709), - [anon_sym_inout] = ACTIONS(2709), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2709), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [766] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3089), - [sym__immediate_quest] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_async] = ACTIONS(3087), - [aux_sym_custom_operator_token1] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_CARET_LBRACE] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3087), - [anon_sym_DOT_DOT_LT] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_import] = ACTIONS(3087), - [anon_sym_typealias] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_protocol] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_var] = ACTIONS(3087), - [anon_sym_func] = ACTIONS(3087), - [anon_sym_extension] = ACTIONS(3087), - [anon_sym_indirect] = ACTIONS(3087), - [anon_sym_init] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_deinit] = ACTIONS(3087), - [anon_sym_subscript] = ACTIONS(3087), - [anon_sym_prefix] = ACTIONS(3087), - [anon_sym_infix] = ACTIONS(3087), - [anon_sym_postfix] = ACTIONS(3087), - [anon_sym_precedencegroup] = ACTIONS(3087), - [anon_sym_associatedtype] = ACTIONS(3087), - [anon_sym_AT] = ACTIONS(3089), - [sym_property_behavior_modifier] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_convenience] = ACTIONS(3087), - [anon_sym_required] = ACTIONS(3087), - [anon_sym_nonisolated] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_internal] = ACTIONS(3087), - [anon_sym_fileprivate] = ACTIONS(3087), - [anon_sym_open] = ACTIONS(3087), - [anon_sym_mutating] = ACTIONS(3087), - [anon_sym_nonmutating] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_dynamic] = ACTIONS(3087), - [anon_sym_optional] = ACTIONS(3087), - [anon_sym_final] = ACTIONS(3087), - [anon_sym_inout] = ACTIONS(3087), - [anon_sym_ATescaping] = ACTIONS(3087), - [anon_sym_ATautoclosure] = ACTIONS(3087), - [anon_sym_weak] = ACTIONS(3087), - [anon_sym_unowned] = ACTIONS(3089), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3087), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3087), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3087), - [sym__conjunction_operator_custom] = ACTIONS(3087), - [sym__disjunction_operator_custom] = ACTIONS(3087), - [sym__nil_coalescing_operator_custom] = ACTIONS(3087), - [sym__eq_eq_custom] = ACTIONS(3087), - [sym__plus_then_ws] = ACTIONS(3087), - [sym__minus_then_ws] = ACTIONS(3087), - [sym_bang] = ACTIONS(3087), - [sym__as_custom] = ACTIONS(3087), - [sym__as_quest_custom] = ACTIONS(3087), - [sym__as_bang_custom] = ACTIONS(3087), - [sym__custom_operator] = ACTIONS(3087), - }, - [767] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_COLON] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3093), - [sym__immediate_quest] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - [anon_sym_async] = ACTIONS(3091), - [aux_sym_custom_operator_token1] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_CARET_LBRACE] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), - [anon_sym_DOT_DOT_LT] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_import] = ACTIONS(3091), - [anon_sym_typealias] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_protocol] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_var] = ACTIONS(3091), - [anon_sym_func] = ACTIONS(3091), - [anon_sym_extension] = ACTIONS(3091), - [anon_sym_indirect] = ACTIONS(3091), - [anon_sym_init] = ACTIONS(3091), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_deinit] = ACTIONS(3091), - [anon_sym_subscript] = ACTIONS(3091), - [anon_sym_prefix] = ACTIONS(3091), - [anon_sym_infix] = ACTIONS(3091), - [anon_sym_postfix] = ACTIONS(3091), - [anon_sym_precedencegroup] = ACTIONS(3091), - [anon_sym_associatedtype] = ACTIONS(3091), - [anon_sym_AT] = ACTIONS(3093), - [sym_property_behavior_modifier] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_convenience] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_nonisolated] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_internal] = ACTIONS(3091), - [anon_sym_fileprivate] = ACTIONS(3091), - [anon_sym_open] = ACTIONS(3091), - [anon_sym_mutating] = ACTIONS(3091), - [anon_sym_nonmutating] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_dynamic] = ACTIONS(3091), - [anon_sym_optional] = ACTIONS(3091), - [anon_sym_final] = ACTIONS(3091), - [anon_sym_inout] = ACTIONS(3091), - [anon_sym_ATescaping] = ACTIONS(3091), - [anon_sym_ATautoclosure] = ACTIONS(3091), - [anon_sym_weak] = ACTIONS(3091), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3091), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3091), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3091), - [sym__conjunction_operator_custom] = ACTIONS(3091), - [sym__disjunction_operator_custom] = ACTIONS(3091), - [sym__nil_coalescing_operator_custom] = ACTIONS(3091), - [sym__eq_eq_custom] = ACTIONS(3091), - [sym__plus_then_ws] = ACTIONS(3091), - [sym__minus_then_ws] = ACTIONS(3091), - [sym_bang] = ACTIONS(3091), - [sym__as_custom] = ACTIONS(3091), - [sym__as_quest_custom] = ACTIONS(3091), - [sym__as_bang_custom] = ACTIONS(3091), - [sym__custom_operator] = ACTIONS(3091), - }, - [768] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_COLON] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [sym__immediate_quest] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [anon_sym_async] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_import] = ACTIONS(3095), - [anon_sym_typealias] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_protocol] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_var] = ACTIONS(3095), - [anon_sym_func] = ACTIONS(3095), - [anon_sym_extension] = ACTIONS(3095), - [anon_sym_indirect] = ACTIONS(3095), - [anon_sym_init] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_deinit] = ACTIONS(3095), - [anon_sym_subscript] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_precedencegroup] = ACTIONS(3095), - [anon_sym_associatedtype] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3097), - [sym_property_behavior_modifier] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym_bang] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [769] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3101), - [sym__immediate_quest] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_async] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_import] = ACTIONS(3099), - [anon_sym_typealias] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_protocol] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3099), - [anon_sym_var] = ACTIONS(3099), - [anon_sym_func] = ACTIONS(3099), - [anon_sym_extension] = ACTIONS(3099), - [anon_sym_indirect] = ACTIONS(3099), - [anon_sym_init] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_deinit] = ACTIONS(3099), - [anon_sym_subscript] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_precedencegroup] = ACTIONS(3099), - [anon_sym_associatedtype] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3101), - [sym_property_behavior_modifier] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym_bang] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [770] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_COLON] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [sym__immediate_quest] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_async] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_import] = ACTIONS(3103), - [anon_sym_typealias] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_protocol] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), - [anon_sym_var] = ACTIONS(3103), - [anon_sym_func] = ACTIONS(3103), - [anon_sym_extension] = ACTIONS(3103), - [anon_sym_indirect] = ACTIONS(3103), - [anon_sym_init] = ACTIONS(3103), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_deinit] = ACTIONS(3103), - [anon_sym_subscript] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_precedencegroup] = ACTIONS(3103), - [anon_sym_associatedtype] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3105), - [sym_property_behavior_modifier] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym_bang] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [771] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2351), - [sym__explicit_semi] = ACTIONS(2351), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [772] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3109), - [sym__immediate_quest] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_typealias] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_protocol] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_func] = ACTIONS(3107), - [anon_sym_extension] = ACTIONS(3107), - [anon_sym_indirect] = ACTIONS(3107), - [anon_sym_init] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_deinit] = ACTIONS(3107), - [anon_sym_subscript] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_precedencegroup] = ACTIONS(3107), - [anon_sym_associatedtype] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3109), - [sym_property_behavior_modifier] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym_bang] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [773] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3113), - [sym__immediate_quest] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [anon_sym_async] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3111), - [anon_sym_typealias] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_protocol] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3111), - [anon_sym_var] = ACTIONS(3111), - [anon_sym_func] = ACTIONS(3111), - [anon_sym_extension] = ACTIONS(3111), - [anon_sym_indirect] = ACTIONS(3111), - [anon_sym_init] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_deinit] = ACTIONS(3111), - [anon_sym_subscript] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_precedencegroup] = ACTIONS(3111), - [anon_sym_associatedtype] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3113), - [sym_property_behavior_modifier] = ACTIONS(3111), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym_bang] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [774] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_COLON] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [sym__immediate_quest] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [aux_sym_custom_operator_token1] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_CARET_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_LT] = ACTIONS(3115), - [anon_sym_is] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_import] = ACTIONS(3115), - [anon_sym_typealias] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_protocol] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_func] = ACTIONS(3115), - [anon_sym_extension] = ACTIONS(3115), - [anon_sym_indirect] = ACTIONS(3115), - [anon_sym_init] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_deinit] = ACTIONS(3115), - [anon_sym_subscript] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_precedencegroup] = ACTIONS(3115), - [anon_sym_associatedtype] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3117), - [sym_property_behavior_modifier] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3115), - [sym__conjunction_operator_custom] = ACTIONS(3115), - [sym__disjunction_operator_custom] = ACTIONS(3115), - [sym__nil_coalescing_operator_custom] = ACTIONS(3115), - [sym__eq_eq_custom] = ACTIONS(3115), - [sym__plus_then_ws] = ACTIONS(3115), - [sym__minus_then_ws] = ACTIONS(3115), - [sym_bang] = ACTIONS(3115), - [sym__as_custom] = ACTIONS(3115), - [sym__as_quest_custom] = ACTIONS(3115), - [sym__as_bang_custom] = ACTIONS(3115), - [sym__custom_operator] = ACTIONS(3115), - }, - [775] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_COLON] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3121), - [sym__immediate_quest] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [aux_sym_custom_operator_token1] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_CARET_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_LT] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_import] = ACTIONS(3119), - [anon_sym_typealias] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_protocol] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [anon_sym_func] = ACTIONS(3119), - [anon_sym_extension] = ACTIONS(3119), - [anon_sym_indirect] = ACTIONS(3119), - [anon_sym_init] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_deinit] = ACTIONS(3119), - [anon_sym_subscript] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_precedencegroup] = ACTIONS(3119), - [anon_sym_associatedtype] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3121), - [sym_property_behavior_modifier] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3119), - [sym__conjunction_operator_custom] = ACTIONS(3119), - [sym__disjunction_operator_custom] = ACTIONS(3119), - [sym__nil_coalescing_operator_custom] = ACTIONS(3119), - [sym__eq_eq_custom] = ACTIONS(3119), - [sym__plus_then_ws] = ACTIONS(3119), - [sym__minus_then_ws] = ACTIONS(3119), - [sym_bang] = ACTIONS(3119), - [sym__as_custom] = ACTIONS(3119), - [sym__as_quest_custom] = ACTIONS(3119), - [sym__as_bang_custom] = ACTIONS(3119), - [sym__custom_operator] = ACTIONS(3119), - }, - [776] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_COLON] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3125), - [sym__immediate_quest] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [aux_sym_custom_operator_token1] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_CARET_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_DOT_DOT_LT] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_import] = ACTIONS(3123), - [anon_sym_typealias] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_protocol] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_var] = ACTIONS(3123), - [anon_sym_func] = ACTIONS(3123), - [anon_sym_extension] = ACTIONS(3123), - [anon_sym_indirect] = ACTIONS(3123), - [anon_sym_init] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_deinit] = ACTIONS(3123), - [anon_sym_subscript] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_precedencegroup] = ACTIONS(3123), - [anon_sym_associatedtype] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3125), - [sym_property_behavior_modifier] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3123), - [sym__conjunction_operator_custom] = ACTIONS(3123), - [sym__disjunction_operator_custom] = ACTIONS(3123), - [sym__nil_coalescing_operator_custom] = ACTIONS(3123), - [sym__eq_eq_custom] = ACTIONS(3123), - [sym__plus_then_ws] = ACTIONS(3123), - [sym__minus_then_ws] = ACTIONS(3123), - [sym_bang] = ACTIONS(3123), - [sym__as_custom] = ACTIONS(3123), - [sym__as_quest_custom] = ACTIONS(3123), - [sym__as_bang_custom] = ACTIONS(3123), - [sym__custom_operator] = ACTIONS(3123), - }, - [777] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_COLON] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3129), - [sym__immediate_quest] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_import] = ACTIONS(3127), - [anon_sym_typealias] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_protocol] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [anon_sym_func] = ACTIONS(3127), - [anon_sym_extension] = ACTIONS(3127), - [anon_sym_indirect] = ACTIONS(3127), - [anon_sym_init] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_deinit] = ACTIONS(3127), - [anon_sym_subscript] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_precedencegroup] = ACTIONS(3127), - [anon_sym_associatedtype] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3129), - [sym_property_behavior_modifier] = ACTIONS(3127), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym_bang] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [778] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [sym__immediate_quest] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [aux_sym_custom_operator_token1] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_CARET_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT_LT] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_import] = ACTIONS(3131), - [anon_sym_typealias] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_protocol] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_var] = ACTIONS(3131), - [anon_sym_func] = ACTIONS(3131), - [anon_sym_extension] = ACTIONS(3131), - [anon_sym_indirect] = ACTIONS(3131), - [anon_sym_init] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_deinit] = ACTIONS(3131), - [anon_sym_subscript] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_precedencegroup] = ACTIONS(3131), - [anon_sym_associatedtype] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3133), - [sym_property_behavior_modifier] = ACTIONS(3131), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3131), - [sym__conjunction_operator_custom] = ACTIONS(3131), - [sym__disjunction_operator_custom] = ACTIONS(3131), - [sym__nil_coalescing_operator_custom] = ACTIONS(3131), - [sym__eq_eq_custom] = ACTIONS(3131), - [sym__plus_then_ws] = ACTIONS(3131), - [sym__minus_then_ws] = ACTIONS(3131), - [sym_bang] = ACTIONS(3131), - [sym__as_custom] = ACTIONS(3131), - [sym__as_quest_custom] = ACTIONS(3131), - [sym__as_bang_custom] = ACTIONS(3131), - [sym__custom_operator] = ACTIONS(3131), - }, - [779] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_COLON] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3137), - [sym__immediate_quest] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [aux_sym_custom_operator_token1] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_CARET_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_DOT_DOT_LT] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_import] = ACTIONS(3135), - [anon_sym_typealias] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_protocol] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [anon_sym_func] = ACTIONS(3135), - [anon_sym_extension] = ACTIONS(3135), - [anon_sym_indirect] = ACTIONS(3135), - [anon_sym_init] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_deinit] = ACTIONS(3135), - [anon_sym_subscript] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_precedencegroup] = ACTIONS(3135), - [anon_sym_associatedtype] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3137), - [sym_property_behavior_modifier] = ACTIONS(3135), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3135), - [sym__conjunction_operator_custom] = ACTIONS(3135), - [sym__disjunction_operator_custom] = ACTIONS(3135), - [sym__nil_coalescing_operator_custom] = ACTIONS(3135), - [sym__eq_eq_custom] = ACTIONS(3135), - [sym__plus_then_ws] = ACTIONS(3135), - [sym__minus_then_ws] = ACTIONS(3135), - [sym_bang] = ACTIONS(3135), - [sym__as_custom] = ACTIONS(3135), - [sym__as_quest_custom] = ACTIONS(3135), - [sym__as_bang_custom] = ACTIONS(3135), - [sym__custom_operator] = ACTIONS(3135), - }, - [780] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_COLON] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3141), - [sym__immediate_quest] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_import] = ACTIONS(3139), - [anon_sym_typealias] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_protocol] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [anon_sym_func] = ACTIONS(3139), - [anon_sym_extension] = ACTIONS(3139), - [anon_sym_indirect] = ACTIONS(3139), - [anon_sym_init] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_deinit] = ACTIONS(3139), - [anon_sym_subscript] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_precedencegroup] = ACTIONS(3139), - [anon_sym_associatedtype] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3141), - [sym_property_behavior_modifier] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3141), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym_bang] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [781] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [sym__immediate_quest] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [aux_sym_custom_operator_token1] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_CARET_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), - [anon_sym_DOT_DOT_LT] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_import] = ACTIONS(3143), - [anon_sym_typealias] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_protocol] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [anon_sym_func] = ACTIONS(3143), - [anon_sym_extension] = ACTIONS(3143), - [anon_sym_indirect] = ACTIONS(3143), - [anon_sym_init] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_deinit] = ACTIONS(3143), - [anon_sym_subscript] = ACTIONS(3143), - [anon_sym_prefix] = ACTIONS(3143), - [anon_sym_infix] = ACTIONS(3143), - [anon_sym_postfix] = ACTIONS(3143), - [anon_sym_precedencegroup] = ACTIONS(3143), - [anon_sym_associatedtype] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3145), - [sym_property_behavior_modifier] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_convenience] = ACTIONS(3143), - [anon_sym_required] = ACTIONS(3143), - [anon_sym_nonisolated] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_internal] = ACTIONS(3143), - [anon_sym_fileprivate] = ACTIONS(3143), - [anon_sym_open] = ACTIONS(3143), - [anon_sym_mutating] = ACTIONS(3143), - [anon_sym_nonmutating] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_dynamic] = ACTIONS(3143), - [anon_sym_optional] = ACTIONS(3143), - [anon_sym_final] = ACTIONS(3143), - [anon_sym_inout] = ACTIONS(3143), - [anon_sym_ATescaping] = ACTIONS(3143), - [anon_sym_ATautoclosure] = ACTIONS(3143), - [anon_sym_weak] = ACTIONS(3143), - [anon_sym_unowned] = ACTIONS(3145), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3143), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3143), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3143), - [sym__conjunction_operator_custom] = ACTIONS(3143), - [sym__disjunction_operator_custom] = ACTIONS(3143), - [sym__nil_coalescing_operator_custom] = ACTIONS(3143), - [sym__eq_eq_custom] = ACTIONS(3143), - [sym__plus_then_ws] = ACTIONS(3143), - [sym__minus_then_ws] = ACTIONS(3143), - [sym_bang] = ACTIONS(3143), - [sym__as_custom] = ACTIONS(3143), - [sym__as_quest_custom] = ACTIONS(3143), - [sym__as_bang_custom] = ACTIONS(3143), - [sym__custom_operator] = ACTIONS(3143), - }, - [782] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(2727), - [anon_sym_RPAREN] = ACTIONS(2727), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_COLON] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_RBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_typealias] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_protocol] = ACTIONS(2727), - [anon_sym_let] = ACTIONS(2727), - [anon_sym_var] = ACTIONS(2727), - [anon_sym_func] = ACTIONS(2727), - [anon_sym_extension] = ACTIONS(2727), - [anon_sym_indirect] = ACTIONS(2727), - [anon_sym_init] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_deinit] = ACTIONS(2727), - [anon_sym_subscript] = ACTIONS(2727), - [anon_sym_prefix] = ACTIONS(2727), - [anon_sym_infix] = ACTIONS(2727), - [anon_sym_postfix] = ACTIONS(2727), - [anon_sym_precedencegroup] = ACTIONS(2727), - [anon_sym_associatedtype] = ACTIONS(2727), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2727), - [anon_sym_override] = ACTIONS(2727), - [anon_sym_convenience] = ACTIONS(2727), - [anon_sym_required] = ACTIONS(2727), - [anon_sym_nonisolated] = ACTIONS(2727), - [anon_sym_public] = ACTIONS(2727), - [anon_sym_private] = ACTIONS(2727), - [anon_sym_internal] = ACTIONS(2727), - [anon_sym_fileprivate] = ACTIONS(2727), - [anon_sym_open] = ACTIONS(2727), - [anon_sym_mutating] = ACTIONS(2727), - [anon_sym_nonmutating] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_dynamic] = ACTIONS(2727), - [anon_sym_optional] = ACTIONS(2727), - [anon_sym_final] = ACTIONS(2727), - [anon_sym_inout] = ACTIONS(2727), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2727), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [783] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [sym__immediate_quest] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_async] = ACTIONS(3147), - [aux_sym_custom_operator_token1] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_CARET_LBRACE] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_case] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3147), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), - [anon_sym_DOT_DOT_LT] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_import] = ACTIONS(3147), - [anon_sym_typealias] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_protocol] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_var] = ACTIONS(3147), - [anon_sym_func] = ACTIONS(3147), - [anon_sym_extension] = ACTIONS(3147), - [anon_sym_indirect] = ACTIONS(3147), - [anon_sym_init] = ACTIONS(3147), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_deinit] = ACTIONS(3147), - [anon_sym_subscript] = ACTIONS(3147), - [anon_sym_prefix] = ACTIONS(3147), - [anon_sym_infix] = ACTIONS(3147), - [anon_sym_postfix] = ACTIONS(3147), - [anon_sym_precedencegroup] = ACTIONS(3147), - [anon_sym_associatedtype] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3149), - [sym_property_behavior_modifier] = ACTIONS(3147), - [anon_sym_override] = ACTIONS(3147), - [anon_sym_convenience] = ACTIONS(3147), - [anon_sym_required] = ACTIONS(3147), - [anon_sym_nonisolated] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_private] = ACTIONS(3147), - [anon_sym_internal] = ACTIONS(3147), - [anon_sym_fileprivate] = ACTIONS(3147), - [anon_sym_open] = ACTIONS(3147), - [anon_sym_mutating] = ACTIONS(3147), - [anon_sym_nonmutating] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_dynamic] = ACTIONS(3147), - [anon_sym_optional] = ACTIONS(3147), - [anon_sym_final] = ACTIONS(3147), - [anon_sym_inout] = ACTIONS(3147), - [anon_sym_ATescaping] = ACTIONS(3147), - [anon_sym_ATautoclosure] = ACTIONS(3147), - [anon_sym_weak] = ACTIONS(3147), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3147), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3147), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3147), - [sym__conjunction_operator_custom] = ACTIONS(3147), - [sym__disjunction_operator_custom] = ACTIONS(3147), - [sym__nil_coalescing_operator_custom] = ACTIONS(3147), - [sym__eq_eq_custom] = ACTIONS(3147), - [sym__plus_then_ws] = ACTIONS(3147), - [sym__minus_then_ws] = ACTIONS(3147), - [sym_bang] = ACTIONS(3147), - [sym__as_custom] = ACTIONS(3147), - [sym__as_quest_custom] = ACTIONS(3147), - [sym__as_bang_custom] = ACTIONS(3147), - [sym__custom_operator] = ACTIONS(3147), - }, - [784] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [sym__immediate_quest] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [aux_sym_custom_operator_token1] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_CARET_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_typealias] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_protocol] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [anon_sym_func] = ACTIONS(3151), - [anon_sym_extension] = ACTIONS(3151), - [anon_sym_indirect] = ACTIONS(3151), - [anon_sym_init] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_deinit] = ACTIONS(3151), - [anon_sym_subscript] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_precedencegroup] = ACTIONS(3151), - [anon_sym_associatedtype] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3153), - [sym_property_behavior_modifier] = ACTIONS(3151), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3151), - [sym__conjunction_operator_custom] = ACTIONS(3151), - [sym__disjunction_operator_custom] = ACTIONS(3151), - [sym__nil_coalescing_operator_custom] = ACTIONS(3151), - [sym__eq_eq_custom] = ACTIONS(3151), - [sym__plus_then_ws] = ACTIONS(3151), - [sym__minus_then_ws] = ACTIONS(3151), - [sym_bang] = ACTIONS(3151), - [sym__as_custom] = ACTIONS(3151), - [sym__as_quest_custom] = ACTIONS(3151), - [sym__as_bang_custom] = ACTIONS(3151), - [sym__custom_operator] = ACTIONS(3151), - }, - [785] = { - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3155), - [anon_sym_RPAREN] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3157), - [sym__immediate_quest] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_typealias] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_protocol] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [anon_sym_func] = ACTIONS(3155), - [anon_sym_extension] = ACTIONS(3155), - [anon_sym_indirect] = ACTIONS(3155), - [anon_sym_init] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_deinit] = ACTIONS(3155), - [anon_sym_subscript] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_precedencegroup] = ACTIONS(3155), - [anon_sym_associatedtype] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3157), - [sym_property_behavior_modifier] = ACTIONS(3155), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym_bang] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [786] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_COLON] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_RBRACK] = ACTIONS(2351), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [787] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2330), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_RBRACK] = ACTIONS(2330), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [788] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_COLON] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_RBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [789] = { - [sym__fn_call_lambda_arguments] = STATE(768), - [sym_lambda_literal] = STATE(698), - [sym_comment] = ACTIONS(3), - [anon_sym_actor] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3161), - [sym__immediate_quest] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_CARET_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_import] = ACTIONS(3159), - [anon_sym_typealias] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_protocol] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [anon_sym_func] = ACTIONS(3159), - [anon_sym_extension] = ACTIONS(3159), - [anon_sym_indirect] = ACTIONS(3159), - [anon_sym_init] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_deinit] = ACTIONS(3159), - [anon_sym_subscript] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_precedencegroup] = ACTIONS(3159), - [anon_sym_associatedtype] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3161), - [sym_property_behavior_modifier] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym_bang] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [790] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2351), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2351), - [sym__explicit_semi] = ACTIONS(2351), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [791] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2321), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__implicit_semi] = ACTIONS(2321), - [sym__explicit_semi] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [792] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2340), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2340), - [sym__explicit_semi] = ACTIONS(2340), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [793] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_RBRACK] = ACTIONS(2359), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [794] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2359), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__implicit_semi] = ACTIONS(2359), - [sym__explicit_semi] = ACTIONS(2359), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [795] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2330), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__implicit_semi] = ACTIONS(2330), - [sym__explicit_semi] = ACTIONS(2330), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [796] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2357), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__implicit_semi] = ACTIONS(2357), - [sym__explicit_semi] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [797] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_COLON] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_RBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [798] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2340), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_RBRACK] = ACTIONS(2340), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [799] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_where_keyword] = ACTIONS(2359), - [sym_else] = ACTIONS(2359), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [800] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_where_keyword] = ACTIONS(2351), - [sym_else] = ACTIONS(2351), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [801] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym_where_keyword] = ACTIONS(2340), - [sym_else] = ACTIONS(2340), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [802] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_COLON] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym_where_keyword] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [803] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym_where_keyword] = ACTIONS(2357), - [sym_else] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [804] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym_where_keyword] = ACTIONS(2330), - [sym_else] = ACTIONS(2330), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [805] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym_where_keyword] = ACTIONS(2321), - [sym_else] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [806] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym_where_keyword] = ACTIONS(2330), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [807] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_COLON] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_where_keyword] = ACTIONS(2359), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [808] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_COLON] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym_where_keyword] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [809] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_COLON] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym_where_keyword] = ACTIONS(2340), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [810] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_COLON] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_where_keyword] = ACTIONS(2351), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [811] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [anon_sym_COMMA] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2319), - [sym__immediate_quest] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_is] = ACTIONS(2319), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__conjunction_operator_custom] = ACTIONS(2321), - [sym__disjunction_operator_custom] = ACTIONS(2321), - [sym__nil_coalescing_operator_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym_else] = ACTIONS(2321), - [sym__as_custom] = ACTIONS(2321), - [sym__as_quest_custom] = ACTIONS(2321), - [sym__as_bang_custom] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [812] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2340), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_QMARK] = ACTIONS(2345), - [sym__immediate_quest] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_CARET_LBRACE] = ACTIONS(2342), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2337), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2342), - [anon_sym_DOT_DOT_LT] = ACTIONS(2342), - [anon_sym_is] = ACTIONS(2345), - [anon_sym_PLUS] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_SLASH] = ACTIONS(2337), - [anon_sym_PERCENT] = ACTIONS(2337), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_CARET] = ACTIONS(2337), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2342), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2342), - [sym__conjunction_operator_custom] = ACTIONS(2340), - [sym__disjunction_operator_custom] = ACTIONS(2340), - [sym__nil_coalescing_operator_custom] = ACTIONS(2340), - [sym__eq_eq_custom] = ACTIONS(2342), - [sym__plus_then_ws] = ACTIONS(2342), - [sym__minus_then_ws] = ACTIONS(2342), - [sym_bang] = ACTIONS(2342), - [sym_else] = ACTIONS(2340), - [sym__as_custom] = ACTIONS(2340), - [sym__as_quest_custom] = ACTIONS(2340), - [sym__as_bang_custom] = ACTIONS(2340), - [sym__custom_operator] = ACTIONS(2342), - }, - [813] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2351), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2353), - [sym__immediate_quest] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2353), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2351), - [sym__disjunction_operator_custom] = ACTIONS(2351), - [sym__nil_coalescing_operator_custom] = ACTIONS(2351), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_else] = ACTIONS(2351), - [sym__as_custom] = ACTIONS(2351), - [sym__as_quest_custom] = ACTIONS(2351), - [sym__as_bang_custom] = ACTIONS(2351), - [sym__custom_operator] = ACTIONS(2349), - }, - [814] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2347), - [aux_sym_simple_identifier_token2] = ACTIONS(2349), - [aux_sym_simple_identifier_token3] = ACTIONS(2349), - [aux_sym_simple_identifier_token4] = ACTIONS(2349), - [anon_sym_actor] = ACTIONS(2347), - [anon_sym_nil] = ACTIONS(2347), - [sym_real_literal] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [sym_hex_literal] = ACTIONS(2349), - [sym_oct_literal] = ACTIONS(2349), - [sym_bin_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_BSLASH] = ACTIONS(2349), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2349), - [anon_sym_COMMA] = ACTIONS(2359), - [sym__extended_regex_literal] = ACTIONS(2349), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2349), - [sym__oneline_regex_literal] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2361), - [sym__immediate_quest] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_POUNDselector] = ACTIONS(2349), - [aux_sym_custom_operator_token1] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2347), - [anon_sym_POUNDfile] = ACTIONS(2347), - [anon_sym_POUNDfileID] = ACTIONS(2349), - [anon_sym_POUNDfilePath] = ACTIONS(2349), - [anon_sym_POUNDline] = ACTIONS(2349), - [anon_sym_POUNDcolumn] = ACTIONS(2349), - [anon_sym_POUNDfunction] = ACTIONS(2349), - [anon_sym_POUNDdsohandle] = ACTIONS(2349), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2349), - [anon_sym_POUNDfileLiteral] = ACTIONS(2349), - [anon_sym_POUNDimageLiteral] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_CARET_LBRACE] = ACTIONS(2349), - [anon_sym_self] = ACTIONS(2347), - [anon_sym_super] = ACTIONS(2347), - [anon_sym_POUNDkeyPath] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_try_BANG] = ACTIONS(2349), - [anon_sym_try_QMARK] = ACTIONS(2349), - [anon_sym_PLUS_EQ] = ACTIONS(2349), - [anon_sym_DASH_EQ] = ACTIONS(2349), - [anon_sym_STAR_EQ] = ACTIONS(2349), - [anon_sym_SLASH_EQ] = ACTIONS(2349), - [anon_sym_PERCENT_EQ] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ] = ACTIONS(2347), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2349), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2349), - [anon_sym_DOT_DOT_LT] = ACTIONS(2349), - [anon_sym_is] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_SLASH] = ACTIONS(2347), - [anon_sym_PERCENT] = ACTIONS(2347), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_CARET] = ACTIONS(2347), - [anon_sym_LT_LT] = ACTIONS(2349), - [anon_sym_GT_GT] = ACTIONS(2349), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2349), - [sym_raw_str_end_part] = ACTIONS(2349), - [sym__dot_custom] = ACTIONS(2349), - [sym__conjunction_operator_custom] = ACTIONS(2359), - [sym__disjunction_operator_custom] = ACTIONS(2359), - [sym__nil_coalescing_operator_custom] = ACTIONS(2359), - [sym__eq_eq_custom] = ACTIONS(2349), - [sym__plus_then_ws] = ACTIONS(2349), - [sym__minus_then_ws] = ACTIONS(2349), - [sym_bang] = ACTIONS(2349), - [sym_else] = ACTIONS(2359), - [sym__as_custom] = ACTIONS(2359), - [sym__as_quest_custom] = ACTIONS(2359), - [sym__as_bang_custom] = ACTIONS(2359), - [sym__custom_operator] = ACTIONS(2349), - }, - [815] = { - [sym_simple_identifier] = STATE(6359), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(816), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2645), - [sym__immediate_quest] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [aux_sym_custom_operator_token1] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_GT] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_CARET_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_fallthrough] = ACTIONS(2645), - [anon_sym_PLUS_EQ] = ACTIONS(2643), - [anon_sym_DASH_EQ] = ACTIONS(2643), - [anon_sym_STAR_EQ] = ACTIONS(2643), - [anon_sym_SLASH_EQ] = ACTIONS(2643), - [anon_sym_PERCENT_EQ] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_DOT_DOT_LT] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_PERCENT] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_prefix] = ACTIONS(2645), - [anon_sym_infix] = ACTIONS(2645), - [anon_sym_postfix] = ACTIONS(2645), - [anon_sym_AT] = ACTIONS(2645), - [sym_property_behavior_modifier] = ACTIONS(2645), - [anon_sym_override] = ACTIONS(2645), - [anon_sym_convenience] = ACTIONS(2645), - [anon_sym_required] = ACTIONS(2645), - [anon_sym_nonisolated] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2645), - [anon_sym_private] = ACTIONS(2645), - [anon_sym_internal] = ACTIONS(2645), - [anon_sym_fileprivate] = ACTIONS(2645), - [anon_sym_open] = ACTIONS(2645), - [anon_sym_mutating] = ACTIONS(2645), - [anon_sym_nonmutating] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_dynamic] = ACTIONS(2645), - [anon_sym_optional] = ACTIONS(2645), - [anon_sym_final] = ACTIONS(2645), - [anon_sym_inout] = ACTIONS(2645), - [anon_sym_ATescaping] = ACTIONS(2643), - [anon_sym_ATautoclosure] = ACTIONS(2643), - [anon_sym_weak] = ACTIONS(2645), - [anon_sym_unowned] = ACTIONS(2645), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2643), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2643), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2643), - [sym__explicit_semi] = ACTIONS(2643), - [sym__dot_custom] = ACTIONS(2643), - [sym__conjunction_operator_custom] = ACTIONS(2643), - [sym__disjunction_operator_custom] = ACTIONS(2643), - [sym__nil_coalescing_operator_custom] = ACTIONS(2643), - [sym__eq_eq_custom] = ACTIONS(2643), - [sym__plus_then_ws] = ACTIONS(2643), - [sym__minus_then_ws] = ACTIONS(2643), - [sym_bang] = ACTIONS(2643), - [sym_default_keyword] = ACTIONS(2643), - [sym_where_keyword] = ACTIONS(2643), - [sym__as_custom] = ACTIONS(2643), - [sym__as_quest_custom] = ACTIONS(2643), - [sym__as_bang_custom] = ACTIONS(2643), - [sym__custom_operator] = ACTIONS(2643), - }, - [816] = { - [sym_simple_identifier] = STATE(6359), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(817), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2620), - [sym__immediate_quest] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [aux_sym_custom_operator_token1] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_CARET_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_fallthrough] = ACTIONS(2620), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2618), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_DOT_DOT_LT] = ACTIONS(2618), - [anon_sym_is] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_prefix] = ACTIONS(2620), - [anon_sym_infix] = ACTIONS(2620), - [anon_sym_postfix] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [sym_property_behavior_modifier] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_convenience] = ACTIONS(2620), - [anon_sym_required] = ACTIONS(2620), - [anon_sym_nonisolated] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_internal] = ACTIONS(2620), - [anon_sym_fileprivate] = ACTIONS(2620), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_mutating] = ACTIONS(2620), - [anon_sym_nonmutating] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_dynamic] = ACTIONS(2620), - [anon_sym_optional] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_inout] = ACTIONS(2620), - [anon_sym_ATescaping] = ACTIONS(2618), - [anon_sym_ATautoclosure] = ACTIONS(2618), - [anon_sym_weak] = ACTIONS(2620), - [anon_sym_unowned] = ACTIONS(2620), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2618), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2618), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2618), - [sym__explicit_semi] = ACTIONS(2618), - [sym__dot_custom] = ACTIONS(2618), - [sym__conjunction_operator_custom] = ACTIONS(2618), - [sym__disjunction_operator_custom] = ACTIONS(2618), - [sym__nil_coalescing_operator_custom] = ACTIONS(2618), - [sym__eq_eq_custom] = ACTIONS(2618), - [sym__plus_then_ws] = ACTIONS(2618), - [sym__minus_then_ws] = ACTIONS(2618), - [sym_bang] = ACTIONS(2618), - [sym_default_keyword] = ACTIONS(2618), - [sym_where_keyword] = ACTIONS(2618), - [sym__as_custom] = ACTIONS(2618), - [sym__as_quest_custom] = ACTIONS(2618), - [sym__as_bang_custom] = ACTIONS(2618), - [sym__custom_operator] = ACTIONS(2618), - }, - [817] = { - [sym_simple_identifier] = STATE(6359), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(817), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2647), - [aux_sym_simple_identifier_token2] = ACTIONS(2650), - [aux_sym_simple_identifier_token3] = ACTIONS(2650), - [aux_sym_simple_identifier_token4] = ACTIONS(2650), - [anon_sym_actor] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2655), - [sym__immediate_quest] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_CARET_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_fallthrough] = ACTIONS(2655), - [anon_sym_PLUS_EQ] = ACTIONS(2653), - [anon_sym_DASH_EQ] = ACTIONS(2653), - [anon_sym_STAR_EQ] = ACTIONS(2653), - [anon_sym_SLASH_EQ] = ACTIONS(2653), - [anon_sym_PERCENT_EQ] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_prefix] = ACTIONS(2655), - [anon_sym_infix] = ACTIONS(2655), - [anon_sym_postfix] = ACTIONS(2655), - [anon_sym_AT] = ACTIONS(2655), - [sym_property_behavior_modifier] = ACTIONS(2655), - [anon_sym_override] = ACTIONS(2655), - [anon_sym_convenience] = ACTIONS(2655), - [anon_sym_required] = ACTIONS(2655), - [anon_sym_nonisolated] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_internal] = ACTIONS(2655), - [anon_sym_fileprivate] = ACTIONS(2655), - [anon_sym_open] = ACTIONS(2655), - [anon_sym_mutating] = ACTIONS(2655), - [anon_sym_nonmutating] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_dynamic] = ACTIONS(2655), - [anon_sym_optional] = ACTIONS(2655), - [anon_sym_final] = ACTIONS(2655), - [anon_sym_inout] = ACTIONS(2655), - [anon_sym_ATescaping] = ACTIONS(2653), - [anon_sym_ATautoclosure] = ACTIONS(2653), - [anon_sym_weak] = ACTIONS(2655), - [anon_sym_unowned] = ACTIONS(2655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2653), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2653), - [sym__explicit_semi] = ACTIONS(2653), - [sym__dot_custom] = ACTIONS(2653), - [sym__conjunction_operator_custom] = ACTIONS(2653), - [sym__disjunction_operator_custom] = ACTIONS(2653), - [sym__nil_coalescing_operator_custom] = ACTIONS(2653), - [sym__eq_eq_custom] = ACTIONS(2653), - [sym__plus_then_ws] = ACTIONS(2653), - [sym__minus_then_ws] = ACTIONS(2653), - [sym_bang] = ACTIONS(2653), - [sym_default_keyword] = ACTIONS(2653), - [sym_where_keyword] = ACTIONS(2653), - [sym__as_custom] = ACTIONS(2653), - [sym__as_quest_custom] = ACTIONS(2653), - [sym__as_bang_custom] = ACTIONS(2653), - [sym__custom_operator] = ACTIONS(2653), - }, - [818] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2323), - [aux_sym_simple_identifier_token2] = ACTIONS(2325), - [aux_sym_simple_identifier_token3] = ACTIONS(2325), - [aux_sym_simple_identifier_token4] = ACTIONS(2325), - [anon_sym_actor] = ACTIONS(2323), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [anon_sym_COMMA] = ACTIONS(2330), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2335), - [sym__immediate_quest] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2327), - [anon_sym_GT] = ACTIONS(2327), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_CARET_LBRACE] = ACTIONS(2332), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2332), - [anon_sym_DOT_DOT_LT] = ACTIONS(2332), - [anon_sym_is] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2327), - [anon_sym_STAR] = ACTIONS(2327), - [anon_sym_SLASH] = ACTIONS(2327), - [anon_sym_PERCENT] = ACTIONS(2327), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2327), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2332), - [sym__conjunction_operator_custom] = ACTIONS(2330), - [sym__disjunction_operator_custom] = ACTIONS(2330), - [sym__nil_coalescing_operator_custom] = ACTIONS(2330), - [sym__eq_eq_custom] = ACTIONS(2332), - [sym__plus_then_ws] = ACTIONS(2332), - [sym__minus_then_ws] = ACTIONS(2332), - [sym_bang] = ACTIONS(2332), - [sym_else] = ACTIONS(2330), - [sym__as_custom] = ACTIONS(2330), - [sym__as_quest_custom] = ACTIONS(2330), - [sym__as_bang_custom] = ACTIONS(2330), - [sym__custom_operator] = ACTIONS(2332), - }, - [819] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2355), - [aux_sym_simple_identifier_token2] = ACTIONS(2357), - [aux_sym_simple_identifier_token3] = ACTIONS(2357), - [aux_sym_simple_identifier_token4] = ACTIONS(2357), - [anon_sym_actor] = ACTIONS(2355), - [anon_sym_nil] = ACTIONS(2355), - [sym_real_literal] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [sym_hex_literal] = ACTIONS(2357), - [sym_oct_literal] = ACTIONS(2357), - [sym_bin_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(2355), - [anon_sym_BSLASH] = ACTIONS(2357), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [sym__extended_regex_literal] = ACTIONS(2357), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2357), - [sym__oneline_regex_literal] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_QMARK] = ACTIONS(2355), - [sym__immediate_quest] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_POUNDselector] = ACTIONS(2357), - [aux_sym_custom_operator_token1] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_GT] = ACTIONS(2355), - [anon_sym_await] = ACTIONS(2355), - [anon_sym_POUNDfile] = ACTIONS(2355), - [anon_sym_POUNDfileID] = ACTIONS(2357), - [anon_sym_POUNDfilePath] = ACTIONS(2357), - [anon_sym_POUNDline] = ACTIONS(2357), - [anon_sym_POUNDcolumn] = ACTIONS(2357), - [anon_sym_POUNDfunction] = ACTIONS(2357), - [anon_sym_POUNDdsohandle] = ACTIONS(2357), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2357), - [anon_sym_POUNDfileLiteral] = ACTIONS(2357), - [anon_sym_POUNDimageLiteral] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_CARET_LBRACE] = ACTIONS(2357), - [anon_sym_self] = ACTIONS(2355), - [anon_sym_super] = ACTIONS(2355), - [anon_sym_POUNDkeyPath] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_try_BANG] = ACTIONS(2357), - [anon_sym_try_QMARK] = ACTIONS(2357), - [anon_sym_PLUS_EQ] = ACTIONS(2357), - [anon_sym_DASH_EQ] = ACTIONS(2357), - [anon_sym_STAR_EQ] = ACTIONS(2357), - [anon_sym_SLASH_EQ] = ACTIONS(2357), - [anon_sym_PERCENT_EQ] = ACTIONS(2357), - [anon_sym_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ] = ACTIONS(2355), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2357), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2357), - [anon_sym_LT_EQ] = ACTIONS(2357), - [anon_sym_GT_EQ] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2357), - [anon_sym_DOT_DOT_LT] = ACTIONS(2357), - [anon_sym_is] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_SLASH] = ACTIONS(2355), - [anon_sym_PERCENT] = ACTIONS(2355), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_CARET] = ACTIONS(2355), - [anon_sym_LT_LT] = ACTIONS(2357), - [anon_sym_GT_GT] = ACTIONS(2357), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2357), - [sym_raw_str_end_part] = ACTIONS(2357), - [sym__dot_custom] = ACTIONS(2357), - [sym__conjunction_operator_custom] = ACTIONS(2357), - [sym__disjunction_operator_custom] = ACTIONS(2357), - [sym__nil_coalescing_operator_custom] = ACTIONS(2357), - [sym__eq_eq_custom] = ACTIONS(2357), - [sym__plus_then_ws] = ACTIONS(2357), - [sym__minus_then_ws] = ACTIONS(2357), - [sym_bang] = ACTIONS(2357), - [sym_else] = ACTIONS(2357), - [sym__as_custom] = ACTIONS(2357), - [sym__as_quest_custom] = ACTIONS(2357), - [sym__as_bang_custom] = ACTIONS(2357), - [sym__custom_operator] = ACTIONS(2357), - }, - [820] = { - [sym_simple_identifier] = STATE(6303), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(821), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2645), - [sym__immediate_quest] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [aux_sym_custom_operator_token1] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_GT] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_CARET_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_fallthrough] = ACTIONS(2645), - [anon_sym_PLUS_EQ] = ACTIONS(2643), - [anon_sym_DASH_EQ] = ACTIONS(2643), - [anon_sym_STAR_EQ] = ACTIONS(2643), - [anon_sym_SLASH_EQ] = ACTIONS(2643), - [anon_sym_PERCENT_EQ] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_DOT_DOT_LT] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_PERCENT] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_prefix] = ACTIONS(2645), - [anon_sym_infix] = ACTIONS(2645), - [anon_sym_postfix] = ACTIONS(2645), - [anon_sym_AT] = ACTIONS(2645), - [sym_property_behavior_modifier] = ACTIONS(2645), - [anon_sym_override] = ACTIONS(2645), - [anon_sym_convenience] = ACTIONS(2645), - [anon_sym_required] = ACTIONS(2645), - [anon_sym_nonisolated] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2645), - [anon_sym_private] = ACTIONS(2645), - [anon_sym_internal] = ACTIONS(2645), - [anon_sym_fileprivate] = ACTIONS(2645), - [anon_sym_open] = ACTIONS(2645), - [anon_sym_mutating] = ACTIONS(2645), - [anon_sym_nonmutating] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_dynamic] = ACTIONS(2645), - [anon_sym_optional] = ACTIONS(2645), - [anon_sym_final] = ACTIONS(2645), - [anon_sym_inout] = ACTIONS(2645), - [anon_sym_ATescaping] = ACTIONS(2643), - [anon_sym_ATautoclosure] = ACTIONS(2643), - [anon_sym_weak] = ACTIONS(2645), - [anon_sym_unowned] = ACTIONS(2645), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2643), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2643), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2643), - [sym__explicit_semi] = ACTIONS(2643), - [sym__dot_custom] = ACTIONS(2643), - [sym__conjunction_operator_custom] = ACTIONS(2643), - [sym__disjunction_operator_custom] = ACTIONS(2643), - [sym__nil_coalescing_operator_custom] = ACTIONS(2643), - [sym__eq_eq_custom] = ACTIONS(2643), - [sym__plus_then_ws] = ACTIONS(2643), - [sym__minus_then_ws] = ACTIONS(2643), - [sym_bang] = ACTIONS(2643), - [sym_default_keyword] = ACTIONS(2643), - [sym__as_custom] = ACTIONS(2643), - [sym__as_quest_custom] = ACTIONS(2643), - [sym__as_bang_custom] = ACTIONS(2643), - [sym__custom_operator] = ACTIONS(2643), - }, - [821] = { - [sym_simple_identifier] = STATE(6303), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(822), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2620), - [sym__immediate_quest] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [aux_sym_custom_operator_token1] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_CARET_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_fallthrough] = ACTIONS(2620), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2618), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_DOT_DOT_LT] = ACTIONS(2618), - [anon_sym_is] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_prefix] = ACTIONS(2620), - [anon_sym_infix] = ACTIONS(2620), - [anon_sym_postfix] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [sym_property_behavior_modifier] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_convenience] = ACTIONS(2620), - [anon_sym_required] = ACTIONS(2620), - [anon_sym_nonisolated] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_internal] = ACTIONS(2620), - [anon_sym_fileprivate] = ACTIONS(2620), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_mutating] = ACTIONS(2620), - [anon_sym_nonmutating] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_dynamic] = ACTIONS(2620), - [anon_sym_optional] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_inout] = ACTIONS(2620), - [anon_sym_ATescaping] = ACTIONS(2618), - [anon_sym_ATautoclosure] = ACTIONS(2618), - [anon_sym_weak] = ACTIONS(2620), - [anon_sym_unowned] = ACTIONS(2620), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2618), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2618), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2618), - [sym__explicit_semi] = ACTIONS(2618), - [sym__dot_custom] = ACTIONS(2618), - [sym__conjunction_operator_custom] = ACTIONS(2618), - [sym__disjunction_operator_custom] = ACTIONS(2618), - [sym__nil_coalescing_operator_custom] = ACTIONS(2618), - [sym__eq_eq_custom] = ACTIONS(2618), - [sym__plus_then_ws] = ACTIONS(2618), - [sym__minus_then_ws] = ACTIONS(2618), - [sym_bang] = ACTIONS(2618), - [sym_default_keyword] = ACTIONS(2618), - [sym__as_custom] = ACTIONS(2618), - [sym__as_quest_custom] = ACTIONS(2618), - [sym__as_bang_custom] = ACTIONS(2618), - [sym__custom_operator] = ACTIONS(2618), - }, - [822] = { - [sym_simple_identifier] = STATE(6303), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(822), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2647), - [aux_sym_simple_identifier_token2] = ACTIONS(2650), - [aux_sym_simple_identifier_token3] = ACTIONS(2650), - [aux_sym_simple_identifier_token4] = ACTIONS(2650), - [anon_sym_actor] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2655), - [sym__immediate_quest] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_CARET_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_fallthrough] = ACTIONS(2655), - [anon_sym_PLUS_EQ] = ACTIONS(2653), - [anon_sym_DASH_EQ] = ACTIONS(2653), - [anon_sym_STAR_EQ] = ACTIONS(2653), - [anon_sym_SLASH_EQ] = ACTIONS(2653), - [anon_sym_PERCENT_EQ] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2655), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_prefix] = ACTIONS(2655), - [anon_sym_infix] = ACTIONS(2655), - [anon_sym_postfix] = ACTIONS(2655), - [anon_sym_AT] = ACTIONS(2655), - [sym_property_behavior_modifier] = ACTIONS(2655), - [anon_sym_override] = ACTIONS(2655), - [anon_sym_convenience] = ACTIONS(2655), - [anon_sym_required] = ACTIONS(2655), - [anon_sym_nonisolated] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_internal] = ACTIONS(2655), - [anon_sym_fileprivate] = ACTIONS(2655), - [anon_sym_open] = ACTIONS(2655), - [anon_sym_mutating] = ACTIONS(2655), - [anon_sym_nonmutating] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_dynamic] = ACTIONS(2655), - [anon_sym_optional] = ACTIONS(2655), - [anon_sym_final] = ACTIONS(2655), - [anon_sym_inout] = ACTIONS(2655), - [anon_sym_ATescaping] = ACTIONS(2653), - [anon_sym_ATautoclosure] = ACTIONS(2653), - [anon_sym_weak] = ACTIONS(2655), - [anon_sym_unowned] = ACTIONS(2655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2653), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2653), - [sym__explicit_semi] = ACTIONS(2653), - [sym__dot_custom] = ACTIONS(2653), - [sym__conjunction_operator_custom] = ACTIONS(2653), - [sym__disjunction_operator_custom] = ACTIONS(2653), - [sym__nil_coalescing_operator_custom] = ACTIONS(2653), - [sym__eq_eq_custom] = ACTIONS(2653), - [sym__plus_then_ws] = ACTIONS(2653), - [sym__minus_then_ws] = ACTIONS(2653), - [sym_bang] = ACTIONS(2653), - [sym_default_keyword] = ACTIONS(2653), - [sym__as_custom] = ACTIONS(2653), - [sym__as_quest_custom] = ACTIONS(2653), - [sym__as_bang_custom] = ACTIONS(2653), - [sym__custom_operator] = ACTIONS(2653), - }, - [823] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_fallthrough] = ACTIONS(2687), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_prefix] = ACTIONS(2687), - [anon_sym_infix] = ACTIONS(2687), - [anon_sym_postfix] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2687), - [anon_sym_override] = ACTIONS(2687), - [anon_sym_convenience] = ACTIONS(2687), - [anon_sym_required] = ACTIONS(2687), - [anon_sym_nonisolated] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_internal] = ACTIONS(2687), - [anon_sym_fileprivate] = ACTIONS(2687), - [anon_sym_open] = ACTIONS(2687), - [anon_sym_mutating] = ACTIONS(2687), - [anon_sym_nonmutating] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_dynamic] = ACTIONS(2687), - [anon_sym_optional] = ACTIONS(2687), - [anon_sym_final] = ACTIONS(2687), - [anon_sym_inout] = ACTIONS(2687), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2687), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2689), - [sym__explicit_semi] = ACTIONS(2689), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(2689), - [sym_where_keyword] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [824] = { - [sym_simple_identifier] = STATE(1001), - [sym__simple_user_type] = STATE(1002), - [sym_array_type] = STATE(1002), - [sym_dictionary_type] = STATE(1002), - [aux_sym_key_path_expression_repeat1] = STATE(1007), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3166), - [aux_sym_simple_identifier_token2] = ACTIONS(3168), - [aux_sym_simple_identifier_token3] = ACTIONS(3168), - [aux_sym_simple_identifier_token4] = ACTIONS(3168), - [anon_sym_actor] = ACTIONS(3166), - [anon_sym_COMMA] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(2705), - [sym__immediate_quest] = ACTIONS(2699), - [anon_sym_AMP] = ACTIONS(2699), - [aux_sym_custom_operator_token1] = ACTIONS(2699), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_CARET_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_fallthrough] = ACTIONS(2705), - [anon_sym_BANG_EQ] = ACTIONS(2705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2699), - [anon_sym_LT_EQ] = ACTIONS(2699), - [anon_sym_GT_EQ] = ACTIONS(2699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2699), - [anon_sym_DOT_DOT_LT] = ACTIONS(2699), - [anon_sym_is] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2699), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2699), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_PIPE] = ACTIONS(2699), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_LT_LT] = ACTIONS(2699), - [anon_sym_GT_GT] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_prefix] = ACTIONS(2705), - [anon_sym_infix] = ACTIONS(2705), - [anon_sym_postfix] = ACTIONS(2705), - [anon_sym_AT] = ACTIONS(2705), - [sym_property_behavior_modifier] = ACTIONS(2705), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_convenience] = ACTIONS(2705), - [anon_sym_required] = ACTIONS(2705), - [anon_sym_nonisolated] = ACTIONS(2705), - [anon_sym_public] = ACTIONS(2705), - [anon_sym_private] = ACTIONS(2705), - [anon_sym_internal] = ACTIONS(2705), - [anon_sym_fileprivate] = ACTIONS(2705), - [anon_sym_open] = ACTIONS(2705), - [anon_sym_mutating] = ACTIONS(2705), - [anon_sym_nonmutating] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_dynamic] = ACTIONS(2705), - [anon_sym_optional] = ACTIONS(2705), - [anon_sym_final] = ACTIONS(2705), - [anon_sym_inout] = ACTIONS(2705), - [anon_sym_ATescaping] = ACTIONS(2699), - [anon_sym_ATautoclosure] = ACTIONS(2699), - [anon_sym_weak] = ACTIONS(2705), - [anon_sym_unowned] = ACTIONS(2705), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2699), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2699), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2699), - [sym__explicit_semi] = ACTIONS(2699), - [sym__dot_custom] = ACTIONS(2699), - [sym__conjunction_operator_custom] = ACTIONS(2699), - [sym__disjunction_operator_custom] = ACTIONS(2699), - [sym__nil_coalescing_operator_custom] = ACTIONS(2699), - [sym__eq_eq_custom] = ACTIONS(2699), - [sym__plus_then_ws] = ACTIONS(2699), - [sym__minus_then_ws] = ACTIONS(2699), - [sym_bang] = ACTIONS(2699), - [sym_default_keyword] = ACTIONS(2699), - [sym_where_keyword] = ACTIONS(2699), - [sym__as_custom] = ACTIONS(2699), - [sym__as_quest_custom] = ACTIONS(2699), - [sym__as_bang_custom] = ACTIONS(2699), - [sym__custom_operator] = ACTIONS(2699), - }, - [825] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2691), - [aux_sym_simple_identifier_token2] = ACTIONS(2693), - [aux_sym_simple_identifier_token3] = ACTIONS(2693), - [aux_sym_simple_identifier_token4] = ACTIONS(2693), - [anon_sym_actor] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_fallthrough] = ACTIONS(2691), - [anon_sym_PLUS_EQ] = ACTIONS(2693), - [anon_sym_DASH_EQ] = ACTIONS(2693), - [anon_sym_STAR_EQ] = ACTIONS(2693), - [anon_sym_SLASH_EQ] = ACTIONS(2693), - [anon_sym_PERCENT_EQ] = ACTIONS(2693), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2693), - [sym__explicit_semi] = ACTIONS(2693), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym_default_keyword] = ACTIONS(2693), - [sym_where_keyword] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [826] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2707), - [aux_sym_simple_identifier_token2] = ACTIONS(2709), - [aux_sym_simple_identifier_token3] = ACTIONS(2709), - [aux_sym_simple_identifier_token4] = ACTIONS(2709), - [anon_sym_actor] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_fallthrough] = ACTIONS(2707), - [anon_sym_PLUS_EQ] = ACTIONS(2709), - [anon_sym_DASH_EQ] = ACTIONS(2709), - [anon_sym_STAR_EQ] = ACTIONS(2709), - [anon_sym_SLASH_EQ] = ACTIONS(2709), - [anon_sym_PERCENT_EQ] = ACTIONS(2709), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_prefix] = ACTIONS(2707), - [anon_sym_infix] = ACTIONS(2707), - [anon_sym_postfix] = ACTIONS(2707), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2707), - [anon_sym_override] = ACTIONS(2707), - [anon_sym_convenience] = ACTIONS(2707), - [anon_sym_required] = ACTIONS(2707), - [anon_sym_nonisolated] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_internal] = ACTIONS(2707), - [anon_sym_fileprivate] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(2707), - [anon_sym_mutating] = ACTIONS(2707), - [anon_sym_nonmutating] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_dynamic] = ACTIONS(2707), - [anon_sym_optional] = ACTIONS(2707), - [anon_sym_final] = ACTIONS(2707), - [anon_sym_inout] = ACTIONS(2707), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2707), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2709), - [sym__explicit_semi] = ACTIONS(2709), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym_default_keyword] = ACTIONS(2709), - [sym_where_keyword] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [827] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2725), - [aux_sym_simple_identifier_token2] = ACTIONS(2727), - [aux_sym_simple_identifier_token3] = ACTIONS(2727), - [aux_sym_simple_identifier_token4] = ACTIONS(2727), - [anon_sym_actor] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_fallthrough] = ACTIONS(2725), - [anon_sym_PLUS_EQ] = ACTIONS(2727), - [anon_sym_DASH_EQ] = ACTIONS(2727), - [anon_sym_STAR_EQ] = ACTIONS(2727), - [anon_sym_SLASH_EQ] = ACTIONS(2727), - [anon_sym_PERCENT_EQ] = ACTIONS(2727), - [anon_sym_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_prefix] = ACTIONS(2725), - [anon_sym_infix] = ACTIONS(2725), - [anon_sym_postfix] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_convenience] = ACTIONS(2725), - [anon_sym_required] = ACTIONS(2725), - [anon_sym_nonisolated] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_internal] = ACTIONS(2725), - [anon_sym_fileprivate] = ACTIONS(2725), - [anon_sym_open] = ACTIONS(2725), - [anon_sym_mutating] = ACTIONS(2725), - [anon_sym_nonmutating] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_dynamic] = ACTIONS(2725), - [anon_sym_optional] = ACTIONS(2725), - [anon_sym_final] = ACTIONS(2725), - [anon_sym_inout] = ACTIONS(2725), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2725), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2727), - [sym__explicit_semi] = ACTIONS(2727), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym_default_keyword] = ACTIONS(2727), - [sym_where_keyword] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [828] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2676), - [aux_sym_simple_identifier_token2] = ACTIONS(2678), - [aux_sym_simple_identifier_token3] = ACTIONS(2678), - [aux_sym_simple_identifier_token4] = ACTIONS(2678), - [anon_sym_actor] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2676), - [sym__immediate_quest] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2676), - [anon_sym_fallthrough] = ACTIONS(2676), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_prefix] = ACTIONS(2676), - [anon_sym_infix] = ACTIONS(2676), - [anon_sym_postfix] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [sym_property_behavior_modifier] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_convenience] = ACTIONS(2676), - [anon_sym_required] = ACTIONS(2676), - [anon_sym_nonisolated] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_internal] = ACTIONS(2676), - [anon_sym_fileprivate] = ACTIONS(2676), - [anon_sym_open] = ACTIONS(2676), - [anon_sym_mutating] = ACTIONS(2676), - [anon_sym_nonmutating] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_dynamic] = ACTIONS(2676), - [anon_sym_optional] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_inout] = ACTIONS(2676), - [anon_sym_ATescaping] = ACTIONS(2678), - [anon_sym_ATautoclosure] = ACTIONS(2678), - [anon_sym_weak] = ACTIONS(2676), - [anon_sym_unowned] = ACTIONS(2676), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2678), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2678), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2678), - [sym__explicit_semi] = ACTIONS(2678), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2678), - [sym__disjunction_operator_custom] = ACTIONS(2678), - [sym__nil_coalescing_operator_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym_bang] = ACTIONS(2678), - [sym_default_keyword] = ACTIONS(2678), - [sym_where_keyword] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2678), - [sym__as_quest_custom] = ACTIONS(2678), - [sym__as_bang_custom] = ACTIONS(2678), - [sym__custom_operator] = ACTIONS(2678), - }, - [829] = { - [sym_simple_identifier] = STATE(4527), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3174), - [aux_sym_simple_identifier_token2] = ACTIONS(3176), - [aux_sym_simple_identifier_token3] = ACTIONS(3176), - [aux_sym_simple_identifier_token4] = ACTIONS(3176), - [anon_sym_actor] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_fallthrough] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_prefix] = ACTIONS(2781), - [anon_sym_infix] = ACTIONS(2781), - [anon_sym_postfix] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2781), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_convenience] = ACTIONS(2781), - [anon_sym_required] = ACTIONS(2781), - [anon_sym_nonisolated] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_internal] = ACTIONS(2781), - [anon_sym_fileprivate] = ACTIONS(2781), - [anon_sym_open] = ACTIONS(2781), - [anon_sym_mutating] = ACTIONS(2781), - [anon_sym_nonmutating] = ACTIONS(2781), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_dynamic] = ACTIONS(2781), - [anon_sym_optional] = ACTIONS(2781), - [anon_sym_final] = ACTIONS(2781), - [anon_sym_inout] = ACTIONS(2781), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2781), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym_default_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [830] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_fallthrough] = ACTIONS(2687), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_prefix] = ACTIONS(2687), - [anon_sym_infix] = ACTIONS(2687), - [anon_sym_postfix] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2687), - [anon_sym_override] = ACTIONS(2687), - [anon_sym_convenience] = ACTIONS(2687), - [anon_sym_required] = ACTIONS(2687), - [anon_sym_nonisolated] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_internal] = ACTIONS(2687), - [anon_sym_fileprivate] = ACTIONS(2687), - [anon_sym_open] = ACTIONS(2687), - [anon_sym_mutating] = ACTIONS(2687), - [anon_sym_nonmutating] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_dynamic] = ACTIONS(2687), - [anon_sym_optional] = ACTIONS(2687), - [anon_sym_final] = ACTIONS(2687), - [anon_sym_inout] = ACTIONS(2687), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2687), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2689), - [sym__explicit_semi] = ACTIONS(2689), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [831] = { - [sym_simple_identifier] = STATE(1021), - [sym__simple_user_type] = STATE(1014), - [sym_array_type] = STATE(1014), - [sym_dictionary_type] = STATE(1014), - [aux_sym_key_path_expression_repeat1] = STATE(1012), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3178), - [aux_sym_simple_identifier_token2] = ACTIONS(3180), - [aux_sym_simple_identifier_token3] = ACTIONS(3180), - [aux_sym_simple_identifier_token4] = ACTIONS(3180), - [anon_sym_actor] = ACTIONS(3178), - [anon_sym_COMMA] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_QMARK] = ACTIONS(2705), - [sym__immediate_quest] = ACTIONS(2699), - [anon_sym_AMP] = ACTIONS(2699), - [aux_sym_custom_operator_token1] = ACTIONS(2699), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_CARET_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_fallthrough] = ACTIONS(2705), - [anon_sym_BANG_EQ] = ACTIONS(2705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2699), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2699), - [anon_sym_LT_EQ] = ACTIONS(2699), - [anon_sym_GT_EQ] = ACTIONS(2699), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2699), - [anon_sym_DOT_DOT_LT] = ACTIONS(2699), - [anon_sym_is] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2699), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2699), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [anon_sym_PIPE] = ACTIONS(2699), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_LT_LT] = ACTIONS(2699), - [anon_sym_GT_GT] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_prefix] = ACTIONS(2705), - [anon_sym_infix] = ACTIONS(2705), - [anon_sym_postfix] = ACTIONS(2705), - [anon_sym_AT] = ACTIONS(2705), - [sym_property_behavior_modifier] = ACTIONS(2705), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_convenience] = ACTIONS(2705), - [anon_sym_required] = ACTIONS(2705), - [anon_sym_nonisolated] = ACTIONS(2705), - [anon_sym_public] = ACTIONS(2705), - [anon_sym_private] = ACTIONS(2705), - [anon_sym_internal] = ACTIONS(2705), - [anon_sym_fileprivate] = ACTIONS(2705), - [anon_sym_open] = ACTIONS(2705), - [anon_sym_mutating] = ACTIONS(2705), - [anon_sym_nonmutating] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_dynamic] = ACTIONS(2705), - [anon_sym_optional] = ACTIONS(2705), - [anon_sym_final] = ACTIONS(2705), - [anon_sym_inout] = ACTIONS(2705), - [anon_sym_ATescaping] = ACTIONS(2699), - [anon_sym_ATautoclosure] = ACTIONS(2699), - [anon_sym_weak] = ACTIONS(2705), - [anon_sym_unowned] = ACTIONS(2705), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2699), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2699), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2699), - [sym__explicit_semi] = ACTIONS(2699), - [sym__dot_custom] = ACTIONS(2699), - [sym__conjunction_operator_custom] = ACTIONS(2699), - [sym__disjunction_operator_custom] = ACTIONS(2699), - [sym__nil_coalescing_operator_custom] = ACTIONS(2699), - [sym__eq_eq_custom] = ACTIONS(2699), - [sym__plus_then_ws] = ACTIONS(2699), - [sym__minus_then_ws] = ACTIONS(2699), - [sym_bang] = ACTIONS(2699), - [sym_default_keyword] = ACTIONS(2699), - [sym__as_custom] = ACTIONS(2699), - [sym__as_quest_custom] = ACTIONS(2699), - [sym__as_bang_custom] = ACTIONS(2699), - [sym__custom_operator] = ACTIONS(2699), - }, - [832] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2691), - [aux_sym_simple_identifier_token2] = ACTIONS(2693), - [aux_sym_simple_identifier_token3] = ACTIONS(2693), - [aux_sym_simple_identifier_token4] = ACTIONS(2693), - [anon_sym_actor] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_fallthrough] = ACTIONS(2691), - [anon_sym_PLUS_EQ] = ACTIONS(2693), - [anon_sym_DASH_EQ] = ACTIONS(2693), - [anon_sym_STAR_EQ] = ACTIONS(2693), - [anon_sym_SLASH_EQ] = ACTIONS(2693), - [anon_sym_PERCENT_EQ] = ACTIONS(2693), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2693), - [sym__explicit_semi] = ACTIONS(2693), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym_default_keyword] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [833] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2707), - [aux_sym_simple_identifier_token2] = ACTIONS(2709), - [aux_sym_simple_identifier_token3] = ACTIONS(2709), - [aux_sym_simple_identifier_token4] = ACTIONS(2709), - [anon_sym_actor] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_fallthrough] = ACTIONS(2707), - [anon_sym_PLUS_EQ] = ACTIONS(2709), - [anon_sym_DASH_EQ] = ACTIONS(2709), - [anon_sym_STAR_EQ] = ACTIONS(2709), - [anon_sym_SLASH_EQ] = ACTIONS(2709), - [anon_sym_PERCENT_EQ] = ACTIONS(2709), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_prefix] = ACTIONS(2707), - [anon_sym_infix] = ACTIONS(2707), - [anon_sym_postfix] = ACTIONS(2707), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2707), - [anon_sym_override] = ACTIONS(2707), - [anon_sym_convenience] = ACTIONS(2707), - [anon_sym_required] = ACTIONS(2707), - [anon_sym_nonisolated] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_internal] = ACTIONS(2707), - [anon_sym_fileprivate] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(2707), - [anon_sym_mutating] = ACTIONS(2707), - [anon_sym_nonmutating] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_dynamic] = ACTIONS(2707), - [anon_sym_optional] = ACTIONS(2707), - [anon_sym_final] = ACTIONS(2707), - [anon_sym_inout] = ACTIONS(2707), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2707), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2709), - [sym__explicit_semi] = ACTIONS(2709), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym_default_keyword] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [834] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2725), - [aux_sym_simple_identifier_token2] = ACTIONS(2727), - [aux_sym_simple_identifier_token3] = ACTIONS(2727), - [aux_sym_simple_identifier_token4] = ACTIONS(2727), - [anon_sym_actor] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_fallthrough] = ACTIONS(2725), - [anon_sym_PLUS_EQ] = ACTIONS(2727), - [anon_sym_DASH_EQ] = ACTIONS(2727), - [anon_sym_STAR_EQ] = ACTIONS(2727), - [anon_sym_SLASH_EQ] = ACTIONS(2727), - [anon_sym_PERCENT_EQ] = ACTIONS(2727), - [anon_sym_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_prefix] = ACTIONS(2725), - [anon_sym_infix] = ACTIONS(2725), - [anon_sym_postfix] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_convenience] = ACTIONS(2725), - [anon_sym_required] = ACTIONS(2725), - [anon_sym_nonisolated] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_internal] = ACTIONS(2725), - [anon_sym_fileprivate] = ACTIONS(2725), - [anon_sym_open] = ACTIONS(2725), - [anon_sym_mutating] = ACTIONS(2725), - [anon_sym_nonmutating] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_dynamic] = ACTIONS(2725), - [anon_sym_optional] = ACTIONS(2725), - [anon_sym_final] = ACTIONS(2725), - [anon_sym_inout] = ACTIONS(2725), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2725), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2727), - [sym__explicit_semi] = ACTIONS(2727), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym_default_keyword] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [835] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2707), - [aux_sym_simple_identifier_token2] = ACTIONS(2709), - [aux_sym_simple_identifier_token3] = ACTIONS(2709), - [aux_sym_simple_identifier_token4] = ACTIONS(2709), - [anon_sym_actor] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_fallthrough] = ACTIONS(3188), - [anon_sym_PLUS_EQ] = ACTIONS(2709), - [anon_sym_DASH_EQ] = ACTIONS(2709), - [anon_sym_STAR_EQ] = ACTIONS(2709), - [anon_sym_SLASH_EQ] = ACTIONS(2709), - [anon_sym_PERCENT_EQ] = ACTIONS(2709), - [anon_sym_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_prefix] = ACTIONS(3188), - [anon_sym_infix] = ACTIONS(3188), - [anon_sym_postfix] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [sym_property_behavior_modifier] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_convenience] = ACTIONS(3188), - [anon_sym_required] = ACTIONS(3188), - [anon_sym_nonisolated] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_internal] = ACTIONS(3188), - [anon_sym_fileprivate] = ACTIONS(3188), - [anon_sym_open] = ACTIONS(3188), - [anon_sym_mutating] = ACTIONS(3188), - [anon_sym_nonmutating] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_dynamic] = ACTIONS(3188), - [anon_sym_optional] = ACTIONS(3188), - [anon_sym_final] = ACTIONS(3188), - [anon_sym_inout] = ACTIONS(3188), - [anon_sym_ATescaping] = ACTIONS(3186), - [anon_sym_ATautoclosure] = ACTIONS(3186), - [anon_sym_weak] = ACTIONS(3188), - [anon_sym_unowned] = ACTIONS(3188), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3186), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3186), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3186), - [sym__explicit_semi] = ACTIONS(3186), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym_default_keyword] = ACTIONS(3186), - [sym_where_keyword] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [836] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2676), - [aux_sym_simple_identifier_token2] = ACTIONS(2678), - [aux_sym_simple_identifier_token3] = ACTIONS(2678), - [aux_sym_simple_identifier_token4] = ACTIONS(2678), - [anon_sym_actor] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2676), - [sym__immediate_quest] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2676), - [anon_sym_fallthrough] = ACTIONS(2676), - [anon_sym_PLUS_EQ] = ACTIONS(2678), - [anon_sym_DASH_EQ] = ACTIONS(2678), - [anon_sym_STAR_EQ] = ACTIONS(2678), - [anon_sym_SLASH_EQ] = ACTIONS(2678), - [anon_sym_PERCENT_EQ] = ACTIONS(2678), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_prefix] = ACTIONS(2676), - [anon_sym_infix] = ACTIONS(2676), - [anon_sym_postfix] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [sym_property_behavior_modifier] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_convenience] = ACTIONS(2676), - [anon_sym_required] = ACTIONS(2676), - [anon_sym_nonisolated] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_internal] = ACTIONS(2676), - [anon_sym_fileprivate] = ACTIONS(2676), - [anon_sym_open] = ACTIONS(2676), - [anon_sym_mutating] = ACTIONS(2676), - [anon_sym_nonmutating] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_dynamic] = ACTIONS(2676), - [anon_sym_optional] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_inout] = ACTIONS(2676), - [anon_sym_ATescaping] = ACTIONS(2678), - [anon_sym_ATautoclosure] = ACTIONS(2678), - [anon_sym_weak] = ACTIONS(2676), - [anon_sym_unowned] = ACTIONS(2676), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2678), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2678), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2678), - [sym__explicit_semi] = ACTIONS(2678), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2678), - [sym__disjunction_operator_custom] = ACTIONS(2678), - [sym__nil_coalescing_operator_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym_bang] = ACTIONS(2678), - [sym_default_keyword] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2678), - [sym__as_quest_custom] = ACTIONS(2678), - [sym__as_bang_custom] = ACTIONS(2678), - [sym__custom_operator] = ACTIONS(2678), - }, - [837] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3192), - [anon_sym_fallthrough] = ACTIONS(3192), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_prefix] = ACTIONS(3192), - [anon_sym_infix] = ACTIONS(3192), - [anon_sym_postfix] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [sym_property_behavior_modifier] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_convenience] = ACTIONS(3192), - [anon_sym_required] = ACTIONS(3192), - [anon_sym_nonisolated] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_internal] = ACTIONS(3192), - [anon_sym_fileprivate] = ACTIONS(3192), - [anon_sym_open] = ACTIONS(3192), - [anon_sym_mutating] = ACTIONS(3192), - [anon_sym_nonmutating] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_dynamic] = ACTIONS(3192), - [anon_sym_optional] = ACTIONS(3192), - [anon_sym_final] = ACTIONS(3192), - [anon_sym_inout] = ACTIONS(3192), - [anon_sym_ATescaping] = ACTIONS(3190), - [anon_sym_ATautoclosure] = ACTIONS(3190), - [anon_sym_weak] = ACTIONS(3192), - [anon_sym_unowned] = ACTIONS(3192), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3190), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3190), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3190), - [sym__explicit_semi] = ACTIONS(3190), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(3190), - [sym_where_keyword] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [838] = { - [sym__arrow_operator] = STATE(3193), - [sym__async_keyword] = STATE(4946), - [sym_throws] = STATE(6003), - [aux_sym_protocol_composition_type_repeat1] = STATE(898), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(2638), - [sym__immediate_quest] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(3196), - [aux_sym_custom_operator_token1] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_GT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_CARET_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_fallthrough] = ACTIONS(2636), - [anon_sym_BANG_EQ] = ACTIONS(2638), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2636), - [anon_sym_LT_EQ] = ACTIONS(2636), - [anon_sym_GT_EQ] = ACTIONS(2636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), - [anon_sym_DOT_DOT_LT] = ACTIONS(2636), - [anon_sym_is] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_PERCENT] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_CARET] = ACTIONS(2638), - [anon_sym_LT_LT] = ACTIONS(2636), - [anon_sym_GT_GT] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_prefix] = ACTIONS(2636), - [anon_sym_infix] = ACTIONS(2636), - [anon_sym_postfix] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2638), - [sym_property_behavior_modifier] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_convenience] = ACTIONS(2636), - [anon_sym_required] = ACTIONS(2636), - [anon_sym_nonisolated] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_internal] = ACTIONS(2636), - [anon_sym_fileprivate] = ACTIONS(2636), - [anon_sym_open] = ACTIONS(2636), - [anon_sym_mutating] = ACTIONS(2636), - [anon_sym_nonmutating] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_dynamic] = ACTIONS(2636), - [anon_sym_optional] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_inout] = ACTIONS(2636), - [anon_sym_ATescaping] = ACTIONS(2636), - [anon_sym_ATautoclosure] = ACTIONS(2636), - [anon_sym_weak] = ACTIONS(2636), - [anon_sym_unowned] = ACTIONS(2638), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2636), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2636), - [sym__explicit_semi] = ACTIONS(2636), - [sym__arrow_operator_custom] = ACTIONS(3198), - [sym__dot_custom] = ACTIONS(2636), - [sym__conjunction_operator_custom] = ACTIONS(2636), - [sym__disjunction_operator_custom] = ACTIONS(2636), - [sym__nil_coalescing_operator_custom] = ACTIONS(2636), - [sym__eq_eq_custom] = ACTIONS(2636), - [sym__plus_then_ws] = ACTIONS(2636), - [sym__minus_then_ws] = ACTIONS(2636), - [sym_bang] = ACTIONS(2636), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2636), - [sym_where_keyword] = ACTIONS(2636), - [sym__as_custom] = ACTIONS(2636), - [sym__as_quest_custom] = ACTIONS(2636), - [sym__as_bang_custom] = ACTIONS(2636), - [sym__async_keyword_custom] = ACTIONS(3200), - [sym__custom_operator] = ACTIONS(2636), - }, - [839] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3204), - [anon_sym_fallthrough] = ACTIONS(3204), - [anon_sym_PLUS_EQ] = ACTIONS(2689), - [anon_sym_DASH_EQ] = ACTIONS(2689), - [anon_sym_STAR_EQ] = ACTIONS(2689), - [anon_sym_SLASH_EQ] = ACTIONS(2689), - [anon_sym_PERCENT_EQ] = ACTIONS(2689), - [anon_sym_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_prefix] = ACTIONS(3204), - [anon_sym_infix] = ACTIONS(3204), - [anon_sym_postfix] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [sym_property_behavior_modifier] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_convenience] = ACTIONS(3204), - [anon_sym_required] = ACTIONS(3204), - [anon_sym_nonisolated] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_internal] = ACTIONS(3204), - [anon_sym_fileprivate] = ACTIONS(3204), - [anon_sym_open] = ACTIONS(3204), - [anon_sym_mutating] = ACTIONS(3204), - [anon_sym_nonmutating] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_dynamic] = ACTIONS(3204), - [anon_sym_optional] = ACTIONS(3204), - [anon_sym_final] = ACTIONS(3204), - [anon_sym_inout] = ACTIONS(3204), - [anon_sym_ATescaping] = ACTIONS(3202), - [anon_sym_ATautoclosure] = ACTIONS(3202), - [anon_sym_weak] = ACTIONS(3204), - [anon_sym_unowned] = ACTIONS(3204), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3202), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3202), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3202), - [sym__explicit_semi] = ACTIONS(3202), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(3202), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [840] = { - [sym__arrow_operator] = STATE(3193), - [sym__async_keyword] = STATE(4946), - [sym_throws] = STATE(6003), - [aux_sym_protocol_composition_type_repeat1] = STATE(898), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(2634), - [sym__immediate_quest] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(3196), - [aux_sym_custom_operator_token1] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_GT] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_CARET_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_fallthrough] = ACTIONS(2632), - [anon_sym_BANG_EQ] = ACTIONS(2634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2632), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2632), - [anon_sym_LT_EQ] = ACTIONS(2632), - [anon_sym_GT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_is] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_CARET] = ACTIONS(2634), - [anon_sym_LT_LT] = ACTIONS(2632), - [anon_sym_GT_GT] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_prefix] = ACTIONS(2632), - [anon_sym_infix] = ACTIONS(2632), - [anon_sym_postfix] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2634), - [sym_property_behavior_modifier] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_convenience] = ACTIONS(2632), - [anon_sym_required] = ACTIONS(2632), - [anon_sym_nonisolated] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_internal] = ACTIONS(2632), - [anon_sym_fileprivate] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2632), - [anon_sym_mutating] = ACTIONS(2632), - [anon_sym_nonmutating] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_dynamic] = ACTIONS(2632), - [anon_sym_optional] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_inout] = ACTIONS(2632), - [anon_sym_ATescaping] = ACTIONS(2632), - [anon_sym_ATautoclosure] = ACTIONS(2632), - [anon_sym_weak] = ACTIONS(2632), - [anon_sym_unowned] = ACTIONS(2634), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2632), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2632), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2632), - [sym__explicit_semi] = ACTIONS(2632), - [sym__arrow_operator_custom] = ACTIONS(3198), - [sym__dot_custom] = ACTIONS(2632), - [sym__conjunction_operator_custom] = ACTIONS(2632), - [sym__disjunction_operator_custom] = ACTIONS(2632), - [sym__nil_coalescing_operator_custom] = ACTIONS(2632), - [sym__eq_eq_custom] = ACTIONS(2632), - [sym__plus_then_ws] = ACTIONS(2632), - [sym__minus_then_ws] = ACTIONS(2632), - [sym_bang] = ACTIONS(2632), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2632), - [sym_where_keyword] = ACTIONS(2632), - [sym__as_custom] = ACTIONS(2632), - [sym__as_quest_custom] = ACTIONS(2632), - [sym__as_bang_custom] = ACTIONS(2632), - [sym__async_keyword_custom] = ACTIONS(3200), - [sym__custom_operator] = ACTIONS(2632), - }, - [841] = { - [sym__arrow_operator] = STATE(3193), - [sym__async_keyword] = STATE(4946), - [sym_throws] = STATE(6003), - [aux_sym_optional_type_repeat1] = STATE(901), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(2626), - [aux_sym_custom_operator_token1] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_CARET_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_fallthrough] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_LT] = ACTIONS(2626), - [anon_sym_is] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2626), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2626), - [sym__explicit_semi] = ACTIONS(2626), - [sym__arrow_operator_custom] = ACTIONS(3198), - [sym__dot_custom] = ACTIONS(2626), - [sym__conjunction_operator_custom] = ACTIONS(2626), - [sym__disjunction_operator_custom] = ACTIONS(2626), - [sym__nil_coalescing_operator_custom] = ACTIONS(2626), - [sym__eq_eq_custom] = ACTIONS(2626), - [sym__plus_then_ws] = ACTIONS(2626), - [sym__minus_then_ws] = ACTIONS(2626), - [sym_bang] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2626), - [sym_where_keyword] = ACTIONS(2626), - [sym__as_custom] = ACTIONS(2626), - [sym__as_quest_custom] = ACTIONS(2626), - [sym__as_bang_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(3200), - [sym__custom_operator] = ACTIONS(2626), - }, - [842] = { - [sym__arrow_operator] = STATE(3193), - [sym__async_keyword] = STATE(4946), - [sym_throws] = STATE(6003), - [aux_sym_protocol_composition_type_repeat1] = STATE(898), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(2609), - [sym__immediate_quest] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(3196), - [aux_sym_custom_operator_token1] = ACTIONS(2607), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_GT] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_CARET_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_case] = ACTIONS(2607), - [anon_sym_fallthrough] = ACTIONS(2607), - [anon_sym_BANG_EQ] = ACTIONS(2609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2607), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2607), - [anon_sym_LT_EQ] = ACTIONS(2607), - [anon_sym_GT_EQ] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2607), - [anon_sym_DOT_DOT_LT] = ACTIONS(2607), - [anon_sym_is] = ACTIONS(2607), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_SLASH] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2607), - [anon_sym_GT_GT] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2607), - [anon_sym_prefix] = ACTIONS(2607), - [anon_sym_infix] = ACTIONS(2607), - [anon_sym_postfix] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2609), - [sym_property_behavior_modifier] = ACTIONS(2607), - [anon_sym_override] = ACTIONS(2607), - [anon_sym_convenience] = ACTIONS(2607), - [anon_sym_required] = ACTIONS(2607), - [anon_sym_nonisolated] = ACTIONS(2607), - [anon_sym_public] = ACTIONS(2607), - [anon_sym_private] = ACTIONS(2607), - [anon_sym_internal] = ACTIONS(2607), - [anon_sym_fileprivate] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2607), - [anon_sym_mutating] = ACTIONS(2607), - [anon_sym_nonmutating] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_dynamic] = ACTIONS(2607), - [anon_sym_optional] = ACTIONS(2607), - [anon_sym_final] = ACTIONS(2607), - [anon_sym_inout] = ACTIONS(2607), - [anon_sym_ATescaping] = ACTIONS(2607), - [anon_sym_ATautoclosure] = ACTIONS(2607), - [anon_sym_weak] = ACTIONS(2607), - [anon_sym_unowned] = ACTIONS(2609), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2607), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2607), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2607), - [sym__explicit_semi] = ACTIONS(2607), - [sym__arrow_operator_custom] = ACTIONS(3198), - [sym__dot_custom] = ACTIONS(2607), - [sym__conjunction_operator_custom] = ACTIONS(2607), - [sym__disjunction_operator_custom] = ACTIONS(2607), - [sym__nil_coalescing_operator_custom] = ACTIONS(2607), - [sym__eq_eq_custom] = ACTIONS(2607), - [sym__plus_then_ws] = ACTIONS(2607), - [sym__minus_then_ws] = ACTIONS(2607), - [sym_bang] = ACTIONS(2607), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2607), - [sym_where_keyword] = ACTIONS(2607), - [sym__as_custom] = ACTIONS(2607), - [sym__as_quest_custom] = ACTIONS(2607), - [sym__as_bang_custom] = ACTIONS(2607), - [sym__async_keyword_custom] = ACTIONS(3200), - [sym__custom_operator] = ACTIONS(2607), - }, - [843] = { - [sym__arrow_operator] = STATE(3193), - [sym__async_keyword] = STATE(4946), - [sym_throws] = STATE(6003), - [aux_sym_protocol_composition_type_repeat1] = STATE(898), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(2624), - [sym__immediate_quest] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(3196), - [aux_sym_custom_operator_token1] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_GT] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_CARET_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_fallthrough] = ACTIONS(2622), - [anon_sym_BANG_EQ] = ACTIONS(2624), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2622), - [anon_sym_LT_EQ] = ACTIONS(2622), - [anon_sym_GT_EQ] = ACTIONS(2622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), - [anon_sym_DOT_DOT_LT] = ACTIONS(2622), - [anon_sym_is] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2624), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_CARET] = ACTIONS(2624), - [anon_sym_LT_LT] = ACTIONS(2622), - [anon_sym_GT_GT] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_prefix] = ACTIONS(2622), - [anon_sym_infix] = ACTIONS(2622), - [anon_sym_postfix] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2624), - [sym_property_behavior_modifier] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_convenience] = ACTIONS(2622), - [anon_sym_required] = ACTIONS(2622), - [anon_sym_nonisolated] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_internal] = ACTIONS(2622), - [anon_sym_fileprivate] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_mutating] = ACTIONS(2622), - [anon_sym_nonmutating] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_dynamic] = ACTIONS(2622), - [anon_sym_optional] = ACTIONS(2622), - [anon_sym_final] = ACTIONS(2622), - [anon_sym_inout] = ACTIONS(2622), - [anon_sym_ATescaping] = ACTIONS(2622), - [anon_sym_ATautoclosure] = ACTIONS(2622), - [anon_sym_weak] = ACTIONS(2622), - [anon_sym_unowned] = ACTIONS(2624), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2622), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2622), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2622), - [sym__explicit_semi] = ACTIONS(2622), - [sym__arrow_operator_custom] = ACTIONS(3198), - [sym__dot_custom] = ACTIONS(2622), - [sym__conjunction_operator_custom] = ACTIONS(2622), - [sym__disjunction_operator_custom] = ACTIONS(2622), - [sym__nil_coalescing_operator_custom] = ACTIONS(2622), - [sym__eq_eq_custom] = ACTIONS(2622), - [sym__plus_then_ws] = ACTIONS(2622), - [sym__minus_then_ws] = ACTIONS(2622), - [sym_bang] = ACTIONS(2622), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2622), - [sym_where_keyword] = ACTIONS(2622), - [sym__as_custom] = ACTIONS(2622), - [sym__as_quest_custom] = ACTIONS(2622), - [sym__as_bang_custom] = ACTIONS(2622), - [sym__async_keyword_custom] = ACTIONS(3200), - [sym__custom_operator] = ACTIONS(2622), - }, - [844] = { - [sym__arrow_operator] = STATE(3193), - [sym__async_keyword] = STATE(4946), - [sym_throws] = STATE(6003), - [aux_sym_protocol_composition_type_repeat1] = STATE(898), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(2585), - [sym__immediate_quest] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(3196), - [aux_sym_custom_operator_token1] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_CARET_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_fallthrough] = ACTIONS(2581), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2581), - [anon_sym_LT_EQ] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_is] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2581), - [sym__explicit_semi] = ACTIONS(2581), - [sym__arrow_operator_custom] = ACTIONS(3198), - [sym__dot_custom] = ACTIONS(2581), - [sym__conjunction_operator_custom] = ACTIONS(2581), - [sym__disjunction_operator_custom] = ACTIONS(2581), - [sym__nil_coalescing_operator_custom] = ACTIONS(2581), - [sym__eq_eq_custom] = ACTIONS(2581), - [sym__plus_then_ws] = ACTIONS(2581), - [sym__minus_then_ws] = ACTIONS(2581), - [sym_bang] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2581), - [sym_where_keyword] = ACTIONS(2581), - [sym__as_custom] = ACTIONS(2581), - [sym__as_quest_custom] = ACTIONS(2581), - [sym__as_bang_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(3200), - [sym__custom_operator] = ACTIONS(2581), - }, - [845] = { - [sym__type_level_declaration] = STATE(850), - [sym_import_declaration] = STATE(850), - [sym_property_declaration] = STATE(850), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(850), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(850), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(850), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(850), - [sym_protocol_declaration] = STATE(850), - [sym_deinit_declaration] = STATE(850), - [sym_subscript_declaration] = STATE(850), - [sym_operator_declaration] = STATE(850), - [sym_precedence_group_declaration] = STATE(850), - [sym_associatedtype_declaration] = STATE(850), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(850), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [846] = { - [sym__type_level_declaration] = STATE(850), - [sym_import_declaration] = STATE(850), - [sym_property_declaration] = STATE(850), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(850), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(850), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(850), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(850), - [sym_protocol_declaration] = STATE(850), - [sym_deinit_declaration] = STATE(850), - [sym_subscript_declaration] = STATE(850), - [sym_operator_declaration] = STATE(850), - [sym_precedence_group_declaration] = STATE(850), - [sym_associatedtype_declaration] = STATE(850), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(850), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [847] = { - [sym__type_level_declaration] = STATE(845), - [sym_import_declaration] = STATE(845), - [sym_property_declaration] = STATE(845), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(845), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(845), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(845), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(845), - [sym_protocol_declaration] = STATE(845), - [sym_deinit_declaration] = STATE(845), - [sym_subscript_declaration] = STATE(845), - [sym_operator_declaration] = STATE(845), - [sym_precedence_group_declaration] = STATE(845), - [sym_associatedtype_declaration] = STATE(845), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(845), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [848] = { - [sym__arrow_operator] = STATE(3330), - [sym__async_keyword] = STATE(4969), - [sym_throws] = STATE(6062), - [aux_sym_protocol_composition_type_repeat1] = STATE(924), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(2638), - [sym__immediate_quest] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(3264), - [aux_sym_custom_operator_token1] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_GT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_CARET_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_fallthrough] = ACTIONS(2636), - [anon_sym_BANG_EQ] = ACTIONS(2638), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2636), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2636), - [anon_sym_LT_EQ] = ACTIONS(2636), - [anon_sym_GT_EQ] = ACTIONS(2636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), - [anon_sym_DOT_DOT_LT] = ACTIONS(2636), - [anon_sym_is] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_PERCENT] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_CARET] = ACTIONS(2638), - [anon_sym_LT_LT] = ACTIONS(2636), - [anon_sym_GT_GT] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_prefix] = ACTIONS(2636), - [anon_sym_infix] = ACTIONS(2636), - [anon_sym_postfix] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2638), - [sym_property_behavior_modifier] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_convenience] = ACTIONS(2636), - [anon_sym_required] = ACTIONS(2636), - [anon_sym_nonisolated] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_internal] = ACTIONS(2636), - [anon_sym_fileprivate] = ACTIONS(2636), - [anon_sym_open] = ACTIONS(2636), - [anon_sym_mutating] = ACTIONS(2636), - [anon_sym_nonmutating] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_dynamic] = ACTIONS(2636), - [anon_sym_optional] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_inout] = ACTIONS(2636), - [anon_sym_ATescaping] = ACTIONS(2636), - [anon_sym_ATautoclosure] = ACTIONS(2636), - [anon_sym_weak] = ACTIONS(2636), - [anon_sym_unowned] = ACTIONS(2638), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2636), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2636), - [sym__explicit_semi] = ACTIONS(2636), - [sym__arrow_operator_custom] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(2636), - [sym__conjunction_operator_custom] = ACTIONS(2636), - [sym__disjunction_operator_custom] = ACTIONS(2636), - [sym__nil_coalescing_operator_custom] = ACTIONS(2636), - [sym__eq_eq_custom] = ACTIONS(2636), - [sym__plus_then_ws] = ACTIONS(2636), - [sym__minus_then_ws] = ACTIONS(2636), - [sym_bang] = ACTIONS(2636), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2636), - [sym__as_custom] = ACTIONS(2636), - [sym__as_quest_custom] = ACTIONS(2636), - [sym__as_bang_custom] = ACTIONS(2636), - [sym__async_keyword_custom] = ACTIONS(3268), - [sym__custom_operator] = ACTIONS(2636), - }, - [849] = { - [sym__arrow_operator] = STATE(3330), - [sym__async_keyword] = STATE(4969), - [sym_throws] = STATE(6062), - [aux_sym_protocol_composition_type_repeat1] = STATE(924), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(2634), - [sym__immediate_quest] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(3264), - [aux_sym_custom_operator_token1] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_GT] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_CARET_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_fallthrough] = ACTIONS(2632), - [anon_sym_BANG_EQ] = ACTIONS(2634), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2632), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2632), - [anon_sym_LT_EQ] = ACTIONS(2632), - [anon_sym_GT_EQ] = ACTIONS(2632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2632), - [anon_sym_DOT_DOT_LT] = ACTIONS(2632), - [anon_sym_is] = ACTIONS(2632), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_SLASH] = ACTIONS(2634), - [anon_sym_PERCENT] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_CARET] = ACTIONS(2634), - [anon_sym_LT_LT] = ACTIONS(2632), - [anon_sym_GT_GT] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_prefix] = ACTIONS(2632), - [anon_sym_infix] = ACTIONS(2632), - [anon_sym_postfix] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2634), - [sym_property_behavior_modifier] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_convenience] = ACTIONS(2632), - [anon_sym_required] = ACTIONS(2632), - [anon_sym_nonisolated] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_internal] = ACTIONS(2632), - [anon_sym_fileprivate] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2632), - [anon_sym_mutating] = ACTIONS(2632), - [anon_sym_nonmutating] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_dynamic] = ACTIONS(2632), - [anon_sym_optional] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_inout] = ACTIONS(2632), - [anon_sym_ATescaping] = ACTIONS(2632), - [anon_sym_ATautoclosure] = ACTIONS(2632), - [anon_sym_weak] = ACTIONS(2632), - [anon_sym_unowned] = ACTIONS(2634), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2632), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2632), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2632), - [sym__explicit_semi] = ACTIONS(2632), - [sym__arrow_operator_custom] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(2632), - [sym__conjunction_operator_custom] = ACTIONS(2632), - [sym__disjunction_operator_custom] = ACTIONS(2632), - [sym__nil_coalescing_operator_custom] = ACTIONS(2632), - [sym__eq_eq_custom] = ACTIONS(2632), - [sym__plus_then_ws] = ACTIONS(2632), - [sym__minus_then_ws] = ACTIONS(2632), - [sym_bang] = ACTIONS(2632), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2632), - [sym__as_custom] = ACTIONS(2632), - [sym__as_quest_custom] = ACTIONS(2632), - [sym__as_bang_custom] = ACTIONS(2632), - [sym__async_keyword_custom] = ACTIONS(3268), - [sym__custom_operator] = ACTIONS(2632), - }, - [850] = { - [sym__type_level_declaration] = STATE(850), - [sym_import_declaration] = STATE(850), - [sym_property_declaration] = STATE(850), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(850), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(850), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(850), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(850), - [sym_protocol_declaration] = STATE(850), - [sym_deinit_declaration] = STATE(850), - [sym_subscript_declaration] = STATE(850), - [sym_operator_declaration] = STATE(850), - [sym_precedence_group_declaration] = STATE(850), - [sym_associatedtype_declaration] = STATE(850), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(850), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_typealias] = ACTIONS(3284), - [anon_sym_struct] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_protocol] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_func] = ACTIONS(3299), - [anon_sym_extension] = ACTIONS(3302), - [anon_sym_indirect] = ACTIONS(3305), - [anon_sym_init] = ACTIONS(3308), - [anon_sym_deinit] = ACTIONS(3311), - [anon_sym_subscript] = ACTIONS(3314), - [anon_sym_prefix] = ACTIONS(3317), - [anon_sym_infix] = ACTIONS(3317), - [anon_sym_postfix] = ACTIONS(3317), - [anon_sym_precedencegroup] = ACTIONS(3320), - [anon_sym_associatedtype] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3326), - [sym_property_behavior_modifier] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_convenience] = ACTIONS(3332), - [anon_sym_required] = ACTIONS(3332), - [anon_sym_nonisolated] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3335), - [anon_sym_private] = ACTIONS(3335), - [anon_sym_internal] = ACTIONS(3335), - [anon_sym_fileprivate] = ACTIONS(3335), - [anon_sym_open] = ACTIONS(3335), - [anon_sym_mutating] = ACTIONS(3338), - [anon_sym_nonmutating] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3341), - [anon_sym_dynamic] = ACTIONS(3341), - [anon_sym_optional] = ACTIONS(3341), - [anon_sym_final] = ACTIONS(3344), - [anon_sym_inout] = ACTIONS(3347), - [anon_sym_ATescaping] = ACTIONS(3347), - [anon_sym_ATautoclosure] = ACTIONS(3347), - [anon_sym_weak] = ACTIONS(3350), - [anon_sym_unowned] = ACTIONS(3353), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3350), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3350), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [851] = { - [sym__type_level_declaration] = STATE(850), - [sym_import_declaration] = STATE(850), - [sym_property_declaration] = STATE(850), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(850), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(850), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(850), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(850), - [sym_protocol_declaration] = STATE(850), - [sym_deinit_declaration] = STATE(850), - [sym_subscript_declaration] = STATE(850), - [sym_operator_declaration] = STATE(850), - [sym_precedence_group_declaration] = STATE(850), - [sym_associatedtype_declaration] = STATE(850), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(850), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [852] = { - [sym__arrow_operator] = STATE(3330), - [sym__async_keyword] = STATE(4969), - [sym_throws] = STATE(6062), - [aux_sym_protocol_composition_type_repeat1] = STATE(924), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(2624), - [sym__immediate_quest] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(3264), - [aux_sym_custom_operator_token1] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_GT] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_CARET_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_fallthrough] = ACTIONS(2622), - [anon_sym_BANG_EQ] = ACTIONS(2624), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2622), - [anon_sym_LT_EQ] = ACTIONS(2622), - [anon_sym_GT_EQ] = ACTIONS(2622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), - [anon_sym_DOT_DOT_LT] = ACTIONS(2622), - [anon_sym_is] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2624), - [anon_sym_PERCENT] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_CARET] = ACTIONS(2624), - [anon_sym_LT_LT] = ACTIONS(2622), - [anon_sym_GT_GT] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_prefix] = ACTIONS(2622), - [anon_sym_infix] = ACTIONS(2622), - [anon_sym_postfix] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2624), - [sym_property_behavior_modifier] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_convenience] = ACTIONS(2622), - [anon_sym_required] = ACTIONS(2622), - [anon_sym_nonisolated] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_internal] = ACTIONS(2622), - [anon_sym_fileprivate] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_mutating] = ACTIONS(2622), - [anon_sym_nonmutating] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_dynamic] = ACTIONS(2622), - [anon_sym_optional] = ACTIONS(2622), - [anon_sym_final] = ACTIONS(2622), - [anon_sym_inout] = ACTIONS(2622), - [anon_sym_ATescaping] = ACTIONS(2622), - [anon_sym_ATautoclosure] = ACTIONS(2622), - [anon_sym_weak] = ACTIONS(2622), - [anon_sym_unowned] = ACTIONS(2624), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2622), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2622), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2622), - [sym__explicit_semi] = ACTIONS(2622), - [sym__arrow_operator_custom] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(2622), - [sym__conjunction_operator_custom] = ACTIONS(2622), - [sym__disjunction_operator_custom] = ACTIONS(2622), - [sym__nil_coalescing_operator_custom] = ACTIONS(2622), - [sym__eq_eq_custom] = ACTIONS(2622), - [sym__plus_then_ws] = ACTIONS(2622), - [sym__minus_then_ws] = ACTIONS(2622), - [sym_bang] = ACTIONS(2622), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2622), - [sym__as_custom] = ACTIONS(2622), - [sym__as_quest_custom] = ACTIONS(2622), - [sym__as_bang_custom] = ACTIONS(2622), - [sym__async_keyword_custom] = ACTIONS(3268), - [sym__custom_operator] = ACTIONS(2622), - }, - [853] = { - [sym__arrow_operator] = STATE(3330), - [sym__async_keyword] = STATE(4969), - [sym_throws] = STATE(6062), - [aux_sym_optional_type_repeat1] = STATE(927), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(2626), - [aux_sym_custom_operator_token1] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_CARET_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_fallthrough] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_LT] = ACTIONS(2626), - [anon_sym_is] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2626), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2626), - [sym__explicit_semi] = ACTIONS(2626), - [sym__arrow_operator_custom] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(2626), - [sym__conjunction_operator_custom] = ACTIONS(2626), - [sym__disjunction_operator_custom] = ACTIONS(2626), - [sym__nil_coalescing_operator_custom] = ACTIONS(2626), - [sym__eq_eq_custom] = ACTIONS(2626), - [sym__plus_then_ws] = ACTIONS(2626), - [sym__minus_then_ws] = ACTIONS(2626), - [sym_bang] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2626), - [sym__as_custom] = ACTIONS(2626), - [sym__as_quest_custom] = ACTIONS(2626), - [sym__as_bang_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(3268), - [sym__custom_operator] = ACTIONS(2626), - }, - [854] = { - [sym__type_level_declaration] = STATE(856), - [sym_import_declaration] = STATE(856), - [sym_property_declaration] = STATE(856), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(856), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(856), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(856), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(856), - [sym_protocol_declaration] = STATE(856), - [sym_deinit_declaration] = STATE(856), - [sym_subscript_declaration] = STATE(856), - [sym_operator_declaration] = STATE(856), - [sym_precedence_group_declaration] = STATE(856), - [sym_associatedtype_declaration] = STATE(856), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(856), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [855] = { - [sym__fn_call_lambda_arguments] = STATE(900), - [sym_lambda_literal] = STATE(815), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2862), - [sym__immediate_quest] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [aux_sym_custom_operator_token1] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_CARET_LBRACE] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_fallthrough] = ACTIONS(2859), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2859), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2859), - [anon_sym_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_EQ] = ACTIONS(2859), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), - [anon_sym_DOT_DOT_LT] = ACTIONS(2859), - [anon_sym_is] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2859), - [anon_sym_GT_GT] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_prefix] = ACTIONS(2859), - [anon_sym_infix] = ACTIONS(2859), - [anon_sym_postfix] = ACTIONS(2859), - [anon_sym_AT] = ACTIONS(2862), - [sym_property_behavior_modifier] = ACTIONS(2859), - [anon_sym_override] = ACTIONS(2859), - [anon_sym_convenience] = ACTIONS(2859), - [anon_sym_required] = ACTIONS(2859), - [anon_sym_nonisolated] = ACTIONS(2859), - [anon_sym_public] = ACTIONS(2859), - [anon_sym_private] = ACTIONS(2859), - [anon_sym_internal] = ACTIONS(2859), - [anon_sym_fileprivate] = ACTIONS(2859), - [anon_sym_open] = ACTIONS(2859), - [anon_sym_mutating] = ACTIONS(2859), - [anon_sym_nonmutating] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_dynamic] = ACTIONS(2859), - [anon_sym_optional] = ACTIONS(2859), - [anon_sym_final] = ACTIONS(2859), - [anon_sym_inout] = ACTIONS(2859), - [anon_sym_ATescaping] = ACTIONS(2859), - [anon_sym_ATautoclosure] = ACTIONS(2859), - [anon_sym_weak] = ACTIONS(2859), - [anon_sym_unowned] = ACTIONS(2862), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2859), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2859), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2859), - [sym__explicit_semi] = ACTIONS(2859), - [sym__dot_custom] = ACTIONS(2859), - [sym__conjunction_operator_custom] = ACTIONS(2859), - [sym__disjunction_operator_custom] = ACTIONS(2859), - [sym__nil_coalescing_operator_custom] = ACTIONS(2859), - [sym__eq_eq_custom] = ACTIONS(2859), - [sym__plus_then_ws] = ACTIONS(2859), - [sym__minus_then_ws] = ACTIONS(2859), - [sym_bang] = ACTIONS(2859), - [sym_default_keyword] = ACTIONS(2859), - [sym_where_keyword] = ACTIONS(2859), - [sym__as_custom] = ACTIONS(2859), - [sym__as_quest_custom] = ACTIONS(2859), - [sym__as_bang_custom] = ACTIONS(2859), - [sym__custom_operator] = ACTIONS(2859), - }, - [856] = { - [sym__type_level_declaration] = STATE(850), - [sym_import_declaration] = STATE(850), - [sym_property_declaration] = STATE(850), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(850), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(850), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(850), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(850), - [sym_protocol_declaration] = STATE(850), - [sym_deinit_declaration] = STATE(850), - [sym_subscript_declaration] = STATE(850), - [sym_operator_declaration] = STATE(850), - [sym_precedence_group_declaration] = STATE(850), - [sym_associatedtype_declaration] = STATE(850), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(850), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [857] = { - [sym__arrow_operator] = STATE(3330), - [sym__async_keyword] = STATE(4969), - [sym_throws] = STATE(6062), - [aux_sym_protocol_composition_type_repeat1] = STATE(924), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(2609), - [sym__immediate_quest] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(3264), - [aux_sym_custom_operator_token1] = ACTIONS(2607), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_GT] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_CARET_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_case] = ACTIONS(2607), - [anon_sym_fallthrough] = ACTIONS(2607), - [anon_sym_BANG_EQ] = ACTIONS(2609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2607), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2607), - [anon_sym_LT_EQ] = ACTIONS(2607), - [anon_sym_GT_EQ] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2607), - [anon_sym_DOT_DOT_LT] = ACTIONS(2607), - [anon_sym_is] = ACTIONS(2607), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_SLASH] = ACTIONS(2609), - [anon_sym_PERCENT] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2609), - [anon_sym_LT_LT] = ACTIONS(2607), - [anon_sym_GT_GT] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2607), - [anon_sym_prefix] = ACTIONS(2607), - [anon_sym_infix] = ACTIONS(2607), - [anon_sym_postfix] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2609), - [sym_property_behavior_modifier] = ACTIONS(2607), - [anon_sym_override] = ACTIONS(2607), - [anon_sym_convenience] = ACTIONS(2607), - [anon_sym_required] = ACTIONS(2607), - [anon_sym_nonisolated] = ACTIONS(2607), - [anon_sym_public] = ACTIONS(2607), - [anon_sym_private] = ACTIONS(2607), - [anon_sym_internal] = ACTIONS(2607), - [anon_sym_fileprivate] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2607), - [anon_sym_mutating] = ACTIONS(2607), - [anon_sym_nonmutating] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_dynamic] = ACTIONS(2607), - [anon_sym_optional] = ACTIONS(2607), - [anon_sym_final] = ACTIONS(2607), - [anon_sym_inout] = ACTIONS(2607), - [anon_sym_ATescaping] = ACTIONS(2607), - [anon_sym_ATautoclosure] = ACTIONS(2607), - [anon_sym_weak] = ACTIONS(2607), - [anon_sym_unowned] = ACTIONS(2609), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2607), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2607), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2607), - [sym__explicit_semi] = ACTIONS(2607), - [sym__arrow_operator_custom] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(2607), - [sym__conjunction_operator_custom] = ACTIONS(2607), - [sym__disjunction_operator_custom] = ACTIONS(2607), - [sym__nil_coalescing_operator_custom] = ACTIONS(2607), - [sym__eq_eq_custom] = ACTIONS(2607), - [sym__plus_then_ws] = ACTIONS(2607), - [sym__minus_then_ws] = ACTIONS(2607), - [sym_bang] = ACTIONS(2607), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2607), - [sym__as_custom] = ACTIONS(2607), - [sym__as_quest_custom] = ACTIONS(2607), - [sym__as_bang_custom] = ACTIONS(2607), - [sym__async_keyword_custom] = ACTIONS(3268), - [sym__custom_operator] = ACTIONS(2607), - }, - [858] = { - [sym__type_level_declaration] = STATE(851), - [sym_import_declaration] = STATE(851), - [sym_property_declaration] = STATE(851), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(851), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(851), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(851), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(851), - [sym_protocol_declaration] = STATE(851), - [sym_deinit_declaration] = STATE(851), - [sym_subscript_declaration] = STATE(851), - [sym_operator_declaration] = STATE(851), - [sym_precedence_group_declaration] = STATE(851), - [sym_associatedtype_declaration] = STATE(851), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(851), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [859] = { - [sym__fn_call_lambda_arguments] = STATE(900), - [sym_lambda_literal] = STATE(815), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2842), - [sym__immediate_quest] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [aux_sym_custom_operator_token1] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_CARET_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_fallthrough] = ACTIONS(2840), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2840), - [anon_sym_DOT_DOT_LT] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_prefix] = ACTIONS(2840), - [anon_sym_infix] = ACTIONS(2840), - [anon_sym_postfix] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2842), - [sym_property_behavior_modifier] = ACTIONS(2840), - [anon_sym_override] = ACTIONS(2840), - [anon_sym_convenience] = ACTIONS(2840), - [anon_sym_required] = ACTIONS(2840), - [anon_sym_nonisolated] = ACTIONS(2840), - [anon_sym_public] = ACTIONS(2840), - [anon_sym_private] = ACTIONS(2840), - [anon_sym_internal] = ACTIONS(2840), - [anon_sym_fileprivate] = ACTIONS(2840), - [anon_sym_open] = ACTIONS(2840), - [anon_sym_mutating] = ACTIONS(2840), - [anon_sym_nonmutating] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_dynamic] = ACTIONS(2840), - [anon_sym_optional] = ACTIONS(2840), - [anon_sym_final] = ACTIONS(2840), - [anon_sym_inout] = ACTIONS(2840), - [anon_sym_ATescaping] = ACTIONS(2840), - [anon_sym_ATautoclosure] = ACTIONS(2840), - [anon_sym_weak] = ACTIONS(2840), - [anon_sym_unowned] = ACTIONS(2842), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2840), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2840), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2840), - [sym__explicit_semi] = ACTIONS(2840), - [sym__dot_custom] = ACTIONS(2840), - [sym__conjunction_operator_custom] = ACTIONS(2840), - [sym__disjunction_operator_custom] = ACTIONS(2840), - [sym__nil_coalescing_operator_custom] = ACTIONS(2840), - [sym__eq_eq_custom] = ACTIONS(2840), - [sym__plus_then_ws] = ACTIONS(2840), - [sym__minus_then_ws] = ACTIONS(2840), - [sym_bang] = ACTIONS(2840), - [sym_default_keyword] = ACTIONS(2840), - [sym_where_keyword] = ACTIONS(2840), - [sym__as_custom] = ACTIONS(2840), - [sym__as_quest_custom] = ACTIONS(2840), - [sym__as_bang_custom] = ACTIONS(2840), - [sym__custom_operator] = ACTIONS(2840), - }, - [860] = { - [sym__arrow_operator] = STATE(3330), - [sym__async_keyword] = STATE(4969), - [sym_throws] = STATE(6062), - [aux_sym_protocol_composition_type_repeat1] = STATE(924), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(3262), - [anon_sym_QMARK] = ACTIONS(2585), - [sym__immediate_quest] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(3264), - [aux_sym_custom_operator_token1] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_CARET_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_fallthrough] = ACTIONS(2581), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2581), - [anon_sym_LT_EQ] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_is] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2581), - [sym__explicit_semi] = ACTIONS(2581), - [sym__arrow_operator_custom] = ACTIONS(3266), - [sym__dot_custom] = ACTIONS(2581), - [sym__conjunction_operator_custom] = ACTIONS(2581), - [sym__disjunction_operator_custom] = ACTIONS(2581), - [sym__nil_coalescing_operator_custom] = ACTIONS(2581), - [sym__eq_eq_custom] = ACTIONS(2581), - [sym__plus_then_ws] = ACTIONS(2581), - [sym__minus_then_ws] = ACTIONS(2581), - [sym_bang] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_default_keyword] = ACTIONS(2581), - [sym__as_custom] = ACTIONS(2581), - [sym__as_quest_custom] = ACTIONS(2581), - [sym__as_bang_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(3268), - [sym__custom_operator] = ACTIONS(2581), - }, - [861] = { - [sym__type_level_declaration] = STATE(846), - [sym_import_declaration] = STATE(846), - [sym_property_declaration] = STATE(846), - [sym__modifierless_property_declaration] = STATE(2252), - [sym_typealias_declaration] = STATE(846), - [sym__modifierless_typealias_declaration] = STATE(2259), - [sym_function_declaration] = STATE(846), - [sym__bodyless_function_declaration] = STATE(5650), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(846), - [sym__modifierless_class_declaration] = STATE(2265), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_enum_entry] = STATE(846), - [sym_protocol_declaration] = STATE(846), - [sym_deinit_declaration] = STATE(846), - [sym_subscript_declaration] = STATE(846), - [sym_operator_declaration] = STATE(846), - [sym_precedence_group_declaration] = STATE(846), - [sym_associatedtype_declaration] = STATE(846), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3468), - [sym_modifiers] = STATE(3250), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_enum_class_body_repeat1] = STATE(846), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_typealias] = ACTIONS(3218), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3222), - [anon_sym_protocol] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3230), - [anon_sym_indirect] = ACTIONS(3232), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3236), - [anon_sym_subscript] = ACTIONS(3238), - [anon_sym_prefix] = ACTIONS(3240), - [anon_sym_infix] = ACTIONS(3240), - [anon_sym_postfix] = ACTIONS(3240), - [anon_sym_precedencegroup] = ACTIONS(3242), - [anon_sym_associatedtype] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [862] = { - [sym__fn_call_lambda_arguments] = STATE(956), - [sym_lambda_literal] = STATE(820), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2862), - [sym__immediate_quest] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [aux_sym_custom_operator_token1] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_CARET_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_case] = ACTIONS(2859), - [anon_sym_fallthrough] = ACTIONS(2859), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2859), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2859), - [anon_sym_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_EQ] = ACTIONS(2859), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), - [anon_sym_DOT_DOT_LT] = ACTIONS(2859), - [anon_sym_is] = ACTIONS(2859), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2859), - [anon_sym_GT_GT] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_prefix] = ACTIONS(2859), - [anon_sym_infix] = ACTIONS(2859), - [anon_sym_postfix] = ACTIONS(2859), - [anon_sym_AT] = ACTIONS(2862), - [sym_property_behavior_modifier] = ACTIONS(2859), - [anon_sym_override] = ACTIONS(2859), - [anon_sym_convenience] = ACTIONS(2859), - [anon_sym_required] = ACTIONS(2859), - [anon_sym_nonisolated] = ACTIONS(2859), - [anon_sym_public] = ACTIONS(2859), - [anon_sym_private] = ACTIONS(2859), - [anon_sym_internal] = ACTIONS(2859), - [anon_sym_fileprivate] = ACTIONS(2859), - [anon_sym_open] = ACTIONS(2859), - [anon_sym_mutating] = ACTIONS(2859), - [anon_sym_nonmutating] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2859), - [anon_sym_dynamic] = ACTIONS(2859), - [anon_sym_optional] = ACTIONS(2859), - [anon_sym_final] = ACTIONS(2859), - [anon_sym_inout] = ACTIONS(2859), - [anon_sym_ATescaping] = ACTIONS(2859), - [anon_sym_ATautoclosure] = ACTIONS(2859), - [anon_sym_weak] = ACTIONS(2859), - [anon_sym_unowned] = ACTIONS(2862), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2859), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2859), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2859), - [sym__explicit_semi] = ACTIONS(2859), - [sym__dot_custom] = ACTIONS(2859), - [sym__conjunction_operator_custom] = ACTIONS(2859), - [sym__disjunction_operator_custom] = ACTIONS(2859), - [sym__nil_coalescing_operator_custom] = ACTIONS(2859), - [sym__eq_eq_custom] = ACTIONS(2859), - [sym__plus_then_ws] = ACTIONS(2859), - [sym__minus_then_ws] = ACTIONS(2859), - [sym_bang] = ACTIONS(2859), - [sym_default_keyword] = ACTIONS(2859), - [sym__as_custom] = ACTIONS(2859), - [sym__as_quest_custom] = ACTIONS(2859), - [sym__as_bang_custom] = ACTIONS(2859), - [sym__custom_operator] = ACTIONS(2859), - }, - [863] = { - [sym__dot] = STATE(4548), - [aux_sym_user_type_repeat1] = STATE(863), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_fallthrough] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2729), - [sym__explicit_semi] = ACTIONS(2729), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(3379), - [sym__conjunction_operator_custom] = ACTIONS(2729), - [sym__disjunction_operator_custom] = ACTIONS(2729), - [sym__nil_coalescing_operator_custom] = ACTIONS(2729), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym_default_keyword] = ACTIONS(2729), - [sym_where_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__as_quest_custom] = ACTIONS(2729), - [sym__as_bang_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [864] = { - [sym_type_arguments] = STATE(1997), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2711), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_QMARK] = ACTIONS(2716), - [sym__immediate_quest] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2711), - [aux_sym_custom_operator_token1] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_CARET_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_fallthrough] = ACTIONS(2711), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2711), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_GT_EQ] = ACTIONS(2711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2711), - [anon_sym_DOT_DOT_LT] = ACTIONS(2711), - [anon_sym_is] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_prefix] = ACTIONS(2711), - [anon_sym_infix] = ACTIONS(2711), - [anon_sym_postfix] = ACTIONS(2711), - [anon_sym_AT] = ACTIONS(2716), - [sym_property_behavior_modifier] = ACTIONS(2711), - [anon_sym_override] = ACTIONS(2711), - [anon_sym_convenience] = ACTIONS(2711), - [anon_sym_required] = ACTIONS(2711), - [anon_sym_nonisolated] = ACTIONS(2711), - [anon_sym_public] = ACTIONS(2711), - [anon_sym_private] = ACTIONS(2711), - [anon_sym_internal] = ACTIONS(2711), - [anon_sym_fileprivate] = ACTIONS(2711), - [anon_sym_open] = ACTIONS(2711), - [anon_sym_mutating] = ACTIONS(2711), - [anon_sym_nonmutating] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_dynamic] = ACTIONS(2711), - [anon_sym_optional] = ACTIONS(2711), - [anon_sym_final] = ACTIONS(2711), - [anon_sym_inout] = ACTIONS(2711), - [anon_sym_ATescaping] = ACTIONS(2711), - [anon_sym_ATautoclosure] = ACTIONS(2711), - [anon_sym_weak] = ACTIONS(2711), - [anon_sym_unowned] = ACTIONS(2716), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2711), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2711), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2711), - [sym__explicit_semi] = ACTIONS(2711), - [sym__dot_custom] = ACTIONS(2713), - [sym__conjunction_operator_custom] = ACTIONS(2711), - [sym__disjunction_operator_custom] = ACTIONS(2711), - [sym__nil_coalescing_operator_custom] = ACTIONS(2711), - [sym__eq_eq_custom] = ACTIONS(2711), - [sym__plus_then_ws] = ACTIONS(2711), - [sym__minus_then_ws] = ACTIONS(2711), - [sym_bang] = ACTIONS(2711), - [sym_default_keyword] = ACTIONS(2711), - [sym_where_keyword] = ACTIONS(2711), - [sym__as_custom] = ACTIONS(2711), - [sym__as_quest_custom] = ACTIONS(2711), - [sym__as_bang_custom] = ACTIONS(2711), - [sym__custom_operator] = ACTIONS(2711), - }, - [865] = { - [sym__fn_call_lambda_arguments] = STATE(956), - [sym_lambda_literal] = STATE(820), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2842), - [sym__immediate_quest] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [aux_sym_custom_operator_token1] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_GT] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_CARET_LBRACE] = ACTIONS(3382), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_fallthrough] = ACTIONS(2840), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2840), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2840), - [anon_sym_DOT_DOT_LT] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2840), - [anon_sym_prefix] = ACTIONS(2840), - [anon_sym_infix] = ACTIONS(2840), - [anon_sym_postfix] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2842), - [sym_property_behavior_modifier] = ACTIONS(2840), - [anon_sym_override] = ACTIONS(2840), - [anon_sym_convenience] = ACTIONS(2840), - [anon_sym_required] = ACTIONS(2840), - [anon_sym_nonisolated] = ACTIONS(2840), - [anon_sym_public] = ACTIONS(2840), - [anon_sym_private] = ACTIONS(2840), - [anon_sym_internal] = ACTIONS(2840), - [anon_sym_fileprivate] = ACTIONS(2840), - [anon_sym_open] = ACTIONS(2840), - [anon_sym_mutating] = ACTIONS(2840), - [anon_sym_nonmutating] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_dynamic] = ACTIONS(2840), - [anon_sym_optional] = ACTIONS(2840), - [anon_sym_final] = ACTIONS(2840), - [anon_sym_inout] = ACTIONS(2840), - [anon_sym_ATescaping] = ACTIONS(2840), - [anon_sym_ATautoclosure] = ACTIONS(2840), - [anon_sym_weak] = ACTIONS(2840), - [anon_sym_unowned] = ACTIONS(2842), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2840), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2840), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2840), - [sym__explicit_semi] = ACTIONS(2840), - [sym__dot_custom] = ACTIONS(2840), - [sym__conjunction_operator_custom] = ACTIONS(2840), - [sym__disjunction_operator_custom] = ACTIONS(2840), - [sym__nil_coalescing_operator_custom] = ACTIONS(2840), - [sym__eq_eq_custom] = ACTIONS(2840), - [sym__plus_then_ws] = ACTIONS(2840), - [sym__minus_then_ws] = ACTIONS(2840), - [sym_bang] = ACTIONS(2840), - [sym_default_keyword] = ACTIONS(2840), - [sym__as_custom] = ACTIONS(2840), - [sym__as_quest_custom] = ACTIONS(2840), - [sym__as_bang_custom] = ACTIONS(2840), - [sym__custom_operator] = ACTIONS(2840), - }, - [866] = { - [sym_simple_identifier] = STATE(6352), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2620), - [sym__immediate_quest] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [aux_sym_custom_operator_token1] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_CARET_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_fallthrough] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2618), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_DOT_DOT_LT] = ACTIONS(2618), - [anon_sym_is] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_prefix] = ACTIONS(2620), - [anon_sym_infix] = ACTIONS(2620), - [anon_sym_postfix] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [sym_property_behavior_modifier] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_convenience] = ACTIONS(2620), - [anon_sym_required] = ACTIONS(2620), - [anon_sym_nonisolated] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_internal] = ACTIONS(2620), - [anon_sym_fileprivate] = ACTIONS(2620), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_mutating] = ACTIONS(2620), - [anon_sym_nonmutating] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_dynamic] = ACTIONS(2620), - [anon_sym_optional] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_inout] = ACTIONS(2620), - [anon_sym_ATescaping] = ACTIONS(2618), - [anon_sym_ATautoclosure] = ACTIONS(2618), - [anon_sym_weak] = ACTIONS(2620), - [anon_sym_unowned] = ACTIONS(2620), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2618), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2618), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2618), - [sym__explicit_semi] = ACTIONS(2618), - [sym__dot_custom] = ACTIONS(2618), - [sym__conjunction_operator_custom] = ACTIONS(2618), - [sym__disjunction_operator_custom] = ACTIONS(2618), - [sym__nil_coalescing_operator_custom] = ACTIONS(2618), - [sym__eq_eq_custom] = ACTIONS(2618), - [sym__plus_then_ws] = ACTIONS(2618), - [sym__minus_then_ws] = ACTIONS(2618), - [sym_bang] = ACTIONS(2618), - [sym_default_keyword] = ACTIONS(2618), - [sym_where_keyword] = ACTIONS(2618), - [sym__as_custom] = ACTIONS(2618), - [sym__as_quest_custom] = ACTIONS(2618), - [sym__as_bang_custom] = ACTIONS(2618), - [sym__custom_operator] = ACTIONS(2618), - }, - [867] = { - [sym__dot] = STATE(4548), - [aux_sym_user_type_repeat1] = STATE(869), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [anon_sym_QMARK] = ACTIONS(2682), - [sym__immediate_quest] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [aux_sym_custom_operator_token1] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_GT] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_CARET_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_fallthrough] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2680), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_DOT_DOT_LT] = ACTIONS(2680), - [anon_sym_is] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2682), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_prefix] = ACTIONS(2680), - [anon_sym_infix] = ACTIONS(2680), - [anon_sym_postfix] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2682), - [sym_property_behavior_modifier] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_convenience] = ACTIONS(2680), - [anon_sym_required] = ACTIONS(2680), - [anon_sym_nonisolated] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_internal] = ACTIONS(2680), - [anon_sym_fileprivate] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_mutating] = ACTIONS(2680), - [anon_sym_nonmutating] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_dynamic] = ACTIONS(2680), - [anon_sym_optional] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_inout] = ACTIONS(2680), - [anon_sym_ATescaping] = ACTIONS(2680), - [anon_sym_ATautoclosure] = ACTIONS(2680), - [anon_sym_weak] = ACTIONS(2680), - [anon_sym_unowned] = ACTIONS(2682), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2680), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2680), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2680), - [sym__explicit_semi] = ACTIONS(2680), - [sym__arrow_operator_custom] = ACTIONS(2680), - [sym__dot_custom] = ACTIONS(3385), - [sym__conjunction_operator_custom] = ACTIONS(2680), - [sym__disjunction_operator_custom] = ACTIONS(2680), - [sym__nil_coalescing_operator_custom] = ACTIONS(2680), - [sym__eq_eq_custom] = ACTIONS(2680), - [sym__plus_then_ws] = ACTIONS(2680), - [sym__minus_then_ws] = ACTIONS(2680), - [sym_bang] = ACTIONS(2680), - [sym__throws_keyword] = ACTIONS(2680), - [sym__rethrows_keyword] = ACTIONS(2680), - [sym_default_keyword] = ACTIONS(2680), - [sym_where_keyword] = ACTIONS(2680), - [sym__as_custom] = ACTIONS(2680), - [sym__as_quest_custom] = ACTIONS(2680), - [sym__as_bang_custom] = ACTIONS(2680), - [sym__async_keyword_custom] = ACTIONS(2680), - [sym__custom_operator] = ACTIONS(2680), - }, - [868] = { - [sym_simple_identifier] = STATE(6352), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(866), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2645), - [sym__immediate_quest] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [aux_sym_custom_operator_token1] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_GT] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_CARET_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_fallthrough] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_DOT_DOT_LT] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_prefix] = ACTIONS(2645), - [anon_sym_infix] = ACTIONS(2645), - [anon_sym_postfix] = ACTIONS(2645), - [anon_sym_AT] = ACTIONS(2645), - [sym_property_behavior_modifier] = ACTIONS(2645), - [anon_sym_override] = ACTIONS(2645), - [anon_sym_convenience] = ACTIONS(2645), - [anon_sym_required] = ACTIONS(2645), - [anon_sym_nonisolated] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2645), - [anon_sym_private] = ACTIONS(2645), - [anon_sym_internal] = ACTIONS(2645), - [anon_sym_fileprivate] = ACTIONS(2645), - [anon_sym_open] = ACTIONS(2645), - [anon_sym_mutating] = ACTIONS(2645), - [anon_sym_nonmutating] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_dynamic] = ACTIONS(2645), - [anon_sym_optional] = ACTIONS(2645), - [anon_sym_final] = ACTIONS(2645), - [anon_sym_inout] = ACTIONS(2645), - [anon_sym_ATescaping] = ACTIONS(2643), - [anon_sym_ATautoclosure] = ACTIONS(2643), - [anon_sym_weak] = ACTIONS(2645), - [anon_sym_unowned] = ACTIONS(2645), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2643), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2643), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2643), - [sym__explicit_semi] = ACTIONS(2643), - [sym__dot_custom] = ACTIONS(2643), - [sym__conjunction_operator_custom] = ACTIONS(2643), - [sym__disjunction_operator_custom] = ACTIONS(2643), - [sym__nil_coalescing_operator_custom] = ACTIONS(2643), - [sym__eq_eq_custom] = ACTIONS(2643), - [sym__plus_then_ws] = ACTIONS(2643), - [sym__minus_then_ws] = ACTIONS(2643), - [sym_bang] = ACTIONS(2643), - [sym_default_keyword] = ACTIONS(2643), - [sym_where_keyword] = ACTIONS(2643), - [sym__as_custom] = ACTIONS(2643), - [sym__as_quest_custom] = ACTIONS(2643), - [sym__as_bang_custom] = ACTIONS(2643), - [sym__custom_operator] = ACTIONS(2643), - }, - [869] = { - [sym__dot] = STATE(4548), - [aux_sym_user_type_repeat1] = STATE(863), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [sym__immediate_quest] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [aux_sym_custom_operator_token1] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_CARET_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_fallthrough] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_DOT_DOT_LT] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_prefix] = ACTIONS(2669), - [anon_sym_infix] = ACTIONS(2669), - [anon_sym_postfix] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2671), - [sym_property_behavior_modifier] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_convenience] = ACTIONS(2669), - [anon_sym_required] = ACTIONS(2669), - [anon_sym_nonisolated] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_internal] = ACTIONS(2669), - [anon_sym_fileprivate] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2669), - [anon_sym_mutating] = ACTIONS(2669), - [anon_sym_nonmutating] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_dynamic] = ACTIONS(2669), - [anon_sym_optional] = ACTIONS(2669), - [anon_sym_final] = ACTIONS(2669), - [anon_sym_inout] = ACTIONS(2669), - [anon_sym_ATescaping] = ACTIONS(2669), - [anon_sym_ATautoclosure] = ACTIONS(2669), - [anon_sym_weak] = ACTIONS(2669), - [anon_sym_unowned] = ACTIONS(2671), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2669), - [sym__explicit_semi] = ACTIONS(2669), - [sym__arrow_operator_custom] = ACTIONS(2669), - [sym__dot_custom] = ACTIONS(3388), - [sym__conjunction_operator_custom] = ACTIONS(2669), - [sym__disjunction_operator_custom] = ACTIONS(2669), - [sym__nil_coalescing_operator_custom] = ACTIONS(2669), - [sym__eq_eq_custom] = ACTIONS(2669), - [sym__plus_then_ws] = ACTIONS(2669), - [sym__minus_then_ws] = ACTIONS(2669), - [sym_bang] = ACTIONS(2669), - [sym__throws_keyword] = ACTIONS(2669), - [sym__rethrows_keyword] = ACTIONS(2669), - [sym_default_keyword] = ACTIONS(2669), - [sym_where_keyword] = ACTIONS(2669), - [sym__as_custom] = ACTIONS(2669), - [sym__as_quest_custom] = ACTIONS(2669), - [sym__as_bang_custom] = ACTIONS(2669), - [sym__async_keyword_custom] = ACTIONS(2669), - [sym__custom_operator] = ACTIONS(2669), - }, - [870] = { - [sym_simple_identifier] = STATE(6352), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(870), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2647), - [aux_sym_simple_identifier_token2] = ACTIONS(2650), - [aux_sym_simple_identifier_token3] = ACTIONS(2650), - [aux_sym_simple_identifier_token4] = ACTIONS(2650), - [anon_sym_actor] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2655), - [sym__immediate_quest] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_CARET_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_fallthrough] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_prefix] = ACTIONS(2655), - [anon_sym_infix] = ACTIONS(2655), - [anon_sym_postfix] = ACTIONS(2655), - [anon_sym_AT] = ACTIONS(2655), - [sym_property_behavior_modifier] = ACTIONS(2655), - [anon_sym_override] = ACTIONS(2655), - [anon_sym_convenience] = ACTIONS(2655), - [anon_sym_required] = ACTIONS(2655), - [anon_sym_nonisolated] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_internal] = ACTIONS(2655), - [anon_sym_fileprivate] = ACTIONS(2655), - [anon_sym_open] = ACTIONS(2655), - [anon_sym_mutating] = ACTIONS(2655), - [anon_sym_nonmutating] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_dynamic] = ACTIONS(2655), - [anon_sym_optional] = ACTIONS(2655), - [anon_sym_final] = ACTIONS(2655), - [anon_sym_inout] = ACTIONS(2655), - [anon_sym_ATescaping] = ACTIONS(2653), - [anon_sym_ATautoclosure] = ACTIONS(2653), - [anon_sym_weak] = ACTIONS(2655), - [anon_sym_unowned] = ACTIONS(2655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2653), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2653), - [sym__explicit_semi] = ACTIONS(2653), - [sym__dot_custom] = ACTIONS(2653), - [sym__conjunction_operator_custom] = ACTIONS(2653), - [sym__disjunction_operator_custom] = ACTIONS(2653), - [sym__nil_coalescing_operator_custom] = ACTIONS(2653), - [sym__eq_eq_custom] = ACTIONS(2653), - [sym__plus_then_ws] = ACTIONS(2653), - [sym__minus_then_ws] = ACTIONS(2653), - [sym_bang] = ACTIONS(2653), - [sym_default_keyword] = ACTIONS(2653), - [sym_where_keyword] = ACTIONS(2653), - [sym__as_custom] = ACTIONS(2653), - [sym__as_quest_custom] = ACTIONS(2653), - [sym__as_bang_custom] = ACTIONS(2653), - [sym__custom_operator] = ACTIONS(2653), - }, - [871] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_QMARK] = ACTIONS(2746), - [sym__immediate_quest] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [aux_sym_custom_operator_token1] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_GT] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_CARET_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_fallthrough] = ACTIONS(2744), - [anon_sym_PLUS_EQ] = ACTIONS(2744), - [anon_sym_DASH_EQ] = ACTIONS(2744), - [anon_sym_STAR_EQ] = ACTIONS(2744), - [anon_sym_SLASH_EQ] = ACTIONS(2744), - [anon_sym_PERCENT_EQ] = ACTIONS(2744), - [anon_sym_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2744), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2744), - [anon_sym_DOT_DOT_LT] = ACTIONS(2744), - [anon_sym_is] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_SLASH] = ACTIONS(2746), - [anon_sym_PERCENT] = ACTIONS(2746), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2746), - [anon_sym_LT_LT] = ACTIONS(2744), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_prefix] = ACTIONS(2744), - [anon_sym_infix] = ACTIONS(2744), - [anon_sym_postfix] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2746), - [sym_property_behavior_modifier] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_convenience] = ACTIONS(2744), - [anon_sym_required] = ACTIONS(2744), - [anon_sym_nonisolated] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_internal] = ACTIONS(2744), - [anon_sym_fileprivate] = ACTIONS(2744), - [anon_sym_open] = ACTIONS(2744), - [anon_sym_mutating] = ACTIONS(2744), - [anon_sym_nonmutating] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_dynamic] = ACTIONS(2744), - [anon_sym_optional] = ACTIONS(2744), - [anon_sym_final] = ACTIONS(2744), - [anon_sym_inout] = ACTIONS(2744), - [anon_sym_ATescaping] = ACTIONS(2744), - [anon_sym_ATautoclosure] = ACTIONS(2744), - [anon_sym_weak] = ACTIONS(2744), - [anon_sym_unowned] = ACTIONS(2746), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2744), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2744), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2744), - [sym__explicit_semi] = ACTIONS(2744), - [sym__dot_custom] = ACTIONS(2744), - [sym__conjunction_operator_custom] = ACTIONS(2744), - [sym__disjunction_operator_custom] = ACTIONS(2744), - [sym__nil_coalescing_operator_custom] = ACTIONS(2744), - [sym__eq_eq_custom] = ACTIONS(2744), - [sym__plus_then_ws] = ACTIONS(2744), - [sym__minus_then_ws] = ACTIONS(2744), - [sym_bang] = ACTIONS(2744), - [sym_default_keyword] = ACTIONS(2744), - [sym_where_keyword] = ACTIONS(2744), - [sym__as_custom] = ACTIONS(2744), - [sym__as_quest_custom] = ACTIONS(2744), - [sym__as_bang_custom] = ACTIONS(2744), - [sym__custom_operator] = ACTIONS(2744), - }, - [872] = { - [aux_sym_optional_type_repeat1] = STATE(901), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(2626), - [aux_sym_custom_operator_token1] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_CARET_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_fallthrough] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_LT] = ACTIONS(2626), - [anon_sym_is] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2626), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2626), - [sym__explicit_semi] = ACTIONS(2626), - [sym__arrow_operator_custom] = ACTIONS(2626), - [sym__dot_custom] = ACTIONS(2626), - [sym__conjunction_operator_custom] = ACTIONS(2626), - [sym__disjunction_operator_custom] = ACTIONS(2626), - [sym__nil_coalescing_operator_custom] = ACTIONS(2626), - [sym__eq_eq_custom] = ACTIONS(2626), - [sym__plus_then_ws] = ACTIONS(2626), - [sym__minus_then_ws] = ACTIONS(2626), - [sym_bang] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2626), - [sym__rethrows_keyword] = ACTIONS(2626), - [sym_default_keyword] = ACTIONS(2626), - [sym_where_keyword] = ACTIONS(2626), - [sym__as_custom] = ACTIONS(2626), - [sym__as_quest_custom] = ACTIONS(2626), - [sym__as_bang_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(2626), - [sym__custom_operator] = ACTIONS(2626), - }, - [873] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2774), - [sym__immediate_quest] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [aux_sym_custom_operator_token1] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_GT] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_CARET_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_case] = ACTIONS(2772), - [anon_sym_fallthrough] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_DOT_DOT_LT] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2774), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2774), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_prefix] = ACTIONS(2772), - [anon_sym_infix] = ACTIONS(2772), - [anon_sym_postfix] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2774), - [sym_property_behavior_modifier] = ACTIONS(2772), - [anon_sym_override] = ACTIONS(2772), - [anon_sym_convenience] = ACTIONS(2772), - [anon_sym_required] = ACTIONS(2772), - [anon_sym_nonisolated] = ACTIONS(2772), - [anon_sym_public] = ACTIONS(2772), - [anon_sym_private] = ACTIONS(2772), - [anon_sym_internal] = ACTIONS(2772), - [anon_sym_fileprivate] = ACTIONS(2772), - [anon_sym_open] = ACTIONS(2772), - [anon_sym_mutating] = ACTIONS(2772), - [anon_sym_nonmutating] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_dynamic] = ACTIONS(2772), - [anon_sym_optional] = ACTIONS(2772), - [anon_sym_final] = ACTIONS(2772), - [anon_sym_inout] = ACTIONS(2772), - [anon_sym_ATescaping] = ACTIONS(2772), - [anon_sym_ATautoclosure] = ACTIONS(2772), - [anon_sym_weak] = ACTIONS(2772), - [anon_sym_unowned] = ACTIONS(2774), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2772), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2772), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2772), - [sym__explicit_semi] = ACTIONS(2772), - [sym__dot_custom] = ACTIONS(2772), - [sym__conjunction_operator_custom] = ACTIONS(2772), - [sym__disjunction_operator_custom] = ACTIONS(2772), - [sym__nil_coalescing_operator_custom] = ACTIONS(2772), - [sym__eq_eq_custom] = ACTIONS(2772), - [sym__plus_then_ws] = ACTIONS(2772), - [sym__minus_then_ws] = ACTIONS(2772), - [sym_bang] = ACTIONS(2772), - [sym_default_keyword] = ACTIONS(2772), - [sym_where_keyword] = ACTIONS(2772), - [sym__as_custom] = ACTIONS(2772), - [sym__as_quest_custom] = ACTIONS(2772), - [sym__as_bang_custom] = ACTIONS(2772), - [sym__custom_operator] = ACTIONS(2772), - }, - [874] = { - [sym_simple_identifier] = STATE(6296), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(874), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2647), - [aux_sym_simple_identifier_token2] = ACTIONS(2650), - [aux_sym_simple_identifier_token3] = ACTIONS(2650), - [aux_sym_simple_identifier_token4] = ACTIONS(2650), - [anon_sym_actor] = ACTIONS(2647), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_QMARK] = ACTIONS(2655), - [sym__immediate_quest] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [aux_sym_custom_operator_token1] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_CARET_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_fallthrough] = ACTIONS(2655), - [anon_sym_BANG_EQ] = ACTIONS(2655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [anon_sym_DOT_DOT_LT] = ACTIONS(2653), - [anon_sym_is] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT] = ACTIONS(2653), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_prefix] = ACTIONS(2655), - [anon_sym_infix] = ACTIONS(2655), - [anon_sym_postfix] = ACTIONS(2655), - [anon_sym_AT] = ACTIONS(2655), - [sym_property_behavior_modifier] = ACTIONS(2655), - [anon_sym_override] = ACTIONS(2655), - [anon_sym_convenience] = ACTIONS(2655), - [anon_sym_required] = ACTIONS(2655), - [anon_sym_nonisolated] = ACTIONS(2655), - [anon_sym_public] = ACTIONS(2655), - [anon_sym_private] = ACTIONS(2655), - [anon_sym_internal] = ACTIONS(2655), - [anon_sym_fileprivate] = ACTIONS(2655), - [anon_sym_open] = ACTIONS(2655), - [anon_sym_mutating] = ACTIONS(2655), - [anon_sym_nonmutating] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_dynamic] = ACTIONS(2655), - [anon_sym_optional] = ACTIONS(2655), - [anon_sym_final] = ACTIONS(2655), - [anon_sym_inout] = ACTIONS(2655), - [anon_sym_ATescaping] = ACTIONS(2653), - [anon_sym_ATautoclosure] = ACTIONS(2653), - [anon_sym_weak] = ACTIONS(2655), - [anon_sym_unowned] = ACTIONS(2655), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2653), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2653), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2653), - [sym__explicit_semi] = ACTIONS(2653), - [sym__dot_custom] = ACTIONS(2653), - [sym__conjunction_operator_custom] = ACTIONS(2653), - [sym__disjunction_operator_custom] = ACTIONS(2653), - [sym__nil_coalescing_operator_custom] = ACTIONS(2653), - [sym__eq_eq_custom] = ACTIONS(2653), - [sym__plus_then_ws] = ACTIONS(2653), - [sym__minus_then_ws] = ACTIONS(2653), - [sym_bang] = ACTIONS(2653), - [sym_default_keyword] = ACTIONS(2653), - [sym__as_custom] = ACTIONS(2653), - [sym__as_quest_custom] = ACTIONS(2653), - [sym__as_bang_custom] = ACTIONS(2653), - [sym__custom_operator] = ACTIONS(2653), - }, - [875] = { - [sym__type_level_declaration] = STATE(4819), - [sym_import_declaration] = STATE(4819), - [sym_property_declaration] = STATE(4819), - [sym__modifierless_property_declaration] = STATE(5708), - [sym_typealias_declaration] = STATE(4819), - [sym__modifierless_typealias_declaration] = STATE(5704), - [sym_function_declaration] = STATE(4819), - [sym__bodyless_function_declaration] = STATE(5462), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(4819), - [sym__modifierless_class_declaration] = STATE(5696), - [sym__class_member_declarations] = STATE(6367), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(4819), - [sym_deinit_declaration] = STATE(4819), - [sym_subscript_declaration] = STATE(4819), - [sym_operator_declaration] = STATE(4819), - [sym_precedence_group_declaration] = STATE(4819), - [sym_associatedtype_declaration] = STATE(4819), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3467), - [sym_modifiers] = STATE(3465), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3407), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3411), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3415), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [876] = { - [sym_simple_identifier] = STATE(6296), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(874), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2620), - [sym__immediate_quest] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [aux_sym_custom_operator_token1] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_CARET_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2620), - [anon_sym_fallthrough] = ACTIONS(2620), - [anon_sym_BANG_EQ] = ACTIONS(2620), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2618), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2618), - [anon_sym_DOT_DOT_LT] = ACTIONS(2618), - [anon_sym_is] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2620), - [anon_sym_prefix] = ACTIONS(2620), - [anon_sym_infix] = ACTIONS(2620), - [anon_sym_postfix] = ACTIONS(2620), - [anon_sym_AT] = ACTIONS(2620), - [sym_property_behavior_modifier] = ACTIONS(2620), - [anon_sym_override] = ACTIONS(2620), - [anon_sym_convenience] = ACTIONS(2620), - [anon_sym_required] = ACTIONS(2620), - [anon_sym_nonisolated] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_internal] = ACTIONS(2620), - [anon_sym_fileprivate] = ACTIONS(2620), - [anon_sym_open] = ACTIONS(2620), - [anon_sym_mutating] = ACTIONS(2620), - [anon_sym_nonmutating] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_dynamic] = ACTIONS(2620), - [anon_sym_optional] = ACTIONS(2620), - [anon_sym_final] = ACTIONS(2620), - [anon_sym_inout] = ACTIONS(2620), - [anon_sym_ATescaping] = ACTIONS(2618), - [anon_sym_ATautoclosure] = ACTIONS(2618), - [anon_sym_weak] = ACTIONS(2620), - [anon_sym_unowned] = ACTIONS(2620), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2618), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2618), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2618), - [sym__explicit_semi] = ACTIONS(2618), - [sym__dot_custom] = ACTIONS(2618), - [sym__conjunction_operator_custom] = ACTIONS(2618), - [sym__disjunction_operator_custom] = ACTIONS(2618), - [sym__nil_coalescing_operator_custom] = ACTIONS(2618), - [sym__eq_eq_custom] = ACTIONS(2618), - [sym__plus_then_ws] = ACTIONS(2618), - [sym__minus_then_ws] = ACTIONS(2618), - [sym_bang] = ACTIONS(2618), - [sym_default_keyword] = ACTIONS(2618), - [sym__as_custom] = ACTIONS(2618), - [sym__as_quest_custom] = ACTIONS(2618), - [sym__as_bang_custom] = ACTIONS(2618), - [sym__custom_operator] = ACTIONS(2618), - }, - [877] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2742), - [sym__immediate_quest] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [aux_sym_custom_operator_token1] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_CARET_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_fallthrough] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), - [anon_sym_DOT_DOT_LT] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2742), - [anon_sym_PERCENT] = ACTIONS(2742), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2742), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_prefix] = ACTIONS(2740), - [anon_sym_infix] = ACTIONS(2740), - [anon_sym_postfix] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2742), - [sym_property_behavior_modifier] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_convenience] = ACTIONS(2740), - [anon_sym_required] = ACTIONS(2740), - [anon_sym_nonisolated] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_internal] = ACTIONS(2740), - [anon_sym_fileprivate] = ACTIONS(2740), - [anon_sym_open] = ACTIONS(2740), - [anon_sym_mutating] = ACTIONS(2740), - [anon_sym_nonmutating] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_dynamic] = ACTIONS(2740), - [anon_sym_optional] = ACTIONS(2740), - [anon_sym_final] = ACTIONS(2740), - [anon_sym_inout] = ACTIONS(2740), - [anon_sym_ATescaping] = ACTIONS(2740), - [anon_sym_ATautoclosure] = ACTIONS(2740), - [anon_sym_weak] = ACTIONS(2740), - [anon_sym_unowned] = ACTIONS(2742), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2740), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2740), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2740), - [sym__explicit_semi] = ACTIONS(2740), - [sym__dot_custom] = ACTIONS(2740), - [sym__conjunction_operator_custom] = ACTIONS(2740), - [sym__disjunction_operator_custom] = ACTIONS(2740), - [sym__nil_coalescing_operator_custom] = ACTIONS(2740), - [sym__eq_eq_custom] = ACTIONS(2740), - [sym__plus_then_ws] = ACTIONS(2740), - [sym__minus_then_ws] = ACTIONS(2740), - [sym_bang] = ACTIONS(2740), - [sym_default_keyword] = ACTIONS(2740), - [sym_where_keyword] = ACTIONS(2740), - [sym__as_custom] = ACTIONS(2740), - [sym__as_quest_custom] = ACTIONS(2740), - [sym__as_bang_custom] = ACTIONS(2740), - [sym__custom_operator] = ACTIONS(2740), - }, - [878] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_QMARK] = ACTIONS(2785), - [sym__immediate_quest] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2783), - [aux_sym_custom_operator_token1] = ACTIONS(2783), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_GT] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_CARET_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_fallthrough] = ACTIONS(2783), - [anon_sym_PLUS_EQ] = ACTIONS(2783), - [anon_sym_DASH_EQ] = ACTIONS(2783), - [anon_sym_STAR_EQ] = ACTIONS(2783), - [anon_sym_SLASH_EQ] = ACTIONS(2783), - [anon_sym_PERCENT_EQ] = ACTIONS(2783), - [anon_sym_EQ] = ACTIONS(2785), - [anon_sym_BANG_EQ] = ACTIONS(2785), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2783), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2783), - [anon_sym_DOT_DOT_LT] = ACTIONS(2783), - [anon_sym_is] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_SLASH] = ACTIONS(2785), - [anon_sym_PERCENT] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PIPE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2785), - [anon_sym_LT_LT] = ACTIONS(2783), - [anon_sym_GT_GT] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_prefix] = ACTIONS(2783), - [anon_sym_infix] = ACTIONS(2783), - [anon_sym_postfix] = ACTIONS(2783), - [anon_sym_AT] = ACTIONS(2785), - [sym_property_behavior_modifier] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2783), - [anon_sym_convenience] = ACTIONS(2783), - [anon_sym_required] = ACTIONS(2783), - [anon_sym_nonisolated] = ACTIONS(2783), - [anon_sym_public] = ACTIONS(2783), - [anon_sym_private] = ACTIONS(2783), - [anon_sym_internal] = ACTIONS(2783), - [anon_sym_fileprivate] = ACTIONS(2783), - [anon_sym_open] = ACTIONS(2783), - [anon_sym_mutating] = ACTIONS(2783), - [anon_sym_nonmutating] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_dynamic] = ACTIONS(2783), - [anon_sym_optional] = ACTIONS(2783), - [anon_sym_final] = ACTIONS(2783), - [anon_sym_inout] = ACTIONS(2783), - [anon_sym_ATescaping] = ACTIONS(2783), - [anon_sym_ATautoclosure] = ACTIONS(2783), - [anon_sym_weak] = ACTIONS(2783), - [anon_sym_unowned] = ACTIONS(2785), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2783), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2783), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2783), - [sym__explicit_semi] = ACTIONS(2783), - [sym__dot_custom] = ACTIONS(2783), - [sym__conjunction_operator_custom] = ACTIONS(2783), - [sym__disjunction_operator_custom] = ACTIONS(2783), - [sym__nil_coalescing_operator_custom] = ACTIONS(2783), - [sym__eq_eq_custom] = ACTIONS(2783), - [sym__plus_then_ws] = ACTIONS(2783), - [sym__minus_then_ws] = ACTIONS(2783), - [sym_bang] = ACTIONS(2783), - [sym_default_keyword] = ACTIONS(2783), - [sym_where_keyword] = ACTIONS(2783), - [sym__as_custom] = ACTIONS(2783), - [sym__as_quest_custom] = ACTIONS(2783), - [sym__as_bang_custom] = ACTIONS(2783), - [sym__custom_operator] = ACTIONS(2783), - }, - [879] = { - [sym_simple_identifier] = STATE(6296), - [aux_sym__fn_call_lambda_arguments_repeat1] = STATE(876), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2645), - [sym__immediate_quest] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2643), - [aux_sym_custom_operator_token1] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_GT] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2643), - [anon_sym_CARET_LBRACE] = ACTIONS(2643), - [anon_sym_RBRACE] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2645), - [anon_sym_fallthrough] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), - [anon_sym_LT_EQ] = ACTIONS(2643), - [anon_sym_GT_EQ] = ACTIONS(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), - [anon_sym_DOT_DOT_LT] = ACTIONS(2643), - [anon_sym_is] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_PLUS_PLUS] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2643), - [anon_sym_GT_GT] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2645), - [anon_sym_prefix] = ACTIONS(2645), - [anon_sym_infix] = ACTIONS(2645), - [anon_sym_postfix] = ACTIONS(2645), - [anon_sym_AT] = ACTIONS(2645), - [sym_property_behavior_modifier] = ACTIONS(2645), - [anon_sym_override] = ACTIONS(2645), - [anon_sym_convenience] = ACTIONS(2645), - [anon_sym_required] = ACTIONS(2645), - [anon_sym_nonisolated] = ACTIONS(2645), - [anon_sym_public] = ACTIONS(2645), - [anon_sym_private] = ACTIONS(2645), - [anon_sym_internal] = ACTIONS(2645), - [anon_sym_fileprivate] = ACTIONS(2645), - [anon_sym_open] = ACTIONS(2645), - [anon_sym_mutating] = ACTIONS(2645), - [anon_sym_nonmutating] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(2645), - [anon_sym_dynamic] = ACTIONS(2645), - [anon_sym_optional] = ACTIONS(2645), - [anon_sym_final] = ACTIONS(2645), - [anon_sym_inout] = ACTIONS(2645), - [anon_sym_ATescaping] = ACTIONS(2643), - [anon_sym_ATautoclosure] = ACTIONS(2643), - [anon_sym_weak] = ACTIONS(2645), - [anon_sym_unowned] = ACTIONS(2645), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2643), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2643), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2643), - [sym__explicit_semi] = ACTIONS(2643), - [sym__dot_custom] = ACTIONS(2643), - [sym__conjunction_operator_custom] = ACTIONS(2643), - [sym__disjunction_operator_custom] = ACTIONS(2643), - [sym__nil_coalescing_operator_custom] = ACTIONS(2643), - [sym__eq_eq_custom] = ACTIONS(2643), - [sym__plus_then_ws] = ACTIONS(2643), - [sym__minus_then_ws] = ACTIONS(2643), - [sym_bang] = ACTIONS(2643), - [sym_default_keyword] = ACTIONS(2643), - [sym__as_custom] = ACTIONS(2643), - [sym__as_quest_custom] = ACTIONS(2643), - [sym__as_bang_custom] = ACTIONS(2643), - [sym__custom_operator] = ACTIONS(2643), - }, - [880] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2828), - [sym__immediate_quest] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [aux_sym_custom_operator_token1] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_CARET_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_fallthrough] = ACTIONS(2826), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2826), - [anon_sym_DOT_DOT_LT] = ACTIONS(2826), - [anon_sym_is] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_prefix] = ACTIONS(2826), - [anon_sym_infix] = ACTIONS(2826), - [anon_sym_postfix] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2828), - [sym_property_behavior_modifier] = ACTIONS(2826), - [anon_sym_override] = ACTIONS(2826), - [anon_sym_convenience] = ACTIONS(2826), - [anon_sym_required] = ACTIONS(2826), - [anon_sym_nonisolated] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_internal] = ACTIONS(2826), - [anon_sym_fileprivate] = ACTIONS(2826), - [anon_sym_open] = ACTIONS(2826), - [anon_sym_mutating] = ACTIONS(2826), - [anon_sym_nonmutating] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_dynamic] = ACTIONS(2826), - [anon_sym_optional] = ACTIONS(2826), - [anon_sym_final] = ACTIONS(2826), - [anon_sym_inout] = ACTIONS(2826), - [anon_sym_ATescaping] = ACTIONS(2826), - [anon_sym_ATautoclosure] = ACTIONS(2826), - [anon_sym_weak] = ACTIONS(2826), - [anon_sym_unowned] = ACTIONS(2828), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2826), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2826), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2826), - [sym__explicit_semi] = ACTIONS(2826), - [sym__dot_custom] = ACTIONS(2826), - [sym__conjunction_operator_custom] = ACTIONS(2826), - [sym__disjunction_operator_custom] = ACTIONS(2826), - [sym__nil_coalescing_operator_custom] = ACTIONS(2826), - [sym__eq_eq_custom] = ACTIONS(2826), - [sym__plus_then_ws] = ACTIONS(2826), - [sym__minus_then_ws] = ACTIONS(2826), - [sym_bang] = ACTIONS(2826), - [sym_default_keyword] = ACTIONS(2826), - [sym_where_keyword] = ACTIONS(2826), - [sym__as_custom] = ACTIONS(2826), - [sym__as_quest_custom] = ACTIONS(2826), - [sym__as_bang_custom] = ACTIONS(2826), - [sym__custom_operator] = ACTIONS(2826), - }, - [881] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2838), - [sym__immediate_quest] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [aux_sym_custom_operator_token1] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_CARET_LBRACE] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_fallthrough] = ACTIONS(2836), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2836), - [anon_sym_DOT_DOT_LT] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_prefix] = ACTIONS(2836), - [anon_sym_infix] = ACTIONS(2836), - [anon_sym_postfix] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2838), - [sym_property_behavior_modifier] = ACTIONS(2836), - [anon_sym_override] = ACTIONS(2836), - [anon_sym_convenience] = ACTIONS(2836), - [anon_sym_required] = ACTIONS(2836), - [anon_sym_nonisolated] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_internal] = ACTIONS(2836), - [anon_sym_fileprivate] = ACTIONS(2836), - [anon_sym_open] = ACTIONS(2836), - [anon_sym_mutating] = ACTIONS(2836), - [anon_sym_nonmutating] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_dynamic] = ACTIONS(2836), - [anon_sym_optional] = ACTIONS(2836), - [anon_sym_final] = ACTIONS(2836), - [anon_sym_inout] = ACTIONS(2836), - [anon_sym_ATescaping] = ACTIONS(2836), - [anon_sym_ATautoclosure] = ACTIONS(2836), - [anon_sym_weak] = ACTIONS(2836), - [anon_sym_unowned] = ACTIONS(2838), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2836), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2836), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2836), - [sym__explicit_semi] = ACTIONS(2836), - [sym__dot_custom] = ACTIONS(2836), - [sym__conjunction_operator_custom] = ACTIONS(2836), - [sym__disjunction_operator_custom] = ACTIONS(2836), - [sym__nil_coalescing_operator_custom] = ACTIONS(2836), - [sym__eq_eq_custom] = ACTIONS(2836), - [sym__plus_then_ws] = ACTIONS(2836), - [sym__minus_then_ws] = ACTIONS(2836), - [sym_bang] = ACTIONS(2836), - [sym_default_keyword] = ACTIONS(2836), - [sym_where_keyword] = ACTIONS(2836), - [sym__as_custom] = ACTIONS(2836), - [sym__as_quest_custom] = ACTIONS(2836), - [sym__as_bang_custom] = ACTIONS(2836), - [sym__custom_operator] = ACTIONS(2836), - }, - [882] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_QMARK] = ACTIONS(2797), - [sym__immediate_quest] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [aux_sym_custom_operator_token1] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_CARET_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_fallthrough] = ACTIONS(2795), - [anon_sym_PLUS_EQ] = ACTIONS(2795), - [anon_sym_DASH_EQ] = ACTIONS(2795), - [anon_sym_STAR_EQ] = ACTIONS(2795), - [anon_sym_SLASH_EQ] = ACTIONS(2795), - [anon_sym_PERCENT_EQ] = ACTIONS(2795), - [anon_sym_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2795), - [anon_sym_LT_EQ] = ACTIONS(2795), - [anon_sym_GT_EQ] = ACTIONS(2795), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), - [anon_sym_DOT_DOT_LT] = ACTIONS(2795), - [anon_sym_is] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_PERCENT] = ACTIONS(2797), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2797), - [anon_sym_LT_LT] = ACTIONS(2795), - [anon_sym_GT_GT] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_prefix] = ACTIONS(2795), - [anon_sym_infix] = ACTIONS(2795), - [anon_sym_postfix] = ACTIONS(2795), - [anon_sym_AT] = ACTIONS(2797), - [sym_property_behavior_modifier] = ACTIONS(2795), - [anon_sym_override] = ACTIONS(2795), - [anon_sym_convenience] = ACTIONS(2795), - [anon_sym_required] = ACTIONS(2795), - [anon_sym_nonisolated] = ACTIONS(2795), - [anon_sym_public] = ACTIONS(2795), - [anon_sym_private] = ACTIONS(2795), - [anon_sym_internal] = ACTIONS(2795), - [anon_sym_fileprivate] = ACTIONS(2795), - [anon_sym_open] = ACTIONS(2795), - [anon_sym_mutating] = ACTIONS(2795), - [anon_sym_nonmutating] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_dynamic] = ACTIONS(2795), - [anon_sym_optional] = ACTIONS(2795), - [anon_sym_final] = ACTIONS(2795), - [anon_sym_inout] = ACTIONS(2795), - [anon_sym_ATescaping] = ACTIONS(2795), - [anon_sym_ATautoclosure] = ACTIONS(2795), - [anon_sym_weak] = ACTIONS(2795), - [anon_sym_unowned] = ACTIONS(2797), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2795), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2795), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2795), - [sym__explicit_semi] = ACTIONS(2795), - [sym__dot_custom] = ACTIONS(2795), - [sym__conjunction_operator_custom] = ACTIONS(2795), - [sym__disjunction_operator_custom] = ACTIONS(2795), - [sym__nil_coalescing_operator_custom] = ACTIONS(2795), - [sym__eq_eq_custom] = ACTIONS(2795), - [sym__plus_then_ws] = ACTIONS(2795), - [sym__minus_then_ws] = ACTIONS(2795), - [sym_bang] = ACTIONS(2795), - [sym_default_keyword] = ACTIONS(2795), - [sym_where_keyword] = ACTIONS(2795), - [sym__as_custom] = ACTIONS(2795), - [sym__as_quest_custom] = ACTIONS(2795), - [sym__as_bang_custom] = ACTIONS(2795), - [sym__custom_operator] = ACTIONS(2795), - }, - [883] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2809), - [sym__immediate_quest] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [aux_sym_custom_operator_token1] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_CARET_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_fallthrough] = ACTIONS(2806), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2809), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2806), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), - [anon_sym_DOT_DOT_LT] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_PERCENT] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2809), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_prefix] = ACTIONS(2806), - [anon_sym_infix] = ACTIONS(2806), - [anon_sym_postfix] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2809), - [sym_property_behavior_modifier] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_convenience] = ACTIONS(2806), - [anon_sym_required] = ACTIONS(2806), - [anon_sym_nonisolated] = ACTIONS(2806), - [anon_sym_public] = ACTIONS(2806), - [anon_sym_private] = ACTIONS(2806), - [anon_sym_internal] = ACTIONS(2806), - [anon_sym_fileprivate] = ACTIONS(2806), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_mutating] = ACTIONS(2806), - [anon_sym_nonmutating] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_dynamic] = ACTIONS(2806), - [anon_sym_optional] = ACTIONS(2806), - [anon_sym_final] = ACTIONS(2806), - [anon_sym_inout] = ACTIONS(2806), - [anon_sym_ATescaping] = ACTIONS(2806), - [anon_sym_ATautoclosure] = ACTIONS(2806), - [anon_sym_weak] = ACTIONS(2806), - [anon_sym_unowned] = ACTIONS(2809), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2806), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2806), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2806), - [sym__explicit_semi] = ACTIONS(2806), - [sym__dot_custom] = ACTIONS(2806), - [sym__conjunction_operator_custom] = ACTIONS(2806), - [sym__disjunction_operator_custom] = ACTIONS(2806), - [sym__nil_coalescing_operator_custom] = ACTIONS(2806), - [sym__eq_eq_custom] = ACTIONS(2806), - [sym__plus_then_ws] = ACTIONS(2806), - [sym__minus_then_ws] = ACTIONS(2806), - [sym_bang] = ACTIONS(2806), - [sym_default_keyword] = ACTIONS(2806), - [sym_where_keyword] = ACTIONS(2806), - [sym__as_custom] = ACTIONS(2806), - [sym__as_quest_custom] = ACTIONS(2806), - [sym__as_bang_custom] = ACTIONS(2806), - [sym__custom_operator] = ACTIONS(2806), - }, - [884] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2823), - [sym__immediate_quest] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [aux_sym_custom_operator_token1] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_GT] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_CARET_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_fallthrough] = ACTIONS(2820), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2820), - [anon_sym_DOT_DOT_LT] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_PERCENT] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2823), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_prefix] = ACTIONS(2820), - [anon_sym_infix] = ACTIONS(2820), - [anon_sym_postfix] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2823), - [sym_property_behavior_modifier] = ACTIONS(2820), - [anon_sym_override] = ACTIONS(2820), - [anon_sym_convenience] = ACTIONS(2820), - [anon_sym_required] = ACTIONS(2820), - [anon_sym_nonisolated] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_internal] = ACTIONS(2820), - [anon_sym_fileprivate] = ACTIONS(2820), - [anon_sym_open] = ACTIONS(2820), - [anon_sym_mutating] = ACTIONS(2820), - [anon_sym_nonmutating] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_dynamic] = ACTIONS(2820), - [anon_sym_optional] = ACTIONS(2820), - [anon_sym_final] = ACTIONS(2820), - [anon_sym_inout] = ACTIONS(2820), - [anon_sym_ATescaping] = ACTIONS(2820), - [anon_sym_ATautoclosure] = ACTIONS(2820), - [anon_sym_weak] = ACTIONS(2820), - [anon_sym_unowned] = ACTIONS(2823), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2820), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2820), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2820), - [sym__explicit_semi] = ACTIONS(2820), - [sym__dot_custom] = ACTIONS(2820), - [sym__conjunction_operator_custom] = ACTIONS(2820), - [sym__disjunction_operator_custom] = ACTIONS(2820), - [sym__nil_coalescing_operator_custom] = ACTIONS(2820), - [sym__eq_eq_custom] = ACTIONS(2820), - [sym__plus_then_ws] = ACTIONS(2820), - [sym__minus_then_ws] = ACTIONS(2820), - [sym_bang] = ACTIONS(2820), - [sym_default_keyword] = ACTIONS(2820), - [sym_where_keyword] = ACTIONS(2820), - [sym__as_custom] = ACTIONS(2820), - [sym__as_quest_custom] = ACTIONS(2820), - [sym__as_bang_custom] = ACTIONS(2820), - [sym__custom_operator] = ACTIONS(2820), - }, - [885] = { - [sym__type_level_declaration] = STATE(4819), - [sym_import_declaration] = STATE(4819), - [sym_property_declaration] = STATE(4819), - [sym__modifierless_property_declaration] = STATE(5708), - [sym_typealias_declaration] = STATE(4819), - [sym__modifierless_typealias_declaration] = STATE(5704), - [sym_function_declaration] = STATE(4819), - [sym__bodyless_function_declaration] = STATE(5462), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(4819), - [sym__modifierless_class_declaration] = STATE(5696), - [sym__class_member_declarations] = STATE(6329), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(4819), - [sym_deinit_declaration] = STATE(4819), - [sym_subscript_declaration] = STATE(4819), - [sym_operator_declaration] = STATE(4819), - [sym_precedence_group_declaration] = STATE(4819), - [sym_associatedtype_declaration] = STATE(4819), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3467), - [sym_modifiers] = STATE(3465), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3407), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3411), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3415), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [886] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2818), - [sym__immediate_quest] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [aux_sym_custom_operator_token1] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_CARET_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_case] = ACTIONS(2816), - [anon_sym_fallthrough] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2816), - [anon_sym_DOT_DOT_LT] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2816), - [anon_sym_prefix] = ACTIONS(2816), - [anon_sym_infix] = ACTIONS(2816), - [anon_sym_postfix] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2818), - [sym_property_behavior_modifier] = ACTIONS(2816), - [anon_sym_override] = ACTIONS(2816), - [anon_sym_convenience] = ACTIONS(2816), - [anon_sym_required] = ACTIONS(2816), - [anon_sym_nonisolated] = ACTIONS(2816), - [anon_sym_public] = ACTIONS(2816), - [anon_sym_private] = ACTIONS(2816), - [anon_sym_internal] = ACTIONS(2816), - [anon_sym_fileprivate] = ACTIONS(2816), - [anon_sym_open] = ACTIONS(2816), - [anon_sym_mutating] = ACTIONS(2816), - [anon_sym_nonmutating] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_dynamic] = ACTIONS(2816), - [anon_sym_optional] = ACTIONS(2816), - [anon_sym_final] = ACTIONS(2816), - [anon_sym_inout] = ACTIONS(2816), - [anon_sym_ATescaping] = ACTIONS(2816), - [anon_sym_ATautoclosure] = ACTIONS(2816), - [anon_sym_weak] = ACTIONS(2816), - [anon_sym_unowned] = ACTIONS(2818), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2816), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2816), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2816), - [sym__explicit_semi] = ACTIONS(2816), - [sym__dot_custom] = ACTIONS(2816), - [sym__conjunction_operator_custom] = ACTIONS(2816), - [sym__disjunction_operator_custom] = ACTIONS(2816), - [sym__nil_coalescing_operator_custom] = ACTIONS(2816), - [sym__eq_eq_custom] = ACTIONS(2816), - [sym__plus_then_ws] = ACTIONS(2816), - [sym__minus_then_ws] = ACTIONS(2816), - [sym_bang] = ACTIONS(2816), - [sym_default_keyword] = ACTIONS(2816), - [sym_where_keyword] = ACTIONS(2816), - [sym__as_custom] = ACTIONS(2816), - [sym__as_quest_custom] = ACTIONS(2816), - [sym__as_bang_custom] = ACTIONS(2816), - [sym__custom_operator] = ACTIONS(2816), - }, - [887] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2793), - [sym__immediate_quest] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2791), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_GT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_fallthrough] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_EQ] = ACTIONS(2793), - [anon_sym_BANG_EQ] = ACTIONS(2793), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_SLASH] = ACTIONS(2793), - [anon_sym_PERCENT] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2793), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_prefix] = ACTIONS(2791), - [anon_sym_infix] = ACTIONS(2791), - [anon_sym_postfix] = ACTIONS(2791), - [anon_sym_AT] = ACTIONS(2793), - [sym_property_behavior_modifier] = ACTIONS(2791), - [anon_sym_override] = ACTIONS(2791), - [anon_sym_convenience] = ACTIONS(2791), - [anon_sym_required] = ACTIONS(2791), - [anon_sym_nonisolated] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_internal] = ACTIONS(2791), - [anon_sym_fileprivate] = ACTIONS(2791), - [anon_sym_open] = ACTIONS(2791), - [anon_sym_mutating] = ACTIONS(2791), - [anon_sym_nonmutating] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_dynamic] = ACTIONS(2791), - [anon_sym_optional] = ACTIONS(2791), - [anon_sym_final] = ACTIONS(2791), - [anon_sym_inout] = ACTIONS(2791), - [anon_sym_ATescaping] = ACTIONS(2791), - [anon_sym_ATautoclosure] = ACTIONS(2791), - [anon_sym_weak] = ACTIONS(2791), - [anon_sym_unowned] = ACTIONS(2793), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2791), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2791), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2791), - [sym__explicit_semi] = ACTIONS(2791), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(2791), - [sym__minus_then_ws] = ACTIONS(2791), - [sym_bang] = ACTIONS(2791), - [sym_default_keyword] = ACTIONS(2791), - [sym_where_keyword] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2791), - }, - [888] = { - [sym_type_arguments] = STATE(911), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [aux_sym_custom_operator_token1] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_CARET_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_fallthrough] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2830), - [sym__explicit_semi] = ACTIONS(2830), - [sym__arrow_operator_custom] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__conjunction_operator_custom] = ACTIONS(2830), - [sym__disjunction_operator_custom] = ACTIONS(2830), - [sym__nil_coalescing_operator_custom] = ACTIONS(2830), - [sym__eq_eq_custom] = ACTIONS(2830), - [sym__plus_then_ws] = ACTIONS(2830), - [sym__minus_then_ws] = ACTIONS(2830), - [sym_bang] = ACTIONS(2830), - [sym__throws_keyword] = ACTIONS(2830), - [sym__rethrows_keyword] = ACTIONS(2830), - [sym_default_keyword] = ACTIONS(2830), - [sym_where_keyword] = ACTIONS(2830), - [sym__as_custom] = ACTIONS(2830), - [sym__as_quest_custom] = ACTIONS(2830), - [sym__as_bang_custom] = ACTIONS(2830), - [sym__async_keyword_custom] = ACTIONS(2830), - [sym__custom_operator] = ACTIONS(2830), - }, - [889] = { - [aux_sym_optional_type_repeat1] = STATE(889), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [sym__immediate_quest] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(2799), - [aux_sym_custom_operator_token1] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_CARET_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_fallthrough] = ACTIONS(2799), - [anon_sym_BANG_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2799), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), - [anon_sym_DOT_DOT_LT] = ACTIONS(2799), - [anon_sym_is] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2799), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_LT_LT] = ACTIONS(2799), - [anon_sym_GT_GT] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_prefix] = ACTIONS(2799), - [anon_sym_infix] = ACTIONS(2799), - [anon_sym_postfix] = ACTIONS(2799), - [anon_sym_AT] = ACTIONS(2801), - [sym_property_behavior_modifier] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2799), - [anon_sym_convenience] = ACTIONS(2799), - [anon_sym_required] = ACTIONS(2799), - [anon_sym_nonisolated] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_internal] = ACTIONS(2799), - [anon_sym_fileprivate] = ACTIONS(2799), - [anon_sym_open] = ACTIONS(2799), - [anon_sym_mutating] = ACTIONS(2799), - [anon_sym_nonmutating] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_dynamic] = ACTIONS(2799), - [anon_sym_optional] = ACTIONS(2799), - [anon_sym_final] = ACTIONS(2799), - [anon_sym_inout] = ACTIONS(2799), - [anon_sym_ATescaping] = ACTIONS(2799), - [anon_sym_ATautoclosure] = ACTIONS(2799), - [anon_sym_weak] = ACTIONS(2799), - [anon_sym_unowned] = ACTIONS(2801), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2799), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2799), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2799), - [sym__explicit_semi] = ACTIONS(2799), - [sym__arrow_operator_custom] = ACTIONS(2799), - [sym__dot_custom] = ACTIONS(2799), - [sym__conjunction_operator_custom] = ACTIONS(2799), - [sym__disjunction_operator_custom] = ACTIONS(2799), - [sym__nil_coalescing_operator_custom] = ACTIONS(2799), - [sym__eq_eq_custom] = ACTIONS(2799), - [sym__plus_then_ws] = ACTIONS(2799), - [sym__minus_then_ws] = ACTIONS(2799), - [sym_bang] = ACTIONS(2799), - [sym__throws_keyword] = ACTIONS(2799), - [sym__rethrows_keyword] = ACTIONS(2799), - [sym_default_keyword] = ACTIONS(2799), - [sym_where_keyword] = ACTIONS(2799), - [sym__as_custom] = ACTIONS(2799), - [sym__as_quest_custom] = ACTIONS(2799), - [sym__as_bang_custom] = ACTIONS(2799), - [sym__async_keyword_custom] = ACTIONS(2799), - [sym__custom_operator] = ACTIONS(2799), - }, - [890] = { - [sym__type_level_declaration] = STATE(4819), - [sym_import_declaration] = STATE(4819), - [sym_property_declaration] = STATE(4819), - [sym__modifierless_property_declaration] = STATE(5708), - [sym_typealias_declaration] = STATE(4819), - [sym__modifierless_typealias_declaration] = STATE(5704), - [sym_function_declaration] = STATE(4819), - [sym__bodyless_function_declaration] = STATE(5462), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(4819), - [sym__modifierless_class_declaration] = STATE(5696), - [sym__class_member_declarations] = STATE(6407), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(4819), - [sym_deinit_declaration] = STATE(4819), - [sym_subscript_declaration] = STATE(4819), - [sym_operator_declaration] = STATE(4819), - [sym_precedence_group_declaration] = STATE(4819), - [sym_associatedtype_declaration] = STATE(4819), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3467), - [sym_modifiers] = STATE(3465), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3426), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3407), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3411), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3415), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [891] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_QMARK] = ACTIONS(2750), - [sym__immediate_quest] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), - [aux_sym_custom_operator_token1] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_CARET_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_case] = ACTIONS(2748), - [anon_sym_fallthrough] = ACTIONS(2748), - [anon_sym_PLUS_EQ] = ACTIONS(2748), - [anon_sym_DASH_EQ] = ACTIONS(2748), - [anon_sym_STAR_EQ] = ACTIONS(2748), - [anon_sym_SLASH_EQ] = ACTIONS(2748), - [anon_sym_PERCENT_EQ] = ACTIONS(2748), - [anon_sym_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2748), - [anon_sym_LT_EQ] = ACTIONS(2748), - [anon_sym_GT_EQ] = ACTIONS(2748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), - [anon_sym_DOT_DOT_LT] = ACTIONS(2748), - [anon_sym_is] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2748), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_class] = ACTIONS(2748), - [anon_sym_prefix] = ACTIONS(2748), - [anon_sym_infix] = ACTIONS(2748), - [anon_sym_postfix] = ACTIONS(2748), - [anon_sym_AT] = ACTIONS(2750), - [sym_property_behavior_modifier] = ACTIONS(2748), - [anon_sym_override] = ACTIONS(2748), - [anon_sym_convenience] = ACTIONS(2748), - [anon_sym_required] = ACTIONS(2748), - [anon_sym_nonisolated] = ACTIONS(2748), - [anon_sym_public] = ACTIONS(2748), - [anon_sym_private] = ACTIONS(2748), - [anon_sym_internal] = ACTIONS(2748), - [anon_sym_fileprivate] = ACTIONS(2748), - [anon_sym_open] = ACTIONS(2748), - [anon_sym_mutating] = ACTIONS(2748), - [anon_sym_nonmutating] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_dynamic] = ACTIONS(2748), - [anon_sym_optional] = ACTIONS(2748), - [anon_sym_final] = ACTIONS(2748), - [anon_sym_inout] = ACTIONS(2748), - [anon_sym_ATescaping] = ACTIONS(2748), - [anon_sym_ATautoclosure] = ACTIONS(2748), - [anon_sym_weak] = ACTIONS(2748), - [anon_sym_unowned] = ACTIONS(2750), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2748), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2748), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2748), - [sym__explicit_semi] = ACTIONS(2748), - [sym__dot_custom] = ACTIONS(2748), - [sym__conjunction_operator_custom] = ACTIONS(2748), - [sym__disjunction_operator_custom] = ACTIONS(2748), - [sym__nil_coalescing_operator_custom] = ACTIONS(2748), - [sym__eq_eq_custom] = ACTIONS(2748), - [sym__plus_then_ws] = ACTIONS(2748), - [sym__minus_then_ws] = ACTIONS(2748), - [sym_bang] = ACTIONS(2748), - [sym_default_keyword] = ACTIONS(2748), - [sym_where_keyword] = ACTIONS(2748), - [sym__as_custom] = ACTIONS(2748), - [sym__as_quest_custom] = ACTIONS(2748), - [sym__as_bang_custom] = ACTIONS(2748), - [sym__custom_operator] = ACTIONS(2748), - }, - [892] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_QMARK] = ACTIONS(2762), - [sym__immediate_quest] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), - [aux_sym_custom_operator_token1] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_CARET_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_case] = ACTIONS(2760), - [anon_sym_fallthrough] = ACTIONS(2760), - [anon_sym_PLUS_EQ] = ACTIONS(2760), - [anon_sym_DASH_EQ] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2760), - [anon_sym_SLASH_EQ] = ACTIONS(2760), - [anon_sym_PERCENT_EQ] = ACTIONS(2760), - [anon_sym_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2760), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2760), - [anon_sym_LT_EQ] = ACTIONS(2760), - [anon_sym_GT_EQ] = ACTIONS(2760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2760), - [anon_sym_DOT_DOT_LT] = ACTIONS(2760), - [anon_sym_is] = ACTIONS(2760), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2762), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_LT_LT] = ACTIONS(2760), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_class] = ACTIONS(2760), - [anon_sym_prefix] = ACTIONS(2760), - [anon_sym_infix] = ACTIONS(2760), - [anon_sym_postfix] = ACTIONS(2760), - [anon_sym_AT] = ACTIONS(2762), - [sym_property_behavior_modifier] = ACTIONS(2760), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_convenience] = ACTIONS(2760), - [anon_sym_required] = ACTIONS(2760), - [anon_sym_nonisolated] = ACTIONS(2760), - [anon_sym_public] = ACTIONS(2760), - [anon_sym_private] = ACTIONS(2760), - [anon_sym_internal] = ACTIONS(2760), - [anon_sym_fileprivate] = ACTIONS(2760), - [anon_sym_open] = ACTIONS(2760), - [anon_sym_mutating] = ACTIONS(2760), - [anon_sym_nonmutating] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_dynamic] = ACTIONS(2760), - [anon_sym_optional] = ACTIONS(2760), - [anon_sym_final] = ACTIONS(2760), - [anon_sym_inout] = ACTIONS(2760), - [anon_sym_ATescaping] = ACTIONS(2760), - [anon_sym_ATautoclosure] = ACTIONS(2760), - [anon_sym_weak] = ACTIONS(2760), - [anon_sym_unowned] = ACTIONS(2762), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2760), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2760), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2760), - [sym__explicit_semi] = ACTIONS(2760), - [sym__dot_custom] = ACTIONS(2760), - [sym__conjunction_operator_custom] = ACTIONS(2760), - [sym__disjunction_operator_custom] = ACTIONS(2760), - [sym__nil_coalescing_operator_custom] = ACTIONS(2760), - [sym__eq_eq_custom] = ACTIONS(2760), - [sym__plus_then_ws] = ACTIONS(2760), - [sym__minus_then_ws] = ACTIONS(2760), - [sym_bang] = ACTIONS(2760), - [sym_default_keyword] = ACTIONS(2760), - [sym_where_keyword] = ACTIONS(2760), - [sym__as_custom] = ACTIONS(2760), - [sym__as_quest_custom] = ACTIONS(2760), - [sym__as_bang_custom] = ACTIONS(2760), - [sym__custom_operator] = ACTIONS(2760), - }, - [893] = { - [sym__type_level_declaration] = STATE(4819), - [sym_import_declaration] = STATE(4819), - [sym_property_declaration] = STATE(4819), - [sym__modifierless_property_declaration] = STATE(5708), - [sym_typealias_declaration] = STATE(4819), - [sym__modifierless_typealias_declaration] = STATE(5704), - [sym_function_declaration] = STATE(4819), - [sym__bodyless_function_declaration] = STATE(5462), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(4819), - [sym__modifierless_class_declaration] = STATE(5696), - [sym__class_member_declarations] = STATE(6349), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(4819), - [sym_deinit_declaration] = STATE(4819), - [sym_subscript_declaration] = STATE(4819), - [sym_operator_declaration] = STATE(4819), - [sym_precedence_group_declaration] = STATE(4819), - [sym_associatedtype_declaration] = STATE(4819), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3467), - [sym_modifiers] = STATE(3465), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3428), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3407), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3411), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3415), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [894] = { - [sym__dot] = STATE(4534), - [aux_sym_user_type_repeat1] = STATE(894), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_fallthrough] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2729), - [sym__explicit_semi] = ACTIONS(2729), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(3430), - [sym__conjunction_operator_custom] = ACTIONS(2729), - [sym__disjunction_operator_custom] = ACTIONS(2729), - [sym__nil_coalescing_operator_custom] = ACTIONS(2729), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym_default_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__as_quest_custom] = ACTIONS(2729), - [sym__as_bang_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [895] = { - [sym__dot] = STATE(4534), - [aux_sym_user_type_repeat1] = STATE(894), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [sym__immediate_quest] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [aux_sym_custom_operator_token1] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_CARET_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_fallthrough] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_DOT_DOT_LT] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_prefix] = ACTIONS(2669), - [anon_sym_infix] = ACTIONS(2669), - [anon_sym_postfix] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2671), - [sym_property_behavior_modifier] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_convenience] = ACTIONS(2669), - [anon_sym_required] = ACTIONS(2669), - [anon_sym_nonisolated] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_internal] = ACTIONS(2669), - [anon_sym_fileprivate] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2669), - [anon_sym_mutating] = ACTIONS(2669), - [anon_sym_nonmutating] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_dynamic] = ACTIONS(2669), - [anon_sym_optional] = ACTIONS(2669), - [anon_sym_final] = ACTIONS(2669), - [anon_sym_inout] = ACTIONS(2669), - [anon_sym_ATescaping] = ACTIONS(2669), - [anon_sym_ATautoclosure] = ACTIONS(2669), - [anon_sym_weak] = ACTIONS(2669), - [anon_sym_unowned] = ACTIONS(2671), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2669), - [sym__explicit_semi] = ACTIONS(2669), - [sym__arrow_operator_custom] = ACTIONS(2669), - [sym__dot_custom] = ACTIONS(3433), - [sym__conjunction_operator_custom] = ACTIONS(2669), - [sym__disjunction_operator_custom] = ACTIONS(2669), - [sym__nil_coalescing_operator_custom] = ACTIONS(2669), - [sym__eq_eq_custom] = ACTIONS(2669), - [sym__plus_then_ws] = ACTIONS(2669), - [sym__minus_then_ws] = ACTIONS(2669), - [sym_bang] = ACTIONS(2669), - [sym__throws_keyword] = ACTIONS(2669), - [sym__rethrows_keyword] = ACTIONS(2669), - [sym_default_keyword] = ACTIONS(2669), - [sym__as_custom] = ACTIONS(2669), - [sym__as_quest_custom] = ACTIONS(2669), - [sym__as_bang_custom] = ACTIONS(2669), - [sym__async_keyword_custom] = ACTIONS(2669), - [sym__custom_operator] = ACTIONS(2669), - }, - [896] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2770), - [sym__immediate_quest] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [aux_sym_custom_operator_token1] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_GT] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_CARET_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_fallthrough] = ACTIONS(2768), - [anon_sym_PLUS_EQ] = ACTIONS(2768), - [anon_sym_DASH_EQ] = ACTIONS(2768), - [anon_sym_STAR_EQ] = ACTIONS(2768), - [anon_sym_SLASH_EQ] = ACTIONS(2768), - [anon_sym_PERCENT_EQ] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2768), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), - [anon_sym_DOT_DOT_LT] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2770), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_prefix] = ACTIONS(2768), - [anon_sym_infix] = ACTIONS(2768), - [anon_sym_postfix] = ACTIONS(2768), - [anon_sym_AT] = ACTIONS(2770), - [sym_property_behavior_modifier] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_convenience] = ACTIONS(2768), - [anon_sym_required] = ACTIONS(2768), - [anon_sym_nonisolated] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_internal] = ACTIONS(2768), - [anon_sym_fileprivate] = ACTIONS(2768), - [anon_sym_open] = ACTIONS(2768), - [anon_sym_mutating] = ACTIONS(2768), - [anon_sym_nonmutating] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_dynamic] = ACTIONS(2768), - [anon_sym_optional] = ACTIONS(2768), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_inout] = ACTIONS(2768), - [anon_sym_ATescaping] = ACTIONS(2768), - [anon_sym_ATautoclosure] = ACTIONS(2768), - [anon_sym_weak] = ACTIONS(2768), - [anon_sym_unowned] = ACTIONS(2770), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2768), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2768), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2768), - [sym__explicit_semi] = ACTIONS(2768), - [sym__dot_custom] = ACTIONS(2768), - [sym__conjunction_operator_custom] = ACTIONS(2768), - [sym__disjunction_operator_custom] = ACTIONS(2768), - [sym__nil_coalescing_operator_custom] = ACTIONS(2768), - [sym__eq_eq_custom] = ACTIONS(2768), - [sym__plus_then_ws] = ACTIONS(2768), - [sym__minus_then_ws] = ACTIONS(2768), - [sym_bang] = ACTIONS(2768), - [sym_default_keyword] = ACTIONS(2768), - [sym_where_keyword] = ACTIONS(2768), - [sym__as_custom] = ACTIONS(2768), - [sym__as_quest_custom] = ACTIONS(2768), - [sym__as_bang_custom] = ACTIONS(2768), - [sym__custom_operator] = ACTIONS(2768), - }, - [897] = { - [sym__dot] = STATE(4534), - [aux_sym_user_type_repeat1] = STATE(895), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [anon_sym_QMARK] = ACTIONS(2682), - [sym__immediate_quest] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [aux_sym_custom_operator_token1] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_GT] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_CARET_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_fallthrough] = ACTIONS(2680), - [anon_sym_BANG_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2680), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_DOT_DOT_LT] = ACTIONS(2680), - [anon_sym_is] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_PERCENT] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2682), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_prefix] = ACTIONS(2680), - [anon_sym_infix] = ACTIONS(2680), - [anon_sym_postfix] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2682), - [sym_property_behavior_modifier] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_convenience] = ACTIONS(2680), - [anon_sym_required] = ACTIONS(2680), - [anon_sym_nonisolated] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_internal] = ACTIONS(2680), - [anon_sym_fileprivate] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_mutating] = ACTIONS(2680), - [anon_sym_nonmutating] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_dynamic] = ACTIONS(2680), - [anon_sym_optional] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_inout] = ACTIONS(2680), - [anon_sym_ATescaping] = ACTIONS(2680), - [anon_sym_ATautoclosure] = ACTIONS(2680), - [anon_sym_weak] = ACTIONS(2680), - [anon_sym_unowned] = ACTIONS(2682), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2680), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2680), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2680), - [sym__explicit_semi] = ACTIONS(2680), - [sym__arrow_operator_custom] = ACTIONS(2680), - [sym__dot_custom] = ACTIONS(3436), - [sym__conjunction_operator_custom] = ACTIONS(2680), - [sym__disjunction_operator_custom] = ACTIONS(2680), - [sym__nil_coalescing_operator_custom] = ACTIONS(2680), - [sym__eq_eq_custom] = ACTIONS(2680), - [sym__plus_then_ws] = ACTIONS(2680), - [sym__minus_then_ws] = ACTIONS(2680), - [sym_bang] = ACTIONS(2680), - [sym__throws_keyword] = ACTIONS(2680), - [sym__rethrows_keyword] = ACTIONS(2680), - [sym_default_keyword] = ACTIONS(2680), - [sym__as_custom] = ACTIONS(2680), - [sym__as_quest_custom] = ACTIONS(2680), - [sym__as_bang_custom] = ACTIONS(2680), - [sym__async_keyword_custom] = ACTIONS(2680), - [sym__custom_operator] = ACTIONS(2680), - }, - [898] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(903), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [sym__immediate_quest] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2787), - [aux_sym_custom_operator_token1] = ACTIONS(2787), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_CARET_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_case] = ACTIONS(2787), - [anon_sym_fallthrough] = ACTIONS(2787), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2787), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2787), - [anon_sym_LT_EQ] = ACTIONS(2787), - [anon_sym_GT_EQ] = ACTIONS(2787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2787), - [anon_sym_DOT_DOT_LT] = ACTIONS(2787), - [anon_sym_is] = ACTIONS(2787), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PIPE] = ACTIONS(2787), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2787), - [anon_sym_GT_GT] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_prefix] = ACTIONS(2787), - [anon_sym_infix] = ACTIONS(2787), - [anon_sym_postfix] = ACTIONS(2787), - [anon_sym_AT] = ACTIONS(2789), - [sym_property_behavior_modifier] = ACTIONS(2787), - [anon_sym_override] = ACTIONS(2787), - [anon_sym_convenience] = ACTIONS(2787), - [anon_sym_required] = ACTIONS(2787), - [anon_sym_nonisolated] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_private] = ACTIONS(2787), - [anon_sym_internal] = ACTIONS(2787), - [anon_sym_fileprivate] = ACTIONS(2787), - [anon_sym_open] = ACTIONS(2787), - [anon_sym_mutating] = ACTIONS(2787), - [anon_sym_nonmutating] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_dynamic] = ACTIONS(2787), - [anon_sym_optional] = ACTIONS(2787), - [anon_sym_final] = ACTIONS(2787), - [anon_sym_inout] = ACTIONS(2787), - [anon_sym_ATescaping] = ACTIONS(2787), - [anon_sym_ATautoclosure] = ACTIONS(2787), - [anon_sym_weak] = ACTIONS(2787), - [anon_sym_unowned] = ACTIONS(2789), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2787), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2787), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2787), - [sym__explicit_semi] = ACTIONS(2787), - [sym__arrow_operator_custom] = ACTIONS(2787), - [sym__dot_custom] = ACTIONS(2787), - [sym__conjunction_operator_custom] = ACTIONS(2787), - [sym__disjunction_operator_custom] = ACTIONS(2787), - [sym__nil_coalescing_operator_custom] = ACTIONS(2787), - [sym__eq_eq_custom] = ACTIONS(2787), - [sym__plus_then_ws] = ACTIONS(2787), - [sym__minus_then_ws] = ACTIONS(2787), - [sym_bang] = ACTIONS(2787), - [sym__throws_keyword] = ACTIONS(2787), - [sym__rethrows_keyword] = ACTIONS(2787), - [sym_default_keyword] = ACTIONS(2787), - [sym_where_keyword] = ACTIONS(2787), - [sym__as_custom] = ACTIONS(2787), - [sym__as_quest_custom] = ACTIONS(2787), - [sym__as_bang_custom] = ACTIONS(2787), - [sym__async_keyword_custom] = ACTIONS(2787), - [sym__custom_operator] = ACTIONS(2787), - }, - [899] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2758), - [sym__immediate_quest] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [aux_sym_custom_operator_token1] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_CARET_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_case] = ACTIONS(2756), - [anon_sym_fallthrough] = ACTIONS(2756), - [anon_sym_PLUS_EQ] = ACTIONS(2756), - [anon_sym_DASH_EQ] = ACTIONS(2756), - [anon_sym_STAR_EQ] = ACTIONS(2756), - [anon_sym_SLASH_EQ] = ACTIONS(2756), - [anon_sym_PERCENT_EQ] = ACTIONS(2756), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2756), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2756), - [anon_sym_DOT_DOT_LT] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(2756), - [anon_sym_prefix] = ACTIONS(2756), - [anon_sym_infix] = ACTIONS(2756), - [anon_sym_postfix] = ACTIONS(2756), - [anon_sym_AT] = ACTIONS(2758), - [sym_property_behavior_modifier] = ACTIONS(2756), - [anon_sym_override] = ACTIONS(2756), - [anon_sym_convenience] = ACTIONS(2756), - [anon_sym_required] = ACTIONS(2756), - [anon_sym_nonisolated] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_internal] = ACTIONS(2756), - [anon_sym_fileprivate] = ACTIONS(2756), - [anon_sym_open] = ACTIONS(2756), - [anon_sym_mutating] = ACTIONS(2756), - [anon_sym_nonmutating] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_dynamic] = ACTIONS(2756), - [anon_sym_optional] = ACTIONS(2756), - [anon_sym_final] = ACTIONS(2756), - [anon_sym_inout] = ACTIONS(2756), - [anon_sym_ATescaping] = ACTIONS(2756), - [anon_sym_ATautoclosure] = ACTIONS(2756), - [anon_sym_weak] = ACTIONS(2756), - [anon_sym_unowned] = ACTIONS(2758), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2756), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2756), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2756), - [sym__explicit_semi] = ACTIONS(2756), - [sym__dot_custom] = ACTIONS(2756), - [sym__conjunction_operator_custom] = ACTIONS(2756), - [sym__disjunction_operator_custom] = ACTIONS(2756), - [sym__nil_coalescing_operator_custom] = ACTIONS(2756), - [sym__eq_eq_custom] = ACTIONS(2756), - [sym__plus_then_ws] = ACTIONS(2756), - [sym__minus_then_ws] = ACTIONS(2756), - [sym_bang] = ACTIONS(2756), - [sym_default_keyword] = ACTIONS(2756), - [sym_where_keyword] = ACTIONS(2756), - [sym__as_custom] = ACTIONS(2756), - [sym__as_quest_custom] = ACTIONS(2756), - [sym__as_bang_custom] = ACTIONS(2756), - [sym__custom_operator] = ACTIONS(2756), - }, - [900] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2752), - [anon_sym_QMARK] = ACTIONS(2754), - [sym__immediate_quest] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), - [aux_sym_custom_operator_token1] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_CARET_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_fallthrough] = ACTIONS(2752), - [anon_sym_PLUS_EQ] = ACTIONS(2752), - [anon_sym_DASH_EQ] = ACTIONS(2752), - [anon_sym_STAR_EQ] = ACTIONS(2752), - [anon_sym_SLASH_EQ] = ACTIONS(2752), - [anon_sym_PERCENT_EQ] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2752), - [anon_sym_LT_EQ] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [anon_sym_is] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_prefix] = ACTIONS(2752), - [anon_sym_infix] = ACTIONS(2752), - [anon_sym_postfix] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2754), - [sym_property_behavior_modifier] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_convenience] = ACTIONS(2752), - [anon_sym_required] = ACTIONS(2752), - [anon_sym_nonisolated] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_internal] = ACTIONS(2752), - [anon_sym_fileprivate] = ACTIONS(2752), - [anon_sym_open] = ACTIONS(2752), - [anon_sym_mutating] = ACTIONS(2752), - [anon_sym_nonmutating] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_dynamic] = ACTIONS(2752), - [anon_sym_optional] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_inout] = ACTIONS(2752), - [anon_sym_ATescaping] = ACTIONS(2752), - [anon_sym_ATautoclosure] = ACTIONS(2752), - [anon_sym_weak] = ACTIONS(2752), - [anon_sym_unowned] = ACTIONS(2754), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2752), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2752), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2752), - [sym__explicit_semi] = ACTIONS(2752), - [sym__dot_custom] = ACTIONS(2752), - [sym__conjunction_operator_custom] = ACTIONS(2752), - [sym__disjunction_operator_custom] = ACTIONS(2752), - [sym__nil_coalescing_operator_custom] = ACTIONS(2752), - [sym__eq_eq_custom] = ACTIONS(2752), - [sym__plus_then_ws] = ACTIONS(2752), - [sym__minus_then_ws] = ACTIONS(2752), - [sym_bang] = ACTIONS(2752), - [sym_default_keyword] = ACTIONS(2752), - [sym_where_keyword] = ACTIONS(2752), - [sym__as_custom] = ACTIONS(2752), - [sym__as_quest_custom] = ACTIONS(2752), - [sym__as_bang_custom] = ACTIONS(2752), - [sym__custom_operator] = ACTIONS(2752), - }, - [901] = { - [aux_sym_optional_type_repeat1] = STATE(889), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [sym__immediate_quest] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [aux_sym_custom_operator_token1] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_GT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_CARET_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_fallthrough] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2736), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT_LT] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2738), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_prefix] = ACTIONS(2736), - [anon_sym_infix] = ACTIONS(2736), - [anon_sym_postfix] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2738), - [sym_property_behavior_modifier] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_convenience] = ACTIONS(2736), - [anon_sym_required] = ACTIONS(2736), - [anon_sym_nonisolated] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_internal] = ACTIONS(2736), - [anon_sym_fileprivate] = ACTIONS(2736), - [anon_sym_open] = ACTIONS(2736), - [anon_sym_mutating] = ACTIONS(2736), - [anon_sym_nonmutating] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_dynamic] = ACTIONS(2736), - [anon_sym_optional] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_inout] = ACTIONS(2736), - [anon_sym_ATescaping] = ACTIONS(2736), - [anon_sym_ATautoclosure] = ACTIONS(2736), - [anon_sym_weak] = ACTIONS(2736), - [anon_sym_unowned] = ACTIONS(2738), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2736), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2736), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2736), - [sym__explicit_semi] = ACTIONS(2736), - [sym__arrow_operator_custom] = ACTIONS(2736), - [sym__dot_custom] = ACTIONS(2736), - [sym__conjunction_operator_custom] = ACTIONS(2736), - [sym__disjunction_operator_custom] = ACTIONS(2736), - [sym__nil_coalescing_operator_custom] = ACTIONS(2736), - [sym__eq_eq_custom] = ACTIONS(2736), - [sym__plus_then_ws] = ACTIONS(2736), - [sym__minus_then_ws] = ACTIONS(2736), - [sym_bang] = ACTIONS(2736), - [sym__throws_keyword] = ACTIONS(2736), - [sym__rethrows_keyword] = ACTIONS(2736), - [sym_default_keyword] = ACTIONS(2736), - [sym_where_keyword] = ACTIONS(2736), - [sym__as_custom] = ACTIONS(2736), - [sym__as_quest_custom] = ACTIONS(2736), - [sym__as_bang_custom] = ACTIONS(2736), - [sym__async_keyword_custom] = ACTIONS(2736), - [sym__custom_operator] = ACTIONS(2736), - }, - [902] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2766), - [sym__immediate_quest] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [aux_sym_custom_operator_token1] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_CARET_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_case] = ACTIONS(2764), - [anon_sym_fallthrough] = ACTIONS(2764), - [anon_sym_PLUS_EQ] = ACTIONS(2764), - [anon_sym_DASH_EQ] = ACTIONS(2764), - [anon_sym_STAR_EQ] = ACTIONS(2764), - [anon_sym_SLASH_EQ] = ACTIONS(2764), - [anon_sym_PERCENT_EQ] = ACTIONS(2764), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2764), - [anon_sym_DOT_DOT_LT] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_class] = ACTIONS(2764), - [anon_sym_prefix] = ACTIONS(2764), - [anon_sym_infix] = ACTIONS(2764), - [anon_sym_postfix] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2766), - [sym_property_behavior_modifier] = ACTIONS(2764), - [anon_sym_override] = ACTIONS(2764), - [anon_sym_convenience] = ACTIONS(2764), - [anon_sym_required] = ACTIONS(2764), - [anon_sym_nonisolated] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_internal] = ACTIONS(2764), - [anon_sym_fileprivate] = ACTIONS(2764), - [anon_sym_open] = ACTIONS(2764), - [anon_sym_mutating] = ACTIONS(2764), - [anon_sym_nonmutating] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_dynamic] = ACTIONS(2764), - [anon_sym_optional] = ACTIONS(2764), - [anon_sym_final] = ACTIONS(2764), - [anon_sym_inout] = ACTIONS(2764), - [anon_sym_ATescaping] = ACTIONS(2764), - [anon_sym_ATautoclosure] = ACTIONS(2764), - [anon_sym_weak] = ACTIONS(2764), - [anon_sym_unowned] = ACTIONS(2766), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2764), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2764), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2764), - [sym__explicit_semi] = ACTIONS(2764), - [sym__dot_custom] = ACTIONS(2764), - [sym__conjunction_operator_custom] = ACTIONS(2764), - [sym__disjunction_operator_custom] = ACTIONS(2764), - [sym__nil_coalescing_operator_custom] = ACTIONS(2764), - [sym__eq_eq_custom] = ACTIONS(2764), - [sym__plus_then_ws] = ACTIONS(2764), - [sym__minus_then_ws] = ACTIONS(2764), - [sym_bang] = ACTIONS(2764), - [sym_default_keyword] = ACTIONS(2764), - [sym_where_keyword] = ACTIONS(2764), - [sym__as_custom] = ACTIONS(2764), - [sym__as_quest_custom] = ACTIONS(2764), - [sym__as_bang_custom] = ACTIONS(2764), - [sym__custom_operator] = ACTIONS(2764), - }, - [903] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(903), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [sym__immediate_quest] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(3439), - [aux_sym_custom_operator_token1] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_CARET_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_fallthrough] = ACTIONS(2581), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2581), - [anon_sym_LT_EQ] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_is] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2581), - [sym__explicit_semi] = ACTIONS(2581), - [sym__arrow_operator_custom] = ACTIONS(2581), - [sym__dot_custom] = ACTIONS(2581), - [sym__conjunction_operator_custom] = ACTIONS(2581), - [sym__disjunction_operator_custom] = ACTIONS(2581), - [sym__nil_coalescing_operator_custom] = ACTIONS(2581), - [sym__eq_eq_custom] = ACTIONS(2581), - [sym__plus_then_ws] = ACTIONS(2581), - [sym__minus_then_ws] = ACTIONS(2581), - [sym_bang] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2581), - [sym__rethrows_keyword] = ACTIONS(2581), - [sym_default_keyword] = ACTIONS(2581), - [sym_where_keyword] = ACTIONS(2581), - [sym__as_custom] = ACTIONS(2581), - [sym__as_quest_custom] = ACTIONS(2581), - [sym__as_bang_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(2581), - [sym__custom_operator] = ACTIONS(2581), - }, - [904] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_fallthrough] = ACTIONS(2779), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym_default_keyword] = ACTIONS(2779), - [sym_where_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [905] = { - [sym_type_arguments] = STATE(1997), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2711), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_QMARK] = ACTIONS(2716), - [sym__immediate_quest] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2711), - [aux_sym_custom_operator_token1] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_CARET_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_case] = ACTIONS(2711), - [anon_sym_fallthrough] = ACTIONS(2711), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2711), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_GT_EQ] = ACTIONS(2711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2711), - [anon_sym_DOT_DOT_LT] = ACTIONS(2711), - [anon_sym_is] = ACTIONS(2711), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_GT_GT] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2711), - [anon_sym_prefix] = ACTIONS(2711), - [anon_sym_infix] = ACTIONS(2711), - [anon_sym_postfix] = ACTIONS(2711), - [anon_sym_AT] = ACTIONS(2716), - [sym_property_behavior_modifier] = ACTIONS(2711), - [anon_sym_override] = ACTIONS(2711), - [anon_sym_convenience] = ACTIONS(2711), - [anon_sym_required] = ACTIONS(2711), - [anon_sym_nonisolated] = ACTIONS(2711), - [anon_sym_public] = ACTIONS(2711), - [anon_sym_private] = ACTIONS(2711), - [anon_sym_internal] = ACTIONS(2711), - [anon_sym_fileprivate] = ACTIONS(2711), - [anon_sym_open] = ACTIONS(2711), - [anon_sym_mutating] = ACTIONS(2711), - [anon_sym_nonmutating] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_dynamic] = ACTIONS(2711), - [anon_sym_optional] = ACTIONS(2711), - [anon_sym_final] = ACTIONS(2711), - [anon_sym_inout] = ACTIONS(2711), - [anon_sym_ATescaping] = ACTIONS(2711), - [anon_sym_ATautoclosure] = ACTIONS(2711), - [anon_sym_weak] = ACTIONS(2711), - [anon_sym_unowned] = ACTIONS(2716), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2711), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2711), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2711), - [sym__explicit_semi] = ACTIONS(2711), - [sym__dot_custom] = ACTIONS(2713), - [sym__conjunction_operator_custom] = ACTIONS(2711), - [sym__disjunction_operator_custom] = ACTIONS(2711), - [sym__nil_coalescing_operator_custom] = ACTIONS(2711), - [sym__eq_eq_custom] = ACTIONS(2711), - [sym__plus_then_ws] = ACTIONS(2711), - [sym__minus_then_ws] = ACTIONS(2711), - [sym_bang] = ACTIONS(2711), - [sym_default_keyword] = ACTIONS(2711), - [sym__as_custom] = ACTIONS(2711), - [sym__as_quest_custom] = ACTIONS(2711), - [sym__as_bang_custom] = ACTIONS(2711), - [sym__custom_operator] = ACTIONS(2711), - }, - [906] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2814), - [sym__immediate_quest] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [aux_sym_custom_operator_token1] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_CARET_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_case] = ACTIONS(2812), - [anon_sym_fallthrough] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2812), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2812), - [anon_sym_DOT_DOT_LT] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_prefix] = ACTIONS(2812), - [anon_sym_infix] = ACTIONS(2812), - [anon_sym_postfix] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2814), - [sym_property_behavior_modifier] = ACTIONS(2812), - [anon_sym_override] = ACTIONS(2812), - [anon_sym_convenience] = ACTIONS(2812), - [anon_sym_required] = ACTIONS(2812), - [anon_sym_nonisolated] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_internal] = ACTIONS(2812), - [anon_sym_fileprivate] = ACTIONS(2812), - [anon_sym_open] = ACTIONS(2812), - [anon_sym_mutating] = ACTIONS(2812), - [anon_sym_nonmutating] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_dynamic] = ACTIONS(2812), - [anon_sym_optional] = ACTIONS(2812), - [anon_sym_final] = ACTIONS(2812), - [anon_sym_inout] = ACTIONS(2812), - [anon_sym_ATescaping] = ACTIONS(2812), - [anon_sym_ATautoclosure] = ACTIONS(2812), - [anon_sym_weak] = ACTIONS(2812), - [anon_sym_unowned] = ACTIONS(2814), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2812), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2812), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2812), - [sym__explicit_semi] = ACTIONS(2812), - [sym__dot_custom] = ACTIONS(2812), - [sym__conjunction_operator_custom] = ACTIONS(2812), - [sym__disjunction_operator_custom] = ACTIONS(2812), - [sym__nil_coalescing_operator_custom] = ACTIONS(2812), - [sym__eq_eq_custom] = ACTIONS(2812), - [sym__plus_then_ws] = ACTIONS(2812), - [sym__minus_then_ws] = ACTIONS(2812), - [sym_bang] = ACTIONS(2812), - [sym_default_keyword] = ACTIONS(2812), - [sym_where_keyword] = ACTIONS(2812), - [sym__as_custom] = ACTIONS(2812), - [sym__as_quest_custom] = ACTIONS(2812), - [sym__as_bang_custom] = ACTIONS(2812), - [sym__custom_operator] = ACTIONS(2812), - }, - [907] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [sym__immediate_quest] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2901), - [aux_sym_custom_operator_token1] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_CARET_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_fallthrough] = ACTIONS(2901), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2901), - [anon_sym_LT_EQ] = ACTIONS(2901), - [anon_sym_GT_EQ] = ACTIONS(2901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2901), - [anon_sym_DOT_DOT_LT] = ACTIONS(2901), - [anon_sym_is] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2901), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2901), - [anon_sym_GT_GT] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_prefix] = ACTIONS(2901), - [anon_sym_infix] = ACTIONS(2901), - [anon_sym_postfix] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2903), - [sym_property_behavior_modifier] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_convenience] = ACTIONS(2901), - [anon_sym_required] = ACTIONS(2901), - [anon_sym_nonisolated] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_internal] = ACTIONS(2901), - [anon_sym_fileprivate] = ACTIONS(2901), - [anon_sym_open] = ACTIONS(2901), - [anon_sym_mutating] = ACTIONS(2901), - [anon_sym_nonmutating] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_dynamic] = ACTIONS(2901), - [anon_sym_optional] = ACTIONS(2901), - [anon_sym_final] = ACTIONS(2901), - [anon_sym_inout] = ACTIONS(2901), - [anon_sym_ATescaping] = ACTIONS(2901), - [anon_sym_ATautoclosure] = ACTIONS(2901), - [anon_sym_weak] = ACTIONS(2901), - [anon_sym_unowned] = ACTIONS(2903), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2901), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2901), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2901), - [sym__explicit_semi] = ACTIONS(2901), - [sym__arrow_operator_custom] = ACTIONS(2901), - [sym__dot_custom] = ACTIONS(2901), - [sym__conjunction_operator_custom] = ACTIONS(2901), - [sym__disjunction_operator_custom] = ACTIONS(2901), - [sym__nil_coalescing_operator_custom] = ACTIONS(2901), - [sym__eq_eq_custom] = ACTIONS(2901), - [sym__plus_then_ws] = ACTIONS(2901), - [sym__minus_then_ws] = ACTIONS(2901), - [sym_bang] = ACTIONS(2901), - [sym__throws_keyword] = ACTIONS(2901), - [sym__rethrows_keyword] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2901), - [sym_where_keyword] = ACTIONS(2901), - [sym__as_custom] = ACTIONS(2901), - [sym__as_quest_custom] = ACTIONS(2901), - [sym__as_bang_custom] = ACTIONS(2901), - [sym__async_keyword_custom] = ACTIONS(2901), - [sym__custom_operator] = ACTIONS(2901), - }, - [908] = { - [sym_attribute] = STATE(947), - [aux_sym__lambda_type_declaration_repeat1] = STATE(947), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3442), - [aux_sym_simple_identifier_token2] = ACTIONS(3444), - [aux_sym_simple_identifier_token3] = ACTIONS(3444), - [aux_sym_simple_identifier_token4] = ACTIONS(3444), - [anon_sym_actor] = ACTIONS(3442), - [anon_sym_nil] = ACTIONS(3442), - [sym_real_literal] = ACTIONS(3444), - [sym_integer_literal] = ACTIONS(3442), - [sym_hex_literal] = ACTIONS(3444), - [sym_oct_literal] = ACTIONS(3444), - [sym_bin_literal] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3442), - [anon_sym_false] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3442), - [anon_sym_BSLASH] = ACTIONS(3444), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3444), - [sym__extended_regex_literal] = ACTIONS(3444), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(3444), - [sym__oneline_regex_literal] = ACTIONS(3442), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3442), - [anon_sym_POUNDselector] = ACTIONS(3444), - [aux_sym_custom_operator_token1] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3442), - [anon_sym_GT] = ACTIONS(3442), - [anon_sym_await] = ACTIONS(3442), - [anon_sym_POUNDfile] = ACTIONS(3442), - [anon_sym_POUNDfileID] = ACTIONS(3444), - [anon_sym_POUNDfilePath] = ACTIONS(3444), - [anon_sym_POUNDline] = ACTIONS(3444), - [anon_sym_POUNDcolumn] = ACTIONS(3444), - [anon_sym_POUNDfunction] = ACTIONS(3444), - [anon_sym_POUNDdsohandle] = ACTIONS(3444), - [anon_sym_POUNDcolorLiteral] = ACTIONS(3444), - [anon_sym_POUNDfileLiteral] = ACTIONS(3444), - [anon_sym_POUNDimageLiteral] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_CARET_LBRACE] = ACTIONS(3444), - [anon_sym_self] = ACTIONS(3442), - [anon_sym_super] = ACTIONS(3442), - [anon_sym_POUNDkeyPath] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3442), - [anon_sym_try_BANG] = ACTIONS(3444), - [anon_sym_try_QMARK] = ACTIONS(3444), - [anon_sym_PLUS_EQ] = ACTIONS(3444), - [anon_sym_DASH_EQ] = ACTIONS(3444), - [anon_sym_STAR_EQ] = ACTIONS(3444), - [anon_sym_SLASH_EQ] = ACTIONS(3444), - [anon_sym_PERCENT_EQ] = ACTIONS(3444), - [anon_sym_EQ] = ACTIONS(3442), - [anon_sym_BANG_EQ] = ACTIONS(3442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3444), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3442), - [anon_sym_DASH] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3442), - [anon_sym_SLASH] = ACTIONS(3442), - [anon_sym_PERCENT] = ACTIONS(3442), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3442), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(935), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3444), - [sym_raw_str_end_part] = ACTIONS(3444), - [sym__dot_custom] = ACTIONS(3444), - [sym__eq_eq_custom] = ACTIONS(3444), - [sym__plus_then_ws] = ACTIONS(3444), - [sym__minus_then_ws] = ACTIONS(3444), - [sym_bang] = ACTIONS(3444), - [sym__custom_operator] = ACTIONS(3444), - }, - [909] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2809), - [sym__immediate_quest] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [aux_sym_custom_operator_token1] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_GT] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_CARET_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_fallthrough] = ACTIONS(2806), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2809), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2806), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2806), - [anon_sym_DOT_DOT_LT] = ACTIONS(2806), - [anon_sym_is] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_STAR] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_PERCENT] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2809), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_prefix] = ACTIONS(2806), - [anon_sym_infix] = ACTIONS(2806), - [anon_sym_postfix] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2809), - [sym_property_behavior_modifier] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_convenience] = ACTIONS(2806), - [anon_sym_required] = ACTIONS(2806), - [anon_sym_nonisolated] = ACTIONS(2806), - [anon_sym_public] = ACTIONS(2806), - [anon_sym_private] = ACTIONS(2806), - [anon_sym_internal] = ACTIONS(2806), - [anon_sym_fileprivate] = ACTIONS(2806), - [anon_sym_open] = ACTIONS(2806), - [anon_sym_mutating] = ACTIONS(2806), - [anon_sym_nonmutating] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_dynamic] = ACTIONS(2806), - [anon_sym_optional] = ACTIONS(2806), - [anon_sym_final] = ACTIONS(2806), - [anon_sym_inout] = ACTIONS(2806), - [anon_sym_ATescaping] = ACTIONS(2806), - [anon_sym_ATautoclosure] = ACTIONS(2806), - [anon_sym_weak] = ACTIONS(2806), - [anon_sym_unowned] = ACTIONS(2809), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2806), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2806), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2806), - [sym__explicit_semi] = ACTIONS(2806), - [sym__dot_custom] = ACTIONS(2806), - [sym__conjunction_operator_custom] = ACTIONS(2806), - [sym__disjunction_operator_custom] = ACTIONS(2806), - [sym__nil_coalescing_operator_custom] = ACTIONS(2806), - [sym__eq_eq_custom] = ACTIONS(2806), - [sym__plus_then_ws] = ACTIONS(2806), - [sym__minus_then_ws] = ACTIONS(2806), - [sym_bang] = ACTIONS(2806), - [sym_default_keyword] = ACTIONS(2806), - [sym__as_custom] = ACTIONS(2806), - [sym__as_quest_custom] = ACTIONS(2806), - [sym__as_bang_custom] = ACTIONS(2806), - [sym__custom_operator] = ACTIONS(2806), - }, - [910] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_QMARK] = ACTIONS(2785), - [sym__immediate_quest] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2783), - [aux_sym_custom_operator_token1] = ACTIONS(2783), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_GT] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_CARET_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_fallthrough] = ACTIONS(2783), - [anon_sym_PLUS_EQ] = ACTIONS(2783), - [anon_sym_DASH_EQ] = ACTIONS(2783), - [anon_sym_STAR_EQ] = ACTIONS(2783), - [anon_sym_SLASH_EQ] = ACTIONS(2783), - [anon_sym_PERCENT_EQ] = ACTIONS(2783), - [anon_sym_EQ] = ACTIONS(2785), - [anon_sym_BANG_EQ] = ACTIONS(2785), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2783), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2783), - [anon_sym_LT_EQ] = ACTIONS(2783), - [anon_sym_GT_EQ] = ACTIONS(2783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2783), - [anon_sym_DOT_DOT_LT] = ACTIONS(2783), - [anon_sym_is] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_SLASH] = ACTIONS(2785), - [anon_sym_PERCENT] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [anon_sym_PIPE] = ACTIONS(2783), - [anon_sym_CARET] = ACTIONS(2785), - [anon_sym_LT_LT] = ACTIONS(2783), - [anon_sym_GT_GT] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_prefix] = ACTIONS(2783), - [anon_sym_infix] = ACTIONS(2783), - [anon_sym_postfix] = ACTIONS(2783), - [anon_sym_AT] = ACTIONS(2785), - [sym_property_behavior_modifier] = ACTIONS(2783), - [anon_sym_override] = ACTIONS(2783), - [anon_sym_convenience] = ACTIONS(2783), - [anon_sym_required] = ACTIONS(2783), - [anon_sym_nonisolated] = ACTIONS(2783), - [anon_sym_public] = ACTIONS(2783), - [anon_sym_private] = ACTIONS(2783), - [anon_sym_internal] = ACTIONS(2783), - [anon_sym_fileprivate] = ACTIONS(2783), - [anon_sym_open] = ACTIONS(2783), - [anon_sym_mutating] = ACTIONS(2783), - [anon_sym_nonmutating] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_dynamic] = ACTIONS(2783), - [anon_sym_optional] = ACTIONS(2783), - [anon_sym_final] = ACTIONS(2783), - [anon_sym_inout] = ACTIONS(2783), - [anon_sym_ATescaping] = ACTIONS(2783), - [anon_sym_ATautoclosure] = ACTIONS(2783), - [anon_sym_weak] = ACTIONS(2783), - [anon_sym_unowned] = ACTIONS(2785), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2783), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2783), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2783), - [sym__explicit_semi] = ACTIONS(2783), - [sym__dot_custom] = ACTIONS(2783), - [sym__conjunction_operator_custom] = ACTIONS(2783), - [sym__disjunction_operator_custom] = ACTIONS(2783), - [sym__nil_coalescing_operator_custom] = ACTIONS(2783), - [sym__eq_eq_custom] = ACTIONS(2783), - [sym__plus_then_ws] = ACTIONS(2783), - [sym__minus_then_ws] = ACTIONS(2783), - [sym_bang] = ACTIONS(2783), - [sym_default_keyword] = ACTIONS(2783), - [sym__as_custom] = ACTIONS(2783), - [sym__as_quest_custom] = ACTIONS(2783), - [sym__as_bang_custom] = ACTIONS(2783), - [sym__custom_operator] = ACTIONS(2783), - }, - [911] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_QMARK] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [aux_sym_custom_operator_token1] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_fallthrough] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2855), - [sym__explicit_semi] = ACTIONS(2855), - [sym__arrow_operator_custom] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__conjunction_operator_custom] = ACTIONS(2855), - [sym__disjunction_operator_custom] = ACTIONS(2855), - [sym__nil_coalescing_operator_custom] = ACTIONS(2855), - [sym__eq_eq_custom] = ACTIONS(2855), - [sym__plus_then_ws] = ACTIONS(2855), - [sym__minus_then_ws] = ACTIONS(2855), - [sym_bang] = ACTIONS(2855), - [sym__throws_keyword] = ACTIONS(2855), - [sym__rethrows_keyword] = ACTIONS(2855), - [sym_default_keyword] = ACTIONS(2855), - [sym_where_keyword] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2855), - [sym__as_quest_custom] = ACTIONS(2855), - [sym__as_bang_custom] = ACTIONS(2855), - [sym__async_keyword_custom] = ACTIONS(2855), - [sym__custom_operator] = ACTIONS(2855), - }, - [912] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2760), - [anon_sym_QMARK] = ACTIONS(2762), - [sym__immediate_quest] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2760), - [aux_sym_custom_operator_token1] = ACTIONS(2760), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_CARET_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_case] = ACTIONS(2760), - [anon_sym_fallthrough] = ACTIONS(2760), - [anon_sym_PLUS_EQ] = ACTIONS(2760), - [anon_sym_DASH_EQ] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2760), - [anon_sym_SLASH_EQ] = ACTIONS(2760), - [anon_sym_PERCENT_EQ] = ACTIONS(2760), - [anon_sym_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ] = ACTIONS(2762), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2760), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2760), - [anon_sym_LT_EQ] = ACTIONS(2760), - [anon_sym_GT_EQ] = ACTIONS(2760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2760), - [anon_sym_DOT_DOT_LT] = ACTIONS(2760), - [anon_sym_is] = ACTIONS(2760), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2762), - [anon_sym_PERCENT] = ACTIONS(2762), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_CARET] = ACTIONS(2762), - [anon_sym_LT_LT] = ACTIONS(2760), - [anon_sym_GT_GT] = ACTIONS(2760), - [anon_sym_class] = ACTIONS(2760), - [anon_sym_prefix] = ACTIONS(2760), - [anon_sym_infix] = ACTIONS(2760), - [anon_sym_postfix] = ACTIONS(2760), - [anon_sym_AT] = ACTIONS(2762), - [sym_property_behavior_modifier] = ACTIONS(2760), - [anon_sym_override] = ACTIONS(2760), - [anon_sym_convenience] = ACTIONS(2760), - [anon_sym_required] = ACTIONS(2760), - [anon_sym_nonisolated] = ACTIONS(2760), - [anon_sym_public] = ACTIONS(2760), - [anon_sym_private] = ACTIONS(2760), - [anon_sym_internal] = ACTIONS(2760), - [anon_sym_fileprivate] = ACTIONS(2760), - [anon_sym_open] = ACTIONS(2760), - [anon_sym_mutating] = ACTIONS(2760), - [anon_sym_nonmutating] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_dynamic] = ACTIONS(2760), - [anon_sym_optional] = ACTIONS(2760), - [anon_sym_final] = ACTIONS(2760), - [anon_sym_inout] = ACTIONS(2760), - [anon_sym_ATescaping] = ACTIONS(2760), - [anon_sym_ATautoclosure] = ACTIONS(2760), - [anon_sym_weak] = ACTIONS(2760), - [anon_sym_unowned] = ACTIONS(2762), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2760), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2760), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2760), - [sym__explicit_semi] = ACTIONS(2760), - [sym__dot_custom] = ACTIONS(2760), - [sym__conjunction_operator_custom] = ACTIONS(2760), - [sym__disjunction_operator_custom] = ACTIONS(2760), - [sym__nil_coalescing_operator_custom] = ACTIONS(2760), - [sym__eq_eq_custom] = ACTIONS(2760), - [sym__plus_then_ws] = ACTIONS(2760), - [sym__minus_then_ws] = ACTIONS(2760), - [sym_bang] = ACTIONS(2760), - [sym_default_keyword] = ACTIONS(2760), - [sym__as_custom] = ACTIONS(2760), - [sym__as_quest_custom] = ACTIONS(2760), - [sym__as_bang_custom] = ACTIONS(2760), - [sym__custom_operator] = ACTIONS(2760), - }, - [913] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [aux_sym_custom_operator_token1] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_CARET_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_fallthrough] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_DOT_DOT_LT] = ACTIONS(2897), - [anon_sym_is] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2897), - [sym__explicit_semi] = ACTIONS(2897), - [sym__arrow_operator_custom] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__conjunction_operator_custom] = ACTIONS(2897), - [sym__disjunction_operator_custom] = ACTIONS(2897), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_eq_custom] = ACTIONS(2897), - [sym__plus_then_ws] = ACTIONS(2897), - [sym__minus_then_ws] = ACTIONS(2897), - [sym_bang] = ACTIONS(2897), - [sym__throws_keyword] = ACTIONS(2897), - [sym__rethrows_keyword] = ACTIONS(2897), - [sym_default_keyword] = ACTIONS(2897), - [sym_where_keyword] = ACTIONS(2897), - [sym__as_custom] = ACTIONS(2897), - [sym__as_quest_custom] = ACTIONS(2897), - [sym__as_bang_custom] = ACTIONS(2897), - [sym__async_keyword_custom] = ACTIONS(2897), - [sym__custom_operator] = ACTIONS(2897), - }, - [914] = { - [sym__type_level_declaration] = STATE(5297), - [sym_import_declaration] = STATE(5297), - [sym_property_declaration] = STATE(5297), - [sym__modifierless_property_declaration] = STATE(5708), - [sym_typealias_declaration] = STATE(5297), - [sym__modifierless_typealias_declaration] = STATE(5704), - [sym_function_declaration] = STATE(5297), - [sym__bodyless_function_declaration] = STATE(5462), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(5297), - [sym__modifierless_class_declaration] = STATE(5696), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(5297), - [sym_deinit_declaration] = STATE(5297), - [sym_subscript_declaration] = STATE(5297), - [sym_operator_declaration] = STATE(5297), - [sym_precedence_group_declaration] = STATE(5297), - [sym_associatedtype_declaration] = STATE(5297), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3467), - [sym_modifiers] = STATE(3465), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3446), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3407), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3411), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3415), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [915] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2742), - [sym__immediate_quest] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [aux_sym_custom_operator_token1] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_CARET_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_fallthrough] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ] = ACTIONS(2742), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2740), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), - [anon_sym_DOT_DOT_LT] = ACTIONS(2740), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2742), - [anon_sym_PERCENT] = ACTIONS(2742), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2742), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_prefix] = ACTIONS(2740), - [anon_sym_infix] = ACTIONS(2740), - [anon_sym_postfix] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2742), - [sym_property_behavior_modifier] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_convenience] = ACTIONS(2740), - [anon_sym_required] = ACTIONS(2740), - [anon_sym_nonisolated] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_internal] = ACTIONS(2740), - [anon_sym_fileprivate] = ACTIONS(2740), - [anon_sym_open] = ACTIONS(2740), - [anon_sym_mutating] = ACTIONS(2740), - [anon_sym_nonmutating] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_dynamic] = ACTIONS(2740), - [anon_sym_optional] = ACTIONS(2740), - [anon_sym_final] = ACTIONS(2740), - [anon_sym_inout] = ACTIONS(2740), - [anon_sym_ATescaping] = ACTIONS(2740), - [anon_sym_ATautoclosure] = ACTIONS(2740), - [anon_sym_weak] = ACTIONS(2740), - [anon_sym_unowned] = ACTIONS(2742), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2740), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2740), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2740), - [sym__explicit_semi] = ACTIONS(2740), - [sym__dot_custom] = ACTIONS(2740), - [sym__conjunction_operator_custom] = ACTIONS(2740), - [sym__disjunction_operator_custom] = ACTIONS(2740), - [sym__nil_coalescing_operator_custom] = ACTIONS(2740), - [sym__eq_eq_custom] = ACTIONS(2740), - [sym__plus_then_ws] = ACTIONS(2740), - [sym__minus_then_ws] = ACTIONS(2740), - [sym_bang] = ACTIONS(2740), - [sym_default_keyword] = ACTIONS(2740), - [sym__as_custom] = ACTIONS(2740), - [sym__as_quest_custom] = ACTIONS(2740), - [sym__as_bang_custom] = ACTIONS(2740), - [sym__custom_operator] = ACTIONS(2740), - }, - [916] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2744), - [anon_sym_QMARK] = ACTIONS(2746), - [sym__immediate_quest] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2744), - [aux_sym_custom_operator_token1] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_GT] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_CARET_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_fallthrough] = ACTIONS(2744), - [anon_sym_PLUS_EQ] = ACTIONS(2744), - [anon_sym_DASH_EQ] = ACTIONS(2744), - [anon_sym_STAR_EQ] = ACTIONS(2744), - [anon_sym_SLASH_EQ] = ACTIONS(2744), - [anon_sym_PERCENT_EQ] = ACTIONS(2744), - [anon_sym_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ] = ACTIONS(2746), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2744), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2744), - [anon_sym_LT_EQ] = ACTIONS(2744), - [anon_sym_GT_EQ] = ACTIONS(2744), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2744), - [anon_sym_DOT_DOT_LT] = ACTIONS(2744), - [anon_sym_is] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_SLASH] = ACTIONS(2746), - [anon_sym_PERCENT] = ACTIONS(2746), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2746), - [anon_sym_LT_LT] = ACTIONS(2744), - [anon_sym_GT_GT] = ACTIONS(2744), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_prefix] = ACTIONS(2744), - [anon_sym_infix] = ACTIONS(2744), - [anon_sym_postfix] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2746), - [sym_property_behavior_modifier] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_convenience] = ACTIONS(2744), - [anon_sym_required] = ACTIONS(2744), - [anon_sym_nonisolated] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_internal] = ACTIONS(2744), - [anon_sym_fileprivate] = ACTIONS(2744), - [anon_sym_open] = ACTIONS(2744), - [anon_sym_mutating] = ACTIONS(2744), - [anon_sym_nonmutating] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_dynamic] = ACTIONS(2744), - [anon_sym_optional] = ACTIONS(2744), - [anon_sym_final] = ACTIONS(2744), - [anon_sym_inout] = ACTIONS(2744), - [anon_sym_ATescaping] = ACTIONS(2744), - [anon_sym_ATautoclosure] = ACTIONS(2744), - [anon_sym_weak] = ACTIONS(2744), - [anon_sym_unowned] = ACTIONS(2746), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2744), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2744), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2744), - [sym__explicit_semi] = ACTIONS(2744), - [sym__dot_custom] = ACTIONS(2744), - [sym__conjunction_operator_custom] = ACTIONS(2744), - [sym__disjunction_operator_custom] = ACTIONS(2744), - [sym__nil_coalescing_operator_custom] = ACTIONS(2744), - [sym__eq_eq_custom] = ACTIONS(2744), - [sym__plus_then_ws] = ACTIONS(2744), - [sym__minus_then_ws] = ACTIONS(2744), - [sym_bang] = ACTIONS(2744), - [sym_default_keyword] = ACTIONS(2744), - [sym__as_custom] = ACTIONS(2744), - [sym__as_quest_custom] = ACTIONS(2744), - [sym__as_bang_custom] = ACTIONS(2744), - [sym__custom_operator] = ACTIONS(2744), - }, - [917] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2676), - [aux_sym_simple_identifier_token2] = ACTIONS(2678), - [aux_sym_simple_identifier_token3] = ACTIONS(2678), - [aux_sym_simple_identifier_token4] = ACTIONS(2678), - [anon_sym_actor] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2676), - [sym__immediate_quest] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2676), - [anon_sym_fallthrough] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_prefix] = ACTIONS(2676), - [anon_sym_infix] = ACTIONS(2676), - [anon_sym_postfix] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [sym_property_behavior_modifier] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_convenience] = ACTIONS(2676), - [anon_sym_required] = ACTIONS(2676), - [anon_sym_nonisolated] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_internal] = ACTIONS(2676), - [anon_sym_fileprivate] = ACTIONS(2676), - [anon_sym_open] = ACTIONS(2676), - [anon_sym_mutating] = ACTIONS(2676), - [anon_sym_nonmutating] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_dynamic] = ACTIONS(2676), - [anon_sym_optional] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_inout] = ACTIONS(2676), - [anon_sym_ATescaping] = ACTIONS(2678), - [anon_sym_ATautoclosure] = ACTIONS(2678), - [anon_sym_weak] = ACTIONS(2676), - [anon_sym_unowned] = ACTIONS(2676), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2678), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2678), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2678), - [sym__explicit_semi] = ACTIONS(2678), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2678), - [sym__disjunction_operator_custom] = ACTIONS(2678), - [sym__nil_coalescing_operator_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym_bang] = ACTIONS(2678), - [sym_default_keyword] = ACTIONS(2678), - [sym_where_keyword] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2678), - [sym__as_quest_custom] = ACTIONS(2678), - [sym__as_bang_custom] = ACTIONS(2678), - [sym__custom_operator] = ACTIONS(2678), - }, - [918] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [aux_sym_custom_operator_token1] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_CARET_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_fallthrough] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_DOT_DOT_LT] = ACTIONS(2873), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2873), - [sym__explicit_semi] = ACTIONS(2873), - [sym__arrow_operator_custom] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__conjunction_operator_custom] = ACTIONS(2873), - [sym__disjunction_operator_custom] = ACTIONS(2873), - [sym__nil_coalescing_operator_custom] = ACTIONS(2873), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2873), - [sym__minus_then_ws] = ACTIONS(2873), - [sym_bang] = ACTIONS(2873), - [sym__throws_keyword] = ACTIONS(2873), - [sym__rethrows_keyword] = ACTIONS(2873), - [sym_default_keyword] = ACTIONS(2873), - [sym_where_keyword] = ACTIONS(2873), - [sym__as_custom] = ACTIONS(2873), - [sym__as_quest_custom] = ACTIONS(2873), - [sym__as_bang_custom] = ACTIONS(2873), - [sym__async_keyword_custom] = ACTIONS(2873), - [sym__custom_operator] = ACTIONS(2873), - }, - [919] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(919), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_QMARK] = ACTIONS(2585), - [sym__immediate_quest] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(3448), - [aux_sym_custom_operator_token1] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_GT] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_CARET_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_fallthrough] = ACTIONS(2581), - [anon_sym_BANG_EQ] = ACTIONS(2585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2581), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2581), - [anon_sym_LT_EQ] = ACTIONS(2581), - [anon_sym_GT_EQ] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT] = ACTIONS(2581), - [anon_sym_is] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2585), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2581), - [sym__explicit_semi] = ACTIONS(2581), - [sym__arrow_operator_custom] = ACTIONS(2581), - [sym__dot_custom] = ACTIONS(2581), - [sym__conjunction_operator_custom] = ACTIONS(2581), - [sym__disjunction_operator_custom] = ACTIONS(2581), - [sym__nil_coalescing_operator_custom] = ACTIONS(2581), - [sym__eq_eq_custom] = ACTIONS(2581), - [sym__plus_then_ws] = ACTIONS(2581), - [sym__minus_then_ws] = ACTIONS(2581), - [sym_bang] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2581), - [sym__rethrows_keyword] = ACTIONS(2581), - [sym_default_keyword] = ACTIONS(2581), - [sym__as_custom] = ACTIONS(2581), - [sym__as_quest_custom] = ACTIONS(2581), - [sym__as_bang_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(2581), - [sym__custom_operator] = ACTIONS(2581), - }, - [920] = { - [sym__type_level_declaration] = STATE(5297), - [sym_import_declaration] = STATE(5297), - [sym_property_declaration] = STATE(5297), - [sym__modifierless_property_declaration] = STATE(5708), - [sym_typealias_declaration] = STATE(5297), - [sym__modifierless_typealias_declaration] = STATE(5704), - [sym_function_declaration] = STATE(5297), - [sym__bodyless_function_declaration] = STATE(5462), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(5297), - [sym__modifierless_class_declaration] = STATE(5696), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(5297), - [sym_deinit_declaration] = STATE(5297), - [sym_subscript_declaration] = STATE(5297), - [sym_operator_declaration] = STATE(5297), - [sym_precedence_group_declaration] = STATE(5297), - [sym_associatedtype_declaration] = STATE(5297), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3467), - [sym_modifiers] = STATE(3465), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3407), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3411), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3415), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [921] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_QMARK] = ACTIONS(2797), - [sym__immediate_quest] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [aux_sym_custom_operator_token1] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_GT] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_CARET_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_case] = ACTIONS(2795), - [anon_sym_fallthrough] = ACTIONS(2795), - [anon_sym_PLUS_EQ] = ACTIONS(2795), - [anon_sym_DASH_EQ] = ACTIONS(2795), - [anon_sym_STAR_EQ] = ACTIONS(2795), - [anon_sym_SLASH_EQ] = ACTIONS(2795), - [anon_sym_PERCENT_EQ] = ACTIONS(2795), - [anon_sym_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ] = ACTIONS(2797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2795), - [anon_sym_LT_EQ] = ACTIONS(2795), - [anon_sym_GT_EQ] = ACTIONS(2795), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), - [anon_sym_DOT_DOT_LT] = ACTIONS(2795), - [anon_sym_is] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_PERCENT] = ACTIONS(2797), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2797), - [anon_sym_LT_LT] = ACTIONS(2795), - [anon_sym_GT_GT] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2795), - [anon_sym_prefix] = ACTIONS(2795), - [anon_sym_infix] = ACTIONS(2795), - [anon_sym_postfix] = ACTIONS(2795), - [anon_sym_AT] = ACTIONS(2797), - [sym_property_behavior_modifier] = ACTIONS(2795), - [anon_sym_override] = ACTIONS(2795), - [anon_sym_convenience] = ACTIONS(2795), - [anon_sym_required] = ACTIONS(2795), - [anon_sym_nonisolated] = ACTIONS(2795), - [anon_sym_public] = ACTIONS(2795), - [anon_sym_private] = ACTIONS(2795), - [anon_sym_internal] = ACTIONS(2795), - [anon_sym_fileprivate] = ACTIONS(2795), - [anon_sym_open] = ACTIONS(2795), - [anon_sym_mutating] = ACTIONS(2795), - [anon_sym_nonmutating] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_dynamic] = ACTIONS(2795), - [anon_sym_optional] = ACTIONS(2795), - [anon_sym_final] = ACTIONS(2795), - [anon_sym_inout] = ACTIONS(2795), - [anon_sym_ATescaping] = ACTIONS(2795), - [anon_sym_ATautoclosure] = ACTIONS(2795), - [anon_sym_weak] = ACTIONS(2795), - [anon_sym_unowned] = ACTIONS(2797), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2795), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2795), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2795), - [sym__explicit_semi] = ACTIONS(2795), - [sym__dot_custom] = ACTIONS(2795), - [sym__conjunction_operator_custom] = ACTIONS(2795), - [sym__disjunction_operator_custom] = ACTIONS(2795), - [sym__nil_coalescing_operator_custom] = ACTIONS(2795), - [sym__eq_eq_custom] = ACTIONS(2795), - [sym__plus_then_ws] = ACTIONS(2795), - [sym__minus_then_ws] = ACTIONS(2795), - [sym_bang] = ACTIONS(2795), - [sym_default_keyword] = ACTIONS(2795), - [sym__as_custom] = ACTIONS(2795), - [sym__as_quest_custom] = ACTIONS(2795), - [sym__as_bang_custom] = ACTIONS(2795), - [sym__custom_operator] = ACTIONS(2795), - }, - [922] = { - [aux_sym_optional_type_repeat1] = STATE(927), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(3358), - [anon_sym_AMP] = ACTIONS(2626), - [aux_sym_custom_operator_token1] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_CARET_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_fallthrough] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2628), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2626), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2626), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_LT] = ACTIONS(2626), - [anon_sym_is] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_LT_LT] = ACTIONS(2626), - [anon_sym_GT_GT] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2626), - [sym__explicit_semi] = ACTIONS(2626), - [sym__arrow_operator_custom] = ACTIONS(2626), - [sym__dot_custom] = ACTIONS(2626), - [sym__conjunction_operator_custom] = ACTIONS(2626), - [sym__disjunction_operator_custom] = ACTIONS(2626), - [sym__nil_coalescing_operator_custom] = ACTIONS(2626), - [sym__eq_eq_custom] = ACTIONS(2626), - [sym__plus_then_ws] = ACTIONS(2626), - [sym__minus_then_ws] = ACTIONS(2626), - [sym_bang] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2626), - [sym__rethrows_keyword] = ACTIONS(2626), - [sym_default_keyword] = ACTIONS(2626), - [sym__as_custom] = ACTIONS(2626), - [sym__as_quest_custom] = ACTIONS(2626), - [sym__as_bang_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(2626), - [sym__custom_operator] = ACTIONS(2626), - }, - [923] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_fallthrough] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_prefix] = ACTIONS(2687), - [anon_sym_infix] = ACTIONS(2687), - [anon_sym_postfix] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2687), - [anon_sym_override] = ACTIONS(2687), - [anon_sym_convenience] = ACTIONS(2687), - [anon_sym_required] = ACTIONS(2687), - [anon_sym_nonisolated] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_internal] = ACTIONS(2687), - [anon_sym_fileprivate] = ACTIONS(2687), - [anon_sym_open] = ACTIONS(2687), - [anon_sym_mutating] = ACTIONS(2687), - [anon_sym_nonmutating] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_dynamic] = ACTIONS(2687), - [anon_sym_optional] = ACTIONS(2687), - [anon_sym_final] = ACTIONS(2687), - [anon_sym_inout] = ACTIONS(2687), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2687), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2689), - [sym__explicit_semi] = ACTIONS(2689), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(2689), - [sym_where_keyword] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [924] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(919), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_QMARK] = ACTIONS(2789), - [sym__immediate_quest] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2787), - [aux_sym_custom_operator_token1] = ACTIONS(2787), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_GT] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_CARET_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_case] = ACTIONS(2787), - [anon_sym_fallthrough] = ACTIONS(2787), - [anon_sym_BANG_EQ] = ACTIONS(2789), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2787), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2787), - [anon_sym_LT_EQ] = ACTIONS(2787), - [anon_sym_GT_EQ] = ACTIONS(2787), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2787), - [anon_sym_DOT_DOT_LT] = ACTIONS(2787), - [anon_sym_is] = ACTIONS(2787), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_PERCENT] = ACTIONS(2787), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [anon_sym_PIPE] = ACTIONS(2787), - [anon_sym_CARET] = ACTIONS(2789), - [anon_sym_LT_LT] = ACTIONS(2787), - [anon_sym_GT_GT] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_prefix] = ACTIONS(2787), - [anon_sym_infix] = ACTIONS(2787), - [anon_sym_postfix] = ACTIONS(2787), - [anon_sym_AT] = ACTIONS(2789), - [sym_property_behavior_modifier] = ACTIONS(2787), - [anon_sym_override] = ACTIONS(2787), - [anon_sym_convenience] = ACTIONS(2787), - [anon_sym_required] = ACTIONS(2787), - [anon_sym_nonisolated] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_private] = ACTIONS(2787), - [anon_sym_internal] = ACTIONS(2787), - [anon_sym_fileprivate] = ACTIONS(2787), - [anon_sym_open] = ACTIONS(2787), - [anon_sym_mutating] = ACTIONS(2787), - [anon_sym_nonmutating] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_dynamic] = ACTIONS(2787), - [anon_sym_optional] = ACTIONS(2787), - [anon_sym_final] = ACTIONS(2787), - [anon_sym_inout] = ACTIONS(2787), - [anon_sym_ATescaping] = ACTIONS(2787), - [anon_sym_ATautoclosure] = ACTIONS(2787), - [anon_sym_weak] = ACTIONS(2787), - [anon_sym_unowned] = ACTIONS(2789), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2787), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2787), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2787), - [sym__explicit_semi] = ACTIONS(2787), - [sym__arrow_operator_custom] = ACTIONS(2787), - [sym__dot_custom] = ACTIONS(2787), - [sym__conjunction_operator_custom] = ACTIONS(2787), - [sym__disjunction_operator_custom] = ACTIONS(2787), - [sym__nil_coalescing_operator_custom] = ACTIONS(2787), - [sym__eq_eq_custom] = ACTIONS(2787), - [sym__plus_then_ws] = ACTIONS(2787), - [sym__minus_then_ws] = ACTIONS(2787), - [sym_bang] = ACTIONS(2787), - [sym__throws_keyword] = ACTIONS(2787), - [sym__rethrows_keyword] = ACTIONS(2787), - [sym_default_keyword] = ACTIONS(2787), - [sym__as_custom] = ACTIONS(2787), - [sym__as_quest_custom] = ACTIONS(2787), - [sym__as_bang_custom] = ACTIONS(2787), - [sym__async_keyword_custom] = ACTIONS(2787), - [sym__custom_operator] = ACTIONS(2787), - }, - [925] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2770), - [sym__immediate_quest] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [aux_sym_custom_operator_token1] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_GT] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_CARET_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_case] = ACTIONS(2768), - [anon_sym_fallthrough] = ACTIONS(2768), - [anon_sym_PLUS_EQ] = ACTIONS(2768), - [anon_sym_DASH_EQ] = ACTIONS(2768), - [anon_sym_STAR_EQ] = ACTIONS(2768), - [anon_sym_SLASH_EQ] = ACTIONS(2768), - [anon_sym_PERCENT_EQ] = ACTIONS(2768), - [anon_sym_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2768), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2768), - [anon_sym_DOT_DOT_LT] = ACTIONS(2768), - [anon_sym_is] = ACTIONS(2768), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2770), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2768), - [anon_sym_prefix] = ACTIONS(2768), - [anon_sym_infix] = ACTIONS(2768), - [anon_sym_postfix] = ACTIONS(2768), - [anon_sym_AT] = ACTIONS(2770), - [sym_property_behavior_modifier] = ACTIONS(2768), - [anon_sym_override] = ACTIONS(2768), - [anon_sym_convenience] = ACTIONS(2768), - [anon_sym_required] = ACTIONS(2768), - [anon_sym_nonisolated] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_internal] = ACTIONS(2768), - [anon_sym_fileprivate] = ACTIONS(2768), - [anon_sym_open] = ACTIONS(2768), - [anon_sym_mutating] = ACTIONS(2768), - [anon_sym_nonmutating] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_dynamic] = ACTIONS(2768), - [anon_sym_optional] = ACTIONS(2768), - [anon_sym_final] = ACTIONS(2768), - [anon_sym_inout] = ACTIONS(2768), - [anon_sym_ATescaping] = ACTIONS(2768), - [anon_sym_ATautoclosure] = ACTIONS(2768), - [anon_sym_weak] = ACTIONS(2768), - [anon_sym_unowned] = ACTIONS(2770), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2768), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2768), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2768), - [sym__explicit_semi] = ACTIONS(2768), - [sym__dot_custom] = ACTIONS(2768), - [sym__conjunction_operator_custom] = ACTIONS(2768), - [sym__disjunction_operator_custom] = ACTIONS(2768), - [sym__nil_coalescing_operator_custom] = ACTIONS(2768), - [sym__eq_eq_custom] = ACTIONS(2768), - [sym__plus_then_ws] = ACTIONS(2768), - [sym__minus_then_ws] = ACTIONS(2768), - [sym_bang] = ACTIONS(2768), - [sym_default_keyword] = ACTIONS(2768), - [sym__as_custom] = ACTIONS(2768), - [sym__as_quest_custom] = ACTIONS(2768), - [sym__as_bang_custom] = ACTIONS(2768), - [sym__custom_operator] = ACTIONS(2768), - }, - [926] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_fallthrough] = ACTIONS(2779), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym_default_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [927] = { - [aux_sym_optional_type_repeat1] = STATE(932), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [sym__immediate_quest] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - [aux_sym_custom_operator_token1] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_GT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_CARET_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_fallthrough] = ACTIONS(2736), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2736), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2736), - [anon_sym_LT_EQ] = ACTIONS(2736), - [anon_sym_GT_EQ] = ACTIONS(2736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_DOT_DOT_LT] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_SLASH] = ACTIONS(2738), - [anon_sym_PERCENT] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_prefix] = ACTIONS(2736), - [anon_sym_infix] = ACTIONS(2736), - [anon_sym_postfix] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2738), - [sym_property_behavior_modifier] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_convenience] = ACTIONS(2736), - [anon_sym_required] = ACTIONS(2736), - [anon_sym_nonisolated] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_internal] = ACTIONS(2736), - [anon_sym_fileprivate] = ACTIONS(2736), - [anon_sym_open] = ACTIONS(2736), - [anon_sym_mutating] = ACTIONS(2736), - [anon_sym_nonmutating] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_dynamic] = ACTIONS(2736), - [anon_sym_optional] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_inout] = ACTIONS(2736), - [anon_sym_ATescaping] = ACTIONS(2736), - [anon_sym_ATautoclosure] = ACTIONS(2736), - [anon_sym_weak] = ACTIONS(2736), - [anon_sym_unowned] = ACTIONS(2738), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2736), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2736), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2736), - [sym__explicit_semi] = ACTIONS(2736), - [sym__arrow_operator_custom] = ACTIONS(2736), - [sym__dot_custom] = ACTIONS(2736), - [sym__conjunction_operator_custom] = ACTIONS(2736), - [sym__disjunction_operator_custom] = ACTIONS(2736), - [sym__nil_coalescing_operator_custom] = ACTIONS(2736), - [sym__eq_eq_custom] = ACTIONS(2736), - [sym__plus_then_ws] = ACTIONS(2736), - [sym__minus_then_ws] = ACTIONS(2736), - [sym_bang] = ACTIONS(2736), - [sym__throws_keyword] = ACTIONS(2736), - [sym__rethrows_keyword] = ACTIONS(2736), - [sym_default_keyword] = ACTIONS(2736), - [sym__as_custom] = ACTIONS(2736), - [sym__as_quest_custom] = ACTIONS(2736), - [sym__as_bang_custom] = ACTIONS(2736), - [sym__async_keyword_custom] = ACTIONS(2736), - [sym__custom_operator] = ACTIONS(2736), - }, - [928] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2828), - [sym__immediate_quest] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [aux_sym_custom_operator_token1] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_CARET_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_fallthrough] = ACTIONS(2826), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2826), - [anon_sym_DOT_DOT_LT] = ACTIONS(2826), - [anon_sym_is] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_prefix] = ACTIONS(2826), - [anon_sym_infix] = ACTIONS(2826), - [anon_sym_postfix] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2828), - [sym_property_behavior_modifier] = ACTIONS(2826), - [anon_sym_override] = ACTIONS(2826), - [anon_sym_convenience] = ACTIONS(2826), - [anon_sym_required] = ACTIONS(2826), - [anon_sym_nonisolated] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_internal] = ACTIONS(2826), - [anon_sym_fileprivate] = ACTIONS(2826), - [anon_sym_open] = ACTIONS(2826), - [anon_sym_mutating] = ACTIONS(2826), - [anon_sym_nonmutating] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_dynamic] = ACTIONS(2826), - [anon_sym_optional] = ACTIONS(2826), - [anon_sym_final] = ACTIONS(2826), - [anon_sym_inout] = ACTIONS(2826), - [anon_sym_ATescaping] = ACTIONS(2826), - [anon_sym_ATautoclosure] = ACTIONS(2826), - [anon_sym_weak] = ACTIONS(2826), - [anon_sym_unowned] = ACTIONS(2828), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2826), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2826), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2826), - [sym__explicit_semi] = ACTIONS(2826), - [sym__dot_custom] = ACTIONS(2826), - [sym__conjunction_operator_custom] = ACTIONS(2826), - [sym__disjunction_operator_custom] = ACTIONS(2826), - [sym__nil_coalescing_operator_custom] = ACTIONS(2826), - [sym__eq_eq_custom] = ACTIONS(2826), - [sym__plus_then_ws] = ACTIONS(2826), - [sym__minus_then_ws] = ACTIONS(2826), - [sym_bang] = ACTIONS(2826), - [sym_default_keyword] = ACTIONS(2826), - [sym__as_custom] = ACTIONS(2826), - [sym__as_quest_custom] = ACTIONS(2826), - [sym__as_bang_custom] = ACTIONS(2826), - [sym__custom_operator] = ACTIONS(2826), - }, - [929] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2838), - [sym__immediate_quest] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [aux_sym_custom_operator_token1] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_GT] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_CARET_LBRACE] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_case] = ACTIONS(2836), - [anon_sym_fallthrough] = ACTIONS(2836), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2836), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2836), - [anon_sym_DOT_DOT_LT] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2836), - [anon_sym_prefix] = ACTIONS(2836), - [anon_sym_infix] = ACTIONS(2836), - [anon_sym_postfix] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2838), - [sym_property_behavior_modifier] = ACTIONS(2836), - [anon_sym_override] = ACTIONS(2836), - [anon_sym_convenience] = ACTIONS(2836), - [anon_sym_required] = ACTIONS(2836), - [anon_sym_nonisolated] = ACTIONS(2836), - [anon_sym_public] = ACTIONS(2836), - [anon_sym_private] = ACTIONS(2836), - [anon_sym_internal] = ACTIONS(2836), - [anon_sym_fileprivate] = ACTIONS(2836), - [anon_sym_open] = ACTIONS(2836), - [anon_sym_mutating] = ACTIONS(2836), - [anon_sym_nonmutating] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_dynamic] = ACTIONS(2836), - [anon_sym_optional] = ACTIONS(2836), - [anon_sym_final] = ACTIONS(2836), - [anon_sym_inout] = ACTIONS(2836), - [anon_sym_ATescaping] = ACTIONS(2836), - [anon_sym_ATautoclosure] = ACTIONS(2836), - [anon_sym_weak] = ACTIONS(2836), - [anon_sym_unowned] = ACTIONS(2838), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2836), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2836), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2836), - [sym__explicit_semi] = ACTIONS(2836), - [sym__dot_custom] = ACTIONS(2836), - [sym__conjunction_operator_custom] = ACTIONS(2836), - [sym__disjunction_operator_custom] = ACTIONS(2836), - [sym__nil_coalescing_operator_custom] = ACTIONS(2836), - [sym__eq_eq_custom] = ACTIONS(2836), - [sym__plus_then_ws] = ACTIONS(2836), - [sym__minus_then_ws] = ACTIONS(2836), - [sym_bang] = ACTIONS(2836), - [sym_default_keyword] = ACTIONS(2836), - [sym__as_custom] = ACTIONS(2836), - [sym__as_quest_custom] = ACTIONS(2836), - [sym__as_bang_custom] = ACTIONS(2836), - [sym__custom_operator] = ACTIONS(2836), - }, - [930] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2818), - [sym__immediate_quest] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [aux_sym_custom_operator_token1] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_GT] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_CARET_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_case] = ACTIONS(2816), - [anon_sym_fallthrough] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2816), - [anon_sym_DOT_DOT_LT] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2816), - [anon_sym_prefix] = ACTIONS(2816), - [anon_sym_infix] = ACTIONS(2816), - [anon_sym_postfix] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2818), - [sym_property_behavior_modifier] = ACTIONS(2816), - [anon_sym_override] = ACTIONS(2816), - [anon_sym_convenience] = ACTIONS(2816), - [anon_sym_required] = ACTIONS(2816), - [anon_sym_nonisolated] = ACTIONS(2816), - [anon_sym_public] = ACTIONS(2816), - [anon_sym_private] = ACTIONS(2816), - [anon_sym_internal] = ACTIONS(2816), - [anon_sym_fileprivate] = ACTIONS(2816), - [anon_sym_open] = ACTIONS(2816), - [anon_sym_mutating] = ACTIONS(2816), - [anon_sym_nonmutating] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_dynamic] = ACTIONS(2816), - [anon_sym_optional] = ACTIONS(2816), - [anon_sym_final] = ACTIONS(2816), - [anon_sym_inout] = ACTIONS(2816), - [anon_sym_ATescaping] = ACTIONS(2816), - [anon_sym_ATautoclosure] = ACTIONS(2816), - [anon_sym_weak] = ACTIONS(2816), - [anon_sym_unowned] = ACTIONS(2818), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2816), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2816), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2816), - [sym__explicit_semi] = ACTIONS(2816), - [sym__dot_custom] = ACTIONS(2816), - [sym__conjunction_operator_custom] = ACTIONS(2816), - [sym__disjunction_operator_custom] = ACTIONS(2816), - [sym__nil_coalescing_operator_custom] = ACTIONS(2816), - [sym__eq_eq_custom] = ACTIONS(2816), - [sym__plus_then_ws] = ACTIONS(2816), - [sym__minus_then_ws] = ACTIONS(2816), - [sym_bang] = ACTIONS(2816), - [sym_default_keyword] = ACTIONS(2816), - [sym__as_custom] = ACTIONS(2816), - [sym__as_quest_custom] = ACTIONS(2816), - [sym__as_bang_custom] = ACTIONS(2816), - [sym__custom_operator] = ACTIONS(2816), - }, - [931] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_fallthrough] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2729), - [sym__explicit_semi] = ACTIONS(2729), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(2729), - [sym__conjunction_operator_custom] = ACTIONS(2729), - [sym__disjunction_operator_custom] = ACTIONS(2729), - [sym__nil_coalescing_operator_custom] = ACTIONS(2729), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym_default_keyword] = ACTIONS(2729), - [sym_where_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__as_quest_custom] = ACTIONS(2729), - [sym__as_bang_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [932] = { - [aux_sym_optional_type_repeat1] = STATE(932), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [sym__immediate_quest] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(2799), - [aux_sym_custom_operator_token1] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_GT] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_CARET_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_fallthrough] = ACTIONS(2799), - [anon_sym_BANG_EQ] = ACTIONS(2801), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2799), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2799), - [anon_sym_LT_EQ] = ACTIONS(2799), - [anon_sym_GT_EQ] = ACTIONS(2799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), - [anon_sym_DOT_DOT_LT] = ACTIONS(2799), - [anon_sym_is] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_PERCENT] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2799), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_LT_LT] = ACTIONS(2799), - [anon_sym_GT_GT] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_prefix] = ACTIONS(2799), - [anon_sym_infix] = ACTIONS(2799), - [anon_sym_postfix] = ACTIONS(2799), - [anon_sym_AT] = ACTIONS(2801), - [sym_property_behavior_modifier] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2799), - [anon_sym_convenience] = ACTIONS(2799), - [anon_sym_required] = ACTIONS(2799), - [anon_sym_nonisolated] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_internal] = ACTIONS(2799), - [anon_sym_fileprivate] = ACTIONS(2799), - [anon_sym_open] = ACTIONS(2799), - [anon_sym_mutating] = ACTIONS(2799), - [anon_sym_nonmutating] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_dynamic] = ACTIONS(2799), - [anon_sym_optional] = ACTIONS(2799), - [anon_sym_final] = ACTIONS(2799), - [anon_sym_inout] = ACTIONS(2799), - [anon_sym_ATescaping] = ACTIONS(2799), - [anon_sym_ATautoclosure] = ACTIONS(2799), - [anon_sym_weak] = ACTIONS(2799), - [anon_sym_unowned] = ACTIONS(2801), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2799), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2799), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2799), - [sym__explicit_semi] = ACTIONS(2799), - [sym__arrow_operator_custom] = ACTIONS(2799), - [sym__dot_custom] = ACTIONS(2799), - [sym__conjunction_operator_custom] = ACTIONS(2799), - [sym__disjunction_operator_custom] = ACTIONS(2799), - [sym__nil_coalescing_operator_custom] = ACTIONS(2799), - [sym__eq_eq_custom] = ACTIONS(2799), - [sym__plus_then_ws] = ACTIONS(2799), - [sym__minus_then_ws] = ACTIONS(2799), - [sym_bang] = ACTIONS(2799), - [sym__throws_keyword] = ACTIONS(2799), - [sym__rethrows_keyword] = ACTIONS(2799), - [sym_default_keyword] = ACTIONS(2799), - [sym__as_custom] = ACTIONS(2799), - [sym__as_quest_custom] = ACTIONS(2799), - [sym__as_bang_custom] = ACTIONS(2799), - [sym__async_keyword_custom] = ACTIONS(2799), - [sym__custom_operator] = ACTIONS(2799), - }, - [933] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_fallthrough] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym_default_keyword] = ACTIONS(2779), - [sym_where_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [934] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [sym__immediate_quest] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2889), - [aux_sym_custom_operator_token1] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_CARET_LBRACE] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_fallthrough] = ACTIONS(2889), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2889), - [anon_sym_LT_EQ] = ACTIONS(2889), - [anon_sym_GT_EQ] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_LT] = ACTIONS(2889), - [anon_sym_is] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2889), - [anon_sym_GT_GT] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_prefix] = ACTIONS(2889), - [anon_sym_infix] = ACTIONS(2889), - [anon_sym_postfix] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2891), - [sym_property_behavior_modifier] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_convenience] = ACTIONS(2889), - [anon_sym_required] = ACTIONS(2889), - [anon_sym_nonisolated] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_internal] = ACTIONS(2889), - [anon_sym_fileprivate] = ACTIONS(2889), - [anon_sym_open] = ACTIONS(2889), - [anon_sym_mutating] = ACTIONS(2889), - [anon_sym_nonmutating] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_dynamic] = ACTIONS(2889), - [anon_sym_optional] = ACTIONS(2889), - [anon_sym_final] = ACTIONS(2889), - [anon_sym_inout] = ACTIONS(2889), - [anon_sym_ATescaping] = ACTIONS(2889), - [anon_sym_ATautoclosure] = ACTIONS(2889), - [anon_sym_weak] = ACTIONS(2889), - [anon_sym_unowned] = ACTIONS(2891), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2889), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2889), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2889), - [sym__explicit_semi] = ACTIONS(2889), - [sym__arrow_operator_custom] = ACTIONS(2889), - [sym__dot_custom] = ACTIONS(2889), - [sym__conjunction_operator_custom] = ACTIONS(2889), - [sym__disjunction_operator_custom] = ACTIONS(2889), - [sym__nil_coalescing_operator_custom] = ACTIONS(2889), - [sym__eq_eq_custom] = ACTIONS(2889), - [sym__plus_then_ws] = ACTIONS(2889), - [sym__minus_then_ws] = ACTIONS(2889), - [sym_bang] = ACTIONS(2889), - [sym__throws_keyword] = ACTIONS(2889), - [sym__rethrows_keyword] = ACTIONS(2889), - [sym_default_keyword] = ACTIONS(2889), - [sym_where_keyword] = ACTIONS(2889), - [sym__as_custom] = ACTIONS(2889), - [sym__as_quest_custom] = ACTIONS(2889), - [sym__as_bang_custom] = ACTIONS(2889), - [sym__async_keyword_custom] = ACTIONS(2889), - [sym__custom_operator] = ACTIONS(2889), - }, - [935] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2748), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2748), - [anon_sym_QMARK] = ACTIONS(2750), - [sym__immediate_quest] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), - [aux_sym_custom_operator_token1] = ACTIONS(2748), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_GT] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_CARET_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_case] = ACTIONS(2748), - [anon_sym_fallthrough] = ACTIONS(2748), - [anon_sym_PLUS_EQ] = ACTIONS(2748), - [anon_sym_DASH_EQ] = ACTIONS(2748), - [anon_sym_STAR_EQ] = ACTIONS(2748), - [anon_sym_SLASH_EQ] = ACTIONS(2748), - [anon_sym_PERCENT_EQ] = ACTIONS(2748), - [anon_sym_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ] = ACTIONS(2750), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2748), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2748), - [anon_sym_LT_EQ] = ACTIONS(2748), - [anon_sym_GT_EQ] = ACTIONS(2748), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2748), - [anon_sym_DOT_DOT_LT] = ACTIONS(2748), - [anon_sym_is] = ACTIONS(2748), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_PERCENT] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(2748), - [anon_sym_CARET] = ACTIONS(2750), - [anon_sym_LT_LT] = ACTIONS(2748), - [anon_sym_GT_GT] = ACTIONS(2748), - [anon_sym_class] = ACTIONS(2748), - [anon_sym_prefix] = ACTIONS(2748), - [anon_sym_infix] = ACTIONS(2748), - [anon_sym_postfix] = ACTIONS(2748), - [anon_sym_AT] = ACTIONS(2750), - [sym_property_behavior_modifier] = ACTIONS(2748), - [anon_sym_override] = ACTIONS(2748), - [anon_sym_convenience] = ACTIONS(2748), - [anon_sym_required] = ACTIONS(2748), - [anon_sym_nonisolated] = ACTIONS(2748), - [anon_sym_public] = ACTIONS(2748), - [anon_sym_private] = ACTIONS(2748), - [anon_sym_internal] = ACTIONS(2748), - [anon_sym_fileprivate] = ACTIONS(2748), - [anon_sym_open] = ACTIONS(2748), - [anon_sym_mutating] = ACTIONS(2748), - [anon_sym_nonmutating] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_dynamic] = ACTIONS(2748), - [anon_sym_optional] = ACTIONS(2748), - [anon_sym_final] = ACTIONS(2748), - [anon_sym_inout] = ACTIONS(2748), - [anon_sym_ATescaping] = ACTIONS(2748), - [anon_sym_ATautoclosure] = ACTIONS(2748), - [anon_sym_weak] = ACTIONS(2748), - [anon_sym_unowned] = ACTIONS(2750), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2748), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2748), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2748), - [sym__explicit_semi] = ACTIONS(2748), - [sym__dot_custom] = ACTIONS(2748), - [sym__conjunction_operator_custom] = ACTIONS(2748), - [sym__disjunction_operator_custom] = ACTIONS(2748), - [sym__nil_coalescing_operator_custom] = ACTIONS(2748), - [sym__eq_eq_custom] = ACTIONS(2748), - [sym__plus_then_ws] = ACTIONS(2748), - [sym__minus_then_ws] = ACTIONS(2748), - [sym_bang] = ACTIONS(2748), - [sym_default_keyword] = ACTIONS(2748), - [sym__as_custom] = ACTIONS(2748), - [sym__as_quest_custom] = ACTIONS(2748), - [sym__as_bang_custom] = ACTIONS(2748), - [sym__custom_operator] = ACTIONS(2748), - }, - [936] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_QMARK] = ACTIONS(2853), - [sym__immediate_quest] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [aux_sym_custom_operator_token1] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_CARET_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2851), - [anon_sym_fallthrough] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_LT] = ACTIONS(2851), - [anon_sym_is] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_prefix] = ACTIONS(2851), - [anon_sym_infix] = ACTIONS(2851), - [anon_sym_postfix] = ACTIONS(2851), - [anon_sym_AT] = ACTIONS(2853), - [sym_property_behavior_modifier] = ACTIONS(2851), - [anon_sym_override] = ACTIONS(2851), - [anon_sym_convenience] = ACTIONS(2851), - [anon_sym_required] = ACTIONS(2851), - [anon_sym_nonisolated] = ACTIONS(2851), - [anon_sym_public] = ACTIONS(2851), - [anon_sym_private] = ACTIONS(2851), - [anon_sym_internal] = ACTIONS(2851), - [anon_sym_fileprivate] = ACTIONS(2851), - [anon_sym_open] = ACTIONS(2851), - [anon_sym_mutating] = ACTIONS(2851), - [anon_sym_nonmutating] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_dynamic] = ACTIONS(2851), - [anon_sym_optional] = ACTIONS(2851), - [anon_sym_final] = ACTIONS(2851), - [anon_sym_inout] = ACTIONS(2851), - [anon_sym_ATescaping] = ACTIONS(2851), - [anon_sym_ATautoclosure] = ACTIONS(2851), - [anon_sym_weak] = ACTIONS(2851), - [anon_sym_unowned] = ACTIONS(2853), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2851), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2851), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2851), - [sym__explicit_semi] = ACTIONS(2851), - [sym__arrow_operator_custom] = ACTIONS(2851), - [sym__dot_custom] = ACTIONS(2851), - [sym__conjunction_operator_custom] = ACTIONS(2851), - [sym__disjunction_operator_custom] = ACTIONS(2851), - [sym__nil_coalescing_operator_custom] = ACTIONS(2851), - [sym__eq_eq_custom] = ACTIONS(2851), - [sym__plus_then_ws] = ACTIONS(2851), - [sym__minus_then_ws] = ACTIONS(2851), - [sym_bang] = ACTIONS(2851), - [sym__throws_keyword] = ACTIONS(2851), - [sym__rethrows_keyword] = ACTIONS(2851), - [sym_default_keyword] = ACTIONS(2851), - [sym_where_keyword] = ACTIONS(2851), - [sym__as_custom] = ACTIONS(2851), - [sym__as_quest_custom] = ACTIONS(2851), - [sym__as_bang_custom] = ACTIONS(2851), - [sym__async_keyword_custom] = ACTIONS(2851), - [sym__custom_operator] = ACTIONS(2851), - }, - [937] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2879), - [anon_sym_QMARK] = ACTIONS(2879), - [sym__immediate_quest] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [aux_sym_custom_operator_token1] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_CARET_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_fallthrough] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2877), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2879), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2879), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_prefix] = ACTIONS(2877), - [anon_sym_infix] = ACTIONS(2877), - [anon_sym_postfix] = ACTIONS(2877), - [anon_sym_AT] = ACTIONS(2879), - [sym_property_behavior_modifier] = ACTIONS(2877), - [anon_sym_override] = ACTIONS(2877), - [anon_sym_convenience] = ACTIONS(2877), - [anon_sym_required] = ACTIONS(2877), - [anon_sym_nonisolated] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_internal] = ACTIONS(2877), - [anon_sym_fileprivate] = ACTIONS(2877), - [anon_sym_open] = ACTIONS(2877), - [anon_sym_mutating] = ACTIONS(2877), - [anon_sym_nonmutating] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_dynamic] = ACTIONS(2877), - [anon_sym_optional] = ACTIONS(2877), - [anon_sym_final] = ACTIONS(2877), - [anon_sym_inout] = ACTIONS(2877), - [anon_sym_ATescaping] = ACTIONS(2877), - [anon_sym_ATautoclosure] = ACTIONS(2877), - [anon_sym_weak] = ACTIONS(2877), - [anon_sym_unowned] = ACTIONS(2879), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2877), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2877), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2877), - [sym__explicit_semi] = ACTIONS(2877), - [sym__arrow_operator_custom] = ACTIONS(2877), - [sym__dot_custom] = ACTIONS(2877), - [sym__conjunction_operator_custom] = ACTIONS(2877), - [sym__disjunction_operator_custom] = ACTIONS(2877), - [sym__nil_coalescing_operator_custom] = ACTIONS(2877), - [sym__eq_eq_custom] = ACTIONS(2877), - [sym__plus_then_ws] = ACTIONS(2877), - [sym__minus_then_ws] = ACTIONS(2877), - [sym_bang] = ACTIONS(2877), - [sym__throws_keyword] = ACTIONS(2877), - [sym__rethrows_keyword] = ACTIONS(2877), - [sym_default_keyword] = ACTIONS(2877), - [sym_where_keyword] = ACTIONS(2877), - [sym__as_custom] = ACTIONS(2877), - [sym__as_quest_custom] = ACTIONS(2877), - [sym__as_bang_custom] = ACTIONS(2877), - [sym__async_keyword_custom] = ACTIONS(2877), - [sym__custom_operator] = ACTIONS(2877), - }, - [938] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2814), - [sym__immediate_quest] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [aux_sym_custom_operator_token1] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_GT] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_CARET_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_case] = ACTIONS(2812), - [anon_sym_fallthrough] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2812), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2812), - [anon_sym_DOT_DOT_LT] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2812), - [anon_sym_prefix] = ACTIONS(2812), - [anon_sym_infix] = ACTIONS(2812), - [anon_sym_postfix] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2814), - [sym_property_behavior_modifier] = ACTIONS(2812), - [anon_sym_override] = ACTIONS(2812), - [anon_sym_convenience] = ACTIONS(2812), - [anon_sym_required] = ACTIONS(2812), - [anon_sym_nonisolated] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_internal] = ACTIONS(2812), - [anon_sym_fileprivate] = ACTIONS(2812), - [anon_sym_open] = ACTIONS(2812), - [anon_sym_mutating] = ACTIONS(2812), - [anon_sym_nonmutating] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_dynamic] = ACTIONS(2812), - [anon_sym_optional] = ACTIONS(2812), - [anon_sym_final] = ACTIONS(2812), - [anon_sym_inout] = ACTIONS(2812), - [anon_sym_ATescaping] = ACTIONS(2812), - [anon_sym_ATautoclosure] = ACTIONS(2812), - [anon_sym_weak] = ACTIONS(2812), - [anon_sym_unowned] = ACTIONS(2814), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2812), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2812), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2812), - [sym__explicit_semi] = ACTIONS(2812), - [sym__dot_custom] = ACTIONS(2812), - [sym__conjunction_operator_custom] = ACTIONS(2812), - [sym__disjunction_operator_custom] = ACTIONS(2812), - [sym__nil_coalescing_operator_custom] = ACTIONS(2812), - [sym__eq_eq_custom] = ACTIONS(2812), - [sym__plus_then_ws] = ACTIONS(2812), - [sym__minus_then_ws] = ACTIONS(2812), - [sym_bang] = ACTIONS(2812), - [sym_default_keyword] = ACTIONS(2812), - [sym__as_custom] = ACTIONS(2812), - [sym__as_quest_custom] = ACTIONS(2812), - [sym__as_bang_custom] = ACTIONS(2812), - [sym__custom_operator] = ACTIONS(2812), - }, - [939] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [sym__immediate_quest] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2893), - [aux_sym_custom_operator_token1] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_CARET_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_fallthrough] = ACTIONS(2893), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2893), - [anon_sym_LT_EQ] = ACTIONS(2893), - [anon_sym_GT_EQ] = ACTIONS(2893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2893), - [anon_sym_DOT_DOT_LT] = ACTIONS(2893), - [anon_sym_is] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2893), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2893), - [anon_sym_GT_GT] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_prefix] = ACTIONS(2893), - [anon_sym_infix] = ACTIONS(2893), - [anon_sym_postfix] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2895), - [sym_property_behavior_modifier] = ACTIONS(2893), - [anon_sym_override] = ACTIONS(2893), - [anon_sym_convenience] = ACTIONS(2893), - [anon_sym_required] = ACTIONS(2893), - [anon_sym_nonisolated] = ACTIONS(2893), - [anon_sym_public] = ACTIONS(2893), - [anon_sym_private] = ACTIONS(2893), - [anon_sym_internal] = ACTIONS(2893), - [anon_sym_fileprivate] = ACTIONS(2893), - [anon_sym_open] = ACTIONS(2893), - [anon_sym_mutating] = ACTIONS(2893), - [anon_sym_nonmutating] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_dynamic] = ACTIONS(2893), - [anon_sym_optional] = ACTIONS(2893), - [anon_sym_final] = ACTIONS(2893), - [anon_sym_inout] = ACTIONS(2893), - [anon_sym_ATescaping] = ACTIONS(2893), - [anon_sym_ATautoclosure] = ACTIONS(2893), - [anon_sym_weak] = ACTIONS(2893), - [anon_sym_unowned] = ACTIONS(2895), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2893), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2893), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2893), - [sym__explicit_semi] = ACTIONS(2893), - [sym__arrow_operator_custom] = ACTIONS(2893), - [sym__dot_custom] = ACTIONS(2893), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2893), - [sym__nil_coalescing_operator_custom] = ACTIONS(2893), - [sym__eq_eq_custom] = ACTIONS(2893), - [sym__plus_then_ws] = ACTIONS(2893), - [sym__minus_then_ws] = ACTIONS(2893), - [sym_bang] = ACTIONS(2893), - [sym__throws_keyword] = ACTIONS(2893), - [sym__rethrows_keyword] = ACTIONS(2893), - [sym_default_keyword] = ACTIONS(2893), - [sym_where_keyword] = ACTIONS(2893), - [sym__as_custom] = ACTIONS(2893), - [sym__as_quest_custom] = ACTIONS(2893), - [sym__as_bang_custom] = ACTIONS(2893), - [sym__async_keyword_custom] = ACTIONS(2893), - [sym__custom_operator] = ACTIONS(2893), - }, - [940] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2691), - [aux_sym_simple_identifier_token2] = ACTIONS(2693), - [aux_sym_simple_identifier_token3] = ACTIONS(2693), - [aux_sym_simple_identifier_token4] = ACTIONS(2693), - [anon_sym_actor] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_fallthrough] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2693), - [sym__explicit_semi] = ACTIONS(2693), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym_default_keyword] = ACTIONS(2693), - [sym_where_keyword] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [941] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2707), - [aux_sym_simple_identifier_token2] = ACTIONS(2709), - [aux_sym_simple_identifier_token3] = ACTIONS(2709), - [aux_sym_simple_identifier_token4] = ACTIONS(2709), - [anon_sym_actor] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_fallthrough] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_prefix] = ACTIONS(2707), - [anon_sym_infix] = ACTIONS(2707), - [anon_sym_postfix] = ACTIONS(2707), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2707), - [anon_sym_override] = ACTIONS(2707), - [anon_sym_convenience] = ACTIONS(2707), - [anon_sym_required] = ACTIONS(2707), - [anon_sym_nonisolated] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_internal] = ACTIONS(2707), - [anon_sym_fileprivate] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(2707), - [anon_sym_mutating] = ACTIONS(2707), - [anon_sym_nonmutating] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_dynamic] = ACTIONS(2707), - [anon_sym_optional] = ACTIONS(2707), - [anon_sym_final] = ACTIONS(2707), - [anon_sym_inout] = ACTIONS(2707), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2707), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2709), - [sym__explicit_semi] = ACTIONS(2709), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym_default_keyword] = ACTIONS(2709), - [sym_where_keyword] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [942] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [sym__immediate_quest] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2881), - [aux_sym_custom_operator_token1] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_CARET_LBRACE] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_fallthrough] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2881), - [anon_sym_LT_EQ] = ACTIONS(2881), - [anon_sym_GT_EQ] = ACTIONS(2881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2881), - [anon_sym_DOT_DOT_LT] = ACTIONS(2881), - [anon_sym_is] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2881), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_prefix] = ACTIONS(2881), - [anon_sym_infix] = ACTIONS(2881), - [anon_sym_postfix] = ACTIONS(2881), - [anon_sym_AT] = ACTIONS(2883), - [sym_property_behavior_modifier] = ACTIONS(2881), - [anon_sym_override] = ACTIONS(2881), - [anon_sym_convenience] = ACTIONS(2881), - [anon_sym_required] = ACTIONS(2881), - [anon_sym_nonisolated] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_internal] = ACTIONS(2881), - [anon_sym_fileprivate] = ACTIONS(2881), - [anon_sym_open] = ACTIONS(2881), - [anon_sym_mutating] = ACTIONS(2881), - [anon_sym_nonmutating] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_dynamic] = ACTIONS(2881), - [anon_sym_optional] = ACTIONS(2881), - [anon_sym_final] = ACTIONS(2881), - [anon_sym_inout] = ACTIONS(2881), - [anon_sym_ATescaping] = ACTIONS(2881), - [anon_sym_ATautoclosure] = ACTIONS(2881), - [anon_sym_weak] = ACTIONS(2881), - [anon_sym_unowned] = ACTIONS(2883), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2881), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2881), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2881), - [sym__explicit_semi] = ACTIONS(2881), - [sym__arrow_operator_custom] = ACTIONS(2881), - [sym__dot_custom] = ACTIONS(2881), - [sym__conjunction_operator_custom] = ACTIONS(2881), - [sym__disjunction_operator_custom] = ACTIONS(2881), - [sym__nil_coalescing_operator_custom] = ACTIONS(2881), - [sym__eq_eq_custom] = ACTIONS(2881), - [sym__plus_then_ws] = ACTIONS(2881), - [sym__minus_then_ws] = ACTIONS(2881), - [sym_bang] = ACTIONS(2881), - [sym__throws_keyword] = ACTIONS(2881), - [sym__rethrows_keyword] = ACTIONS(2881), - [sym_default_keyword] = ACTIONS(2881), - [sym_where_keyword] = ACTIONS(2881), - [sym__as_custom] = ACTIONS(2881), - [sym__as_quest_custom] = ACTIONS(2881), - [sym__as_bang_custom] = ACTIONS(2881), - [sym__async_keyword_custom] = ACTIONS(2881), - [sym__custom_operator] = ACTIONS(2881), - }, - [943] = { - [sym__dot] = STATE(4567), - [aux_sym_user_type_repeat1] = STATE(955), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2671), - [aux_sym_simple_identifier_token2] = ACTIONS(2669), - [aux_sym_simple_identifier_token3] = ACTIONS(2669), - [aux_sym_simple_identifier_token4] = ACTIONS(2669), - [anon_sym_actor] = ACTIONS(2671), - [anon_sym_nil] = ACTIONS(2671), - [sym_real_literal] = ACTIONS(2669), - [sym_integer_literal] = ACTIONS(2671), - [sym_hex_literal] = ACTIONS(2669), - [sym_oct_literal] = ACTIONS(2669), - [sym_bin_literal] = ACTIONS(2669), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_BSLASH] = ACTIONS(2669), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2669), - [sym__extended_regex_literal] = ACTIONS(2669), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2669), - [sym__oneline_regex_literal] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_POUNDselector] = ACTIONS(2669), - [aux_sym_custom_operator_token1] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2671), - [anon_sym_POUNDfile] = ACTIONS(2671), - [anon_sym_POUNDfileID] = ACTIONS(2669), - [anon_sym_POUNDfilePath] = ACTIONS(2669), - [anon_sym_POUNDline] = ACTIONS(2669), - [anon_sym_POUNDcolumn] = ACTIONS(2669), - [anon_sym_POUNDfunction] = ACTIONS(2669), - [anon_sym_POUNDdsohandle] = ACTIONS(2669), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2669), - [anon_sym_POUNDfileLiteral] = ACTIONS(2669), - [anon_sym_POUNDimageLiteral] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_CARET_LBRACE] = ACTIONS(2669), - [anon_sym_self] = ACTIONS(2671), - [anon_sym_super] = ACTIONS(2671), - [anon_sym_POUNDkeyPath] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2671), - [anon_sym_try_BANG] = ACTIONS(2669), - [anon_sym_try_QMARK] = ACTIONS(2669), - [anon_sym_PLUS_EQ] = ACTIONS(2669), - [anon_sym_DASH_EQ] = ACTIONS(2669), - [anon_sym_STAR_EQ] = ACTIONS(2669), - [anon_sym_SLASH_EQ] = ACTIONS(2669), - [anon_sym_PERCENT_EQ] = ACTIONS(2669), - [anon_sym_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2669), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_DOT_DOT_LT] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2669), - [sym_raw_str_end_part] = ACTIONS(2669), - [sym__dot_custom] = ACTIONS(3456), - [sym__eq_eq_custom] = ACTIONS(2669), - [sym__plus_then_ws] = ACTIONS(2669), - [sym__minus_then_ws] = ACTIONS(2669), - [sym_bang] = ACTIONS(2669), - [sym__custom_operator] = ACTIONS(2669), - }, - [944] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_QMARK] = ACTIONS(2871), - [sym__immediate_quest] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [aux_sym_custom_operator_token1] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2871), - [anon_sym_GT] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_fallthrough] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), - [anon_sym_DOT_DOT_LT] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2871), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2871), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_prefix] = ACTIONS(2869), - [anon_sym_infix] = ACTIONS(2869), - [anon_sym_postfix] = ACTIONS(2869), - [anon_sym_AT] = ACTIONS(2871), - [sym_property_behavior_modifier] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2869), - [anon_sym_convenience] = ACTIONS(2869), - [anon_sym_required] = ACTIONS(2869), - [anon_sym_nonisolated] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_internal] = ACTIONS(2869), - [anon_sym_fileprivate] = ACTIONS(2869), - [anon_sym_open] = ACTIONS(2869), - [anon_sym_mutating] = ACTIONS(2869), - [anon_sym_nonmutating] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_dynamic] = ACTIONS(2869), - [anon_sym_optional] = ACTIONS(2869), - [anon_sym_final] = ACTIONS(2869), - [anon_sym_inout] = ACTIONS(2869), - [anon_sym_ATescaping] = ACTIONS(2869), - [anon_sym_ATautoclosure] = ACTIONS(2869), - [anon_sym_weak] = ACTIONS(2869), - [anon_sym_unowned] = ACTIONS(2871), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2869), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2869), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2869), - [sym__explicit_semi] = ACTIONS(2869), - [sym__arrow_operator_custom] = ACTIONS(2869), - [sym__dot_custom] = ACTIONS(2869), - [sym__conjunction_operator_custom] = ACTIONS(2869), - [sym__disjunction_operator_custom] = ACTIONS(2869), - [sym__nil_coalescing_operator_custom] = ACTIONS(2869), - [sym__eq_eq_custom] = ACTIONS(2869), - [sym__plus_then_ws] = ACTIONS(2869), - [sym__minus_then_ws] = ACTIONS(2869), - [sym_bang] = ACTIONS(2869), - [sym__throws_keyword] = ACTIONS(2869), - [sym__rethrows_keyword] = ACTIONS(2869), - [sym_default_keyword] = ACTIONS(2869), - [sym_where_keyword] = ACTIONS(2869), - [sym__as_custom] = ACTIONS(2869), - [sym__as_quest_custom] = ACTIONS(2869), - [sym__as_bang_custom] = ACTIONS(2869), - [sym__async_keyword_custom] = ACTIONS(2869), - [sym__custom_operator] = ACTIONS(2869), - }, - [945] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2725), - [aux_sym_simple_identifier_token2] = ACTIONS(2727), - [aux_sym_simple_identifier_token3] = ACTIONS(2727), - [aux_sym_simple_identifier_token4] = ACTIONS(2727), - [anon_sym_actor] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_fallthrough] = ACTIONS(2725), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_prefix] = ACTIONS(2725), - [anon_sym_infix] = ACTIONS(2725), - [anon_sym_postfix] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_convenience] = ACTIONS(2725), - [anon_sym_required] = ACTIONS(2725), - [anon_sym_nonisolated] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_internal] = ACTIONS(2725), - [anon_sym_fileprivate] = ACTIONS(2725), - [anon_sym_open] = ACTIONS(2725), - [anon_sym_mutating] = ACTIONS(2725), - [anon_sym_nonmutating] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_dynamic] = ACTIONS(2725), - [anon_sym_optional] = ACTIONS(2725), - [anon_sym_final] = ACTIONS(2725), - [anon_sym_inout] = ACTIONS(2725), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2725), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2727), - [sym__explicit_semi] = ACTIONS(2727), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym_default_keyword] = ACTIONS(2727), - [sym_where_keyword] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [946] = { - [sym__dot] = STATE(4567), - [aux_sym_user_type_repeat1] = STATE(943), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2682), - [aux_sym_simple_identifier_token2] = ACTIONS(2680), - [aux_sym_simple_identifier_token3] = ACTIONS(2680), - [aux_sym_simple_identifier_token4] = ACTIONS(2680), - [anon_sym_actor] = ACTIONS(2682), - [anon_sym_nil] = ACTIONS(2682), - [sym_real_literal] = ACTIONS(2680), - [sym_integer_literal] = ACTIONS(2682), - [sym_hex_literal] = ACTIONS(2680), - [sym_oct_literal] = ACTIONS(2680), - [sym_bin_literal] = ACTIONS(2680), - [anon_sym_true] = ACTIONS(2682), - [anon_sym_false] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(2682), - [anon_sym_BSLASH] = ACTIONS(2680), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2680), - [sym__extended_regex_literal] = ACTIONS(2680), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2680), - [sym__oneline_regex_literal] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_POUNDselector] = ACTIONS(2680), - [aux_sym_custom_operator_token1] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_GT] = ACTIONS(2682), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_POUNDfile] = ACTIONS(2682), - [anon_sym_POUNDfileID] = ACTIONS(2680), - [anon_sym_POUNDfilePath] = ACTIONS(2680), - [anon_sym_POUNDline] = ACTIONS(2680), - [anon_sym_POUNDcolumn] = ACTIONS(2680), - [anon_sym_POUNDfunction] = ACTIONS(2680), - [anon_sym_POUNDdsohandle] = ACTIONS(2680), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2680), - [anon_sym_POUNDfileLiteral] = ACTIONS(2680), - [anon_sym_POUNDimageLiteral] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_CARET_LBRACE] = ACTIONS(2680), - [anon_sym_self] = ACTIONS(2682), - [anon_sym_super] = ACTIONS(2682), - [anon_sym_POUNDkeyPath] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_try_BANG] = ACTIONS(2680), - [anon_sym_try_QMARK] = ACTIONS(2680), - [anon_sym_PLUS_EQ] = ACTIONS(2680), - [anon_sym_DASH_EQ] = ACTIONS(2680), - [anon_sym_STAR_EQ] = ACTIONS(2680), - [anon_sym_SLASH_EQ] = ACTIONS(2680), - [anon_sym_PERCENT_EQ] = ACTIONS(2680), - [anon_sym_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ] = ACTIONS(2682), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2680), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2680), - [anon_sym_LT_EQ] = ACTIONS(2680), - [anon_sym_GT_EQ] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_DOT_DOT_LT] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_PERCENT] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_CARET] = ACTIONS(2682), - [anon_sym_LT_LT] = ACTIONS(2680), - [anon_sym_GT_GT] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2680), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2680), - [sym_raw_str_end_part] = ACTIONS(2680), - [sym__dot_custom] = ACTIONS(3459), - [sym__eq_eq_custom] = ACTIONS(2680), - [sym__plus_then_ws] = ACTIONS(2680), - [sym__minus_then_ws] = ACTIONS(2680), - [sym_bang] = ACTIONS(2680), - [sym__custom_operator] = ACTIONS(2680), - }, - [947] = { - [sym_attribute] = STATE(947), - [aux_sym__lambda_type_declaration_repeat1] = STATE(947), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3462), - [aux_sym_simple_identifier_token2] = ACTIONS(3464), - [aux_sym_simple_identifier_token3] = ACTIONS(3464), - [aux_sym_simple_identifier_token4] = ACTIONS(3464), - [anon_sym_actor] = ACTIONS(3462), - [anon_sym_nil] = ACTIONS(3462), - [sym_real_literal] = ACTIONS(3464), - [sym_integer_literal] = ACTIONS(3462), - [sym_hex_literal] = ACTIONS(3464), - [sym_oct_literal] = ACTIONS(3464), - [sym_bin_literal] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3462), - [anon_sym_false] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_BSLASH] = ACTIONS(3464), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3464), - [sym__extended_regex_literal] = ACTIONS(3464), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(3464), - [sym__oneline_regex_literal] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_AMP] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_POUNDselector] = ACTIONS(3464), - [aux_sym_custom_operator_token1] = ACTIONS(3464), - [anon_sym_LT] = ACTIONS(3462), - [anon_sym_GT] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_POUNDfile] = ACTIONS(3462), - [anon_sym_POUNDfileID] = ACTIONS(3464), - [anon_sym_POUNDfilePath] = ACTIONS(3464), - [anon_sym_POUNDline] = ACTIONS(3464), - [anon_sym_POUNDcolumn] = ACTIONS(3464), - [anon_sym_POUNDfunction] = ACTIONS(3464), - [anon_sym_POUNDdsohandle] = ACTIONS(3464), - [anon_sym_POUNDcolorLiteral] = ACTIONS(3464), - [anon_sym_POUNDfileLiteral] = ACTIONS(3464), - [anon_sym_POUNDimageLiteral] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_CARET_LBRACE] = ACTIONS(3464), - [anon_sym_self] = ACTIONS(3462), - [anon_sym_super] = ACTIONS(3462), - [anon_sym_POUNDkeyPath] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_try_BANG] = ACTIONS(3464), - [anon_sym_try_QMARK] = ACTIONS(3464), - [anon_sym_PLUS_EQ] = ACTIONS(3464), - [anon_sym_DASH_EQ] = ACTIONS(3464), - [anon_sym_STAR_EQ] = ACTIONS(3464), - [anon_sym_SLASH_EQ] = ACTIONS(3464), - [anon_sym_PERCENT_EQ] = ACTIONS(3464), - [anon_sym_EQ] = ACTIONS(3462), - [anon_sym_BANG_EQ] = ACTIONS(3462), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3464), - [anon_sym_LT_EQ] = ACTIONS(3464), - [anon_sym_GT_EQ] = ACTIONS(3464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3464), - [anon_sym_DOT_DOT_LT] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3462), - [anon_sym_SLASH] = ACTIONS(3462), - [anon_sym_PERCENT] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_PIPE] = ACTIONS(3464), - [anon_sym_CARET] = ACTIONS(3462), - [anon_sym_LT_LT] = ACTIONS(3464), - [anon_sym_GT_GT] = ACTIONS(3464), - [anon_sym_AT] = ACTIONS(3466), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3464), - [sym_raw_str_end_part] = ACTIONS(3464), - [sym__dot_custom] = ACTIONS(3464), - [sym__eq_eq_custom] = ACTIONS(3464), - [sym__plus_then_ws] = ACTIONS(3464), - [sym__minus_then_ws] = ACTIONS(3464), - [sym_bang] = ACTIONS(3464), - [sym__custom_operator] = ACTIONS(3464), - }, - [948] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2823), - [sym__immediate_quest] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [aux_sym_custom_operator_token1] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_GT] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_CARET_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_case] = ACTIONS(2820), - [anon_sym_fallthrough] = ACTIONS(2820), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2823), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2820), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2820), - [anon_sym_DOT_DOT_LT] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_SLASH] = ACTIONS(2823), - [anon_sym_PERCENT] = ACTIONS(2823), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2823), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2820), - [anon_sym_prefix] = ACTIONS(2820), - [anon_sym_infix] = ACTIONS(2820), - [anon_sym_postfix] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2823), - [sym_property_behavior_modifier] = ACTIONS(2820), - [anon_sym_override] = ACTIONS(2820), - [anon_sym_convenience] = ACTIONS(2820), - [anon_sym_required] = ACTIONS(2820), - [anon_sym_nonisolated] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_internal] = ACTIONS(2820), - [anon_sym_fileprivate] = ACTIONS(2820), - [anon_sym_open] = ACTIONS(2820), - [anon_sym_mutating] = ACTIONS(2820), - [anon_sym_nonmutating] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_dynamic] = ACTIONS(2820), - [anon_sym_optional] = ACTIONS(2820), - [anon_sym_final] = ACTIONS(2820), - [anon_sym_inout] = ACTIONS(2820), - [anon_sym_ATescaping] = ACTIONS(2820), - [anon_sym_ATautoclosure] = ACTIONS(2820), - [anon_sym_weak] = ACTIONS(2820), - [anon_sym_unowned] = ACTIONS(2823), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2820), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2820), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2820), - [sym__explicit_semi] = ACTIONS(2820), - [sym__dot_custom] = ACTIONS(2820), - [sym__conjunction_operator_custom] = ACTIONS(2820), - [sym__disjunction_operator_custom] = ACTIONS(2820), - [sym__nil_coalescing_operator_custom] = ACTIONS(2820), - [sym__eq_eq_custom] = ACTIONS(2820), - [sym__plus_then_ws] = ACTIONS(2820), - [sym__minus_then_ws] = ACTIONS(2820), - [sym_bang] = ACTIONS(2820), - [sym_default_keyword] = ACTIONS(2820), - [sym__as_custom] = ACTIONS(2820), - [sym__as_quest_custom] = ACTIONS(2820), - [sym__as_bang_custom] = ACTIONS(2820), - [sym__custom_operator] = ACTIONS(2820), - }, - [949] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [sym__immediate_quest] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [aux_sym_custom_operator_token1] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_CARET_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_fallthrough] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), - [anon_sym_DOT_DOT_LT] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_prefix] = ACTIONS(2847), - [anon_sym_infix] = ACTIONS(2847), - [anon_sym_postfix] = ACTIONS(2847), - [anon_sym_AT] = ACTIONS(2849), - [sym_property_behavior_modifier] = ACTIONS(2847), - [anon_sym_override] = ACTIONS(2847), - [anon_sym_convenience] = ACTIONS(2847), - [anon_sym_required] = ACTIONS(2847), - [anon_sym_nonisolated] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_internal] = ACTIONS(2847), - [anon_sym_fileprivate] = ACTIONS(2847), - [anon_sym_open] = ACTIONS(2847), - [anon_sym_mutating] = ACTIONS(2847), - [anon_sym_nonmutating] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_dynamic] = ACTIONS(2847), - [anon_sym_optional] = ACTIONS(2847), - [anon_sym_final] = ACTIONS(2847), - [anon_sym_inout] = ACTIONS(2847), - [anon_sym_ATescaping] = ACTIONS(2847), - [anon_sym_ATautoclosure] = ACTIONS(2847), - [anon_sym_weak] = ACTIONS(2847), - [anon_sym_unowned] = ACTIONS(2849), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2847), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2847), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2847), - [sym__explicit_semi] = ACTIONS(2847), - [sym__arrow_operator_custom] = ACTIONS(2847), - [sym__dot_custom] = ACTIONS(2847), - [sym__conjunction_operator_custom] = ACTIONS(2847), - [sym__disjunction_operator_custom] = ACTIONS(2847), - [sym__nil_coalescing_operator_custom] = ACTIONS(2847), - [sym__eq_eq_custom] = ACTIONS(2847), - [sym__plus_then_ws] = ACTIONS(2847), - [sym__minus_then_ws] = ACTIONS(2847), - [sym_bang] = ACTIONS(2847), - [sym__throws_keyword] = ACTIONS(2847), - [sym__rethrows_keyword] = ACTIONS(2847), - [sym_default_keyword] = ACTIONS(2847), - [sym_where_keyword] = ACTIONS(2847), - [sym__as_custom] = ACTIONS(2847), - [sym__as_quest_custom] = ACTIONS(2847), - [sym__as_bang_custom] = ACTIONS(2847), - [sym__async_keyword_custom] = ACTIONS(2847), - [sym__custom_operator] = ACTIONS(2847), - }, - [950] = { - [sym_type_arguments] = STATE(980), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [aux_sym_custom_operator_token1] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(3469), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_CARET_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_fallthrough] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2830), - [sym__explicit_semi] = ACTIONS(2830), - [sym__arrow_operator_custom] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__conjunction_operator_custom] = ACTIONS(2830), - [sym__disjunction_operator_custom] = ACTIONS(2830), - [sym__nil_coalescing_operator_custom] = ACTIONS(2830), - [sym__eq_eq_custom] = ACTIONS(2830), - [sym__plus_then_ws] = ACTIONS(2830), - [sym__minus_then_ws] = ACTIONS(2830), - [sym_bang] = ACTIONS(2830), - [sym__throws_keyword] = ACTIONS(2830), - [sym__rethrows_keyword] = ACTIONS(2830), - [sym_default_keyword] = ACTIONS(2830), - [sym__as_custom] = ACTIONS(2830), - [sym__as_quest_custom] = ACTIONS(2830), - [sym__as_bang_custom] = ACTIONS(2830), - [sym__async_keyword_custom] = ACTIONS(2830), - [sym__custom_operator] = ACTIONS(2830), - }, - [951] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [sym__immediate_quest] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [aux_sym_custom_operator_token1] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_CARET_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_fallthrough] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_LT] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_prefix] = ACTIONS(2885), - [anon_sym_infix] = ACTIONS(2885), - [anon_sym_postfix] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2887), - [sym_property_behavior_modifier] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_convenience] = ACTIONS(2885), - [anon_sym_required] = ACTIONS(2885), - [anon_sym_nonisolated] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_internal] = ACTIONS(2885), - [anon_sym_fileprivate] = ACTIONS(2885), - [anon_sym_open] = ACTIONS(2885), - [anon_sym_mutating] = ACTIONS(2885), - [anon_sym_nonmutating] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_dynamic] = ACTIONS(2885), - [anon_sym_optional] = ACTIONS(2885), - [anon_sym_final] = ACTIONS(2885), - [anon_sym_inout] = ACTIONS(2885), - [anon_sym_ATescaping] = ACTIONS(2885), - [anon_sym_ATautoclosure] = ACTIONS(2885), - [anon_sym_weak] = ACTIONS(2885), - [anon_sym_unowned] = ACTIONS(2887), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2885), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2885), - [sym__explicit_semi] = ACTIONS(2885), - [sym__arrow_operator_custom] = ACTIONS(2885), - [sym__dot_custom] = ACTIONS(2885), - [sym__conjunction_operator_custom] = ACTIONS(2885), - [sym__disjunction_operator_custom] = ACTIONS(2885), - [sym__nil_coalescing_operator_custom] = ACTIONS(2885), - [sym__eq_eq_custom] = ACTIONS(2885), - [sym__plus_then_ws] = ACTIONS(2885), - [sym__minus_then_ws] = ACTIONS(2885), - [sym_bang] = ACTIONS(2885), - [sym__throws_keyword] = ACTIONS(2885), - [sym__rethrows_keyword] = ACTIONS(2885), - [sym_default_keyword] = ACTIONS(2885), - [sym_where_keyword] = ACTIONS(2885), - [sym__as_custom] = ACTIONS(2885), - [sym__as_quest_custom] = ACTIONS(2885), - [sym__as_bang_custom] = ACTIONS(2885), - [sym__async_keyword_custom] = ACTIONS(2885), - [sym__custom_operator] = ACTIONS(2885), - }, - [952] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2756), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2756), - [anon_sym_QMARK] = ACTIONS(2758), - [sym__immediate_quest] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), - [aux_sym_custom_operator_token1] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_GT] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_CARET_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_case] = ACTIONS(2756), - [anon_sym_fallthrough] = ACTIONS(2756), - [anon_sym_PLUS_EQ] = ACTIONS(2756), - [anon_sym_DASH_EQ] = ACTIONS(2756), - [anon_sym_STAR_EQ] = ACTIONS(2756), - [anon_sym_SLASH_EQ] = ACTIONS(2756), - [anon_sym_PERCENT_EQ] = ACTIONS(2756), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ] = ACTIONS(2758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2756), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2756), - [anon_sym_LT_EQ] = ACTIONS(2756), - [anon_sym_GT_EQ] = ACTIONS(2756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2756), - [anon_sym_DOT_DOT_LT] = ACTIONS(2756), - [anon_sym_is] = ACTIONS(2756), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_PERCENT] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_CARET] = ACTIONS(2758), - [anon_sym_LT_LT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(2756), - [anon_sym_prefix] = ACTIONS(2756), - [anon_sym_infix] = ACTIONS(2756), - [anon_sym_postfix] = ACTIONS(2756), - [anon_sym_AT] = ACTIONS(2758), - [sym_property_behavior_modifier] = ACTIONS(2756), - [anon_sym_override] = ACTIONS(2756), - [anon_sym_convenience] = ACTIONS(2756), - [anon_sym_required] = ACTIONS(2756), - [anon_sym_nonisolated] = ACTIONS(2756), - [anon_sym_public] = ACTIONS(2756), - [anon_sym_private] = ACTIONS(2756), - [anon_sym_internal] = ACTIONS(2756), - [anon_sym_fileprivate] = ACTIONS(2756), - [anon_sym_open] = ACTIONS(2756), - [anon_sym_mutating] = ACTIONS(2756), - [anon_sym_nonmutating] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_dynamic] = ACTIONS(2756), - [anon_sym_optional] = ACTIONS(2756), - [anon_sym_final] = ACTIONS(2756), - [anon_sym_inout] = ACTIONS(2756), - [anon_sym_ATescaping] = ACTIONS(2756), - [anon_sym_ATautoclosure] = ACTIONS(2756), - [anon_sym_weak] = ACTIONS(2756), - [anon_sym_unowned] = ACTIONS(2758), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2756), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2756), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2756), - [sym__explicit_semi] = ACTIONS(2756), - [sym__dot_custom] = ACTIONS(2756), - [sym__conjunction_operator_custom] = ACTIONS(2756), - [sym__disjunction_operator_custom] = ACTIONS(2756), - [sym__nil_coalescing_operator_custom] = ACTIONS(2756), - [sym__eq_eq_custom] = ACTIONS(2756), - [sym__plus_then_ws] = ACTIONS(2756), - [sym__minus_then_ws] = ACTIONS(2756), - [sym_bang] = ACTIONS(2756), - [sym_default_keyword] = ACTIONS(2756), - [sym__as_custom] = ACTIONS(2756), - [sym__as_quest_custom] = ACTIONS(2756), - [sym__as_bang_custom] = ACTIONS(2756), - [sym__custom_operator] = ACTIONS(2756), - }, - [953] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2774), - [sym__immediate_quest] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [aux_sym_custom_operator_token1] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_GT] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_CARET_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_case] = ACTIONS(2772), - [anon_sym_fallthrough] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2772), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_DOT_DOT_LT] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_PERCENT] = ACTIONS(2774), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2774), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_prefix] = ACTIONS(2772), - [anon_sym_infix] = ACTIONS(2772), - [anon_sym_postfix] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2774), - [sym_property_behavior_modifier] = ACTIONS(2772), - [anon_sym_override] = ACTIONS(2772), - [anon_sym_convenience] = ACTIONS(2772), - [anon_sym_required] = ACTIONS(2772), - [anon_sym_nonisolated] = ACTIONS(2772), - [anon_sym_public] = ACTIONS(2772), - [anon_sym_private] = ACTIONS(2772), - [anon_sym_internal] = ACTIONS(2772), - [anon_sym_fileprivate] = ACTIONS(2772), - [anon_sym_open] = ACTIONS(2772), - [anon_sym_mutating] = ACTIONS(2772), - [anon_sym_nonmutating] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_dynamic] = ACTIONS(2772), - [anon_sym_optional] = ACTIONS(2772), - [anon_sym_final] = ACTIONS(2772), - [anon_sym_inout] = ACTIONS(2772), - [anon_sym_ATescaping] = ACTIONS(2772), - [anon_sym_ATautoclosure] = ACTIONS(2772), - [anon_sym_weak] = ACTIONS(2772), - [anon_sym_unowned] = ACTIONS(2774), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2772), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2772), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2772), - [sym__explicit_semi] = ACTIONS(2772), - [sym__dot_custom] = ACTIONS(2772), - [sym__conjunction_operator_custom] = ACTIONS(2772), - [sym__disjunction_operator_custom] = ACTIONS(2772), - [sym__nil_coalescing_operator_custom] = ACTIONS(2772), - [sym__eq_eq_custom] = ACTIONS(2772), - [sym__plus_then_ws] = ACTIONS(2772), - [sym__minus_then_ws] = ACTIONS(2772), - [sym_bang] = ACTIONS(2772), - [sym_default_keyword] = ACTIONS(2772), - [sym__as_custom] = ACTIONS(2772), - [sym__as_quest_custom] = ACTIONS(2772), - [sym__as_bang_custom] = ACTIONS(2772), - [sym__custom_operator] = ACTIONS(2772), - }, - [954] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_QMARK] = ACTIONS(2793), - [sym__immediate_quest] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [aux_sym_custom_operator_token1] = ACTIONS(2791), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_GT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_CARET_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_case] = ACTIONS(2791), - [anon_sym_fallthrough] = ACTIONS(2791), - [anon_sym_PLUS_EQ] = ACTIONS(2791), - [anon_sym_DASH_EQ] = ACTIONS(2791), - [anon_sym_STAR_EQ] = ACTIONS(2791), - [anon_sym_SLASH_EQ] = ACTIONS(2791), - [anon_sym_PERCENT_EQ] = ACTIONS(2791), - [anon_sym_EQ] = ACTIONS(2793), - [anon_sym_BANG_EQ] = ACTIONS(2793), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2791), - [anon_sym_LT_EQ] = ACTIONS(2791), - [anon_sym_GT_EQ] = ACTIONS(2791), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), - [anon_sym_DOT_DOT_LT] = ACTIONS(2791), - [anon_sym_is] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_SLASH] = ACTIONS(2793), - [anon_sym_PERCENT] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_CARET] = ACTIONS(2793), - [anon_sym_LT_LT] = ACTIONS(2791), - [anon_sym_GT_GT] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2791), - [anon_sym_prefix] = ACTIONS(2791), - [anon_sym_infix] = ACTIONS(2791), - [anon_sym_postfix] = ACTIONS(2791), - [anon_sym_AT] = ACTIONS(2793), - [sym_property_behavior_modifier] = ACTIONS(2791), - [anon_sym_override] = ACTIONS(2791), - [anon_sym_convenience] = ACTIONS(2791), - [anon_sym_required] = ACTIONS(2791), - [anon_sym_nonisolated] = ACTIONS(2791), - [anon_sym_public] = ACTIONS(2791), - [anon_sym_private] = ACTIONS(2791), - [anon_sym_internal] = ACTIONS(2791), - [anon_sym_fileprivate] = ACTIONS(2791), - [anon_sym_open] = ACTIONS(2791), - [anon_sym_mutating] = ACTIONS(2791), - [anon_sym_nonmutating] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_dynamic] = ACTIONS(2791), - [anon_sym_optional] = ACTIONS(2791), - [anon_sym_final] = ACTIONS(2791), - [anon_sym_inout] = ACTIONS(2791), - [anon_sym_ATescaping] = ACTIONS(2791), - [anon_sym_ATautoclosure] = ACTIONS(2791), - [anon_sym_weak] = ACTIONS(2791), - [anon_sym_unowned] = ACTIONS(2793), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2791), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2791), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2791), - [sym__explicit_semi] = ACTIONS(2791), - [sym__dot_custom] = ACTIONS(2791), - [sym__conjunction_operator_custom] = ACTIONS(2791), - [sym__disjunction_operator_custom] = ACTIONS(2791), - [sym__nil_coalescing_operator_custom] = ACTIONS(2791), - [sym__eq_eq_custom] = ACTIONS(2791), - [sym__plus_then_ws] = ACTIONS(2791), - [sym__minus_then_ws] = ACTIONS(2791), - [sym_bang] = ACTIONS(2791), - [sym_default_keyword] = ACTIONS(2791), - [sym__as_custom] = ACTIONS(2791), - [sym__as_quest_custom] = ACTIONS(2791), - [sym__as_bang_custom] = ACTIONS(2791), - [sym__custom_operator] = ACTIONS(2791), - }, - [955] = { - [sym__dot] = STATE(4567), - [aux_sym_user_type_repeat1] = STATE(955), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2731), - [aux_sym_simple_identifier_token2] = ACTIONS(2729), - [aux_sym_simple_identifier_token3] = ACTIONS(2729), - [aux_sym_simple_identifier_token4] = ACTIONS(2729), - [anon_sym_actor] = ACTIONS(2731), - [anon_sym_nil] = ACTIONS(2731), - [sym_real_literal] = ACTIONS(2729), - [sym_integer_literal] = ACTIONS(2731), - [sym_hex_literal] = ACTIONS(2729), - [sym_oct_literal] = ACTIONS(2729), - [sym_bin_literal] = ACTIONS(2729), - [anon_sym_true] = ACTIONS(2731), - [anon_sym_false] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [anon_sym_BSLASH] = ACTIONS(2729), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2729), - [sym__extended_regex_literal] = ACTIONS(2729), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2729), - [sym__oneline_regex_literal] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2731), - [anon_sym_POUNDselector] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_await] = ACTIONS(2731), - [anon_sym_POUNDfile] = ACTIONS(2731), - [anon_sym_POUNDfileID] = ACTIONS(2729), - [anon_sym_POUNDfilePath] = ACTIONS(2729), - [anon_sym_POUNDline] = ACTIONS(2729), - [anon_sym_POUNDcolumn] = ACTIONS(2729), - [anon_sym_POUNDfunction] = ACTIONS(2729), - [anon_sym_POUNDdsohandle] = ACTIONS(2729), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2729), - [anon_sym_POUNDfileLiteral] = ACTIONS(2729), - [anon_sym_POUNDimageLiteral] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_self] = ACTIONS(2731), - [anon_sym_super] = ACTIONS(2731), - [anon_sym_POUNDkeyPath] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_try_BANG] = ACTIONS(2729), - [anon_sym_try_QMARK] = ACTIONS(2729), - [anon_sym_PLUS_EQ] = ACTIONS(2729), - [anon_sym_DASH_EQ] = ACTIONS(2729), - [anon_sym_STAR_EQ] = ACTIONS(2729), - [anon_sym_SLASH_EQ] = ACTIONS(2729), - [anon_sym_PERCENT_EQ] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2729), - [sym_raw_str_end_part] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(3471), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [956] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2752), - [anon_sym_LPAREN] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2752), - [anon_sym_QMARK] = ACTIONS(2754), - [sym__immediate_quest] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2752), - [aux_sym_custom_operator_token1] = ACTIONS(2752), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_GT] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_CARET_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_case] = ACTIONS(2752), - [anon_sym_fallthrough] = ACTIONS(2752), - [anon_sym_PLUS_EQ] = ACTIONS(2752), - [anon_sym_DASH_EQ] = ACTIONS(2752), - [anon_sym_STAR_EQ] = ACTIONS(2752), - [anon_sym_SLASH_EQ] = ACTIONS(2752), - [anon_sym_PERCENT_EQ] = ACTIONS(2752), - [anon_sym_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ] = ACTIONS(2754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2752), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2752), - [anon_sym_LT_EQ] = ACTIONS(2752), - [anon_sym_GT_EQ] = ACTIONS(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2752), - [anon_sym_DOT_DOT_LT] = ACTIONS(2752), - [anon_sym_is] = ACTIONS(2752), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2754), - [anon_sym_PERCENT] = ACTIONS(2754), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_PIPE] = ACTIONS(2752), - [anon_sym_CARET] = ACTIONS(2754), - [anon_sym_LT_LT] = ACTIONS(2752), - [anon_sym_GT_GT] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2752), - [anon_sym_prefix] = ACTIONS(2752), - [anon_sym_infix] = ACTIONS(2752), - [anon_sym_postfix] = ACTIONS(2752), - [anon_sym_AT] = ACTIONS(2754), - [sym_property_behavior_modifier] = ACTIONS(2752), - [anon_sym_override] = ACTIONS(2752), - [anon_sym_convenience] = ACTIONS(2752), - [anon_sym_required] = ACTIONS(2752), - [anon_sym_nonisolated] = ACTIONS(2752), - [anon_sym_public] = ACTIONS(2752), - [anon_sym_private] = ACTIONS(2752), - [anon_sym_internal] = ACTIONS(2752), - [anon_sym_fileprivate] = ACTIONS(2752), - [anon_sym_open] = ACTIONS(2752), - [anon_sym_mutating] = ACTIONS(2752), - [anon_sym_nonmutating] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_dynamic] = ACTIONS(2752), - [anon_sym_optional] = ACTIONS(2752), - [anon_sym_final] = ACTIONS(2752), - [anon_sym_inout] = ACTIONS(2752), - [anon_sym_ATescaping] = ACTIONS(2752), - [anon_sym_ATautoclosure] = ACTIONS(2752), - [anon_sym_weak] = ACTIONS(2752), - [anon_sym_unowned] = ACTIONS(2754), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2752), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2752), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2752), - [sym__explicit_semi] = ACTIONS(2752), - [sym__dot_custom] = ACTIONS(2752), - [sym__conjunction_operator_custom] = ACTIONS(2752), - [sym__disjunction_operator_custom] = ACTIONS(2752), - [sym__nil_coalescing_operator_custom] = ACTIONS(2752), - [sym__eq_eq_custom] = ACTIONS(2752), - [sym__plus_then_ws] = ACTIONS(2752), - [sym__minus_then_ws] = ACTIONS(2752), - [sym_bang] = ACTIONS(2752), - [sym_default_keyword] = ACTIONS(2752), - [sym__as_custom] = ACTIONS(2752), - [sym__as_quest_custom] = ACTIONS(2752), - [sym__as_bang_custom] = ACTIONS(2752), - [sym__custom_operator] = ACTIONS(2752), - }, - [957] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2764), - [anon_sym_QMARK] = ACTIONS(2766), - [sym__immediate_quest] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2764), - [aux_sym_custom_operator_token1] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_CARET_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_case] = ACTIONS(2764), - [anon_sym_fallthrough] = ACTIONS(2764), - [anon_sym_PLUS_EQ] = ACTIONS(2764), - [anon_sym_DASH_EQ] = ACTIONS(2764), - [anon_sym_STAR_EQ] = ACTIONS(2764), - [anon_sym_SLASH_EQ] = ACTIONS(2764), - [anon_sym_PERCENT_EQ] = ACTIONS(2764), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2764), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2764), - [anon_sym_LT_EQ] = ACTIONS(2764), - [anon_sym_GT_EQ] = ACTIONS(2764), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2764), - [anon_sym_DOT_DOT_LT] = ACTIONS(2764), - [anon_sym_is] = ACTIONS(2764), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PIPE] = ACTIONS(2764), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2764), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_class] = ACTIONS(2764), - [anon_sym_prefix] = ACTIONS(2764), - [anon_sym_infix] = ACTIONS(2764), - [anon_sym_postfix] = ACTIONS(2764), - [anon_sym_AT] = ACTIONS(2766), - [sym_property_behavior_modifier] = ACTIONS(2764), - [anon_sym_override] = ACTIONS(2764), - [anon_sym_convenience] = ACTIONS(2764), - [anon_sym_required] = ACTIONS(2764), - [anon_sym_nonisolated] = ACTIONS(2764), - [anon_sym_public] = ACTIONS(2764), - [anon_sym_private] = ACTIONS(2764), - [anon_sym_internal] = ACTIONS(2764), - [anon_sym_fileprivate] = ACTIONS(2764), - [anon_sym_open] = ACTIONS(2764), - [anon_sym_mutating] = ACTIONS(2764), - [anon_sym_nonmutating] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_dynamic] = ACTIONS(2764), - [anon_sym_optional] = ACTIONS(2764), - [anon_sym_final] = ACTIONS(2764), - [anon_sym_inout] = ACTIONS(2764), - [anon_sym_ATescaping] = ACTIONS(2764), - [anon_sym_ATautoclosure] = ACTIONS(2764), - [anon_sym_weak] = ACTIONS(2764), - [anon_sym_unowned] = ACTIONS(2766), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2764), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2764), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2764), - [sym__explicit_semi] = ACTIONS(2764), - [sym__dot_custom] = ACTIONS(2764), - [sym__conjunction_operator_custom] = ACTIONS(2764), - [sym__disjunction_operator_custom] = ACTIONS(2764), - [sym__nil_coalescing_operator_custom] = ACTIONS(2764), - [sym__eq_eq_custom] = ACTIONS(2764), - [sym__plus_then_ws] = ACTIONS(2764), - [sym__minus_then_ws] = ACTIONS(2764), - [sym_bang] = ACTIONS(2764), - [sym_default_keyword] = ACTIONS(2764), - [sym__as_custom] = ACTIONS(2764), - [sym__as_quest_custom] = ACTIONS(2764), - [sym__as_bang_custom] = ACTIONS(2764), - [sym__custom_operator] = ACTIONS(2764), - }, - [958] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [sym__immediate_quest] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2881), - [aux_sym_custom_operator_token1] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_CARET_LBRACE] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_fallthrough] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2881), - [anon_sym_LT_EQ] = ACTIONS(2881), - [anon_sym_GT_EQ] = ACTIONS(2881), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2881), - [anon_sym_DOT_DOT_LT] = ACTIONS(2881), - [anon_sym_is] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2881), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2881), - [anon_sym_GT_GT] = ACTIONS(2881), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_prefix] = ACTIONS(2881), - [anon_sym_infix] = ACTIONS(2881), - [anon_sym_postfix] = ACTIONS(2881), - [anon_sym_AT] = ACTIONS(2883), - [sym_property_behavior_modifier] = ACTIONS(2881), - [anon_sym_override] = ACTIONS(2881), - [anon_sym_convenience] = ACTIONS(2881), - [anon_sym_required] = ACTIONS(2881), - [anon_sym_nonisolated] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_internal] = ACTIONS(2881), - [anon_sym_fileprivate] = ACTIONS(2881), - [anon_sym_open] = ACTIONS(2881), - [anon_sym_mutating] = ACTIONS(2881), - [anon_sym_nonmutating] = ACTIONS(2881), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_dynamic] = ACTIONS(2881), - [anon_sym_optional] = ACTIONS(2881), - [anon_sym_final] = ACTIONS(2881), - [anon_sym_inout] = ACTIONS(2881), - [anon_sym_ATescaping] = ACTIONS(2881), - [anon_sym_ATautoclosure] = ACTIONS(2881), - [anon_sym_weak] = ACTIONS(2881), - [anon_sym_unowned] = ACTIONS(2883), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2881), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2881), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2881), - [sym__explicit_semi] = ACTIONS(2881), - [sym__arrow_operator_custom] = ACTIONS(2881), - [sym__dot_custom] = ACTIONS(2881), - [sym__conjunction_operator_custom] = ACTIONS(2881), - [sym__disjunction_operator_custom] = ACTIONS(2881), - [sym__nil_coalescing_operator_custom] = ACTIONS(2881), - [sym__eq_eq_custom] = ACTIONS(2881), - [sym__plus_then_ws] = ACTIONS(2881), - [sym__minus_then_ws] = ACTIONS(2881), - [sym_bang] = ACTIONS(2881), - [sym__throws_keyword] = ACTIONS(2881), - [sym__rethrows_keyword] = ACTIONS(2881), - [sym_default_keyword] = ACTIONS(2881), - [sym__as_custom] = ACTIONS(2881), - [sym__as_quest_custom] = ACTIONS(2881), - [sym__as_bang_custom] = ACTIONS(2881), - [sym__async_keyword_custom] = ACTIONS(2881), - [sym__custom_operator] = ACTIONS(2881), - }, - [959] = { - [sym_type_arguments] = STATE(987), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2832), - [aux_sym_simple_identifier_token2] = ACTIONS(2830), - [aux_sym_simple_identifier_token3] = ACTIONS(2830), - [aux_sym_simple_identifier_token4] = ACTIONS(2830), - [anon_sym_actor] = ACTIONS(2832), - [anon_sym_nil] = ACTIONS(2832), - [sym_real_literal] = ACTIONS(2830), - [sym_integer_literal] = ACTIONS(2832), - [sym_hex_literal] = ACTIONS(2830), - [sym_oct_literal] = ACTIONS(2830), - [sym_bin_literal] = ACTIONS(2830), - [anon_sym_true] = ACTIONS(2832), - [anon_sym_false] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_BSLASH] = ACTIONS(2830), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2830), - [sym__extended_regex_literal] = ACTIONS(2830), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2830), - [sym__oneline_regex_literal] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_POUNDselector] = ACTIONS(2830), - [aux_sym_custom_operator_token1] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(3474), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_await] = ACTIONS(2832), - [anon_sym_POUNDfile] = ACTIONS(2832), - [anon_sym_POUNDfileID] = ACTIONS(2830), - [anon_sym_POUNDfilePath] = ACTIONS(2830), - [anon_sym_POUNDline] = ACTIONS(2830), - [anon_sym_POUNDcolumn] = ACTIONS(2830), - [anon_sym_POUNDfunction] = ACTIONS(2830), - [anon_sym_POUNDdsohandle] = ACTIONS(2830), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2830), - [anon_sym_POUNDfileLiteral] = ACTIONS(2830), - [anon_sym_POUNDimageLiteral] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_CARET_LBRACE] = ACTIONS(2830), - [anon_sym_self] = ACTIONS(2832), - [anon_sym_super] = ACTIONS(2832), - [anon_sym_POUNDkeyPath] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2832), - [anon_sym_try_BANG] = ACTIONS(2830), - [anon_sym_try_QMARK] = ACTIONS(2830), - [anon_sym_PLUS_EQ] = ACTIONS(2830), - [anon_sym_DASH_EQ] = ACTIONS(2830), - [anon_sym_STAR_EQ] = ACTIONS(2830), - [anon_sym_SLASH_EQ] = ACTIONS(2830), - [anon_sym_PERCENT_EQ] = ACTIONS(2830), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2830), - [sym_raw_str_end_part] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__eq_eq_custom] = ACTIONS(2830), - [sym__plus_then_ws] = ACTIONS(2830), - [sym__minus_then_ws] = ACTIONS(2830), - [sym_bang] = ACTIONS(2830), - [sym__custom_operator] = ACTIONS(2830), - }, - [960] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2707), - [aux_sym_simple_identifier_token2] = ACTIONS(2709), - [aux_sym_simple_identifier_token3] = ACTIONS(2709), - [aux_sym_simple_identifier_token4] = ACTIONS(2709), - [anon_sym_actor] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2707), - [anon_sym_fallthrough] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2707), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2707), - [anon_sym_prefix] = ACTIONS(2707), - [anon_sym_infix] = ACTIONS(2707), - [anon_sym_postfix] = ACTIONS(2707), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2707), - [anon_sym_override] = ACTIONS(2707), - [anon_sym_convenience] = ACTIONS(2707), - [anon_sym_required] = ACTIONS(2707), - [anon_sym_nonisolated] = ACTIONS(2707), - [anon_sym_public] = ACTIONS(2707), - [anon_sym_private] = ACTIONS(2707), - [anon_sym_internal] = ACTIONS(2707), - [anon_sym_fileprivate] = ACTIONS(2707), - [anon_sym_open] = ACTIONS(2707), - [anon_sym_mutating] = ACTIONS(2707), - [anon_sym_nonmutating] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_dynamic] = ACTIONS(2707), - [anon_sym_optional] = ACTIONS(2707), - [anon_sym_final] = ACTIONS(2707), - [anon_sym_inout] = ACTIONS(2707), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2707), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2709), - [sym__explicit_semi] = ACTIONS(2709), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym_default_keyword] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [961] = { - [sym__key_path_postfixes] = STATE(962), - [aux_sym__key_path_component_repeat1] = STATE(962), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [sym__immediate_quest] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [aux_sym_custom_operator_token1] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_CARET_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_self] = ACTIONS(3476), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_fallthrough] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2918), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_LT] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_prefix] = ACTIONS(2918), - [anon_sym_infix] = ACTIONS(2918), - [anon_sym_postfix] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2920), - [sym_property_behavior_modifier] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_convenience] = ACTIONS(2918), - [anon_sym_required] = ACTIONS(2918), - [anon_sym_nonisolated] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_internal] = ACTIONS(2918), - [anon_sym_fileprivate] = ACTIONS(2918), - [anon_sym_open] = ACTIONS(2918), - [anon_sym_mutating] = ACTIONS(2918), - [anon_sym_nonmutating] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_dynamic] = ACTIONS(2918), - [anon_sym_optional] = ACTIONS(2918), - [anon_sym_final] = ACTIONS(2918), - [anon_sym_inout] = ACTIONS(2918), - [anon_sym_ATescaping] = ACTIONS(2918), - [anon_sym_ATautoclosure] = ACTIONS(2918), - [anon_sym_weak] = ACTIONS(2918), - [anon_sym_unowned] = ACTIONS(2920), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2918), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2918), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2918), - [sym__explicit_semi] = ACTIONS(2918), - [sym__dot_custom] = ACTIONS(2918), - [sym__conjunction_operator_custom] = ACTIONS(2918), - [sym__disjunction_operator_custom] = ACTIONS(2918), - [sym__nil_coalescing_operator_custom] = ACTIONS(2918), - [sym__eq_eq_custom] = ACTIONS(2918), - [sym__plus_then_ws] = ACTIONS(2918), - [sym__minus_then_ws] = ACTIONS(2918), - [sym_bang] = ACTIONS(2918), - [sym_default_keyword] = ACTIONS(2918), - [sym_where_keyword] = ACTIONS(2918), - [sym__as_custom] = ACTIONS(2918), - [sym__as_quest_custom] = ACTIONS(2918), - [sym__as_bang_custom] = ACTIONS(2918), - [sym__custom_operator] = ACTIONS(2918), - }, - [962] = { - [sym__key_path_postfixes] = STATE(962), - [aux_sym__key_path_component_repeat1] = STATE(962), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(3478), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(3481), - [sym__immediate_quest] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [aux_sym_custom_operator_token1] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_CARET_LBRACE] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_self] = ACTIONS(3484), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_fallthrough] = ACTIONS(2905), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2905), - [anon_sym_LT_EQ] = ACTIONS(2905), - [anon_sym_GT_EQ] = ACTIONS(2905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_LT] = ACTIONS(2905), - [anon_sym_is] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_prefix] = ACTIONS(2905), - [anon_sym_infix] = ACTIONS(2905), - [anon_sym_postfix] = ACTIONS(2905), - [anon_sym_AT] = ACTIONS(2910), - [sym_property_behavior_modifier] = ACTIONS(2905), - [anon_sym_override] = ACTIONS(2905), - [anon_sym_convenience] = ACTIONS(2905), - [anon_sym_required] = ACTIONS(2905), - [anon_sym_nonisolated] = ACTIONS(2905), - [anon_sym_public] = ACTIONS(2905), - [anon_sym_private] = ACTIONS(2905), - [anon_sym_internal] = ACTIONS(2905), - [anon_sym_fileprivate] = ACTIONS(2905), - [anon_sym_open] = ACTIONS(2905), - [anon_sym_mutating] = ACTIONS(2905), - [anon_sym_nonmutating] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_dynamic] = ACTIONS(2905), - [anon_sym_optional] = ACTIONS(2905), - [anon_sym_final] = ACTIONS(2905), - [anon_sym_inout] = ACTIONS(2905), - [anon_sym_ATescaping] = ACTIONS(2905), - [anon_sym_ATautoclosure] = ACTIONS(2905), - [anon_sym_weak] = ACTIONS(2905), - [anon_sym_unowned] = ACTIONS(2910), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2905), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2905), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2905), - [sym__explicit_semi] = ACTIONS(2905), - [sym__dot_custom] = ACTIONS(2905), - [sym__conjunction_operator_custom] = ACTIONS(2905), - [sym__disjunction_operator_custom] = ACTIONS(2905), - [sym__nil_coalescing_operator_custom] = ACTIONS(2905), - [sym__eq_eq_custom] = ACTIONS(2905), - [sym__plus_then_ws] = ACTIONS(2905), - [sym__minus_then_ws] = ACTIONS(2905), - [sym_bang] = ACTIONS(3484), - [sym_default_keyword] = ACTIONS(2905), - [sym_where_keyword] = ACTIONS(2905), - [sym__as_custom] = ACTIONS(2905), - [sym__as_quest_custom] = ACTIONS(2905), - [sym__as_bang_custom] = ACTIONS(2905), - [sym__custom_operator] = ACTIONS(2905), - }, - [963] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2691), - [aux_sym_simple_identifier_token2] = ACTIONS(2693), - [aux_sym_simple_identifier_token3] = ACTIONS(2693), - [aux_sym_simple_identifier_token4] = ACTIONS(2693), - [anon_sym_actor] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_fallthrough] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_prefix] = ACTIONS(2691), - [anon_sym_infix] = ACTIONS(2691), - [anon_sym_postfix] = ACTIONS(2691), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2691), - [anon_sym_override] = ACTIONS(2691), - [anon_sym_convenience] = ACTIONS(2691), - [anon_sym_required] = ACTIONS(2691), - [anon_sym_nonisolated] = ACTIONS(2691), - [anon_sym_public] = ACTIONS(2691), - [anon_sym_private] = ACTIONS(2691), - [anon_sym_internal] = ACTIONS(2691), - [anon_sym_fileprivate] = ACTIONS(2691), - [anon_sym_open] = ACTIONS(2691), - [anon_sym_mutating] = ACTIONS(2691), - [anon_sym_nonmutating] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_dynamic] = ACTIONS(2691), - [anon_sym_optional] = ACTIONS(2691), - [anon_sym_final] = ACTIONS(2691), - [anon_sym_inout] = ACTIONS(2691), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2691), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2693), - [sym__explicit_semi] = ACTIONS(2693), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym_default_keyword] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [964] = { - [sym__key_path_postfixes] = STATE(961), - [aux_sym__key_path_component_repeat1] = STATE(961), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [sym__immediate_quest] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [aux_sym_custom_operator_token1] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_CARET_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_self] = ACTIONS(3487), - [anon_sym_case] = ACTIONS(2924), - [anon_sym_fallthrough] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_LT] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_prefix] = ACTIONS(2924), - [anon_sym_infix] = ACTIONS(2924), - [anon_sym_postfix] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2926), - [sym_property_behavior_modifier] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_convenience] = ACTIONS(2924), - [anon_sym_required] = ACTIONS(2924), - [anon_sym_nonisolated] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_internal] = ACTIONS(2924), - [anon_sym_fileprivate] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_mutating] = ACTIONS(2924), - [anon_sym_nonmutating] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_dynamic] = ACTIONS(2924), - [anon_sym_optional] = ACTIONS(2924), - [anon_sym_final] = ACTIONS(2924), - [anon_sym_inout] = ACTIONS(2924), - [anon_sym_ATescaping] = ACTIONS(2924), - [anon_sym_ATautoclosure] = ACTIONS(2924), - [anon_sym_weak] = ACTIONS(2924), - [anon_sym_unowned] = ACTIONS(2926), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2924), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2924), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2924), - [sym__explicit_semi] = ACTIONS(2924), - [sym__dot_custom] = ACTIONS(2924), - [sym__conjunction_operator_custom] = ACTIONS(2924), - [sym__disjunction_operator_custom] = ACTIONS(2924), - [sym__nil_coalescing_operator_custom] = ACTIONS(2924), - [sym__eq_eq_custom] = ACTIONS(2924), - [sym__plus_then_ws] = ACTIONS(2924), - [sym__minus_then_ws] = ACTIONS(2924), - [sym_bang] = ACTIONS(2924), - [sym_default_keyword] = ACTIONS(2924), - [sym_where_keyword] = ACTIONS(2924), - [sym__as_custom] = ACTIONS(2924), - [sym__as_quest_custom] = ACTIONS(2924), - [sym__as_bang_custom] = ACTIONS(2924), - [sym__custom_operator] = ACTIONS(2924), - }, - [965] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2687), - [aux_sym_simple_identifier_token2] = ACTIONS(2689), - [aux_sym_simple_identifier_token3] = ACTIONS(2689), - [aux_sym_simple_identifier_token4] = ACTIONS(2689), - [anon_sym_actor] = ACTIONS(2687), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2687), - [anon_sym_fallthrough] = ACTIONS(2687), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2687), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2687), - [anon_sym_prefix] = ACTIONS(2687), - [anon_sym_infix] = ACTIONS(2687), - [anon_sym_postfix] = ACTIONS(2687), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2687), - [anon_sym_override] = ACTIONS(2687), - [anon_sym_convenience] = ACTIONS(2687), - [anon_sym_required] = ACTIONS(2687), - [anon_sym_nonisolated] = ACTIONS(2687), - [anon_sym_public] = ACTIONS(2687), - [anon_sym_private] = ACTIONS(2687), - [anon_sym_internal] = ACTIONS(2687), - [anon_sym_fileprivate] = ACTIONS(2687), - [anon_sym_open] = ACTIONS(2687), - [anon_sym_mutating] = ACTIONS(2687), - [anon_sym_nonmutating] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_dynamic] = ACTIONS(2687), - [anon_sym_optional] = ACTIONS(2687), - [anon_sym_final] = ACTIONS(2687), - [anon_sym_inout] = ACTIONS(2687), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2687), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2689), - [sym__explicit_semi] = ACTIONS(2689), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [966] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2725), - [aux_sym_simple_identifier_token2] = ACTIONS(2727), - [aux_sym_simple_identifier_token3] = ACTIONS(2727), - [aux_sym_simple_identifier_token4] = ACTIONS(2727), - [anon_sym_actor] = ACTIONS(2725), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_fallthrough] = ACTIONS(2725), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_prefix] = ACTIONS(2725), - [anon_sym_infix] = ACTIONS(2725), - [anon_sym_postfix] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_convenience] = ACTIONS(2725), - [anon_sym_required] = ACTIONS(2725), - [anon_sym_nonisolated] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_internal] = ACTIONS(2725), - [anon_sym_fileprivate] = ACTIONS(2725), - [anon_sym_open] = ACTIONS(2725), - [anon_sym_mutating] = ACTIONS(2725), - [anon_sym_nonmutating] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_dynamic] = ACTIONS(2725), - [anon_sym_optional] = ACTIONS(2725), - [anon_sym_final] = ACTIONS(2725), - [anon_sym_inout] = ACTIONS(2725), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2725), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2727), - [sym__explicit_semi] = ACTIONS(2727), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym_default_keyword] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [967] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_fallthrough] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym_default_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [968] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [aux_sym_custom_operator_token1] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_CARET_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_fallthrough] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_DOT_DOT_LT] = ACTIONS(2873), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2873), - [sym__explicit_semi] = ACTIONS(2873), - [sym__arrow_operator_custom] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__conjunction_operator_custom] = ACTIONS(2873), - [sym__disjunction_operator_custom] = ACTIONS(2873), - [sym__nil_coalescing_operator_custom] = ACTIONS(2873), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2873), - [sym__minus_then_ws] = ACTIONS(2873), - [sym_bang] = ACTIONS(2873), - [sym__throws_keyword] = ACTIONS(2873), - [sym__rethrows_keyword] = ACTIONS(2873), - [sym_default_keyword] = ACTIONS(2873), - [sym__as_custom] = ACTIONS(2873), - [sym__as_quest_custom] = ACTIONS(2873), - [sym__as_bang_custom] = ACTIONS(2873), - [sym__async_keyword_custom] = ACTIONS(2873), - [sym__custom_operator] = ACTIONS(2873), - }, - [969] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [sym__immediate_quest] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2901), - [aux_sym_custom_operator_token1] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_CARET_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_fallthrough] = ACTIONS(2901), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2901), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2901), - [anon_sym_LT_EQ] = ACTIONS(2901), - [anon_sym_GT_EQ] = ACTIONS(2901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2901), - [anon_sym_DOT_DOT_LT] = ACTIONS(2901), - [anon_sym_is] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2901), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2901), - [anon_sym_GT_GT] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_prefix] = ACTIONS(2901), - [anon_sym_infix] = ACTIONS(2901), - [anon_sym_postfix] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2903), - [sym_property_behavior_modifier] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_convenience] = ACTIONS(2901), - [anon_sym_required] = ACTIONS(2901), - [anon_sym_nonisolated] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_internal] = ACTIONS(2901), - [anon_sym_fileprivate] = ACTIONS(2901), - [anon_sym_open] = ACTIONS(2901), - [anon_sym_mutating] = ACTIONS(2901), - [anon_sym_nonmutating] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_dynamic] = ACTIONS(2901), - [anon_sym_optional] = ACTIONS(2901), - [anon_sym_final] = ACTIONS(2901), - [anon_sym_inout] = ACTIONS(2901), - [anon_sym_ATescaping] = ACTIONS(2901), - [anon_sym_ATautoclosure] = ACTIONS(2901), - [anon_sym_weak] = ACTIONS(2901), - [anon_sym_unowned] = ACTIONS(2903), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2901), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2901), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2901), - [sym__explicit_semi] = ACTIONS(2901), - [sym__arrow_operator_custom] = ACTIONS(2901), - [sym__dot_custom] = ACTIONS(2901), - [sym__conjunction_operator_custom] = ACTIONS(2901), - [sym__disjunction_operator_custom] = ACTIONS(2901), - [sym__nil_coalescing_operator_custom] = ACTIONS(2901), - [sym__eq_eq_custom] = ACTIONS(2901), - [sym__plus_then_ws] = ACTIONS(2901), - [sym__minus_then_ws] = ACTIONS(2901), - [sym_bang] = ACTIONS(2901), - [sym__throws_keyword] = ACTIONS(2901), - [sym__rethrows_keyword] = ACTIONS(2901), - [sym_default_keyword] = ACTIONS(2901), - [sym__as_custom] = ACTIONS(2901), - [sym__as_quest_custom] = ACTIONS(2901), - [sym__as_bang_custom] = ACTIONS(2901), - [sym__async_keyword_custom] = ACTIONS(2901), - [sym__custom_operator] = ACTIONS(2901), - }, - [970] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [sym__immediate_quest] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [aux_sym_custom_operator_token1] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_CARET_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_fallthrough] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), - [anon_sym_DOT_DOT_LT] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_prefix] = ACTIONS(2847), - [anon_sym_infix] = ACTIONS(2847), - [anon_sym_postfix] = ACTIONS(2847), - [anon_sym_AT] = ACTIONS(2849), - [sym_property_behavior_modifier] = ACTIONS(2847), - [anon_sym_override] = ACTIONS(2847), - [anon_sym_convenience] = ACTIONS(2847), - [anon_sym_required] = ACTIONS(2847), - [anon_sym_nonisolated] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_internal] = ACTIONS(2847), - [anon_sym_fileprivate] = ACTIONS(2847), - [anon_sym_open] = ACTIONS(2847), - [anon_sym_mutating] = ACTIONS(2847), - [anon_sym_nonmutating] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_dynamic] = ACTIONS(2847), - [anon_sym_optional] = ACTIONS(2847), - [anon_sym_final] = ACTIONS(2847), - [anon_sym_inout] = ACTIONS(2847), - [anon_sym_ATescaping] = ACTIONS(2847), - [anon_sym_ATautoclosure] = ACTIONS(2847), - [anon_sym_weak] = ACTIONS(2847), - [anon_sym_unowned] = ACTIONS(2849), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2847), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2847), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2847), - [sym__explicit_semi] = ACTIONS(2847), - [sym__arrow_operator_custom] = ACTIONS(2847), - [sym__dot_custom] = ACTIONS(2847), - [sym__conjunction_operator_custom] = ACTIONS(2847), - [sym__disjunction_operator_custom] = ACTIONS(2847), - [sym__nil_coalescing_operator_custom] = ACTIONS(2847), - [sym__eq_eq_custom] = ACTIONS(2847), - [sym__plus_then_ws] = ACTIONS(2847), - [sym__minus_then_ws] = ACTIONS(2847), - [sym_bang] = ACTIONS(2847), - [sym__throws_keyword] = ACTIONS(2847), - [sym__rethrows_keyword] = ACTIONS(2847), - [sym_default_keyword] = ACTIONS(2847), - [sym__as_custom] = ACTIONS(2847), - [sym__as_quest_custom] = ACTIONS(2847), - [sym__as_bang_custom] = ACTIONS(2847), - [sym__async_keyword_custom] = ACTIONS(2847), - [sym__custom_operator] = ACTIONS(2847), - }, - [971] = { - [sym__type_level_declaration] = STATE(5297), - [sym_import_declaration] = STATE(5297), - [sym_property_declaration] = STATE(5297), - [sym__modifierless_property_declaration] = STATE(5708), - [sym_typealias_declaration] = STATE(5297), - [sym__modifierless_typealias_declaration] = STATE(5704), - [sym_function_declaration] = STATE(5297), - [sym__bodyless_function_declaration] = STATE(5462), - [sym__modifierless_function_declaration_no_body] = STATE(6507), - [sym_class_declaration] = STATE(5297), - [sym__modifierless_class_declaration] = STATE(5696), - [sym__constructor_function_decl] = STATE(5149), - [sym__non_constructor_function_decl] = STATE(5154), - [sym__async_modifier] = STATE(5341), - [sym_protocol_declaration] = STATE(5297), - [sym_deinit_declaration] = STATE(5297), - [sym_subscript_declaration] = STATE(5297), - [sym_operator_declaration] = STATE(5297), - [sym_precedence_group_declaration] = STATE(5297), - [sym_associatedtype_declaration] = STATE(5297), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3467), - [sym_modifiers] = STATE(3465), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_typealias] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_protocol] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_extension] = ACTIONS(3405), - [anon_sym_indirect] = ACTIONS(3407), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(3409), - [anon_sym_subscript] = ACTIONS(3411), - [anon_sym_prefix] = ACTIONS(3413), - [anon_sym_infix] = ACTIONS(3413), - [anon_sym_postfix] = ACTIONS(3413), - [anon_sym_precedencegroup] = ACTIONS(3415), - [anon_sym_associatedtype] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [972] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [sym__immediate_quest] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2893), - [aux_sym_custom_operator_token1] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_CARET_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_fallthrough] = ACTIONS(2893), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2893), - [anon_sym_LT_EQ] = ACTIONS(2893), - [anon_sym_GT_EQ] = ACTIONS(2893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2893), - [anon_sym_DOT_DOT_LT] = ACTIONS(2893), - [anon_sym_is] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2893), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2893), - [anon_sym_GT_GT] = ACTIONS(2893), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_prefix] = ACTIONS(2893), - [anon_sym_infix] = ACTIONS(2893), - [anon_sym_postfix] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2895), - [sym_property_behavior_modifier] = ACTIONS(2893), - [anon_sym_override] = ACTIONS(2893), - [anon_sym_convenience] = ACTIONS(2893), - [anon_sym_required] = ACTIONS(2893), - [anon_sym_nonisolated] = ACTIONS(2893), - [anon_sym_public] = ACTIONS(2893), - [anon_sym_private] = ACTIONS(2893), - [anon_sym_internal] = ACTIONS(2893), - [anon_sym_fileprivate] = ACTIONS(2893), - [anon_sym_open] = ACTIONS(2893), - [anon_sym_mutating] = ACTIONS(2893), - [anon_sym_nonmutating] = ACTIONS(2893), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_dynamic] = ACTIONS(2893), - [anon_sym_optional] = ACTIONS(2893), - [anon_sym_final] = ACTIONS(2893), - [anon_sym_inout] = ACTIONS(2893), - [anon_sym_ATescaping] = ACTIONS(2893), - [anon_sym_ATautoclosure] = ACTIONS(2893), - [anon_sym_weak] = ACTIONS(2893), - [anon_sym_unowned] = ACTIONS(2895), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2893), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2893), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2893), - [sym__explicit_semi] = ACTIONS(2893), - [sym__arrow_operator_custom] = ACTIONS(2893), - [sym__dot_custom] = ACTIONS(2893), - [sym__conjunction_operator_custom] = ACTIONS(2893), - [sym__disjunction_operator_custom] = ACTIONS(2893), - [sym__nil_coalescing_operator_custom] = ACTIONS(2893), - [sym__eq_eq_custom] = ACTIONS(2893), - [sym__plus_then_ws] = ACTIONS(2893), - [sym__minus_then_ws] = ACTIONS(2893), - [sym_bang] = ACTIONS(2893), - [sym__throws_keyword] = ACTIONS(2893), - [sym__rethrows_keyword] = ACTIONS(2893), - [sym_default_keyword] = ACTIONS(2893), - [sym__as_custom] = ACTIONS(2893), - [sym__as_quest_custom] = ACTIONS(2893), - [sym__as_bang_custom] = ACTIONS(2893), - [sym__async_keyword_custom] = ACTIONS(2893), - [sym__custom_operator] = ACTIONS(2893), - }, - [973] = { - [sym__key_path_postfixes] = STATE(962), - [aux_sym__key_path_component_repeat1] = STATE(962), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [sym__immediate_quest] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [aux_sym_custom_operator_token1] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_CARET_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_self] = ACTIONS(3476), - [anon_sym_case] = ACTIONS(2924), - [anon_sym_fallthrough] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_LT] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_prefix] = ACTIONS(2924), - [anon_sym_infix] = ACTIONS(2924), - [anon_sym_postfix] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2926), - [sym_property_behavior_modifier] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_convenience] = ACTIONS(2924), - [anon_sym_required] = ACTIONS(2924), - [anon_sym_nonisolated] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_internal] = ACTIONS(2924), - [anon_sym_fileprivate] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_mutating] = ACTIONS(2924), - [anon_sym_nonmutating] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_dynamic] = ACTIONS(2924), - [anon_sym_optional] = ACTIONS(2924), - [anon_sym_final] = ACTIONS(2924), - [anon_sym_inout] = ACTIONS(2924), - [anon_sym_ATescaping] = ACTIONS(2924), - [anon_sym_ATautoclosure] = ACTIONS(2924), - [anon_sym_weak] = ACTIONS(2924), - [anon_sym_unowned] = ACTIONS(2926), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2924), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2924), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2924), - [sym__explicit_semi] = ACTIONS(2924), - [sym__dot_custom] = ACTIONS(2924), - [sym__conjunction_operator_custom] = ACTIONS(2924), - [sym__disjunction_operator_custom] = ACTIONS(2924), - [sym__nil_coalescing_operator_custom] = ACTIONS(2924), - [sym__eq_eq_custom] = ACTIONS(2924), - [sym__plus_then_ws] = ACTIONS(2924), - [sym__minus_then_ws] = ACTIONS(2924), - [sym_bang] = ACTIONS(2924), - [sym_default_keyword] = ACTIONS(2924), - [sym_where_keyword] = ACTIONS(2924), - [sym__as_custom] = ACTIONS(2924), - [sym__as_quest_custom] = ACTIONS(2924), - [sym__as_bang_custom] = ACTIONS(2924), - [sym__custom_operator] = ACTIONS(2924), - }, - [974] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_fallthrough] = ACTIONS(2729), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_is] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2729), - [sym__explicit_semi] = ACTIONS(2729), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(2729), - [sym__conjunction_operator_custom] = ACTIONS(2729), - [sym__disjunction_operator_custom] = ACTIONS(2729), - [sym__nil_coalescing_operator_custom] = ACTIONS(2729), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym_default_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__as_quest_custom] = ACTIONS(2729), - [sym__as_bang_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [975] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [aux_sym_custom_operator_token1] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_CARET_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_fallthrough] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_DOT_DOT_LT] = ACTIONS(2897), - [anon_sym_is] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2897), - [sym__explicit_semi] = ACTIONS(2897), - [sym__arrow_operator_custom] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__conjunction_operator_custom] = ACTIONS(2897), - [sym__disjunction_operator_custom] = ACTIONS(2897), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_eq_custom] = ACTIONS(2897), - [sym__plus_then_ws] = ACTIONS(2897), - [sym__minus_then_ws] = ACTIONS(2897), - [sym_bang] = ACTIONS(2897), - [sym__throws_keyword] = ACTIONS(2897), - [sym__rethrows_keyword] = ACTIONS(2897), - [sym_default_keyword] = ACTIONS(2897), - [sym__as_custom] = ACTIONS(2897), - [sym__as_quest_custom] = ACTIONS(2897), - [sym__as_bang_custom] = ACTIONS(2897), - [sym__async_keyword_custom] = ACTIONS(2897), - [sym__custom_operator] = ACTIONS(2897), - }, - [976] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [sym__immediate_quest] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [aux_sym_custom_operator_token1] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_CARET_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_fallthrough] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_LT] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_prefix] = ACTIONS(2885), - [anon_sym_infix] = ACTIONS(2885), - [anon_sym_postfix] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2887), - [sym_property_behavior_modifier] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_convenience] = ACTIONS(2885), - [anon_sym_required] = ACTIONS(2885), - [anon_sym_nonisolated] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_internal] = ACTIONS(2885), - [anon_sym_fileprivate] = ACTIONS(2885), - [anon_sym_open] = ACTIONS(2885), - [anon_sym_mutating] = ACTIONS(2885), - [anon_sym_nonmutating] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_dynamic] = ACTIONS(2885), - [anon_sym_optional] = ACTIONS(2885), - [anon_sym_final] = ACTIONS(2885), - [anon_sym_inout] = ACTIONS(2885), - [anon_sym_ATescaping] = ACTIONS(2885), - [anon_sym_ATautoclosure] = ACTIONS(2885), - [anon_sym_weak] = ACTIONS(2885), - [anon_sym_unowned] = ACTIONS(2887), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2885), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2885), - [sym__explicit_semi] = ACTIONS(2885), - [sym__arrow_operator_custom] = ACTIONS(2885), - [sym__dot_custom] = ACTIONS(2885), - [sym__conjunction_operator_custom] = ACTIONS(2885), - [sym__disjunction_operator_custom] = ACTIONS(2885), - [sym__nil_coalescing_operator_custom] = ACTIONS(2885), - [sym__eq_eq_custom] = ACTIONS(2885), - [sym__plus_then_ws] = ACTIONS(2885), - [sym__minus_then_ws] = ACTIONS(2885), - [sym_bang] = ACTIONS(2885), - [sym__throws_keyword] = ACTIONS(2885), - [sym__rethrows_keyword] = ACTIONS(2885), - [sym_default_keyword] = ACTIONS(2885), - [sym__as_custom] = ACTIONS(2885), - [sym__as_quest_custom] = ACTIONS(2885), - [sym__as_bang_custom] = ACTIONS(2885), - [sym__async_keyword_custom] = ACTIONS(2885), - [sym__custom_operator] = ACTIONS(2885), - }, - [977] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2676), - [aux_sym_simple_identifier_token2] = ACTIONS(2678), - [aux_sym_simple_identifier_token3] = ACTIONS(2678), - [aux_sym_simple_identifier_token4] = ACTIONS(2678), - [anon_sym_actor] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_QMARK] = ACTIONS(2676), - [sym__immediate_quest] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [aux_sym_custom_operator_token1] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2676), - [anon_sym_GT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_CARET_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2676), - [anon_sym_fallthrough] = ACTIONS(2676), - [anon_sym_BANG_EQ] = ACTIONS(2676), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2678), - [anon_sym_LT_EQ] = ACTIONS(2678), - [anon_sym_GT_EQ] = ACTIONS(2678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2678), - [anon_sym_DOT_DOT_LT] = ACTIONS(2678), - [anon_sym_is] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2676), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2676), - [anon_sym_PERCENT] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_CARET] = ACTIONS(2676), - [anon_sym_LT_LT] = ACTIONS(2678), - [anon_sym_GT_GT] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2676), - [anon_sym_prefix] = ACTIONS(2676), - [anon_sym_infix] = ACTIONS(2676), - [anon_sym_postfix] = ACTIONS(2676), - [anon_sym_AT] = ACTIONS(2676), - [sym_property_behavior_modifier] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_convenience] = ACTIONS(2676), - [anon_sym_required] = ACTIONS(2676), - [anon_sym_nonisolated] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_internal] = ACTIONS(2676), - [anon_sym_fileprivate] = ACTIONS(2676), - [anon_sym_open] = ACTIONS(2676), - [anon_sym_mutating] = ACTIONS(2676), - [anon_sym_nonmutating] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_dynamic] = ACTIONS(2676), - [anon_sym_optional] = ACTIONS(2676), - [anon_sym_final] = ACTIONS(2676), - [anon_sym_inout] = ACTIONS(2676), - [anon_sym_ATescaping] = ACTIONS(2678), - [anon_sym_ATautoclosure] = ACTIONS(2678), - [anon_sym_weak] = ACTIONS(2676), - [anon_sym_unowned] = ACTIONS(2676), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2678), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2678), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2678), - [sym__explicit_semi] = ACTIONS(2678), - [sym__dot_custom] = ACTIONS(2678), - [sym__conjunction_operator_custom] = ACTIONS(2678), - [sym__disjunction_operator_custom] = ACTIONS(2678), - [sym__nil_coalescing_operator_custom] = ACTIONS(2678), - [sym__eq_eq_custom] = ACTIONS(2678), - [sym__plus_then_ws] = ACTIONS(2678), - [sym__minus_then_ws] = ACTIONS(2678), - [sym_bang] = ACTIONS(2678), - [sym_default_keyword] = ACTIONS(2678), - [sym__as_custom] = ACTIONS(2678), - [sym__as_quest_custom] = ACTIONS(2678), - [sym__as_bang_custom] = ACTIONS(2678), - [sym__custom_operator] = ACTIONS(2678), - }, - [978] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_QMARK] = ACTIONS(2871), - [sym__immediate_quest] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [aux_sym_custom_operator_token1] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2871), - [anon_sym_GT] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_CARET_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_fallthrough] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), - [anon_sym_DOT_DOT_LT] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2871), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2871), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2871), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_prefix] = ACTIONS(2869), - [anon_sym_infix] = ACTIONS(2869), - [anon_sym_postfix] = ACTIONS(2869), - [anon_sym_AT] = ACTIONS(2871), - [sym_property_behavior_modifier] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2869), - [anon_sym_convenience] = ACTIONS(2869), - [anon_sym_required] = ACTIONS(2869), - [anon_sym_nonisolated] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_internal] = ACTIONS(2869), - [anon_sym_fileprivate] = ACTIONS(2869), - [anon_sym_open] = ACTIONS(2869), - [anon_sym_mutating] = ACTIONS(2869), - [anon_sym_nonmutating] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_dynamic] = ACTIONS(2869), - [anon_sym_optional] = ACTIONS(2869), - [anon_sym_final] = ACTIONS(2869), - [anon_sym_inout] = ACTIONS(2869), - [anon_sym_ATescaping] = ACTIONS(2869), - [anon_sym_ATautoclosure] = ACTIONS(2869), - [anon_sym_weak] = ACTIONS(2869), - [anon_sym_unowned] = ACTIONS(2871), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2869), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2869), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2869), - [sym__explicit_semi] = ACTIONS(2869), - [sym__arrow_operator_custom] = ACTIONS(2869), - [sym__dot_custom] = ACTIONS(2869), - [sym__conjunction_operator_custom] = ACTIONS(2869), - [sym__disjunction_operator_custom] = ACTIONS(2869), - [sym__nil_coalescing_operator_custom] = ACTIONS(2869), - [sym__eq_eq_custom] = ACTIONS(2869), - [sym__plus_then_ws] = ACTIONS(2869), - [sym__minus_then_ws] = ACTIONS(2869), - [sym_bang] = ACTIONS(2869), - [sym__throws_keyword] = ACTIONS(2869), - [sym__rethrows_keyword] = ACTIONS(2869), - [sym_default_keyword] = ACTIONS(2869), - [sym__as_custom] = ACTIONS(2869), - [sym__as_quest_custom] = ACTIONS(2869), - [sym__as_bang_custom] = ACTIONS(2869), - [sym__async_keyword_custom] = ACTIONS(2869), - [sym__custom_operator] = ACTIONS(2869), - }, - [979] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [sym__immediate_quest] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2889), - [aux_sym_custom_operator_token1] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_CARET_LBRACE] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_fallthrough] = ACTIONS(2889), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2889), - [anon_sym_LT_EQ] = ACTIONS(2889), - [anon_sym_GT_EQ] = ACTIONS(2889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2889), - [anon_sym_DOT_DOT_LT] = ACTIONS(2889), - [anon_sym_is] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2889), - [anon_sym_GT_GT] = ACTIONS(2889), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_prefix] = ACTIONS(2889), - [anon_sym_infix] = ACTIONS(2889), - [anon_sym_postfix] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2891), - [sym_property_behavior_modifier] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_convenience] = ACTIONS(2889), - [anon_sym_required] = ACTIONS(2889), - [anon_sym_nonisolated] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_internal] = ACTIONS(2889), - [anon_sym_fileprivate] = ACTIONS(2889), - [anon_sym_open] = ACTIONS(2889), - [anon_sym_mutating] = ACTIONS(2889), - [anon_sym_nonmutating] = ACTIONS(2889), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_dynamic] = ACTIONS(2889), - [anon_sym_optional] = ACTIONS(2889), - [anon_sym_final] = ACTIONS(2889), - [anon_sym_inout] = ACTIONS(2889), - [anon_sym_ATescaping] = ACTIONS(2889), - [anon_sym_ATautoclosure] = ACTIONS(2889), - [anon_sym_weak] = ACTIONS(2889), - [anon_sym_unowned] = ACTIONS(2891), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2889), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2889), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2889), - [sym__explicit_semi] = ACTIONS(2889), - [sym__arrow_operator_custom] = ACTIONS(2889), - [sym__dot_custom] = ACTIONS(2889), - [sym__conjunction_operator_custom] = ACTIONS(2889), - [sym__disjunction_operator_custom] = ACTIONS(2889), - [sym__nil_coalescing_operator_custom] = ACTIONS(2889), - [sym__eq_eq_custom] = ACTIONS(2889), - [sym__plus_then_ws] = ACTIONS(2889), - [sym__minus_then_ws] = ACTIONS(2889), - [sym_bang] = ACTIONS(2889), - [sym__throws_keyword] = ACTIONS(2889), - [sym__rethrows_keyword] = ACTIONS(2889), - [sym_default_keyword] = ACTIONS(2889), - [sym__as_custom] = ACTIONS(2889), - [sym__as_quest_custom] = ACTIONS(2889), - [sym__as_bang_custom] = ACTIONS(2889), - [sym__async_keyword_custom] = ACTIONS(2889), - [sym__custom_operator] = ACTIONS(2889), - }, - [980] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_QMARK] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [aux_sym_custom_operator_token1] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_fallthrough] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2855), - [sym__explicit_semi] = ACTIONS(2855), - [sym__arrow_operator_custom] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__conjunction_operator_custom] = ACTIONS(2855), - [sym__disjunction_operator_custom] = ACTIONS(2855), - [sym__nil_coalescing_operator_custom] = ACTIONS(2855), - [sym__eq_eq_custom] = ACTIONS(2855), - [sym__plus_then_ws] = ACTIONS(2855), - [sym__minus_then_ws] = ACTIONS(2855), - [sym_bang] = ACTIONS(2855), - [sym__throws_keyword] = ACTIONS(2855), - [sym__rethrows_keyword] = ACTIONS(2855), - [sym_default_keyword] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2855), - [sym__as_quest_custom] = ACTIONS(2855), - [sym__as_bang_custom] = ACTIONS(2855), - [sym__async_keyword_custom] = ACTIONS(2855), - [sym__custom_operator] = ACTIONS(2855), - }, - [981] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_QMARK] = ACTIONS(2853), - [sym__immediate_quest] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [aux_sym_custom_operator_token1] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_GT] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_CARET_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2851), - [anon_sym_fallthrough] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), - [anon_sym_DOT_DOT_LT] = ACTIONS(2851), - [anon_sym_is] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_PERCENT] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_prefix] = ACTIONS(2851), - [anon_sym_infix] = ACTIONS(2851), - [anon_sym_postfix] = ACTIONS(2851), - [anon_sym_AT] = ACTIONS(2853), - [sym_property_behavior_modifier] = ACTIONS(2851), - [anon_sym_override] = ACTIONS(2851), - [anon_sym_convenience] = ACTIONS(2851), - [anon_sym_required] = ACTIONS(2851), - [anon_sym_nonisolated] = ACTIONS(2851), - [anon_sym_public] = ACTIONS(2851), - [anon_sym_private] = ACTIONS(2851), - [anon_sym_internal] = ACTIONS(2851), - [anon_sym_fileprivate] = ACTIONS(2851), - [anon_sym_open] = ACTIONS(2851), - [anon_sym_mutating] = ACTIONS(2851), - [anon_sym_nonmutating] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2851), - [anon_sym_dynamic] = ACTIONS(2851), - [anon_sym_optional] = ACTIONS(2851), - [anon_sym_final] = ACTIONS(2851), - [anon_sym_inout] = ACTIONS(2851), - [anon_sym_ATescaping] = ACTIONS(2851), - [anon_sym_ATautoclosure] = ACTIONS(2851), - [anon_sym_weak] = ACTIONS(2851), - [anon_sym_unowned] = ACTIONS(2853), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2851), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2851), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2851), - [sym__explicit_semi] = ACTIONS(2851), - [sym__arrow_operator_custom] = ACTIONS(2851), - [sym__dot_custom] = ACTIONS(2851), - [sym__conjunction_operator_custom] = ACTIONS(2851), - [sym__disjunction_operator_custom] = ACTIONS(2851), - [sym__nil_coalescing_operator_custom] = ACTIONS(2851), - [sym__eq_eq_custom] = ACTIONS(2851), - [sym__plus_then_ws] = ACTIONS(2851), - [sym__minus_then_ws] = ACTIONS(2851), - [sym_bang] = ACTIONS(2851), - [sym__throws_keyword] = ACTIONS(2851), - [sym__rethrows_keyword] = ACTIONS(2851), - [sym_default_keyword] = ACTIONS(2851), - [sym__as_custom] = ACTIONS(2851), - [sym__as_quest_custom] = ACTIONS(2851), - [sym__as_bang_custom] = ACTIONS(2851), - [sym__async_keyword_custom] = ACTIONS(2851), - [sym__custom_operator] = ACTIONS(2851), - }, - [982] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2879), - [anon_sym_QMARK] = ACTIONS(2879), - [sym__immediate_quest] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [aux_sym_custom_operator_token1] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2879), - [anon_sym_GT] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_CARET_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_fallthrough] = ACTIONS(2877), - [anon_sym_BANG_EQ] = ACTIONS(2879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2877), - [anon_sym_LT_EQ] = ACTIONS(2877), - [anon_sym_GT_EQ] = ACTIONS(2877), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2877), - [anon_sym_DOT_DOT_LT] = ACTIONS(2877), - [anon_sym_is] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_STAR] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2879), - [anon_sym_PERCENT] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2877), - [anon_sym_DASH_DASH] = ACTIONS(2877), - [anon_sym_PIPE] = ACTIONS(2877), - [anon_sym_CARET] = ACTIONS(2879), - [anon_sym_LT_LT] = ACTIONS(2877), - [anon_sym_GT_GT] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_prefix] = ACTIONS(2877), - [anon_sym_infix] = ACTIONS(2877), - [anon_sym_postfix] = ACTIONS(2877), - [anon_sym_AT] = ACTIONS(2879), - [sym_property_behavior_modifier] = ACTIONS(2877), - [anon_sym_override] = ACTIONS(2877), - [anon_sym_convenience] = ACTIONS(2877), - [anon_sym_required] = ACTIONS(2877), - [anon_sym_nonisolated] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_internal] = ACTIONS(2877), - [anon_sym_fileprivate] = ACTIONS(2877), - [anon_sym_open] = ACTIONS(2877), - [anon_sym_mutating] = ACTIONS(2877), - [anon_sym_nonmutating] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_dynamic] = ACTIONS(2877), - [anon_sym_optional] = ACTIONS(2877), - [anon_sym_final] = ACTIONS(2877), - [anon_sym_inout] = ACTIONS(2877), - [anon_sym_ATescaping] = ACTIONS(2877), - [anon_sym_ATautoclosure] = ACTIONS(2877), - [anon_sym_weak] = ACTIONS(2877), - [anon_sym_unowned] = ACTIONS(2879), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2877), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2877), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2877), - [sym__explicit_semi] = ACTIONS(2877), - [sym__arrow_operator_custom] = ACTIONS(2877), - [sym__dot_custom] = ACTIONS(2877), - [sym__conjunction_operator_custom] = ACTIONS(2877), - [sym__disjunction_operator_custom] = ACTIONS(2877), - [sym__nil_coalescing_operator_custom] = ACTIONS(2877), - [sym__eq_eq_custom] = ACTIONS(2877), - [sym__plus_then_ws] = ACTIONS(2877), - [sym__minus_then_ws] = ACTIONS(2877), - [sym_bang] = ACTIONS(2877), - [sym__throws_keyword] = ACTIONS(2877), - [sym__rethrows_keyword] = ACTIONS(2877), - [sym_default_keyword] = ACTIONS(2877), - [sym__as_custom] = ACTIONS(2877), - [sym__as_quest_custom] = ACTIONS(2877), - [sym__as_bang_custom] = ACTIONS(2877), - [sym__async_keyword_custom] = ACTIONS(2877), - [sym__custom_operator] = ACTIONS(2877), - }, - [983] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3489), - [aux_sym_simple_identifier_token2] = ACTIONS(3491), - [aux_sym_simple_identifier_token3] = ACTIONS(3491), - [aux_sym_simple_identifier_token4] = ACTIONS(3491), - [anon_sym_actor] = ACTIONS(3489), - [anon_sym_nil] = ACTIONS(3489), - [sym_real_literal] = ACTIONS(3491), - [sym_integer_literal] = ACTIONS(3489), - [sym_hex_literal] = ACTIONS(3491), - [sym_oct_literal] = ACTIONS(3491), - [sym_bin_literal] = ACTIONS(3491), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [anon_sym_BSLASH] = ACTIONS(3491), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3491), - [sym__extended_regex_literal] = ACTIONS(3491), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(3491), - [sym__oneline_regex_literal] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_async] = ACTIONS(3489), - [anon_sym_POUNDselector] = ACTIONS(3491), - [aux_sym_custom_operator_token1] = ACTIONS(3491), - [anon_sym_LT] = ACTIONS(3489), - [anon_sym_GT] = ACTIONS(3489), - [anon_sym_await] = ACTIONS(3489), - [anon_sym_POUNDfile] = ACTIONS(3489), - [anon_sym_POUNDfileID] = ACTIONS(3491), - [anon_sym_POUNDfilePath] = ACTIONS(3491), - [anon_sym_POUNDline] = ACTIONS(3491), - [anon_sym_POUNDcolumn] = ACTIONS(3491), - [anon_sym_POUNDfunction] = ACTIONS(3491), - [anon_sym_POUNDdsohandle] = ACTIONS(3491), - [anon_sym_POUNDcolorLiteral] = ACTIONS(3491), - [anon_sym_POUNDfileLiteral] = ACTIONS(3491), - [anon_sym_POUNDimageLiteral] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3491), - [anon_sym_CARET_LBRACE] = ACTIONS(3491), - [anon_sym_self] = ACTIONS(3489), - [anon_sym_super] = ACTIONS(3489), - [anon_sym_POUNDkeyPath] = ACTIONS(3491), - [anon_sym_try] = ACTIONS(3489), - [anon_sym_try_BANG] = ACTIONS(3491), - [anon_sym_try_QMARK] = ACTIONS(3491), - [anon_sym_PLUS_EQ] = ACTIONS(3491), - [anon_sym_DASH_EQ] = ACTIONS(3491), - [anon_sym_STAR_EQ] = ACTIONS(3491), - [anon_sym_SLASH_EQ] = ACTIONS(3491), - [anon_sym_PERCENT_EQ] = ACTIONS(3491), - [anon_sym_EQ] = ACTIONS(3489), - [anon_sym_BANG_EQ] = ACTIONS(3489), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3491), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3491), - [anon_sym_LT_EQ] = ACTIONS(3491), - [anon_sym_GT_EQ] = ACTIONS(3491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3491), - [anon_sym_DOT_DOT_LT] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_SLASH] = ACTIONS(3489), - [anon_sym_PERCENT] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3491), - [anon_sym_DASH_DASH] = ACTIONS(3491), - [anon_sym_TILDE] = ACTIONS(3491), - [anon_sym_PIPE] = ACTIONS(3491), - [anon_sym_CARET] = ACTIONS(3489), - [anon_sym_LT_LT] = ACTIONS(3491), - [anon_sym_GT_GT] = ACTIONS(3491), - [anon_sym_AT] = ACTIONS(3491), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3491), - [sym_raw_str_end_part] = ACTIONS(3491), - [sym__dot_custom] = ACTIONS(3491), - [sym__eq_eq_custom] = ACTIONS(3491), - [sym__plus_then_ws] = ACTIONS(3491), - [sym__minus_then_ws] = ACTIONS(3491), - [sym_bang] = ACTIONS(3491), - [sym__custom_operator] = ACTIONS(3491), - }, - [984] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2781), - [aux_sym_simple_identifier_token2] = ACTIONS(2779), - [aux_sym_simple_identifier_token3] = ACTIONS(2779), - [aux_sym_simple_identifier_token4] = ACTIONS(2779), - [anon_sym_actor] = ACTIONS(2781), - [anon_sym_nil] = ACTIONS(2781), - [sym_real_literal] = ACTIONS(2779), - [sym_integer_literal] = ACTIONS(2781), - [sym_hex_literal] = ACTIONS(2779), - [sym_oct_literal] = ACTIONS(2779), - [sym_bin_literal] = ACTIONS(2779), - [anon_sym_true] = ACTIONS(2781), - [anon_sym_false] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2781), - [anon_sym_BSLASH] = ACTIONS(2779), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2779), - [sym__extended_regex_literal] = ACTIONS(2779), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2779), - [sym__oneline_regex_literal] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2781), - [anon_sym_POUNDselector] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_await] = ACTIONS(2781), - [anon_sym_POUNDfile] = ACTIONS(2781), - [anon_sym_POUNDfileID] = ACTIONS(2779), - [anon_sym_POUNDfilePath] = ACTIONS(2779), - [anon_sym_POUNDline] = ACTIONS(2779), - [anon_sym_POUNDcolumn] = ACTIONS(2779), - [anon_sym_POUNDfunction] = ACTIONS(2779), - [anon_sym_POUNDdsohandle] = ACTIONS(2779), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2779), - [anon_sym_POUNDfileLiteral] = ACTIONS(2779), - [anon_sym_POUNDimageLiteral] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_self] = ACTIONS(2781), - [anon_sym_super] = ACTIONS(2781), - [anon_sym_POUNDkeyPath] = ACTIONS(2779), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_try_BANG] = ACTIONS(2779), - [anon_sym_try_QMARK] = ACTIONS(2779), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2779), - [sym_raw_str_end_part] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [985] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2731), - [aux_sym_simple_identifier_token2] = ACTIONS(2729), - [aux_sym_simple_identifier_token3] = ACTIONS(2729), - [aux_sym_simple_identifier_token4] = ACTIONS(2729), - [anon_sym_actor] = ACTIONS(2731), - [anon_sym_nil] = ACTIONS(2731), - [sym_real_literal] = ACTIONS(2729), - [sym_integer_literal] = ACTIONS(2731), - [sym_hex_literal] = ACTIONS(2729), - [sym_oct_literal] = ACTIONS(2729), - [sym_bin_literal] = ACTIONS(2729), - [anon_sym_true] = ACTIONS(2731), - [anon_sym_false] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [anon_sym_BSLASH] = ACTIONS(2729), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2729), - [sym__extended_regex_literal] = ACTIONS(2729), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2729), - [sym__oneline_regex_literal] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2731), - [anon_sym_POUNDselector] = ACTIONS(2729), - [aux_sym_custom_operator_token1] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2731), - [anon_sym_GT] = ACTIONS(2731), - [anon_sym_await] = ACTIONS(2731), - [anon_sym_POUNDfile] = ACTIONS(2731), - [anon_sym_POUNDfileID] = ACTIONS(2729), - [anon_sym_POUNDfilePath] = ACTIONS(2729), - [anon_sym_POUNDline] = ACTIONS(2729), - [anon_sym_POUNDcolumn] = ACTIONS(2729), - [anon_sym_POUNDfunction] = ACTIONS(2729), - [anon_sym_POUNDdsohandle] = ACTIONS(2729), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2729), - [anon_sym_POUNDfileLiteral] = ACTIONS(2729), - [anon_sym_POUNDimageLiteral] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_CARET_LBRACE] = ACTIONS(2729), - [anon_sym_self] = ACTIONS(2731), - [anon_sym_super] = ACTIONS(2731), - [anon_sym_POUNDkeyPath] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_try_BANG] = ACTIONS(2729), - [anon_sym_try_QMARK] = ACTIONS(2729), - [anon_sym_PLUS_EQ] = ACTIONS(2729), - [anon_sym_DASH_EQ] = ACTIONS(2729), - [anon_sym_STAR_EQ] = ACTIONS(2729), - [anon_sym_SLASH_EQ] = ACTIONS(2729), - [anon_sym_PERCENT_EQ] = ACTIONS(2729), - [anon_sym_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ] = ACTIONS(2731), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), - [anon_sym_LT_EQ] = ACTIONS(2729), - [anon_sym_GT_EQ] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_DOT_DOT_LT] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_SLASH] = ACTIONS(2731), - [anon_sym_PERCENT] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_CARET] = ACTIONS(2731), - [anon_sym_LT_LT] = ACTIONS(2729), - [anon_sym_GT_GT] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2729), - [sym_raw_str_end_part] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(2729), - [sym__eq_eq_custom] = ACTIONS(2729), - [sym__plus_then_ws] = ACTIONS(2729), - [sym__minus_then_ws] = ACTIONS(2729), - [sym_bang] = ACTIONS(2729), - [sym__custom_operator] = ACTIONS(2729), - }, - [986] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2875), - [aux_sym_simple_identifier_token2] = ACTIONS(2873), - [aux_sym_simple_identifier_token3] = ACTIONS(2873), - [aux_sym_simple_identifier_token4] = ACTIONS(2873), - [anon_sym_actor] = ACTIONS(2875), - [anon_sym_nil] = ACTIONS(2875), - [sym_real_literal] = ACTIONS(2873), - [sym_integer_literal] = ACTIONS(2875), - [sym_hex_literal] = ACTIONS(2873), - [sym_oct_literal] = ACTIONS(2873), - [sym_bin_literal] = ACTIONS(2873), - [anon_sym_true] = ACTIONS(2875), - [anon_sym_false] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_BSLASH] = ACTIONS(2873), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2873), - [sym__extended_regex_literal] = ACTIONS(2873), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2873), - [sym__oneline_regex_literal] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2875), - [anon_sym_POUNDselector] = ACTIONS(2873), - [aux_sym_custom_operator_token1] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_await] = ACTIONS(2875), - [anon_sym_POUNDfile] = ACTIONS(2875), - [anon_sym_POUNDfileID] = ACTIONS(2873), - [anon_sym_POUNDfilePath] = ACTIONS(2873), - [anon_sym_POUNDline] = ACTIONS(2873), - [anon_sym_POUNDcolumn] = ACTIONS(2873), - [anon_sym_POUNDfunction] = ACTIONS(2873), - [anon_sym_POUNDdsohandle] = ACTIONS(2873), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2873), - [anon_sym_POUNDfileLiteral] = ACTIONS(2873), - [anon_sym_POUNDimageLiteral] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_CARET_LBRACE] = ACTIONS(2873), - [anon_sym_self] = ACTIONS(2875), - [anon_sym_super] = ACTIONS(2875), - [anon_sym_POUNDkeyPath] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2875), - [anon_sym_try_BANG] = ACTIONS(2873), - [anon_sym_try_QMARK] = ACTIONS(2873), - [anon_sym_PLUS_EQ] = ACTIONS(2873), - [anon_sym_DASH_EQ] = ACTIONS(2873), - [anon_sym_STAR_EQ] = ACTIONS(2873), - [anon_sym_SLASH_EQ] = ACTIONS(2873), - [anon_sym_PERCENT_EQ] = ACTIONS(2873), - [anon_sym_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_DOT_DOT_LT] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2875), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2873), - [sym_raw_str_end_part] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2873), - [sym__minus_then_ws] = ACTIONS(2873), - [sym_bang] = ACTIONS(2873), - [sym__custom_operator] = ACTIONS(2873), - }, - [987] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2857), - [aux_sym_simple_identifier_token2] = ACTIONS(2855), - [aux_sym_simple_identifier_token3] = ACTIONS(2855), - [aux_sym_simple_identifier_token4] = ACTIONS(2855), - [anon_sym_actor] = ACTIONS(2857), - [anon_sym_nil] = ACTIONS(2857), - [sym_real_literal] = ACTIONS(2855), - [sym_integer_literal] = ACTIONS(2857), - [sym_hex_literal] = ACTIONS(2855), - [sym_oct_literal] = ACTIONS(2855), - [sym_bin_literal] = ACTIONS(2855), - [anon_sym_true] = ACTIONS(2857), - [anon_sym_false] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [anon_sym_BSLASH] = ACTIONS(2855), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2855), - [sym__extended_regex_literal] = ACTIONS(2855), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2855), - [sym__oneline_regex_literal] = ACTIONS(2857), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_POUNDselector] = ACTIONS(2855), - [aux_sym_custom_operator_token1] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_await] = ACTIONS(2857), - [anon_sym_POUNDfile] = ACTIONS(2857), - [anon_sym_POUNDfileID] = ACTIONS(2855), - [anon_sym_POUNDfilePath] = ACTIONS(2855), - [anon_sym_POUNDline] = ACTIONS(2855), - [anon_sym_POUNDcolumn] = ACTIONS(2855), - [anon_sym_POUNDfunction] = ACTIONS(2855), - [anon_sym_POUNDdsohandle] = ACTIONS(2855), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2855), - [anon_sym_POUNDfileLiteral] = ACTIONS(2855), - [anon_sym_POUNDimageLiteral] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(2855), - [anon_sym_self] = ACTIONS(2857), - [anon_sym_super] = ACTIONS(2857), - [anon_sym_POUNDkeyPath] = ACTIONS(2855), - [anon_sym_try] = ACTIONS(2857), - [anon_sym_try_BANG] = ACTIONS(2855), - [anon_sym_try_QMARK] = ACTIONS(2855), - [anon_sym_PLUS_EQ] = ACTIONS(2855), - [anon_sym_DASH_EQ] = ACTIONS(2855), - [anon_sym_STAR_EQ] = ACTIONS(2855), - [anon_sym_SLASH_EQ] = ACTIONS(2855), - [anon_sym_PERCENT_EQ] = ACTIONS(2855), - [anon_sym_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2857), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_PERCENT] = ACTIONS(2857), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2855), - [sym_raw_str_end_part] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__eq_eq_custom] = ACTIONS(2855), - [sym__plus_then_ws] = ACTIONS(2855), - [sym__minus_then_ws] = ACTIONS(2855), - [sym_bang] = ACTIONS(2855), - [sym__custom_operator] = ACTIONS(2855), - }, - [988] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3493), - [aux_sym_simple_identifier_token2] = ACTIONS(3495), - [aux_sym_simple_identifier_token3] = ACTIONS(3495), - [aux_sym_simple_identifier_token4] = ACTIONS(3495), - [anon_sym_actor] = ACTIONS(3493), - [anon_sym_nil] = ACTIONS(3493), - [sym_real_literal] = ACTIONS(3495), - [sym_integer_literal] = ACTIONS(3493), - [sym_hex_literal] = ACTIONS(3495), - [sym_oct_literal] = ACTIONS(3495), - [sym_bin_literal] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3493), - [anon_sym_false] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_BSLASH] = ACTIONS(3495), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3495), - [sym__extended_regex_literal] = ACTIONS(3495), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(3495), - [sym__oneline_regex_literal] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_async] = ACTIONS(3493), - [anon_sym_POUNDselector] = ACTIONS(3495), - [aux_sym_custom_operator_token1] = ACTIONS(3495), - [anon_sym_LT] = ACTIONS(3493), - [anon_sym_GT] = ACTIONS(3493), - [anon_sym_await] = ACTIONS(3493), - [anon_sym_POUNDfile] = ACTIONS(3493), - [anon_sym_POUNDfileID] = ACTIONS(3495), - [anon_sym_POUNDfilePath] = ACTIONS(3495), - [anon_sym_POUNDline] = ACTIONS(3495), - [anon_sym_POUNDcolumn] = ACTIONS(3495), - [anon_sym_POUNDfunction] = ACTIONS(3495), - [anon_sym_POUNDdsohandle] = ACTIONS(3495), - [anon_sym_POUNDcolorLiteral] = ACTIONS(3495), - [anon_sym_POUNDfileLiteral] = ACTIONS(3495), - [anon_sym_POUNDimageLiteral] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3495), - [anon_sym_CARET_LBRACE] = ACTIONS(3495), - [anon_sym_self] = ACTIONS(3493), - [anon_sym_super] = ACTIONS(3493), - [anon_sym_POUNDkeyPath] = ACTIONS(3495), - [anon_sym_try] = ACTIONS(3493), - [anon_sym_try_BANG] = ACTIONS(3495), - [anon_sym_try_QMARK] = ACTIONS(3495), - [anon_sym_PLUS_EQ] = ACTIONS(3495), - [anon_sym_DASH_EQ] = ACTIONS(3495), - [anon_sym_STAR_EQ] = ACTIONS(3495), - [anon_sym_SLASH_EQ] = ACTIONS(3495), - [anon_sym_PERCENT_EQ] = ACTIONS(3495), - [anon_sym_EQ] = ACTIONS(3493), - [anon_sym_BANG_EQ] = ACTIONS(3493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3495), - [anon_sym_LT_EQ] = ACTIONS(3495), - [anon_sym_GT_EQ] = ACTIONS(3495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), - [anon_sym_DOT_DOT_LT] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_SLASH] = ACTIONS(3493), - [anon_sym_PERCENT] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3495), - [anon_sym_DASH_DASH] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(3495), - [anon_sym_CARET] = ACTIONS(3493), - [anon_sym_LT_LT] = ACTIONS(3495), - [anon_sym_GT_GT] = ACTIONS(3495), - [anon_sym_AT] = ACTIONS(3495), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3495), - [sym_raw_str_end_part] = ACTIONS(3495), - [sym__dot_custom] = ACTIONS(3495), - [sym__eq_eq_custom] = ACTIONS(3495), - [sym__plus_then_ws] = ACTIONS(3495), - [sym__minus_then_ws] = ACTIONS(3495), - [sym_bang] = ACTIONS(3495), - [sym__custom_operator] = ACTIONS(3495), - }, - [989] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2899), - [aux_sym_simple_identifier_token2] = ACTIONS(2897), - [aux_sym_simple_identifier_token3] = ACTIONS(2897), - [aux_sym_simple_identifier_token4] = ACTIONS(2897), - [anon_sym_actor] = ACTIONS(2899), - [anon_sym_nil] = ACTIONS(2899), - [sym_real_literal] = ACTIONS(2897), - [sym_integer_literal] = ACTIONS(2899), - [sym_hex_literal] = ACTIONS(2897), - [sym_oct_literal] = ACTIONS(2897), - [sym_bin_literal] = ACTIONS(2897), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_BSLASH] = ACTIONS(2897), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2897), - [sym__extended_regex_literal] = ACTIONS(2897), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2897), - [sym__oneline_regex_literal] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2899), - [anon_sym_POUNDselector] = ACTIONS(2897), - [aux_sym_custom_operator_token1] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_await] = ACTIONS(2899), - [anon_sym_POUNDfile] = ACTIONS(2899), - [anon_sym_POUNDfileID] = ACTIONS(2897), - [anon_sym_POUNDfilePath] = ACTIONS(2897), - [anon_sym_POUNDline] = ACTIONS(2897), - [anon_sym_POUNDcolumn] = ACTIONS(2897), - [anon_sym_POUNDfunction] = ACTIONS(2897), - [anon_sym_POUNDdsohandle] = ACTIONS(2897), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2897), - [anon_sym_POUNDfileLiteral] = ACTIONS(2897), - [anon_sym_POUNDimageLiteral] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_CARET_LBRACE] = ACTIONS(2897), - [anon_sym_self] = ACTIONS(2899), - [anon_sym_super] = ACTIONS(2899), - [anon_sym_POUNDkeyPath] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2899), - [anon_sym_try_BANG] = ACTIONS(2897), - [anon_sym_try_QMARK] = ACTIONS(2897), - [anon_sym_PLUS_EQ] = ACTIONS(2897), - [anon_sym_DASH_EQ] = ACTIONS(2897), - [anon_sym_STAR_EQ] = ACTIONS(2897), - [anon_sym_SLASH_EQ] = ACTIONS(2897), - [anon_sym_PERCENT_EQ] = ACTIONS(2897), - [anon_sym_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_DOT_DOT_LT] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_TILDE] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2897), - [sym_raw_str_end_part] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__eq_eq_custom] = ACTIONS(2897), - [sym__plus_then_ws] = ACTIONS(2897), - [sym__minus_then_ws] = ACTIONS(2897), - [sym_bang] = ACTIONS(2897), - [sym__custom_operator] = ACTIONS(2897), - }, - [990] = { - [sym__key_path_postfixes] = STATE(994), - [aux_sym__key_path_component_repeat1] = STATE(994), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [sym__immediate_quest] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [aux_sym_custom_operator_token1] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_CARET_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_self] = ACTIONS(3500), - [anon_sym_case] = ACTIONS(2924), - [anon_sym_fallthrough] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_LT] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_prefix] = ACTIONS(2924), - [anon_sym_infix] = ACTIONS(2924), - [anon_sym_postfix] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2926), - [sym_property_behavior_modifier] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_convenience] = ACTIONS(2924), - [anon_sym_required] = ACTIONS(2924), - [anon_sym_nonisolated] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_internal] = ACTIONS(2924), - [anon_sym_fileprivate] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_mutating] = ACTIONS(2924), - [anon_sym_nonmutating] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_dynamic] = ACTIONS(2924), - [anon_sym_optional] = ACTIONS(2924), - [anon_sym_final] = ACTIONS(2924), - [anon_sym_inout] = ACTIONS(2924), - [anon_sym_ATescaping] = ACTIONS(2924), - [anon_sym_ATautoclosure] = ACTIONS(2924), - [anon_sym_weak] = ACTIONS(2924), - [anon_sym_unowned] = ACTIONS(2926), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2924), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2924), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2924), - [sym__explicit_semi] = ACTIONS(2924), - [sym__dot_custom] = ACTIONS(2924), - [sym__conjunction_operator_custom] = ACTIONS(2924), - [sym__disjunction_operator_custom] = ACTIONS(2924), - [sym__nil_coalescing_operator_custom] = ACTIONS(2924), - [sym__eq_eq_custom] = ACTIONS(2924), - [sym__plus_then_ws] = ACTIONS(2924), - [sym__minus_then_ws] = ACTIONS(2924), - [sym_bang] = ACTIONS(2924), - [sym_default_keyword] = ACTIONS(2924), - [sym__as_custom] = ACTIONS(2924), - [sym__as_quest_custom] = ACTIONS(2924), - [sym__as_bang_custom] = ACTIONS(2924), - [sym__custom_operator] = ACTIONS(2924), - }, - [991] = { - [sym_simple_identifier] = STATE(4394), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3502), - [aux_sym_simple_identifier_token2] = ACTIONS(3504), - [aux_sym_simple_identifier_token3] = ACTIONS(3504), - [aux_sym_simple_identifier_token4] = ACTIONS(3504), - [anon_sym_actor] = ACTIONS(3502), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2323), - [anon_sym_GT] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_CARET_LBRACE] = ACTIONS(2325), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(2325), - [anon_sym_GT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2323), - [anon_sym_SLASH] = ACTIONS(2323), - [anon_sym_PERCENT] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2325), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_GT_GT] = ACTIONS(2325), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2325), - [sym__eq_eq_custom] = ACTIONS(2325), - [sym__plus_then_ws] = ACTIONS(2325), - [sym__minus_then_ws] = ACTIONS(2325), - [sym_bang] = ACTIONS(2325), - [sym__custom_operator] = ACTIONS(2325), - }, - [992] = { - [sym__key_path_postfixes] = STATE(992), - [aux_sym__key_path_component_repeat1] = STATE(992), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_DOT] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(3509), - [sym__immediate_quest] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [aux_sym_custom_operator_token1] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_GT] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_CARET_LBRACE] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_self] = ACTIONS(3512), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_fallthrough] = ACTIONS(2905), - [anon_sym_BANG_EQ] = ACTIONS(2910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2905), - [anon_sym_LT_EQ] = ACTIONS(2905), - [anon_sym_GT_EQ] = ACTIONS(2905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2905), - [anon_sym_DOT_DOT_LT] = ACTIONS(2905), - [anon_sym_is] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_PERCENT] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_CARET] = ACTIONS(2910), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_prefix] = ACTIONS(2905), - [anon_sym_infix] = ACTIONS(2905), - [anon_sym_postfix] = ACTIONS(2905), - [anon_sym_AT] = ACTIONS(2910), - [sym_property_behavior_modifier] = ACTIONS(2905), - [anon_sym_override] = ACTIONS(2905), - [anon_sym_convenience] = ACTIONS(2905), - [anon_sym_required] = ACTIONS(2905), - [anon_sym_nonisolated] = ACTIONS(2905), - [anon_sym_public] = ACTIONS(2905), - [anon_sym_private] = ACTIONS(2905), - [anon_sym_internal] = ACTIONS(2905), - [anon_sym_fileprivate] = ACTIONS(2905), - [anon_sym_open] = ACTIONS(2905), - [anon_sym_mutating] = ACTIONS(2905), - [anon_sym_nonmutating] = ACTIONS(2905), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_dynamic] = ACTIONS(2905), - [anon_sym_optional] = ACTIONS(2905), - [anon_sym_final] = ACTIONS(2905), - [anon_sym_inout] = ACTIONS(2905), - [anon_sym_ATescaping] = ACTIONS(2905), - [anon_sym_ATautoclosure] = ACTIONS(2905), - [anon_sym_weak] = ACTIONS(2905), - [anon_sym_unowned] = ACTIONS(2910), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2905), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2905), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2905), - [sym__explicit_semi] = ACTIONS(2905), - [sym__dot_custom] = ACTIONS(2905), - [sym__conjunction_operator_custom] = ACTIONS(2905), - [sym__disjunction_operator_custom] = ACTIONS(2905), - [sym__nil_coalescing_operator_custom] = ACTIONS(2905), - [sym__eq_eq_custom] = ACTIONS(2905), - [sym__plus_then_ws] = ACTIONS(2905), - [sym__minus_then_ws] = ACTIONS(2905), - [sym_bang] = ACTIONS(3512), - [sym_default_keyword] = ACTIONS(2905), - [sym__as_custom] = ACTIONS(2905), - [sym__as_quest_custom] = ACTIONS(2905), - [sym__as_bang_custom] = ACTIONS(2905), - [sym__custom_operator] = ACTIONS(2905), - }, - [993] = { - [sym_simple_identifier] = STATE(4456), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3515), - [aux_sym_simple_identifier_token2] = ACTIONS(3517), - [aux_sym_simple_identifier_token3] = ACTIONS(3517), - [aux_sym_simple_identifier_token4] = ACTIONS(3517), - [anon_sym_actor] = ACTIONS(3515), - [anon_sym_nil] = ACTIONS(2323), - [sym_real_literal] = ACTIONS(2325), - [sym_integer_literal] = ACTIONS(2323), - [sym_hex_literal] = ACTIONS(2325), - [sym_oct_literal] = ACTIONS(2325), - [sym_bin_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(2323), - [anon_sym_BSLASH] = ACTIONS(2325), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2325), - [sym__extended_regex_literal] = ACTIONS(2325), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2325), - [sym__oneline_regex_literal] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_POUNDselector] = ACTIONS(2325), - [aux_sym_custom_operator_token1] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2323), - [anon_sym_GT] = ACTIONS(2323), - [anon_sym_await] = ACTIONS(2323), - [anon_sym_POUNDfile] = ACTIONS(2323), - [anon_sym_POUNDfileID] = ACTIONS(2325), - [anon_sym_POUNDfilePath] = ACTIONS(2325), - [anon_sym_POUNDline] = ACTIONS(2325), - [anon_sym_POUNDcolumn] = ACTIONS(2325), - [anon_sym_POUNDfunction] = ACTIONS(2325), - [anon_sym_POUNDdsohandle] = ACTIONS(2325), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2325), - [anon_sym_POUNDfileLiteral] = ACTIONS(2325), - [anon_sym_POUNDimageLiteral] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_CARET_LBRACE] = ACTIONS(2325), - [anon_sym_self] = ACTIONS(2323), - [anon_sym_super] = ACTIONS(2323), - [anon_sym_POUNDkeyPath] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_try_BANG] = ACTIONS(2325), - [anon_sym_try_QMARK] = ACTIONS(2325), - [anon_sym_PLUS_EQ] = ACTIONS(2325), - [anon_sym_DASH_EQ] = ACTIONS(2325), - [anon_sym_STAR_EQ] = ACTIONS(2325), - [anon_sym_SLASH_EQ] = ACTIONS(2325), - [anon_sym_PERCENT_EQ] = ACTIONS(2325), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ] = ACTIONS(2323), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2325), - [anon_sym_LT_EQ] = ACTIONS(2325), - [anon_sym_GT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [anon_sym_PLUS] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2323), - [anon_sym_SLASH] = ACTIONS(2323), - [anon_sym_PERCENT] = ACTIONS(2323), - [anon_sym_PLUS_PLUS] = ACTIONS(2325), - [anon_sym_DASH_DASH] = ACTIONS(2325), - [anon_sym_TILDE] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_CARET] = ACTIONS(2323), - [anon_sym_LT_LT] = ACTIONS(2325), - [anon_sym_GT_GT] = ACTIONS(2325), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2325), - [sym_raw_str_end_part] = ACTIONS(2325), - [sym__dot_custom] = ACTIONS(2325), - [sym__eq_eq_custom] = ACTIONS(2325), - [sym__plus_then_ws] = ACTIONS(2325), - [sym__minus_then_ws] = ACTIONS(2325), - [sym_bang] = ACTIONS(2325), - [sym__custom_operator] = ACTIONS(2325), - }, - [994] = { - [sym__key_path_postfixes] = STATE(992), - [aux_sym__key_path_component_repeat1] = STATE(992), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_DOT] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2920), - [sym__immediate_quest] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), - [aux_sym_custom_operator_token1] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2918), - [anon_sym_CARET_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_self] = ACTIONS(3519), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_fallthrough] = ACTIONS(2918), - [anon_sym_BANG_EQ] = ACTIONS(2920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2918), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2918), - [anon_sym_LT_EQ] = ACTIONS(2918), - [anon_sym_GT_EQ] = ACTIONS(2918), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_LT] = ACTIONS(2918), - [anon_sym_is] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_PERCENT] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), - [anon_sym_CARET] = ACTIONS(2920), - [anon_sym_LT_LT] = ACTIONS(2918), - [anon_sym_GT_GT] = ACTIONS(2918), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_prefix] = ACTIONS(2918), - [anon_sym_infix] = ACTIONS(2918), - [anon_sym_postfix] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2920), - [sym_property_behavior_modifier] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_convenience] = ACTIONS(2918), - [anon_sym_required] = ACTIONS(2918), - [anon_sym_nonisolated] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_internal] = ACTIONS(2918), - [anon_sym_fileprivate] = ACTIONS(2918), - [anon_sym_open] = ACTIONS(2918), - [anon_sym_mutating] = ACTIONS(2918), - [anon_sym_nonmutating] = ACTIONS(2918), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_dynamic] = ACTIONS(2918), - [anon_sym_optional] = ACTIONS(2918), - [anon_sym_final] = ACTIONS(2918), - [anon_sym_inout] = ACTIONS(2918), - [anon_sym_ATescaping] = ACTIONS(2918), - [anon_sym_ATautoclosure] = ACTIONS(2918), - [anon_sym_weak] = ACTIONS(2918), - [anon_sym_unowned] = ACTIONS(2920), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2918), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2918), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2918), - [sym__explicit_semi] = ACTIONS(2918), - [sym__dot_custom] = ACTIONS(2918), - [sym__conjunction_operator_custom] = ACTIONS(2918), - [sym__disjunction_operator_custom] = ACTIONS(2918), - [sym__nil_coalescing_operator_custom] = ACTIONS(2918), - [sym__eq_eq_custom] = ACTIONS(2918), - [sym__plus_then_ws] = ACTIONS(2918), - [sym__minus_then_ws] = ACTIONS(2918), - [sym_bang] = ACTIONS(2918), - [sym_default_keyword] = ACTIONS(2918), - [sym__as_custom] = ACTIONS(2918), - [sym__as_quest_custom] = ACTIONS(2918), - [sym__as_bang_custom] = ACTIONS(2918), - [sym__custom_operator] = ACTIONS(2918), - }, - [995] = { - [sym__key_path_postfixes] = STATE(992), - [aux_sym__key_path_component_repeat1] = STATE(992), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2924), - [anon_sym_DOT] = ACTIONS(2926), - [anon_sym_QMARK] = ACTIONS(2926), - [sym__immediate_quest] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2924), - [aux_sym_custom_operator_token1] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_CARET_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_self] = ACTIONS(3519), - [anon_sym_case] = ACTIONS(2924), - [anon_sym_fallthrough] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_DOT_DOT_LT] = ACTIONS(2924), - [anon_sym_is] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2924), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2924), - [anon_sym_GT_GT] = ACTIONS(2924), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_prefix] = ACTIONS(2924), - [anon_sym_infix] = ACTIONS(2924), - [anon_sym_postfix] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2926), - [sym_property_behavior_modifier] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_convenience] = ACTIONS(2924), - [anon_sym_required] = ACTIONS(2924), - [anon_sym_nonisolated] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_internal] = ACTIONS(2924), - [anon_sym_fileprivate] = ACTIONS(2924), - [anon_sym_open] = ACTIONS(2924), - [anon_sym_mutating] = ACTIONS(2924), - [anon_sym_nonmutating] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_dynamic] = ACTIONS(2924), - [anon_sym_optional] = ACTIONS(2924), - [anon_sym_final] = ACTIONS(2924), - [anon_sym_inout] = ACTIONS(2924), - [anon_sym_ATescaping] = ACTIONS(2924), - [anon_sym_ATautoclosure] = ACTIONS(2924), - [anon_sym_weak] = ACTIONS(2924), - [anon_sym_unowned] = ACTIONS(2926), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2924), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2924), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2924), - [sym__explicit_semi] = ACTIONS(2924), - [sym__dot_custom] = ACTIONS(2924), - [sym__conjunction_operator_custom] = ACTIONS(2924), - [sym__disjunction_operator_custom] = ACTIONS(2924), - [sym__nil_coalescing_operator_custom] = ACTIONS(2924), - [sym__eq_eq_custom] = ACTIONS(2924), - [sym__plus_then_ws] = ACTIONS(2924), - [sym__minus_then_ws] = ACTIONS(2924), - [sym_bang] = ACTIONS(2924), - [sym_default_keyword] = ACTIONS(2924), - [sym__as_custom] = ACTIONS(2924), - [sym__as_quest_custom] = ACTIONS(2924), - [sym__as_bang_custom] = ACTIONS(2924), - [sym__custom_operator] = ACTIONS(2924), - }, - [996] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(3521), - [aux_sym_simple_identifier_token2] = ACTIONS(3523), - [aux_sym_simple_identifier_token3] = ACTIONS(3523), - [aux_sym_simple_identifier_token4] = ACTIONS(3523), - [anon_sym_actor] = ACTIONS(3521), - [anon_sym_nil] = ACTIONS(3521), - [sym_real_literal] = ACTIONS(3523), - [sym_integer_literal] = ACTIONS(3521), - [sym_hex_literal] = ACTIONS(3523), - [sym_oct_literal] = ACTIONS(3523), - [sym_bin_literal] = ACTIONS(3523), - [anon_sym_true] = ACTIONS(3521), - [anon_sym_false] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3521), - [anon_sym_BSLASH] = ACTIONS(3523), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3523), - [sym__extended_regex_literal] = ACTIONS(3523), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(3523), - [sym__oneline_regex_literal] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_LBRACK] = ACTIONS(3523), - [anon_sym_AMP] = ACTIONS(3523), - [anon_sym_async] = ACTIONS(3521), - [anon_sym_POUNDselector] = ACTIONS(3523), - [aux_sym_custom_operator_token1] = ACTIONS(3523), - [anon_sym_LT] = ACTIONS(3521), - [anon_sym_GT] = ACTIONS(3521), - [anon_sym_await] = ACTIONS(3521), - [anon_sym_POUNDfile] = ACTIONS(3521), - [anon_sym_POUNDfileID] = ACTIONS(3523), - [anon_sym_POUNDfilePath] = ACTIONS(3523), - [anon_sym_POUNDline] = ACTIONS(3523), - [anon_sym_POUNDcolumn] = ACTIONS(3523), - [anon_sym_POUNDfunction] = ACTIONS(3523), - [anon_sym_POUNDdsohandle] = ACTIONS(3523), - [anon_sym_POUNDcolorLiteral] = ACTIONS(3523), - [anon_sym_POUNDfileLiteral] = ACTIONS(3523), - [anon_sym_POUNDimageLiteral] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3523), - [anon_sym_CARET_LBRACE] = ACTIONS(3523), - [anon_sym_self] = ACTIONS(3521), - [anon_sym_super] = ACTIONS(3521), - [anon_sym_POUNDkeyPath] = ACTIONS(3523), - [anon_sym_try] = ACTIONS(3521), - [anon_sym_try_BANG] = ACTIONS(3523), - [anon_sym_try_QMARK] = ACTIONS(3523), - [anon_sym_PLUS_EQ] = ACTIONS(3523), - [anon_sym_DASH_EQ] = ACTIONS(3523), - [anon_sym_STAR_EQ] = ACTIONS(3523), - [anon_sym_SLASH_EQ] = ACTIONS(3523), - [anon_sym_PERCENT_EQ] = ACTIONS(3523), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_BANG_EQ] = ACTIONS(3521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3523), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3523), - [anon_sym_LT_EQ] = ACTIONS(3523), - [anon_sym_GT_EQ] = ACTIONS(3523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), - [anon_sym_DOT_DOT_LT] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_STAR] = ACTIONS(3521), - [anon_sym_SLASH] = ACTIONS(3521), - [anon_sym_PERCENT] = ACTIONS(3521), - [anon_sym_PLUS_PLUS] = ACTIONS(3523), - [anon_sym_DASH_DASH] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3523), - [anon_sym_CARET] = ACTIONS(3521), - [anon_sym_LT_LT] = ACTIONS(3523), - [anon_sym_GT_GT] = ACTIONS(3523), - [anon_sym_AT] = ACTIONS(3523), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(3523), - [sym_raw_str_end_part] = ACTIONS(3523), - [sym__dot_custom] = ACTIONS(3523), - [sym__eq_eq_custom] = ACTIONS(3523), - [sym__plus_then_ws] = ACTIONS(3523), - [sym__minus_then_ws] = ACTIONS(3523), - [sym_bang] = ACTIONS(3523), - [sym__custom_operator] = ACTIONS(3523), - }, - [997] = { - [aux_sym_key_path_expression_repeat1] = STATE(1000), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(2940), - [sym__immediate_quest] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [aux_sym_custom_operator_token1] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2940), - [anon_sym_GT] = ACTIONS(2940), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_CARET_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_fallthrough] = ACTIONS(2938), - [anon_sym_BANG_EQ] = ACTIONS(2940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2938), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2938), - [anon_sym_DOT_DOT_LT] = ACTIONS(2938), - [anon_sym_is] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2940), - [anon_sym_DASH] = ACTIONS(2940), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2940), - [anon_sym_PERCENT] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2940), - [anon_sym_LT_LT] = ACTIONS(2938), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_class] = ACTIONS(2938), - [anon_sym_prefix] = ACTIONS(2938), - [anon_sym_infix] = ACTIONS(2938), - [anon_sym_postfix] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2940), - [sym_property_behavior_modifier] = ACTIONS(2938), - [anon_sym_override] = ACTIONS(2938), - [anon_sym_convenience] = ACTIONS(2938), - [anon_sym_required] = ACTIONS(2938), - [anon_sym_nonisolated] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_internal] = ACTIONS(2938), - [anon_sym_fileprivate] = ACTIONS(2938), - [anon_sym_open] = ACTIONS(2938), - [anon_sym_mutating] = ACTIONS(2938), - [anon_sym_nonmutating] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_dynamic] = ACTIONS(2938), - [anon_sym_optional] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_inout] = ACTIONS(2938), - [anon_sym_ATescaping] = ACTIONS(2938), - [anon_sym_ATautoclosure] = ACTIONS(2938), - [anon_sym_weak] = ACTIONS(2938), - [anon_sym_unowned] = ACTIONS(2940), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2938), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2938), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2938), - [sym__explicit_semi] = ACTIONS(2938), - [sym__dot_custom] = ACTIONS(2938), - [sym__conjunction_operator_custom] = ACTIONS(2938), - [sym__disjunction_operator_custom] = ACTIONS(2938), - [sym__nil_coalescing_operator_custom] = ACTIONS(2938), - [sym__eq_eq_custom] = ACTIONS(2938), - [sym__plus_then_ws] = ACTIONS(2938), - [sym__minus_then_ws] = ACTIONS(2938), - [sym_bang] = ACTIONS(2938), - [sym_default_keyword] = ACTIONS(2938), - [sym_where_keyword] = ACTIONS(2938), - [sym__as_custom] = ACTIONS(2938), - [sym__as_quest_custom] = ACTIONS(2938), - [sym__as_bang_custom] = ACTIONS(2938), - [sym__custom_operator] = ACTIONS(2938), - }, - [998] = { - [sym__fn_call_lambda_arguments] = STATE(1032), - [sym_lambda_literal] = STATE(868), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3161), - [sym__immediate_quest] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_CARET_LBRACE] = ACTIONS(3525), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_fallthrough] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3161), - [sym_property_behavior_modifier] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3159), - [sym__explicit_semi] = ACTIONS(3159), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym_bang] = ACTIONS(3159), - [sym_default_keyword] = ACTIONS(3159), - [sym_where_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [999] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [sym__immediate_quest] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [aux_sym_custom_operator_token1] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_CARET_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_self] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_fallthrough] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_LT] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_prefix] = ACTIONS(2953), - [anon_sym_infix] = ACTIONS(2953), - [anon_sym_postfix] = ACTIONS(2953), - [anon_sym_AT] = ACTIONS(2955), - [sym_property_behavior_modifier] = ACTIONS(2953), - [anon_sym_override] = ACTIONS(2953), - [anon_sym_convenience] = ACTIONS(2953), - [anon_sym_required] = ACTIONS(2953), - [anon_sym_nonisolated] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_private] = ACTIONS(2953), - [anon_sym_internal] = ACTIONS(2953), - [anon_sym_fileprivate] = ACTIONS(2953), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_mutating] = ACTIONS(2953), - [anon_sym_nonmutating] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_dynamic] = ACTIONS(2953), - [anon_sym_optional] = ACTIONS(2953), - [anon_sym_final] = ACTIONS(2953), - [anon_sym_inout] = ACTIONS(2953), - [anon_sym_ATescaping] = ACTIONS(2953), - [anon_sym_ATautoclosure] = ACTIONS(2953), - [anon_sym_weak] = ACTIONS(2953), - [anon_sym_unowned] = ACTIONS(2955), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2953), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2953), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2953), - [sym__explicit_semi] = ACTIONS(2953), - [sym__dot_custom] = ACTIONS(2953), - [sym__conjunction_operator_custom] = ACTIONS(2953), - [sym__disjunction_operator_custom] = ACTIONS(2953), - [sym__nil_coalescing_operator_custom] = ACTIONS(2953), - [sym__eq_eq_custom] = ACTIONS(2953), - [sym__plus_then_ws] = ACTIONS(2953), - [sym__minus_then_ws] = ACTIONS(2953), - [sym_bang] = ACTIONS(2953), - [sym_default_keyword] = ACTIONS(2953), - [sym_where_keyword] = ACTIONS(2953), - [sym__as_custom] = ACTIONS(2953), - [sym__as_quest_custom] = ACTIONS(2953), - [sym__as_bang_custom] = ACTIONS(2953), - [sym__custom_operator] = ACTIONS(2953), - }, - [1000] = { - [aux_sym_key_path_expression_repeat1] = STATE(1000), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_QMARK] = ACTIONS(2947), - [sym__immediate_quest] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [aux_sym_custom_operator_token1] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_CARET_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_fallthrough] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2942), - [anon_sym_DOT_DOT_LT] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_prefix] = ACTIONS(2942), - [anon_sym_infix] = ACTIONS(2942), - [anon_sym_postfix] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2947), - [sym_property_behavior_modifier] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_convenience] = ACTIONS(2942), - [anon_sym_required] = ACTIONS(2942), - [anon_sym_nonisolated] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_internal] = ACTIONS(2942), - [anon_sym_fileprivate] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_mutating] = ACTIONS(2942), - [anon_sym_nonmutating] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_dynamic] = ACTIONS(2942), - [anon_sym_optional] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_inout] = ACTIONS(2942), - [anon_sym_ATescaping] = ACTIONS(2942), - [anon_sym_ATautoclosure] = ACTIONS(2942), - [anon_sym_weak] = ACTIONS(2942), - [anon_sym_unowned] = ACTIONS(2947), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2942), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2942), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2942), - [sym__explicit_semi] = ACTIONS(2942), - [sym__dot_custom] = ACTIONS(2942), - [sym__conjunction_operator_custom] = ACTIONS(2942), - [sym__disjunction_operator_custom] = ACTIONS(2942), - [sym__nil_coalescing_operator_custom] = ACTIONS(2942), - [sym__eq_eq_custom] = ACTIONS(2942), - [sym__plus_then_ws] = ACTIONS(2942), - [sym__minus_then_ws] = ACTIONS(2942), - [sym_bang] = ACTIONS(2942), - [sym_default_keyword] = ACTIONS(2942), - [sym_where_keyword] = ACTIONS(2942), - [sym__as_custom] = ACTIONS(2942), - [sym__as_quest_custom] = ACTIONS(2942), - [sym__as_bang_custom] = ACTIONS(2942), - [sym__custom_operator] = ACTIONS(2942), - }, - [1001] = { - [sym_type_arguments] = STATE(1015), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [aux_sym_custom_operator_token1] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(3531), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_CARET_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_fallthrough] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2830), - [sym__explicit_semi] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__conjunction_operator_custom] = ACTIONS(2830), - [sym__disjunction_operator_custom] = ACTIONS(2830), - [sym__nil_coalescing_operator_custom] = ACTIONS(2830), - [sym__eq_eq_custom] = ACTIONS(2830), - [sym__plus_then_ws] = ACTIONS(2830), - [sym__minus_then_ws] = ACTIONS(2830), - [sym_bang] = ACTIONS(2830), - [sym_default_keyword] = ACTIONS(2830), - [sym_where_keyword] = ACTIONS(2830), - [sym__as_custom] = ACTIONS(2830), - [sym__as_quest_custom] = ACTIONS(2830), - [sym__as_bang_custom] = ACTIONS(2830), - [sym__custom_operator] = ACTIONS(2830), - }, - [1002] = { - [aux_sym_key_path_expression_repeat1] = STATE(997), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(2936), - [sym__immediate_quest] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [aux_sym_custom_operator_token1] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_CARET_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_fallthrough] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT_LT] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_prefix] = ACTIONS(2934), - [anon_sym_infix] = ACTIONS(2934), - [anon_sym_postfix] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2936), - [sym_property_behavior_modifier] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_convenience] = ACTIONS(2934), - [anon_sym_required] = ACTIONS(2934), - [anon_sym_nonisolated] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_internal] = ACTIONS(2934), - [anon_sym_fileprivate] = ACTIONS(2934), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_mutating] = ACTIONS(2934), - [anon_sym_nonmutating] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_dynamic] = ACTIONS(2934), - [anon_sym_optional] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_inout] = ACTIONS(2934), - [anon_sym_ATescaping] = ACTIONS(2934), - [anon_sym_ATautoclosure] = ACTIONS(2934), - [anon_sym_weak] = ACTIONS(2934), - [anon_sym_unowned] = ACTIONS(2936), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2934), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2934), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2934), - [sym__explicit_semi] = ACTIONS(2934), - [sym__dot_custom] = ACTIONS(2934), - [sym__conjunction_operator_custom] = ACTIONS(2934), - [sym__disjunction_operator_custom] = ACTIONS(2934), - [sym__nil_coalescing_operator_custom] = ACTIONS(2934), - [sym__eq_eq_custom] = ACTIONS(2934), - [sym__plus_then_ws] = ACTIONS(2934), - [sym__minus_then_ws] = ACTIONS(2934), - [sym_bang] = ACTIONS(2934), - [sym_default_keyword] = ACTIONS(2934), - [sym_where_keyword] = ACTIONS(2934), - [sym__as_custom] = ACTIONS(2934), - [sym__as_quest_custom] = ACTIONS(2934), - [sym__as_bang_custom] = ACTIONS(2934), - [sym__custom_operator] = ACTIONS(2934), - }, - [1003] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [sym__immediate_quest] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2949), - [aux_sym_custom_operator_token1] = ACTIONS(2949), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_CARET_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_self] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_fallthrough] = ACTIONS(2949), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2949), - [anon_sym_LT_EQ] = ACTIONS(2949), - [anon_sym_GT_EQ] = ACTIONS(2949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2949), - [anon_sym_DOT_DOT_LT] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_GT_GT] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_prefix] = ACTIONS(2949), - [anon_sym_infix] = ACTIONS(2949), - [anon_sym_postfix] = ACTIONS(2949), - [anon_sym_AT] = ACTIONS(2951), - [sym_property_behavior_modifier] = ACTIONS(2949), - [anon_sym_override] = ACTIONS(2949), - [anon_sym_convenience] = ACTIONS(2949), - [anon_sym_required] = ACTIONS(2949), - [anon_sym_nonisolated] = ACTIONS(2949), - [anon_sym_public] = ACTIONS(2949), - [anon_sym_private] = ACTIONS(2949), - [anon_sym_internal] = ACTIONS(2949), - [anon_sym_fileprivate] = ACTIONS(2949), - [anon_sym_open] = ACTIONS(2949), - [anon_sym_mutating] = ACTIONS(2949), - [anon_sym_nonmutating] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_dynamic] = ACTIONS(2949), - [anon_sym_optional] = ACTIONS(2949), - [anon_sym_final] = ACTIONS(2949), - [anon_sym_inout] = ACTIONS(2949), - [anon_sym_ATescaping] = ACTIONS(2949), - [anon_sym_ATautoclosure] = ACTIONS(2949), - [anon_sym_weak] = ACTIONS(2949), - [anon_sym_unowned] = ACTIONS(2951), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2949), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2949), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2949), - [sym__explicit_semi] = ACTIONS(2949), - [sym__dot_custom] = ACTIONS(2949), - [sym__conjunction_operator_custom] = ACTIONS(2949), - [sym__disjunction_operator_custom] = ACTIONS(2949), - [sym__nil_coalescing_operator_custom] = ACTIONS(2949), - [sym__eq_eq_custom] = ACTIONS(2949), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym_bang] = ACTIONS(2949), - [sym_default_keyword] = ACTIONS(2949), - [sym_where_keyword] = ACTIONS(2949), - [sym__as_custom] = ACTIONS(2949), - [sym__as_quest_custom] = ACTIONS(2949), - [sym__as_bang_custom] = ACTIONS(2949), - [sym__custom_operator] = ACTIONS(2949), - }, - [1004] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2319), - [aux_sym_simple_identifier_token2] = ACTIONS(2321), - [aux_sym_simple_identifier_token3] = ACTIONS(2321), - [aux_sym_simple_identifier_token4] = ACTIONS(2321), - [anon_sym_actor] = ACTIONS(2319), - [anon_sym_nil] = ACTIONS(2319), - [sym_real_literal] = ACTIONS(2321), - [sym_integer_literal] = ACTIONS(2319), - [sym_hex_literal] = ACTIONS(2321), - [sym_oct_literal] = ACTIONS(2321), - [sym_bin_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [anon_sym_BSLASH] = ACTIONS(2321), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2321), - [sym__extended_regex_literal] = ACTIONS(2321), - [aux_sym__multiline_regex_literal_token1] = ACTIONS(2321), - [sym__oneline_regex_literal] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_POUNDselector] = ACTIONS(2321), - [aux_sym_custom_operator_token1] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2319), - [anon_sym_GT] = ACTIONS(2319), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_POUNDfile] = ACTIONS(2319), - [anon_sym_POUNDfileID] = ACTIONS(2321), - [anon_sym_POUNDfilePath] = ACTIONS(2321), - [anon_sym_POUNDline] = ACTIONS(2321), - [anon_sym_POUNDcolumn] = ACTIONS(2321), - [anon_sym_POUNDfunction] = ACTIONS(2321), - [anon_sym_POUNDdsohandle] = ACTIONS(2321), - [anon_sym_POUNDcolorLiteral] = ACTIONS(2321), - [anon_sym_POUNDfileLiteral] = ACTIONS(2321), - [anon_sym_POUNDimageLiteral] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_CARET_LBRACE] = ACTIONS(2321), - [anon_sym_self] = ACTIONS(2319), - [anon_sym_super] = ACTIONS(2319), - [anon_sym_POUNDkeyPath] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_try_BANG] = ACTIONS(2321), - [anon_sym_try_QMARK] = ACTIONS(2321), - [anon_sym_PLUS_EQ] = ACTIONS(2321), - [anon_sym_DASH_EQ] = ACTIONS(2321), - [anon_sym_STAR_EQ] = ACTIONS(2321), - [anon_sym_SLASH_EQ] = ACTIONS(2321), - [anon_sym_PERCENT_EQ] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ] = ACTIONS(2319), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2321), - [anon_sym_LT_EQ] = ACTIONS(2321), - [anon_sym_GT_EQ] = ACTIONS(2321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), - [anon_sym_DOT_DOT_LT] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_STAR] = ACTIONS(2319), - [anon_sym_SLASH] = ACTIONS(2319), - [anon_sym_PERCENT] = ACTIONS(2319), - [anon_sym_PLUS_PLUS] = ACTIONS(2321), - [anon_sym_DASH_DASH] = ACTIONS(2321), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_CARET] = ACTIONS(2319), - [anon_sym_LT_LT] = ACTIONS(2321), - [anon_sym_GT_GT] = ACTIONS(2321), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym_raw_str_part] = ACTIONS(2321), - [sym_raw_str_end_part] = ACTIONS(2321), - [sym__dot_custom] = ACTIONS(2321), - [sym__eq_eq_custom] = ACTIONS(2321), - [sym__plus_then_ws] = ACTIONS(2321), - [sym__minus_then_ws] = ACTIONS(2321), - [sym_bang] = ACTIONS(2321), - [sym__custom_operator] = ACTIONS(2321), - }, - [1005] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_DOT] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(2932), - [sym__immediate_quest] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [aux_sym_custom_operator_token1] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_GT] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_CARET_LBRACE] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_self] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_fallthrough] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2930), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2930), - [anon_sym_DOT_DOT_LT] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2932), - [anon_sym_DASH] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2932), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_LT_LT] = ACTIONS(2930), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_prefix] = ACTIONS(2930), - [anon_sym_infix] = ACTIONS(2930), - [anon_sym_postfix] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2932), - [sym_property_behavior_modifier] = ACTIONS(2930), - [anon_sym_override] = ACTIONS(2930), - [anon_sym_convenience] = ACTIONS(2930), - [anon_sym_required] = ACTIONS(2930), - [anon_sym_nonisolated] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_internal] = ACTIONS(2930), - [anon_sym_fileprivate] = ACTIONS(2930), - [anon_sym_open] = ACTIONS(2930), - [anon_sym_mutating] = ACTIONS(2930), - [anon_sym_nonmutating] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_dynamic] = ACTIONS(2930), - [anon_sym_optional] = ACTIONS(2930), - [anon_sym_final] = ACTIONS(2930), - [anon_sym_inout] = ACTIONS(2930), - [anon_sym_ATescaping] = ACTIONS(2930), - [anon_sym_ATautoclosure] = ACTIONS(2930), - [anon_sym_weak] = ACTIONS(2930), - [anon_sym_unowned] = ACTIONS(2932), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2930), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2930), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2930), - [sym__explicit_semi] = ACTIONS(2930), - [sym__dot_custom] = ACTIONS(2930), - [sym__conjunction_operator_custom] = ACTIONS(2930), - [sym__disjunction_operator_custom] = ACTIONS(2930), - [sym__nil_coalescing_operator_custom] = ACTIONS(2930), - [sym__eq_eq_custom] = ACTIONS(2930), - [sym__plus_then_ws] = ACTIONS(2930), - [sym__minus_then_ws] = ACTIONS(2930), - [sym_bang] = ACTIONS(2930), - [sym_default_keyword] = ACTIONS(2930), - [sym_where_keyword] = ACTIONS(2930), - [sym__as_custom] = ACTIONS(2930), - [sym__as_quest_custom] = ACTIONS(2930), - [sym__as_bang_custom] = ACTIONS(2930), - [sym__custom_operator] = ACTIONS(2930), - }, - [1006] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_self] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_fallthrough] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym_default_keyword] = ACTIONS(2779), - [sym_where_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [1007] = { - [aux_sym_key_path_expression_repeat1] = STATE(1000), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(2936), - [sym__immediate_quest] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [aux_sym_custom_operator_token1] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_CARET_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_fallthrough] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT_LT] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_prefix] = ACTIONS(2934), - [anon_sym_infix] = ACTIONS(2934), - [anon_sym_postfix] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2936), - [sym_property_behavior_modifier] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_convenience] = ACTIONS(2934), - [anon_sym_required] = ACTIONS(2934), - [anon_sym_nonisolated] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_internal] = ACTIONS(2934), - [anon_sym_fileprivate] = ACTIONS(2934), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_mutating] = ACTIONS(2934), - [anon_sym_nonmutating] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_dynamic] = ACTIONS(2934), - [anon_sym_optional] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_inout] = ACTIONS(2934), - [anon_sym_ATescaping] = ACTIONS(2934), - [anon_sym_ATautoclosure] = ACTIONS(2934), - [anon_sym_weak] = ACTIONS(2934), - [anon_sym_unowned] = ACTIONS(2936), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2934), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2934), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2934), - [sym__explicit_semi] = ACTIONS(2934), - [sym__dot_custom] = ACTIONS(2934), - [sym__conjunction_operator_custom] = ACTIONS(2934), - [sym__disjunction_operator_custom] = ACTIONS(2934), - [sym__nil_coalescing_operator_custom] = ACTIONS(2934), - [sym__eq_eq_custom] = ACTIONS(2934), - [sym__plus_then_ws] = ACTIONS(2934), - [sym__minus_then_ws] = ACTIONS(2934), - [sym_bang] = ACTIONS(2934), - [sym_default_keyword] = ACTIONS(2934), - [sym_where_keyword] = ACTIONS(2934), - [sym__as_custom] = ACTIONS(2934), - [sym__as_quest_custom] = ACTIONS(2934), - [sym__as_bang_custom] = ACTIONS(2934), - [sym__custom_operator] = ACTIONS(2934), - }, - [1008] = { - [aux_sym_key_path_expression_repeat1] = STATE(1008), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_QMARK] = ACTIONS(2947), - [sym__immediate_quest] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [aux_sym_custom_operator_token1] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_CARET_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_fallthrough] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2942), - [anon_sym_DOT_DOT_LT] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_prefix] = ACTIONS(2942), - [anon_sym_infix] = ACTIONS(2942), - [anon_sym_postfix] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2947), - [sym_property_behavior_modifier] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_convenience] = ACTIONS(2942), - [anon_sym_required] = ACTIONS(2942), - [anon_sym_nonisolated] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_internal] = ACTIONS(2942), - [anon_sym_fileprivate] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_mutating] = ACTIONS(2942), - [anon_sym_nonmutating] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_dynamic] = ACTIONS(2942), - [anon_sym_optional] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_inout] = ACTIONS(2942), - [anon_sym_ATescaping] = ACTIONS(2942), - [anon_sym_ATautoclosure] = ACTIONS(2942), - [anon_sym_weak] = ACTIONS(2942), - [anon_sym_unowned] = ACTIONS(2947), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2942), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2942), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2942), - [sym__explicit_semi] = ACTIONS(2942), - [sym__dot_custom] = ACTIONS(2942), - [sym__conjunction_operator_custom] = ACTIONS(2942), - [sym__disjunction_operator_custom] = ACTIONS(2942), - [sym__nil_coalescing_operator_custom] = ACTIONS(2942), - [sym__eq_eq_custom] = ACTIONS(2942), - [sym__plus_then_ws] = ACTIONS(2942), - [sym__minus_then_ws] = ACTIONS(2942), - [sym_bang] = ACTIONS(2942), - [sym_default_keyword] = ACTIONS(2942), - [sym__as_custom] = ACTIONS(2942), - [sym__as_quest_custom] = ACTIONS(2942), - [sym__as_bang_custom] = ACTIONS(2942), - [sym__custom_operator] = ACTIONS(2942), - }, - [1009] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [sym__immediate_quest] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2949), - [aux_sym_custom_operator_token1] = ACTIONS(2949), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_CARET_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_self] = ACTIONS(2949), - [anon_sym_case] = ACTIONS(2949), - [anon_sym_fallthrough] = ACTIONS(2949), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2949), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2949), - [anon_sym_LT_EQ] = ACTIONS(2949), - [anon_sym_GT_EQ] = ACTIONS(2949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2949), - [anon_sym_DOT_DOT_LT] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_GT_GT] = ACTIONS(2949), - [anon_sym_class] = ACTIONS(2949), - [anon_sym_prefix] = ACTIONS(2949), - [anon_sym_infix] = ACTIONS(2949), - [anon_sym_postfix] = ACTIONS(2949), - [anon_sym_AT] = ACTIONS(2951), - [sym_property_behavior_modifier] = ACTIONS(2949), - [anon_sym_override] = ACTIONS(2949), - [anon_sym_convenience] = ACTIONS(2949), - [anon_sym_required] = ACTIONS(2949), - [anon_sym_nonisolated] = ACTIONS(2949), - [anon_sym_public] = ACTIONS(2949), - [anon_sym_private] = ACTIONS(2949), - [anon_sym_internal] = ACTIONS(2949), - [anon_sym_fileprivate] = ACTIONS(2949), - [anon_sym_open] = ACTIONS(2949), - [anon_sym_mutating] = ACTIONS(2949), - [anon_sym_nonmutating] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_dynamic] = ACTIONS(2949), - [anon_sym_optional] = ACTIONS(2949), - [anon_sym_final] = ACTIONS(2949), - [anon_sym_inout] = ACTIONS(2949), - [anon_sym_ATescaping] = ACTIONS(2949), - [anon_sym_ATautoclosure] = ACTIONS(2949), - [anon_sym_weak] = ACTIONS(2949), - [anon_sym_unowned] = ACTIONS(2951), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2949), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2949), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2949), - [sym__explicit_semi] = ACTIONS(2949), - [sym__dot_custom] = ACTIONS(2949), - [sym__conjunction_operator_custom] = ACTIONS(2949), - [sym__disjunction_operator_custom] = ACTIONS(2949), - [sym__nil_coalescing_operator_custom] = ACTIONS(2949), - [sym__eq_eq_custom] = ACTIONS(2949), - [sym__plus_then_ws] = ACTIONS(2949), - [sym__minus_then_ws] = ACTIONS(2949), - [sym_bang] = ACTIONS(2949), - [sym_default_keyword] = ACTIONS(2949), - [sym__as_custom] = ACTIONS(2949), - [sym__as_quest_custom] = ACTIONS(2949), - [sym__as_bang_custom] = ACTIONS(2949), - [sym__custom_operator] = ACTIONS(2949), - }, - [1010] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_self] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_fallthrough] = ACTIONS(2779), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2779), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym_default_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [1011] = { - [sym__fn_call_lambda_arguments] = STATE(1130), - [sym_lambda_literal] = STATE(879), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3161), - [sym__immediate_quest] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [aux_sym_custom_operator_token1] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_CARET_LBRACE] = ACTIONS(3536), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_fallthrough] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_DOT_DOT_LT] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_prefix] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_postfix] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3161), - [sym_property_behavior_modifier] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_convenience] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_nonisolated] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_fileprivate] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_mutating] = ACTIONS(3159), - [anon_sym_nonmutating] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_dynamic] = ACTIONS(3159), - [anon_sym_optional] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_inout] = ACTIONS(3159), - [anon_sym_ATescaping] = ACTIONS(3159), - [anon_sym_ATautoclosure] = ACTIONS(3159), - [anon_sym_weak] = ACTIONS(3159), - [anon_sym_unowned] = ACTIONS(3161), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3159), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3159), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3159), - [sym__explicit_semi] = ACTIONS(3159), - [sym__dot_custom] = ACTIONS(3159), - [sym__conjunction_operator_custom] = ACTIONS(3159), - [sym__disjunction_operator_custom] = ACTIONS(3159), - [sym__nil_coalescing_operator_custom] = ACTIONS(3159), - [sym__eq_eq_custom] = ACTIONS(3159), - [sym__plus_then_ws] = ACTIONS(3159), - [sym__minus_then_ws] = ACTIONS(3159), - [sym_bang] = ACTIONS(3159), - [sym_default_keyword] = ACTIONS(3159), - [sym__as_custom] = ACTIONS(3159), - [sym__as_quest_custom] = ACTIONS(3159), - [sym__as_bang_custom] = ACTIONS(3159), - [sym__custom_operator] = ACTIONS(3159), - }, - [1012] = { - [aux_sym_key_path_expression_repeat1] = STATE(1008), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_QMARK] = ACTIONS(2936), - [sym__immediate_quest] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [aux_sym_custom_operator_token1] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_CARET_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_fallthrough] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT_LT] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_prefix] = ACTIONS(2934), - [anon_sym_infix] = ACTIONS(2934), - [anon_sym_postfix] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2936), - [sym_property_behavior_modifier] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_convenience] = ACTIONS(2934), - [anon_sym_required] = ACTIONS(2934), - [anon_sym_nonisolated] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_internal] = ACTIONS(2934), - [anon_sym_fileprivate] = ACTIONS(2934), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_mutating] = ACTIONS(2934), - [anon_sym_nonmutating] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_dynamic] = ACTIONS(2934), - [anon_sym_optional] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_inout] = ACTIONS(2934), - [anon_sym_ATescaping] = ACTIONS(2934), - [anon_sym_ATautoclosure] = ACTIONS(2934), - [anon_sym_weak] = ACTIONS(2934), - [anon_sym_unowned] = ACTIONS(2936), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2934), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2934), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2934), - [sym__explicit_semi] = ACTIONS(2934), - [sym__dot_custom] = ACTIONS(2934), - [sym__conjunction_operator_custom] = ACTIONS(2934), - [sym__disjunction_operator_custom] = ACTIONS(2934), - [sym__nil_coalescing_operator_custom] = ACTIONS(2934), - [sym__eq_eq_custom] = ACTIONS(2934), - [sym__plus_then_ws] = ACTIONS(2934), - [sym__minus_then_ws] = ACTIONS(2934), - [sym_bang] = ACTIONS(2934), - [sym_default_keyword] = ACTIONS(2934), - [sym__as_custom] = ACTIONS(2934), - [sym__as_quest_custom] = ACTIONS(2934), - [sym__as_bang_custom] = ACTIONS(2934), - [sym__custom_operator] = ACTIONS(2934), - }, - [1013] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2969), - [sym__immediate_quest] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [aux_sym_custom_operator_token1] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_CARET_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_case] = ACTIONS(2967), - [anon_sym_fallthrough] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), - [anon_sym_DOT_DOT_LT] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2969), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_var] = ACTIONS(3539), - [anon_sym_prefix] = ACTIONS(2967), - [anon_sym_infix] = ACTIONS(2967), - [anon_sym_postfix] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2969), - [sym_property_behavior_modifier] = ACTIONS(2967), - [anon_sym_override] = ACTIONS(2967), - [anon_sym_convenience] = ACTIONS(2967), - [anon_sym_required] = ACTIONS(2967), - [anon_sym_nonisolated] = ACTIONS(2967), - [anon_sym_public] = ACTIONS(2967), - [anon_sym_private] = ACTIONS(2967), - [anon_sym_internal] = ACTIONS(2967), - [anon_sym_fileprivate] = ACTIONS(2967), - [anon_sym_open] = ACTIONS(2967), - [anon_sym_mutating] = ACTIONS(2967), - [anon_sym_nonmutating] = ACTIONS(2967), - [anon_sym_static] = ACTIONS(2967), - [anon_sym_dynamic] = ACTIONS(2967), - [anon_sym_optional] = ACTIONS(2967), - [anon_sym_final] = ACTIONS(2967), - [anon_sym_inout] = ACTIONS(2967), - [anon_sym_ATescaping] = ACTIONS(2967), - [anon_sym_ATautoclosure] = ACTIONS(2967), - [anon_sym_weak] = ACTIONS(2967), - [anon_sym_unowned] = ACTIONS(2969), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2967), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2967), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2967), - [sym__explicit_semi] = ACTIONS(2967), - [sym__dot_custom] = ACTIONS(2967), - [sym__conjunction_operator_custom] = ACTIONS(2967), - [sym__disjunction_operator_custom] = ACTIONS(2967), - [sym__nil_coalescing_operator_custom] = ACTIONS(2967), - [sym__eq_eq_custom] = ACTIONS(2967), - [sym__plus_then_ws] = ACTIONS(2967), - [sym__minus_then_ws] = ACTIONS(2967), - [sym_bang] = ACTIONS(2967), - [sym_default_keyword] = ACTIONS(2967), - [sym__as_custom] = ACTIONS(2967), - [sym__as_quest_custom] = ACTIONS(2967), - [sym__as_bang_custom] = ACTIONS(2967), - [sym__custom_operator] = ACTIONS(2967), - }, - [1014] = { - [aux_sym_key_path_expression_repeat1] = STATE(1017), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2934), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_QMARK] = ACTIONS(2936), - [sym__immediate_quest] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [aux_sym_custom_operator_token1] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_GT] = ACTIONS(2936), - [anon_sym_LBRACE] = ACTIONS(2934), - [anon_sym_CARET_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_fallthrough] = ACTIONS(2934), - [anon_sym_BANG_EQ] = ACTIONS(2936), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2934), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2934), - [anon_sym_LT_EQ] = ACTIONS(2934), - [anon_sym_GT_EQ] = ACTIONS(2934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2934), - [anon_sym_DOT_DOT_LT] = ACTIONS(2934), - [anon_sym_is] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2936), - [anon_sym_DASH] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2936), - [anon_sym_PERCENT] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2934), - [anon_sym_PIPE] = ACTIONS(2934), - [anon_sym_CARET] = ACTIONS(2936), - [anon_sym_LT_LT] = ACTIONS(2934), - [anon_sym_GT_GT] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_prefix] = ACTIONS(2934), - [anon_sym_infix] = ACTIONS(2934), - [anon_sym_postfix] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2936), - [sym_property_behavior_modifier] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_convenience] = ACTIONS(2934), - [anon_sym_required] = ACTIONS(2934), - [anon_sym_nonisolated] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_internal] = ACTIONS(2934), - [anon_sym_fileprivate] = ACTIONS(2934), - [anon_sym_open] = ACTIONS(2934), - [anon_sym_mutating] = ACTIONS(2934), - [anon_sym_nonmutating] = ACTIONS(2934), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_dynamic] = ACTIONS(2934), - [anon_sym_optional] = ACTIONS(2934), - [anon_sym_final] = ACTIONS(2934), - [anon_sym_inout] = ACTIONS(2934), - [anon_sym_ATescaping] = ACTIONS(2934), - [anon_sym_ATautoclosure] = ACTIONS(2934), - [anon_sym_weak] = ACTIONS(2934), - [anon_sym_unowned] = ACTIONS(2936), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2934), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2934), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2934), - [sym__explicit_semi] = ACTIONS(2934), - [sym__dot_custom] = ACTIONS(2934), - [sym__conjunction_operator_custom] = ACTIONS(2934), - [sym__disjunction_operator_custom] = ACTIONS(2934), - [sym__nil_coalescing_operator_custom] = ACTIONS(2934), - [sym__eq_eq_custom] = ACTIONS(2934), - [sym__plus_then_ws] = ACTIONS(2934), - [sym__minus_then_ws] = ACTIONS(2934), - [sym_bang] = ACTIONS(2934), - [sym_default_keyword] = ACTIONS(2934), - [sym__as_custom] = ACTIONS(2934), - [sym__as_quest_custom] = ACTIONS(2934), - [sym__as_bang_custom] = ACTIONS(2934), - [sym__custom_operator] = ACTIONS(2934), - }, - [1015] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_QMARK] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [aux_sym_custom_operator_token1] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_fallthrough] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2855), - [sym__explicit_semi] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__conjunction_operator_custom] = ACTIONS(2855), - [sym__disjunction_operator_custom] = ACTIONS(2855), - [sym__nil_coalescing_operator_custom] = ACTIONS(2855), - [sym__eq_eq_custom] = ACTIONS(2855), - [sym__plus_then_ws] = ACTIONS(2855), - [sym__minus_then_ws] = ACTIONS(2855), - [sym_bang] = ACTIONS(2855), - [sym_default_keyword] = ACTIONS(2855), - [sym_where_keyword] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2855), - [sym__as_quest_custom] = ACTIONS(2855), - [sym__as_bang_custom] = ACTIONS(2855), - [sym__custom_operator] = ACTIONS(2855), - }, - [1016] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [sym__immediate_quest] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [aux_sym_custom_operator_token1] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_CARET_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_fallthrough] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), - [anon_sym_DOT_DOT_LT] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_prefix] = ACTIONS(2847), - [anon_sym_infix] = ACTIONS(2847), - [anon_sym_postfix] = ACTIONS(2847), - [anon_sym_AT] = ACTIONS(2849), - [sym_property_behavior_modifier] = ACTIONS(2847), - [anon_sym_override] = ACTIONS(2847), - [anon_sym_convenience] = ACTIONS(2847), - [anon_sym_required] = ACTIONS(2847), - [anon_sym_nonisolated] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_internal] = ACTIONS(2847), - [anon_sym_fileprivate] = ACTIONS(2847), - [anon_sym_open] = ACTIONS(2847), - [anon_sym_mutating] = ACTIONS(2847), - [anon_sym_nonmutating] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_dynamic] = ACTIONS(2847), - [anon_sym_optional] = ACTIONS(2847), - [anon_sym_final] = ACTIONS(2847), - [anon_sym_inout] = ACTIONS(2847), - [anon_sym_ATescaping] = ACTIONS(2847), - [anon_sym_ATautoclosure] = ACTIONS(2847), - [anon_sym_weak] = ACTIONS(2847), - [anon_sym_unowned] = ACTIONS(2849), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2847), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2847), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2847), - [sym__explicit_semi] = ACTIONS(2847), - [sym__dot_custom] = ACTIONS(2847), - [sym__conjunction_operator_custom] = ACTIONS(2847), - [sym__disjunction_operator_custom] = ACTIONS(2847), - [sym__nil_coalescing_operator_custom] = ACTIONS(2847), - [sym__eq_eq_custom] = ACTIONS(2847), - [sym__plus_then_ws] = ACTIONS(2847), - [sym__minus_then_ws] = ACTIONS(2847), - [sym_bang] = ACTIONS(2847), - [sym_default_keyword] = ACTIONS(2847), - [sym_where_keyword] = ACTIONS(2847), - [sym__as_custom] = ACTIONS(2847), - [sym__as_quest_custom] = ACTIONS(2847), - [sym__as_bang_custom] = ACTIONS(2847), - [sym__custom_operator] = ACTIONS(2847), - }, - [1017] = { - [aux_sym_key_path_expression_repeat1] = STATE(1008), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(2938), - [anon_sym_DOT] = ACTIONS(3184), - [anon_sym_QMARK] = ACTIONS(2940), - [sym__immediate_quest] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [aux_sym_custom_operator_token1] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2940), - [anon_sym_GT] = ACTIONS(2940), - [anon_sym_LBRACE] = ACTIONS(2938), - [anon_sym_CARET_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_case] = ACTIONS(2938), - [anon_sym_fallthrough] = ACTIONS(2938), - [anon_sym_BANG_EQ] = ACTIONS(2940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2938), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2938), - [anon_sym_LT_EQ] = ACTIONS(2938), - [anon_sym_GT_EQ] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2938), - [anon_sym_DOT_DOT_LT] = ACTIONS(2938), - [anon_sym_is] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2940), - [anon_sym_DASH] = ACTIONS(2940), - [anon_sym_STAR] = ACTIONS(2938), - [anon_sym_SLASH] = ACTIONS(2940), - [anon_sym_PERCENT] = ACTIONS(2938), - [anon_sym_PLUS_PLUS] = ACTIONS(2938), - [anon_sym_DASH_DASH] = ACTIONS(2938), - [anon_sym_PIPE] = ACTIONS(2938), - [anon_sym_CARET] = ACTIONS(2940), - [anon_sym_LT_LT] = ACTIONS(2938), - [anon_sym_GT_GT] = ACTIONS(2938), - [anon_sym_class] = ACTIONS(2938), - [anon_sym_prefix] = ACTIONS(2938), - [anon_sym_infix] = ACTIONS(2938), - [anon_sym_postfix] = ACTIONS(2938), - [anon_sym_AT] = ACTIONS(2940), - [sym_property_behavior_modifier] = ACTIONS(2938), - [anon_sym_override] = ACTIONS(2938), - [anon_sym_convenience] = ACTIONS(2938), - [anon_sym_required] = ACTIONS(2938), - [anon_sym_nonisolated] = ACTIONS(2938), - [anon_sym_public] = ACTIONS(2938), - [anon_sym_private] = ACTIONS(2938), - [anon_sym_internal] = ACTIONS(2938), - [anon_sym_fileprivate] = ACTIONS(2938), - [anon_sym_open] = ACTIONS(2938), - [anon_sym_mutating] = ACTIONS(2938), - [anon_sym_nonmutating] = ACTIONS(2938), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_dynamic] = ACTIONS(2938), - [anon_sym_optional] = ACTIONS(2938), - [anon_sym_final] = ACTIONS(2938), - [anon_sym_inout] = ACTIONS(2938), - [anon_sym_ATescaping] = ACTIONS(2938), - [anon_sym_ATautoclosure] = ACTIONS(2938), - [anon_sym_weak] = ACTIONS(2938), - [anon_sym_unowned] = ACTIONS(2940), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2938), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2938), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2938), - [sym__explicit_semi] = ACTIONS(2938), - [sym__dot_custom] = ACTIONS(2938), - [sym__conjunction_operator_custom] = ACTIONS(2938), - [sym__disjunction_operator_custom] = ACTIONS(2938), - [sym__nil_coalescing_operator_custom] = ACTIONS(2938), - [sym__eq_eq_custom] = ACTIONS(2938), - [sym__plus_then_ws] = ACTIONS(2938), - [sym__minus_then_ws] = ACTIONS(2938), - [sym_bang] = ACTIONS(2938), - [sym_default_keyword] = ACTIONS(2938), - [sym__as_custom] = ACTIONS(2938), - [sym__as_quest_custom] = ACTIONS(2938), - [sym__as_bang_custom] = ACTIONS(2938), - [sym__custom_operator] = ACTIONS(2938), - }, - [1018] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [sym__immediate_quest] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2953), - [aux_sym_custom_operator_token1] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_CARET_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_self] = ACTIONS(2953), - [anon_sym_case] = ACTIONS(2953), - [anon_sym_fallthrough] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_LT] = ACTIONS(2953), - [anon_sym_is] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2953), - [anon_sym_prefix] = ACTIONS(2953), - [anon_sym_infix] = ACTIONS(2953), - [anon_sym_postfix] = ACTIONS(2953), - [anon_sym_AT] = ACTIONS(2955), - [sym_property_behavior_modifier] = ACTIONS(2953), - [anon_sym_override] = ACTIONS(2953), - [anon_sym_convenience] = ACTIONS(2953), - [anon_sym_required] = ACTIONS(2953), - [anon_sym_nonisolated] = ACTIONS(2953), - [anon_sym_public] = ACTIONS(2953), - [anon_sym_private] = ACTIONS(2953), - [anon_sym_internal] = ACTIONS(2953), - [anon_sym_fileprivate] = ACTIONS(2953), - [anon_sym_open] = ACTIONS(2953), - [anon_sym_mutating] = ACTIONS(2953), - [anon_sym_nonmutating] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_dynamic] = ACTIONS(2953), - [anon_sym_optional] = ACTIONS(2953), - [anon_sym_final] = ACTIONS(2953), - [anon_sym_inout] = ACTIONS(2953), - [anon_sym_ATescaping] = ACTIONS(2953), - [anon_sym_ATautoclosure] = ACTIONS(2953), - [anon_sym_weak] = ACTIONS(2953), - [anon_sym_unowned] = ACTIONS(2955), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2953), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2953), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2953), - [sym__explicit_semi] = ACTIONS(2953), - [sym__dot_custom] = ACTIONS(2953), - [sym__conjunction_operator_custom] = ACTIONS(2953), - [sym__disjunction_operator_custom] = ACTIONS(2953), - [sym__nil_coalescing_operator_custom] = ACTIONS(2953), - [sym__eq_eq_custom] = ACTIONS(2953), - [sym__plus_then_ws] = ACTIONS(2953), - [sym__minus_then_ws] = ACTIONS(2953), - [sym_bang] = ACTIONS(2953), - [sym_default_keyword] = ACTIONS(2953), - [sym__as_custom] = ACTIONS(2953), - [sym__as_quest_custom] = ACTIONS(2953), - [sym__as_bang_custom] = ACTIONS(2953), - [sym__custom_operator] = ACTIONS(2953), - }, - [1019] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [sym__immediate_quest] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [aux_sym_custom_operator_token1] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_CARET_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_fallthrough] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_LT] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_prefix] = ACTIONS(2885), - [anon_sym_infix] = ACTIONS(2885), - [anon_sym_postfix] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2887), - [sym_property_behavior_modifier] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_convenience] = ACTIONS(2885), - [anon_sym_required] = ACTIONS(2885), - [anon_sym_nonisolated] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_internal] = ACTIONS(2885), - [anon_sym_fileprivate] = ACTIONS(2885), - [anon_sym_open] = ACTIONS(2885), - [anon_sym_mutating] = ACTIONS(2885), - [anon_sym_nonmutating] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_dynamic] = ACTIONS(2885), - [anon_sym_optional] = ACTIONS(2885), - [anon_sym_final] = ACTIONS(2885), - [anon_sym_inout] = ACTIONS(2885), - [anon_sym_ATescaping] = ACTIONS(2885), - [anon_sym_ATautoclosure] = ACTIONS(2885), - [anon_sym_weak] = ACTIONS(2885), - [anon_sym_unowned] = ACTIONS(2887), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2885), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2885), - [sym__explicit_semi] = ACTIONS(2885), - [sym__dot_custom] = ACTIONS(2885), - [sym__conjunction_operator_custom] = ACTIONS(2885), - [sym__disjunction_operator_custom] = ACTIONS(2885), - [sym__nil_coalescing_operator_custom] = ACTIONS(2885), - [sym__eq_eq_custom] = ACTIONS(2885), - [sym__plus_then_ws] = ACTIONS(2885), - [sym__minus_then_ws] = ACTIONS(2885), - [sym_bang] = ACTIONS(2885), - [sym_default_keyword] = ACTIONS(2885), - [sym_where_keyword] = ACTIONS(2885), - [sym__as_custom] = ACTIONS(2885), - [sym__as_quest_custom] = ACTIONS(2885), - [sym__as_bang_custom] = ACTIONS(2885), - [sym__custom_operator] = ACTIONS(2885), - }, - [1020] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [aux_sym_custom_operator_token1] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_CARET_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_fallthrough] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_DOT_DOT_LT] = ACTIONS(2873), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2873), - [sym__explicit_semi] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__conjunction_operator_custom] = ACTIONS(2873), - [sym__disjunction_operator_custom] = ACTIONS(2873), - [sym__nil_coalescing_operator_custom] = ACTIONS(2873), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2873), - [sym__minus_then_ws] = ACTIONS(2873), - [sym_bang] = ACTIONS(2873), - [sym_default_keyword] = ACTIONS(2873), - [sym_where_keyword] = ACTIONS(2873), - [sym__as_custom] = ACTIONS(2873), - [sym__as_quest_custom] = ACTIONS(2873), - [sym__as_bang_custom] = ACTIONS(2873), - [sym__custom_operator] = ACTIONS(2873), - }, - [1021] = { - [sym_type_arguments] = STATE(1077), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [aux_sym_custom_operator_token1] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(3541), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_CARET_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_fallthrough] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2830), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_DOT_DOT_LT] = ACTIONS(2830), - [anon_sym_is] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2830), - [sym__explicit_semi] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__conjunction_operator_custom] = ACTIONS(2830), - [sym__disjunction_operator_custom] = ACTIONS(2830), - [sym__nil_coalescing_operator_custom] = ACTIONS(2830), - [sym__eq_eq_custom] = ACTIONS(2830), - [sym__plus_then_ws] = ACTIONS(2830), - [sym__minus_then_ws] = ACTIONS(2830), - [sym_bang] = ACTIONS(2830), - [sym_default_keyword] = ACTIONS(2830), - [sym__as_custom] = ACTIONS(2830), - [sym__as_quest_custom] = ACTIONS(2830), - [sym__as_bang_custom] = ACTIONS(2830), - [sym__custom_operator] = ACTIONS(2830), - }, - [1022] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_DOT] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(2932), - [sym__immediate_quest] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [aux_sym_custom_operator_token1] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2932), - [anon_sym_GT] = ACTIONS(2932), - [anon_sym_LBRACE] = ACTIONS(2930), - [anon_sym_CARET_LBRACE] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_self] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_fallthrough] = ACTIONS(2930), - [anon_sym_BANG_EQ] = ACTIONS(2932), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2930), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2930), - [anon_sym_LT_EQ] = ACTIONS(2930), - [anon_sym_GT_EQ] = ACTIONS(2930), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2930), - [anon_sym_DOT_DOT_LT] = ACTIONS(2930), - [anon_sym_is] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2932), - [anon_sym_DASH] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2932), - [anon_sym_PERCENT] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2930), - [anon_sym_PIPE] = ACTIONS(2930), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_LT_LT] = ACTIONS(2930), - [anon_sym_GT_GT] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_prefix] = ACTIONS(2930), - [anon_sym_infix] = ACTIONS(2930), - [anon_sym_postfix] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2932), - [sym_property_behavior_modifier] = ACTIONS(2930), - [anon_sym_override] = ACTIONS(2930), - [anon_sym_convenience] = ACTIONS(2930), - [anon_sym_required] = ACTIONS(2930), - [anon_sym_nonisolated] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_internal] = ACTIONS(2930), - [anon_sym_fileprivate] = ACTIONS(2930), - [anon_sym_open] = ACTIONS(2930), - [anon_sym_mutating] = ACTIONS(2930), - [anon_sym_nonmutating] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_dynamic] = ACTIONS(2930), - [anon_sym_optional] = ACTIONS(2930), - [anon_sym_final] = ACTIONS(2930), - [anon_sym_inout] = ACTIONS(2930), - [anon_sym_ATescaping] = ACTIONS(2930), - [anon_sym_ATautoclosure] = ACTIONS(2930), - [anon_sym_weak] = ACTIONS(2930), - [anon_sym_unowned] = ACTIONS(2932), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2930), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2930), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2930), - [sym__explicit_semi] = ACTIONS(2930), - [sym__dot_custom] = ACTIONS(2930), - [sym__conjunction_operator_custom] = ACTIONS(2930), - [sym__disjunction_operator_custom] = ACTIONS(2930), - [sym__nil_coalescing_operator_custom] = ACTIONS(2930), - [sym__eq_eq_custom] = ACTIONS(2930), - [sym__plus_then_ws] = ACTIONS(2930), - [sym__minus_then_ws] = ACTIONS(2930), - [sym_bang] = ACTIONS(2930), - [sym_default_keyword] = ACTIONS(2930), - [sym__as_custom] = ACTIONS(2930), - [sym__as_quest_custom] = ACTIONS(2930), - [sym__as_bang_custom] = ACTIONS(2930), - [sym__custom_operator] = ACTIONS(2930), - }, - [1023] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [sym__immediate_quest] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [aux_sym_custom_operator_token1] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_CARET_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_fallthrough] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2942), - [anon_sym_DOT_DOT_LT] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_prefix] = ACTIONS(2942), - [anon_sym_infix] = ACTIONS(2942), - [anon_sym_postfix] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2947), - [sym_property_behavior_modifier] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_convenience] = ACTIONS(2942), - [anon_sym_required] = ACTIONS(2942), - [anon_sym_nonisolated] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_internal] = ACTIONS(2942), - [anon_sym_fileprivate] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_mutating] = ACTIONS(2942), - [anon_sym_nonmutating] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_dynamic] = ACTIONS(2942), - [anon_sym_optional] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_inout] = ACTIONS(2942), - [anon_sym_ATescaping] = ACTIONS(2942), - [anon_sym_ATautoclosure] = ACTIONS(2942), - [anon_sym_weak] = ACTIONS(2942), - [anon_sym_unowned] = ACTIONS(2947), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2942), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2942), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2942), - [sym__explicit_semi] = ACTIONS(2942), - [sym__dot_custom] = ACTIONS(2942), - [sym__conjunction_operator_custom] = ACTIONS(2942), - [sym__disjunction_operator_custom] = ACTIONS(2942), - [sym__nil_coalescing_operator_custom] = ACTIONS(2942), - [sym__eq_eq_custom] = ACTIONS(2942), - [sym__plus_then_ws] = ACTIONS(2942), - [sym__minus_then_ws] = ACTIONS(2942), - [sym_bang] = ACTIONS(2942), - [sym_default_keyword] = ACTIONS(2942), - [sym_where_keyword] = ACTIONS(2942), - [sym__as_custom] = ACTIONS(2942), - [sym__as_quest_custom] = ACTIONS(2942), - [sym__as_bang_custom] = ACTIONS(2942), - [sym__custom_operator] = ACTIONS(2942), - }, - [1024] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [aux_sym_custom_operator_token1] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_CARET_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_fallthrough] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_DOT_DOT_LT] = ACTIONS(2897), - [anon_sym_is] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2897), - [sym__explicit_semi] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__conjunction_operator_custom] = ACTIONS(2897), - [sym__disjunction_operator_custom] = ACTIONS(2897), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_eq_custom] = ACTIONS(2897), - [sym__plus_then_ws] = ACTIONS(2897), - [sym__minus_then_ws] = ACTIONS(2897), - [sym_bang] = ACTIONS(2897), - [sym_default_keyword] = ACTIONS(2897), - [sym_where_keyword] = ACTIONS(2897), - [sym__as_custom] = ACTIONS(2897), - [sym__as_quest_custom] = ACTIONS(2897), - [sym__as_bang_custom] = ACTIONS(2897), - [sym__custom_operator] = ACTIONS(2897), - }, - [1025] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_fallthrough] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_prefix] = ACTIONS(2689), - [anon_sym_infix] = ACTIONS(2689), - [anon_sym_postfix] = ACTIONS(2689), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2689), - [anon_sym_override] = ACTIONS(2689), - [anon_sym_convenience] = ACTIONS(2689), - [anon_sym_required] = ACTIONS(2689), - [anon_sym_nonisolated] = ACTIONS(2689), - [anon_sym_public] = ACTIONS(2689), - [anon_sym_private] = ACTIONS(2689), - [anon_sym_internal] = ACTIONS(2689), - [anon_sym_fileprivate] = ACTIONS(2689), - [anon_sym_open] = ACTIONS(2689), - [anon_sym_mutating] = ACTIONS(2689), - [anon_sym_nonmutating] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_dynamic] = ACTIONS(2689), - [anon_sym_optional] = ACTIONS(2689), - [anon_sym_final] = ACTIONS(2689), - [anon_sym_inout] = ACTIONS(2689), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2689), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2689), - [sym__explicit_semi] = ACTIONS(2689), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(2689), - [sym_where_keyword] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [1026] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3005), - [sym__immediate_quest] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [aux_sym_custom_operator_token1] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_CARET_LBRACE] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_case] = ACTIONS(3003), - [anon_sym_fallthrough] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ] = ACTIONS(3003), - [anon_sym_GT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_is] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_PLUS_PLUS] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3003), - [anon_sym_GT_GT] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_prefix] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_postfix] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3005), - [sym_property_behavior_modifier] = ACTIONS(3003), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_convenience] = ACTIONS(3003), - [anon_sym_required] = ACTIONS(3003), - [anon_sym_nonisolated] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_fileprivate] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_mutating] = ACTIONS(3003), - [anon_sym_nonmutating] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_dynamic] = ACTIONS(3003), - [anon_sym_optional] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_inout] = ACTIONS(3003), - [anon_sym_ATescaping] = ACTIONS(3003), - [anon_sym_ATautoclosure] = ACTIONS(3003), - [anon_sym_weak] = ACTIONS(3003), - [anon_sym_unowned] = ACTIONS(3005), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3003), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3003), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3003), - [sym__explicit_semi] = ACTIONS(3003), - [sym__dot_custom] = ACTIONS(3003), - [sym__conjunction_operator_custom] = ACTIONS(3003), - [sym__disjunction_operator_custom] = ACTIONS(3003), - [sym__nil_coalescing_operator_custom] = ACTIONS(3003), - [sym__eq_eq_custom] = ACTIONS(3003), - [sym__plus_then_ws] = ACTIONS(3003), - [sym__minus_then_ws] = ACTIONS(3003), - [sym_bang] = ACTIONS(3003), - [sym_default_keyword] = ACTIONS(3003), - [sym_where_keyword] = ACTIONS(3003), - [sym__as_custom] = ACTIONS(3003), - [sym__as_quest_custom] = ACTIONS(3003), - [sym__as_bang_custom] = ACTIONS(3003), - [sym__custom_operator] = ACTIONS(3003), - }, - [1027] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3081), - [sym__immediate_quest] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3079), - [aux_sym_custom_operator_token1] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_CARET_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_case] = ACTIONS(3079), - [anon_sym_fallthrough] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT_EQ] = ACTIONS(3079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3079), - [anon_sym_DOT_DOT_LT] = ACTIONS(3079), - [anon_sym_is] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3079), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_prefix] = ACTIONS(3079), - [anon_sym_infix] = ACTIONS(3079), - [anon_sym_postfix] = ACTIONS(3079), - [anon_sym_AT] = ACTIONS(3081), - [sym_property_behavior_modifier] = ACTIONS(3079), - [anon_sym_override] = ACTIONS(3079), - [anon_sym_convenience] = ACTIONS(3079), - [anon_sym_required] = ACTIONS(3079), - [anon_sym_nonisolated] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_internal] = ACTIONS(3079), - [anon_sym_fileprivate] = ACTIONS(3079), - [anon_sym_open] = ACTIONS(3079), - [anon_sym_mutating] = ACTIONS(3079), - [anon_sym_nonmutating] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_dynamic] = ACTIONS(3079), - [anon_sym_optional] = ACTIONS(3079), - [anon_sym_final] = ACTIONS(3079), - [anon_sym_inout] = ACTIONS(3079), - [anon_sym_ATescaping] = ACTIONS(3079), - [anon_sym_ATautoclosure] = ACTIONS(3079), - [anon_sym_weak] = ACTIONS(3079), - [anon_sym_unowned] = ACTIONS(3081), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3079), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3079), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3079), - [sym__explicit_semi] = ACTIONS(3079), - [sym__dot_custom] = ACTIONS(3079), - [sym__conjunction_operator_custom] = ACTIONS(3079), - [sym__disjunction_operator_custom] = ACTIONS(3079), - [sym__nil_coalescing_operator_custom] = ACTIONS(3079), - [sym__eq_eq_custom] = ACTIONS(3079), - [sym__plus_then_ws] = ACTIONS(3079), - [sym__minus_then_ws] = ACTIONS(3079), - [sym_bang] = ACTIONS(3079), - [sym_default_keyword] = ACTIONS(3079), - [sym_where_keyword] = ACTIONS(3079), - [sym__as_custom] = ACTIONS(3079), - [sym__as_quest_custom] = ACTIONS(3079), - [sym__as_bang_custom] = ACTIONS(3079), - [sym__custom_operator] = ACTIONS(3079), - }, - [1028] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3085), - [sym__immediate_quest] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [aux_sym_custom_operator_token1] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_CARET_LBRACE] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_fallthrough] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), - [anon_sym_DOT_DOT_LT] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_prefix] = ACTIONS(3083), - [anon_sym_infix] = ACTIONS(3083), - [anon_sym_postfix] = ACTIONS(3083), - [anon_sym_AT] = ACTIONS(3085), - [sym_property_behavior_modifier] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3083), - [anon_sym_convenience] = ACTIONS(3083), - [anon_sym_required] = ACTIONS(3083), - [anon_sym_nonisolated] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_internal] = ACTIONS(3083), - [anon_sym_fileprivate] = ACTIONS(3083), - [anon_sym_open] = ACTIONS(3083), - [anon_sym_mutating] = ACTIONS(3083), - [anon_sym_nonmutating] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_dynamic] = ACTIONS(3083), - [anon_sym_optional] = ACTIONS(3083), - [anon_sym_final] = ACTIONS(3083), - [anon_sym_inout] = ACTIONS(3083), - [anon_sym_ATescaping] = ACTIONS(3083), - [anon_sym_ATautoclosure] = ACTIONS(3083), - [anon_sym_weak] = ACTIONS(3083), - [anon_sym_unowned] = ACTIONS(3085), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3083), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3083), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3083), - [sym__explicit_semi] = ACTIONS(3083), - [sym__dot_custom] = ACTIONS(3083), - [sym__conjunction_operator_custom] = ACTIONS(3083), - [sym__disjunction_operator_custom] = ACTIONS(3083), - [sym__nil_coalescing_operator_custom] = ACTIONS(3083), - [sym__eq_eq_custom] = ACTIONS(3083), - [sym__plus_then_ws] = ACTIONS(3083), - [sym__minus_then_ws] = ACTIONS(3083), - [sym_bang] = ACTIONS(3083), - [sym_default_keyword] = ACTIONS(3083), - [sym_where_keyword] = ACTIONS(3083), - [sym__as_custom] = ACTIONS(3083), - [sym__as_quest_custom] = ACTIONS(3083), - [sym__as_bang_custom] = ACTIONS(3083), - [sym__custom_operator] = ACTIONS(3083), - }, - [1029] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3037), - [sym__immediate_quest] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [aux_sym_custom_operator_token1] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_CARET_LBRACE] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_fallthrough] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), - [anon_sym_DOT_DOT_LT] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_prefix] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_postfix] = ACTIONS(3035), - [anon_sym_AT] = ACTIONS(3037), - [sym_property_behavior_modifier] = ACTIONS(3035), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_convenience] = ACTIONS(3035), - [anon_sym_required] = ACTIONS(3035), - [anon_sym_nonisolated] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_fileprivate] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_mutating] = ACTIONS(3035), - [anon_sym_nonmutating] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_dynamic] = ACTIONS(3035), - [anon_sym_optional] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_inout] = ACTIONS(3035), - [anon_sym_ATescaping] = ACTIONS(3035), - [anon_sym_ATautoclosure] = ACTIONS(3035), - [anon_sym_weak] = ACTIONS(3035), - [anon_sym_unowned] = ACTIONS(3037), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3035), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3035), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3035), - [sym__explicit_semi] = ACTIONS(3035), - [sym__dot_custom] = ACTIONS(3035), - [sym__conjunction_operator_custom] = ACTIONS(3035), - [sym__disjunction_operator_custom] = ACTIONS(3035), - [sym__nil_coalescing_operator_custom] = ACTIONS(3035), - [sym__eq_eq_custom] = ACTIONS(3035), - [sym__plus_then_ws] = ACTIONS(3035), - [sym__minus_then_ws] = ACTIONS(3035), - [sym_bang] = ACTIONS(3035), - [sym_default_keyword] = ACTIONS(3035), - [sym_where_keyword] = ACTIONS(3035), - [sym__as_custom] = ACTIONS(3035), - [sym__as_quest_custom] = ACTIONS(3035), - [sym__as_bang_custom] = ACTIONS(3035), - [sym__custom_operator] = ACTIONS(3035), - }, - [1030] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_QMARK] = ACTIONS(3077), - [sym__immediate_quest] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3075), - [aux_sym_custom_operator_token1] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_CARET_LBRACE] = ACTIONS(3075), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_fallthrough] = ACTIONS(3075), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3075), - [anon_sym_LT_EQ] = ACTIONS(3075), - [anon_sym_GT_EQ] = ACTIONS(3075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), - [anon_sym_DOT_DOT_LT] = ACTIONS(3075), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3075), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3075), - [anon_sym_GT_GT] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_prefix] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_postfix] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(3077), - [sym_property_behavior_modifier] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_convenience] = ACTIONS(3075), - [anon_sym_required] = ACTIONS(3075), - [anon_sym_nonisolated] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_fileprivate] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_mutating] = ACTIONS(3075), - [anon_sym_nonmutating] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_dynamic] = ACTIONS(3075), - [anon_sym_optional] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_inout] = ACTIONS(3075), - [anon_sym_ATescaping] = ACTIONS(3075), - [anon_sym_ATautoclosure] = ACTIONS(3075), - [anon_sym_weak] = ACTIONS(3075), - [anon_sym_unowned] = ACTIONS(3077), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3075), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3075), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3075), - [sym__explicit_semi] = ACTIONS(3075), - [sym__dot_custom] = ACTIONS(3075), - [sym__conjunction_operator_custom] = ACTIONS(3075), - [sym__disjunction_operator_custom] = ACTIONS(3075), - [sym__nil_coalescing_operator_custom] = ACTIONS(3075), - [sym__eq_eq_custom] = ACTIONS(3075), - [sym__plus_then_ws] = ACTIONS(3075), - [sym__minus_then_ws] = ACTIONS(3075), - [sym_bang] = ACTIONS(3075), - [sym_default_keyword] = ACTIONS(3075), - [sym_where_keyword] = ACTIONS(3075), - [sym__as_custom] = ACTIONS(3075), - [sym__as_quest_custom] = ACTIONS(3075), - [sym__as_bang_custom] = ACTIONS(3075), - [sym__custom_operator] = ACTIONS(3075), - }, - [1031] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3093), - [sym__immediate_quest] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - [aux_sym_custom_operator_token1] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_CARET_LBRACE] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_fallthrough] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), - [anon_sym_DOT_DOT_LT] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_prefix] = ACTIONS(3091), - [anon_sym_infix] = ACTIONS(3091), - [anon_sym_postfix] = ACTIONS(3091), - [anon_sym_AT] = ACTIONS(3093), - [sym_property_behavior_modifier] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_convenience] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_nonisolated] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_internal] = ACTIONS(3091), - [anon_sym_fileprivate] = ACTIONS(3091), - [anon_sym_open] = ACTIONS(3091), - [anon_sym_mutating] = ACTIONS(3091), - [anon_sym_nonmutating] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_dynamic] = ACTIONS(3091), - [anon_sym_optional] = ACTIONS(3091), - [anon_sym_final] = ACTIONS(3091), - [anon_sym_inout] = ACTIONS(3091), - [anon_sym_ATescaping] = ACTIONS(3091), - [anon_sym_ATautoclosure] = ACTIONS(3091), - [anon_sym_weak] = ACTIONS(3091), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3091), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3091), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3091), - [sym__explicit_semi] = ACTIONS(3091), - [sym__dot_custom] = ACTIONS(3091), - [sym__conjunction_operator_custom] = ACTIONS(3091), - [sym__disjunction_operator_custom] = ACTIONS(3091), - [sym__nil_coalescing_operator_custom] = ACTIONS(3091), - [sym__eq_eq_custom] = ACTIONS(3091), - [sym__plus_then_ws] = ACTIONS(3091), - [sym__minus_then_ws] = ACTIONS(3091), - [sym_bang] = ACTIONS(3091), - [sym_default_keyword] = ACTIONS(3091), - [sym_where_keyword] = ACTIONS(3091), - [sym__as_custom] = ACTIONS(3091), - [sym__as_quest_custom] = ACTIONS(3091), - [sym__as_bang_custom] = ACTIONS(3091), - [sym__custom_operator] = ACTIONS(3091), - }, - [1032] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [sym__immediate_quest] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_fallthrough] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3097), - [sym_property_behavior_modifier] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3095), - [sym__explicit_semi] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym_bang] = ACTIONS(3095), - [sym_default_keyword] = ACTIONS(3095), - [sym_where_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [1033] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_fallthrough] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_prefix] = ACTIONS(2693), - [anon_sym_infix] = ACTIONS(2693), - [anon_sym_postfix] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_convenience] = ACTIONS(2693), - [anon_sym_required] = ACTIONS(2693), - [anon_sym_nonisolated] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_internal] = ACTIONS(2693), - [anon_sym_fileprivate] = ACTIONS(2693), - [anon_sym_open] = ACTIONS(2693), - [anon_sym_mutating] = ACTIONS(2693), - [anon_sym_nonmutating] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_dynamic] = ACTIONS(2693), - [anon_sym_optional] = ACTIONS(2693), - [anon_sym_final] = ACTIONS(2693), - [anon_sym_inout] = ACTIONS(2693), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2693), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2693), - [sym__explicit_semi] = ACTIONS(2693), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym_default_keyword] = ACTIONS(2693), - [sym_where_keyword] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [1034] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_fallthrough] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_prefix] = ACTIONS(2709), - [anon_sym_infix] = ACTIONS(2709), - [anon_sym_postfix] = ACTIONS(2709), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2709), - [anon_sym_convenience] = ACTIONS(2709), - [anon_sym_required] = ACTIONS(2709), - [anon_sym_nonisolated] = ACTIONS(2709), - [anon_sym_public] = ACTIONS(2709), - [anon_sym_private] = ACTIONS(2709), - [anon_sym_internal] = ACTIONS(2709), - [anon_sym_fileprivate] = ACTIONS(2709), - [anon_sym_open] = ACTIONS(2709), - [anon_sym_mutating] = ACTIONS(2709), - [anon_sym_nonmutating] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_dynamic] = ACTIONS(2709), - [anon_sym_optional] = ACTIONS(2709), - [anon_sym_final] = ACTIONS(2709), - [anon_sym_inout] = ACTIONS(2709), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2709), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2709), - [sym__explicit_semi] = ACTIONS(2709), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym_default_keyword] = ACTIONS(2709), - [sym_where_keyword] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [1035] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3101), - [sym__immediate_quest] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_fallthrough] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3101), - [sym_property_behavior_modifier] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3099), - [sym__explicit_semi] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym_bang] = ACTIONS(3099), - [sym_default_keyword] = ACTIONS(3099), - [sym_where_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1036] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [sym__immediate_quest] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_fallthrough] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3105), - [sym_property_behavior_modifier] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3103), - [sym__explicit_semi] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym_bang] = ACTIONS(3103), - [sym_default_keyword] = ACTIONS(3103), - [sym_where_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [1037] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3109), - [sym__immediate_quest] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_fallthrough] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3109), - [sym_property_behavior_modifier] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3107), - [sym__explicit_semi] = ACTIONS(3107), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym_bang] = ACTIONS(3107), - [sym_default_keyword] = ACTIONS(3107), - [sym_where_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [1038] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3113), - [sym__immediate_quest] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_fallthrough] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3113), - [sym_property_behavior_modifier] = ACTIONS(3111), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3111), - [sym__explicit_semi] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym_bang] = ACTIONS(3111), - [sym_default_keyword] = ACTIONS(3111), - [sym_where_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [1039] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [sym__immediate_quest] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [aux_sym_custom_operator_token1] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_CARET_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_fallthrough] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_LT] = ACTIONS(3115), - [anon_sym_is] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3117), - [sym_property_behavior_modifier] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3115), - [sym__explicit_semi] = ACTIONS(3115), - [sym__dot_custom] = ACTIONS(3115), - [sym__conjunction_operator_custom] = ACTIONS(3115), - [sym__disjunction_operator_custom] = ACTIONS(3115), - [sym__nil_coalescing_operator_custom] = ACTIONS(3115), - [sym__eq_eq_custom] = ACTIONS(3115), - [sym__plus_then_ws] = ACTIONS(3115), - [sym__minus_then_ws] = ACTIONS(3115), - [sym_bang] = ACTIONS(3115), - [sym_default_keyword] = ACTIONS(3115), - [sym_where_keyword] = ACTIONS(3115), - [sym__as_custom] = ACTIONS(3115), - [sym__as_quest_custom] = ACTIONS(3115), - [sym__as_bang_custom] = ACTIONS(3115), - [sym__custom_operator] = ACTIONS(3115), - }, - [1040] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3029), - [sym__immediate_quest] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [aux_sym_custom_operator_token1] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_CARET_LBRACE] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_fallthrough] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3027), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), - [anon_sym_DOT_DOT_LT] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_prefix] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_postfix] = ACTIONS(3027), - [anon_sym_AT] = ACTIONS(3029), - [sym_property_behavior_modifier] = ACTIONS(3027), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_convenience] = ACTIONS(3027), - [anon_sym_required] = ACTIONS(3027), - [anon_sym_nonisolated] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_fileprivate] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_mutating] = ACTIONS(3027), - [anon_sym_nonmutating] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_dynamic] = ACTIONS(3027), - [anon_sym_optional] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_inout] = ACTIONS(3027), - [anon_sym_ATescaping] = ACTIONS(3027), - [anon_sym_ATautoclosure] = ACTIONS(3027), - [anon_sym_weak] = ACTIONS(3027), - [anon_sym_unowned] = ACTIONS(3029), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3027), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3027), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3027), - [sym__explicit_semi] = ACTIONS(3027), - [sym__dot_custom] = ACTIONS(3027), - [sym__conjunction_operator_custom] = ACTIONS(3027), - [sym__disjunction_operator_custom] = ACTIONS(3027), - [sym__nil_coalescing_operator_custom] = ACTIONS(3027), - [sym__eq_eq_custom] = ACTIONS(3027), - [sym__plus_then_ws] = ACTIONS(3027), - [sym__minus_then_ws] = ACTIONS(3027), - [sym_bang] = ACTIONS(3027), - [sym_default_keyword] = ACTIONS(3027), - [sym_where_keyword] = ACTIONS(3027), - [sym__as_custom] = ACTIONS(3027), - [sym__as_quest_custom] = ACTIONS(3027), - [sym__as_bang_custom] = ACTIONS(3027), - [sym__custom_operator] = ACTIONS(3027), - }, - [1041] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3121), - [sym__immediate_quest] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [aux_sym_custom_operator_token1] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_CARET_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_fallthrough] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_LT] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3121), - [sym_property_behavior_modifier] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3119), - [sym__explicit_semi] = ACTIONS(3119), - [sym__dot_custom] = ACTIONS(3119), - [sym__conjunction_operator_custom] = ACTIONS(3119), - [sym__disjunction_operator_custom] = ACTIONS(3119), - [sym__nil_coalescing_operator_custom] = ACTIONS(3119), - [sym__eq_eq_custom] = ACTIONS(3119), - [sym__plus_then_ws] = ACTIONS(3119), - [sym__minus_then_ws] = ACTIONS(3119), - [sym_bang] = ACTIONS(3119), - [sym_default_keyword] = ACTIONS(3119), - [sym_where_keyword] = ACTIONS(3119), - [sym__as_custom] = ACTIONS(3119), - [sym__as_quest_custom] = ACTIONS(3119), - [sym__as_bang_custom] = ACTIONS(3119), - [sym__custom_operator] = ACTIONS(3119), - }, - [1042] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2942), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [sym__immediate_quest] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [aux_sym_custom_operator_token1] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2942), - [anon_sym_CARET_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_fallthrough] = ACTIONS(2942), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2942), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2942), - [anon_sym_LT_EQ] = ACTIONS(2942), - [anon_sym_GT_EQ] = ACTIONS(2942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2942), - [anon_sym_DOT_DOT_LT] = ACTIONS(2942), - [anon_sym_is] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2942), - [anon_sym_DASH_DASH] = ACTIONS(2942), - [anon_sym_PIPE] = ACTIONS(2942), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2942), - [anon_sym_GT_GT] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_prefix] = ACTIONS(2942), - [anon_sym_infix] = ACTIONS(2942), - [anon_sym_postfix] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2947), - [sym_property_behavior_modifier] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_convenience] = ACTIONS(2942), - [anon_sym_required] = ACTIONS(2942), - [anon_sym_nonisolated] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_internal] = ACTIONS(2942), - [anon_sym_fileprivate] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_mutating] = ACTIONS(2942), - [anon_sym_nonmutating] = ACTIONS(2942), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_dynamic] = ACTIONS(2942), - [anon_sym_optional] = ACTIONS(2942), - [anon_sym_final] = ACTIONS(2942), - [anon_sym_inout] = ACTIONS(2942), - [anon_sym_ATescaping] = ACTIONS(2942), - [anon_sym_ATautoclosure] = ACTIONS(2942), - [anon_sym_weak] = ACTIONS(2942), - [anon_sym_unowned] = ACTIONS(2947), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2942), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2942), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2942), - [sym__explicit_semi] = ACTIONS(2942), - [sym__dot_custom] = ACTIONS(2942), - [sym__conjunction_operator_custom] = ACTIONS(2942), - [sym__disjunction_operator_custom] = ACTIONS(2942), - [sym__nil_coalescing_operator_custom] = ACTIONS(2942), - [sym__eq_eq_custom] = ACTIONS(2942), - [sym__plus_then_ws] = ACTIONS(2942), - [sym__minus_then_ws] = ACTIONS(2942), - [sym_bang] = ACTIONS(2942), - [sym_default_keyword] = ACTIONS(2942), - [sym__as_custom] = ACTIONS(2942), - [sym__as_quest_custom] = ACTIONS(2942), - [sym__as_bang_custom] = ACTIONS(2942), - [sym__custom_operator] = ACTIONS(2942), - }, - [1043] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3125), - [sym__immediate_quest] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [aux_sym_custom_operator_token1] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_CARET_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_fallthrough] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_DOT_DOT_LT] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3125), - [sym_property_behavior_modifier] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3123), - [sym__explicit_semi] = ACTIONS(3123), - [sym__dot_custom] = ACTIONS(3123), - [sym__conjunction_operator_custom] = ACTIONS(3123), - [sym__disjunction_operator_custom] = ACTIONS(3123), - [sym__nil_coalescing_operator_custom] = ACTIONS(3123), - [sym__eq_eq_custom] = ACTIONS(3123), - [sym__plus_then_ws] = ACTIONS(3123), - [sym__minus_then_ws] = ACTIONS(3123), - [sym_bang] = ACTIONS(3123), - [sym_default_keyword] = ACTIONS(3123), - [sym_where_keyword] = ACTIONS(3123), - [sym__as_custom] = ACTIONS(3123), - [sym__as_quest_custom] = ACTIONS(3123), - [sym__as_bang_custom] = ACTIONS(3123), - [sym__custom_operator] = ACTIONS(3123), - }, - [1044] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3129), - [sym__immediate_quest] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_fallthrough] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3129), - [sym_property_behavior_modifier] = ACTIONS(3127), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3127), - [sym__explicit_semi] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym_bang] = ACTIONS(3127), - [sym_default_keyword] = ACTIONS(3127), - [sym_where_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [1045] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [sym__immediate_quest] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [aux_sym_custom_operator_token1] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_CARET_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_fallthrough] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT_LT] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3133), - [sym_property_behavior_modifier] = ACTIONS(3131), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3131), - [sym__explicit_semi] = ACTIONS(3131), - [sym__dot_custom] = ACTIONS(3131), - [sym__conjunction_operator_custom] = ACTIONS(3131), - [sym__disjunction_operator_custom] = ACTIONS(3131), - [sym__nil_coalescing_operator_custom] = ACTIONS(3131), - [sym__eq_eq_custom] = ACTIONS(3131), - [sym__plus_then_ws] = ACTIONS(3131), - [sym__minus_then_ws] = ACTIONS(3131), - [sym_bang] = ACTIONS(3131), - [sym_default_keyword] = ACTIONS(3131), - [sym_where_keyword] = ACTIONS(3131), - [sym__as_custom] = ACTIONS(3131), - [sym__as_quest_custom] = ACTIONS(3131), - [sym__as_bang_custom] = ACTIONS(3131), - [sym__custom_operator] = ACTIONS(3131), - }, - [1046] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3017), - [sym__immediate_quest] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [aux_sym_custom_operator_token1] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_CARET_LBRACE] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_case] = ACTIONS(3015), - [anon_sym_fallthrough] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), - [anon_sym_DOT_DOT_LT] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_prefix] = ACTIONS(3015), - [anon_sym_infix] = ACTIONS(3015), - [anon_sym_postfix] = ACTIONS(3015), - [anon_sym_AT] = ACTIONS(3017), - [sym_property_behavior_modifier] = ACTIONS(3015), - [anon_sym_override] = ACTIONS(3015), - [anon_sym_convenience] = ACTIONS(3015), - [anon_sym_required] = ACTIONS(3015), - [anon_sym_nonisolated] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3015), - [anon_sym_private] = ACTIONS(3015), - [anon_sym_internal] = ACTIONS(3015), - [anon_sym_fileprivate] = ACTIONS(3015), - [anon_sym_open] = ACTIONS(3015), - [anon_sym_mutating] = ACTIONS(3015), - [anon_sym_nonmutating] = ACTIONS(3015), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_dynamic] = ACTIONS(3015), - [anon_sym_optional] = ACTIONS(3015), - [anon_sym_final] = ACTIONS(3015), - [anon_sym_inout] = ACTIONS(3015), - [anon_sym_ATescaping] = ACTIONS(3015), - [anon_sym_ATautoclosure] = ACTIONS(3015), - [anon_sym_weak] = ACTIONS(3015), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3015), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3015), - [sym__explicit_semi] = ACTIONS(3015), - [sym__dot_custom] = ACTIONS(3015), - [sym__conjunction_operator_custom] = ACTIONS(3015), - [sym__disjunction_operator_custom] = ACTIONS(3015), - [sym__nil_coalescing_operator_custom] = ACTIONS(3015), - [sym__eq_eq_custom] = ACTIONS(3015), - [sym__plus_then_ws] = ACTIONS(3015), - [sym__minus_then_ws] = ACTIONS(3015), - [sym_bang] = ACTIONS(3015), - [sym_default_keyword] = ACTIONS(3015), - [sym_where_keyword] = ACTIONS(3015), - [sym__as_custom] = ACTIONS(3015), - [sym__as_quest_custom] = ACTIONS(3015), - [sym__as_bang_custom] = ACTIONS(3015), - [sym__custom_operator] = ACTIONS(3015), - }, - [1047] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3137), - [sym__immediate_quest] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [aux_sym_custom_operator_token1] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_CARET_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_fallthrough] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_DOT_DOT_LT] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3137), - [sym_property_behavior_modifier] = ACTIONS(3135), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3135), - [sym__explicit_semi] = ACTIONS(3135), - [sym__dot_custom] = ACTIONS(3135), - [sym__conjunction_operator_custom] = ACTIONS(3135), - [sym__disjunction_operator_custom] = ACTIONS(3135), - [sym__nil_coalescing_operator_custom] = ACTIONS(3135), - [sym__eq_eq_custom] = ACTIONS(3135), - [sym__plus_then_ws] = ACTIONS(3135), - [sym__minus_then_ws] = ACTIONS(3135), - [sym_bang] = ACTIONS(3135), - [sym_default_keyword] = ACTIONS(3135), - [sym_where_keyword] = ACTIONS(3135), - [sym__as_custom] = ACTIONS(3135), - [sym__as_quest_custom] = ACTIONS(3135), - [sym__as_bang_custom] = ACTIONS(3135), - [sym__custom_operator] = ACTIONS(3135), - }, - [1048] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3141), - [sym__immediate_quest] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_fallthrough] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3141), - [sym_property_behavior_modifier] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3141), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3139), - [sym__explicit_semi] = ACTIONS(3139), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym_bang] = ACTIONS(3139), - [sym_default_keyword] = ACTIONS(3139), - [sym_where_keyword] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [1049] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2969), - [sym__immediate_quest] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [aux_sym_custom_operator_token1] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_CARET_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_case] = ACTIONS(2967), - [anon_sym_fallthrough] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), - [anon_sym_DOT_DOT_LT] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2969), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_prefix] = ACTIONS(2967), - [anon_sym_infix] = ACTIONS(2967), - [anon_sym_postfix] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2969), - [sym_property_behavior_modifier] = ACTIONS(2967), - [anon_sym_override] = ACTIONS(2967), - [anon_sym_convenience] = ACTIONS(2967), - [anon_sym_required] = ACTIONS(2967), - [anon_sym_nonisolated] = ACTIONS(2967), - [anon_sym_public] = ACTIONS(2967), - [anon_sym_private] = ACTIONS(2967), - [anon_sym_internal] = ACTIONS(2967), - [anon_sym_fileprivate] = ACTIONS(2967), - [anon_sym_open] = ACTIONS(2967), - [anon_sym_mutating] = ACTIONS(2967), - [anon_sym_nonmutating] = ACTIONS(2967), - [anon_sym_static] = ACTIONS(2967), - [anon_sym_dynamic] = ACTIONS(2967), - [anon_sym_optional] = ACTIONS(2967), - [anon_sym_final] = ACTIONS(2967), - [anon_sym_inout] = ACTIONS(2967), - [anon_sym_ATescaping] = ACTIONS(2967), - [anon_sym_ATautoclosure] = ACTIONS(2967), - [anon_sym_weak] = ACTIONS(2967), - [anon_sym_unowned] = ACTIONS(2969), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2967), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2967), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2967), - [sym__explicit_semi] = ACTIONS(2967), - [sym__dot_custom] = ACTIONS(2967), - [sym__conjunction_operator_custom] = ACTIONS(2967), - [sym__disjunction_operator_custom] = ACTIONS(2967), - [sym__nil_coalescing_operator_custom] = ACTIONS(2967), - [sym__eq_eq_custom] = ACTIONS(2967), - [sym__plus_then_ws] = ACTIONS(2967), - [sym__minus_then_ws] = ACTIONS(2967), - [sym_bang] = ACTIONS(2967), - [sym_default_keyword] = ACTIONS(2967), - [sym_where_keyword] = ACTIONS(2967), - [sym__as_custom] = ACTIONS(2967), - [sym__as_quest_custom] = ACTIONS(2967), - [sym__as_bang_custom] = ACTIONS(2967), - [sym__custom_operator] = ACTIONS(2967), - }, - [1050] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [sym__immediate_quest] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [aux_sym_custom_operator_token1] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_CARET_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_fallthrough] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), - [anon_sym_DOT_DOT_LT] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_prefix] = ACTIONS(3143), - [anon_sym_infix] = ACTIONS(3143), - [anon_sym_postfix] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3145), - [sym_property_behavior_modifier] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_convenience] = ACTIONS(3143), - [anon_sym_required] = ACTIONS(3143), - [anon_sym_nonisolated] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_internal] = ACTIONS(3143), - [anon_sym_fileprivate] = ACTIONS(3143), - [anon_sym_open] = ACTIONS(3143), - [anon_sym_mutating] = ACTIONS(3143), - [anon_sym_nonmutating] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_dynamic] = ACTIONS(3143), - [anon_sym_optional] = ACTIONS(3143), - [anon_sym_final] = ACTIONS(3143), - [anon_sym_inout] = ACTIONS(3143), - [anon_sym_ATescaping] = ACTIONS(3143), - [anon_sym_ATautoclosure] = ACTIONS(3143), - [anon_sym_weak] = ACTIONS(3143), - [anon_sym_unowned] = ACTIONS(3145), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3143), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3143), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3143), - [sym__explicit_semi] = ACTIONS(3143), - [sym__dot_custom] = ACTIONS(3143), - [sym__conjunction_operator_custom] = ACTIONS(3143), - [sym__disjunction_operator_custom] = ACTIONS(3143), - [sym__nil_coalescing_operator_custom] = ACTIONS(3143), - [sym__eq_eq_custom] = ACTIONS(3143), - [sym__plus_then_ws] = ACTIONS(3143), - [sym__minus_then_ws] = ACTIONS(3143), - [sym_bang] = ACTIONS(3143), - [sym_default_keyword] = ACTIONS(3143), - [sym_where_keyword] = ACTIONS(3143), - [sym__as_custom] = ACTIONS(3143), - [sym__as_quest_custom] = ACTIONS(3143), - [sym__as_bang_custom] = ACTIONS(3143), - [sym__custom_operator] = ACTIONS(3143), - }, - [1051] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [sym__immediate_quest] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2959), - [anon_sym_fallthrough] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_prefix] = ACTIONS(2959), - [anon_sym_infix] = ACTIONS(2959), - [anon_sym_postfix] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2961), - [sym_property_behavior_modifier] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_convenience] = ACTIONS(2959), - [anon_sym_required] = ACTIONS(2959), - [anon_sym_nonisolated] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_internal] = ACTIONS(2959), - [anon_sym_fileprivate] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_mutating] = ACTIONS(2959), - [anon_sym_nonmutating] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_dynamic] = ACTIONS(2959), - [anon_sym_optional] = ACTIONS(2959), - [anon_sym_final] = ACTIONS(2959), - [anon_sym_inout] = ACTIONS(2959), - [anon_sym_ATescaping] = ACTIONS(2959), - [anon_sym_ATautoclosure] = ACTIONS(2959), - [anon_sym_weak] = ACTIONS(2959), - [anon_sym_unowned] = ACTIONS(2961), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2959), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2959), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2959), - [sym__explicit_semi] = ACTIONS(2959), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym_bang] = ACTIONS(2959), - [sym_default_keyword] = ACTIONS(2959), - [sym_where_keyword] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1052] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [sym__immediate_quest] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [aux_sym_custom_operator_token1] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_CARET_LBRACE] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_case] = ACTIONS(3147), - [anon_sym_fallthrough] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3147), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), - [anon_sym_DOT_DOT_LT] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_prefix] = ACTIONS(3147), - [anon_sym_infix] = ACTIONS(3147), - [anon_sym_postfix] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3149), - [sym_property_behavior_modifier] = ACTIONS(3147), - [anon_sym_override] = ACTIONS(3147), - [anon_sym_convenience] = ACTIONS(3147), - [anon_sym_required] = ACTIONS(3147), - [anon_sym_nonisolated] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_private] = ACTIONS(3147), - [anon_sym_internal] = ACTIONS(3147), - [anon_sym_fileprivate] = ACTIONS(3147), - [anon_sym_open] = ACTIONS(3147), - [anon_sym_mutating] = ACTIONS(3147), - [anon_sym_nonmutating] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_dynamic] = ACTIONS(3147), - [anon_sym_optional] = ACTIONS(3147), - [anon_sym_final] = ACTIONS(3147), - [anon_sym_inout] = ACTIONS(3147), - [anon_sym_ATescaping] = ACTIONS(3147), - [anon_sym_ATautoclosure] = ACTIONS(3147), - [anon_sym_weak] = ACTIONS(3147), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3147), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3147), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3147), - [sym__explicit_semi] = ACTIONS(3147), - [sym__dot_custom] = ACTIONS(3147), - [sym__conjunction_operator_custom] = ACTIONS(3147), - [sym__disjunction_operator_custom] = ACTIONS(3147), - [sym__nil_coalescing_operator_custom] = ACTIONS(3147), - [sym__eq_eq_custom] = ACTIONS(3147), - [sym__plus_then_ws] = ACTIONS(3147), - [sym__minus_then_ws] = ACTIONS(3147), - [sym_bang] = ACTIONS(3147), - [sym_default_keyword] = ACTIONS(3147), - [sym_where_keyword] = ACTIONS(3147), - [sym__as_custom] = ACTIONS(3147), - [sym__as_quest_custom] = ACTIONS(3147), - [sym__as_bang_custom] = ACTIONS(3147), - [sym__custom_operator] = ACTIONS(3147), - }, - [1053] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [sym__immediate_quest] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [aux_sym_custom_operator_token1] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_CARET_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_fallthrough] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3153), - [sym_property_behavior_modifier] = ACTIONS(3151), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3151), - [sym__explicit_semi] = ACTIONS(3151), - [sym__dot_custom] = ACTIONS(3151), - [sym__conjunction_operator_custom] = ACTIONS(3151), - [sym__disjunction_operator_custom] = ACTIONS(3151), - [sym__nil_coalescing_operator_custom] = ACTIONS(3151), - [sym__eq_eq_custom] = ACTIONS(3151), - [sym__plus_then_ws] = ACTIONS(3151), - [sym__minus_then_ws] = ACTIONS(3151), - [sym_bang] = ACTIONS(3151), - [sym_default_keyword] = ACTIONS(3151), - [sym_where_keyword] = ACTIONS(3151), - [sym__as_custom] = ACTIONS(3151), - [sym__as_quest_custom] = ACTIONS(3151), - [sym__as_bang_custom] = ACTIONS(3151), - [sym__custom_operator] = ACTIONS(3151), - }, - [1054] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3157), - [sym__immediate_quest] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_fallthrough] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3157), - [sym_property_behavior_modifier] = ACTIONS(3155), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3155), - [sym__explicit_semi] = ACTIONS(3155), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym_bang] = ACTIONS(3155), - [sym_default_keyword] = ACTIONS(3155), - [sym_where_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [1055] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3089), - [sym__immediate_quest] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [aux_sym_custom_operator_token1] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_CARET_LBRACE] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_fallthrough] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3087), - [anon_sym_DOT_DOT_LT] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_prefix] = ACTIONS(3087), - [anon_sym_infix] = ACTIONS(3087), - [anon_sym_postfix] = ACTIONS(3087), - [anon_sym_AT] = ACTIONS(3089), - [sym_property_behavior_modifier] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_convenience] = ACTIONS(3087), - [anon_sym_required] = ACTIONS(3087), - [anon_sym_nonisolated] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_internal] = ACTIONS(3087), - [anon_sym_fileprivate] = ACTIONS(3087), - [anon_sym_open] = ACTIONS(3087), - [anon_sym_mutating] = ACTIONS(3087), - [anon_sym_nonmutating] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_dynamic] = ACTIONS(3087), - [anon_sym_optional] = ACTIONS(3087), - [anon_sym_final] = ACTIONS(3087), - [anon_sym_inout] = ACTIONS(3087), - [anon_sym_ATescaping] = ACTIONS(3087), - [anon_sym_ATautoclosure] = ACTIONS(3087), - [anon_sym_weak] = ACTIONS(3087), - [anon_sym_unowned] = ACTIONS(3089), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3087), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3087), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3087), - [sym__explicit_semi] = ACTIONS(3087), - [sym__dot_custom] = ACTIONS(3087), - [sym__conjunction_operator_custom] = ACTIONS(3087), - [sym__disjunction_operator_custom] = ACTIONS(3087), - [sym__nil_coalescing_operator_custom] = ACTIONS(3087), - [sym__eq_eq_custom] = ACTIONS(3087), - [sym__plus_then_ws] = ACTIONS(3087), - [sym__minus_then_ws] = ACTIONS(3087), - [sym_bang] = ACTIONS(3087), - [sym_default_keyword] = ACTIONS(3087), - [sym_where_keyword] = ACTIONS(3087), - [sym__as_custom] = ACTIONS(3087), - [sym__as_quest_custom] = ACTIONS(3087), - [sym__as_bang_custom] = ACTIONS(3087), - [sym__custom_operator] = ACTIONS(3087), - }, - [1056] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3045), - [sym__immediate_quest] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [aux_sym_custom_operator_token1] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_CARET_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_case] = ACTIONS(3043), - [anon_sym_fallthrough] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3043), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3043), - [anon_sym_DOT_DOT_LT] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_class] = ACTIONS(3043), - [anon_sym_prefix] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_postfix] = ACTIONS(3043), - [anon_sym_AT] = ACTIONS(3045), - [sym_property_behavior_modifier] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_convenience] = ACTIONS(3043), - [anon_sym_required] = ACTIONS(3043), - [anon_sym_nonisolated] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_fileprivate] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_mutating] = ACTIONS(3043), - [anon_sym_nonmutating] = ACTIONS(3043), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_dynamic] = ACTIONS(3043), - [anon_sym_optional] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_inout] = ACTIONS(3043), - [anon_sym_ATescaping] = ACTIONS(3043), - [anon_sym_ATautoclosure] = ACTIONS(3043), - [anon_sym_weak] = ACTIONS(3043), - [anon_sym_unowned] = ACTIONS(3045), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3043), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3043), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3043), - [sym__explicit_semi] = ACTIONS(3043), - [sym__dot_custom] = ACTIONS(3043), - [sym__conjunction_operator_custom] = ACTIONS(3043), - [sym__disjunction_operator_custom] = ACTIONS(3043), - [sym__nil_coalescing_operator_custom] = ACTIONS(3043), - [sym__eq_eq_custom] = ACTIONS(3043), - [sym__plus_then_ws] = ACTIONS(3043), - [sym__minus_then_ws] = ACTIONS(3043), - [sym_bang] = ACTIONS(3043), - [sym_default_keyword] = ACTIONS(3043), - [sym_where_keyword] = ACTIONS(3043), - [sym__as_custom] = ACTIONS(3043), - [sym__as_quest_custom] = ACTIONS(3043), - [sym__as_bang_custom] = ACTIONS(3043), - [sym__custom_operator] = ACTIONS(3043), - }, - [1057] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_QMARK] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [aux_sym_custom_operator_token1] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_GT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_CARET_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_fallthrough] = ACTIONS(2873), - [anon_sym_BANG_EQ] = ACTIONS(2875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2873), - [anon_sym_LT_EQ] = ACTIONS(2873), - [anon_sym_GT_EQ] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_DOT_DOT_LT] = ACTIONS(2873), - [anon_sym_is] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2873), - [anon_sym_DASH_DASH] = ACTIONS(2873), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_CARET] = ACTIONS(2875), - [anon_sym_LT_LT] = ACTIONS(2873), - [anon_sym_GT_GT] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2873), - [sym__explicit_semi] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__conjunction_operator_custom] = ACTIONS(2873), - [sym__disjunction_operator_custom] = ACTIONS(2873), - [sym__nil_coalescing_operator_custom] = ACTIONS(2873), - [sym__eq_eq_custom] = ACTIONS(2873), - [sym__plus_then_ws] = ACTIONS(2873), - [sym__minus_then_ws] = ACTIONS(2873), - [sym_bang] = ACTIONS(2873), - [sym_default_keyword] = ACTIONS(2873), - [sym__as_custom] = ACTIONS(2873), - [sym__as_quest_custom] = ACTIONS(2873), - [sym__as_bang_custom] = ACTIONS(2873), - [sym__custom_operator] = ACTIONS(2873), - }, - [1058] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_QMARK] = ACTIONS(3073), - [sym__immediate_quest] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3071), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_fallthrough] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3073), - [sym_property_behavior_modifier] = ACTIONS(3071), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3073), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym_bang] = ACTIONS(3071), - [sym_default_keyword] = ACTIONS(3071), - [sym_where_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__custom_operator] = ACTIONS(3071), - }, - [1059] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2965), - [sym__immediate_quest] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [aux_sym_custom_operator_token1] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_CARET_LBRACE] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_case] = ACTIONS(2963), - [anon_sym_fallthrough] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2963), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2963), - [anon_sym_DOT_DOT_LT] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_prefix] = ACTIONS(2963), - [anon_sym_infix] = ACTIONS(2963), - [anon_sym_postfix] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2965), - [sym_property_behavior_modifier] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(2963), - [anon_sym_convenience] = ACTIONS(2963), - [anon_sym_required] = ACTIONS(2963), - [anon_sym_nonisolated] = ACTIONS(2963), - [anon_sym_public] = ACTIONS(2963), - [anon_sym_private] = ACTIONS(2963), - [anon_sym_internal] = ACTIONS(2963), - [anon_sym_fileprivate] = ACTIONS(2963), - [anon_sym_open] = ACTIONS(2963), - [anon_sym_mutating] = ACTIONS(2963), - [anon_sym_nonmutating] = ACTIONS(2963), - [anon_sym_static] = ACTIONS(2963), - [anon_sym_dynamic] = ACTIONS(2963), - [anon_sym_optional] = ACTIONS(2963), - [anon_sym_final] = ACTIONS(2963), - [anon_sym_inout] = ACTIONS(2963), - [anon_sym_ATescaping] = ACTIONS(2963), - [anon_sym_ATautoclosure] = ACTIONS(2963), - [anon_sym_weak] = ACTIONS(2963), - [anon_sym_unowned] = ACTIONS(2965), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2963), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2963), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2963), - [sym__explicit_semi] = ACTIONS(2963), - [sym__dot_custom] = ACTIONS(2963), - [sym__conjunction_operator_custom] = ACTIONS(2963), - [sym__disjunction_operator_custom] = ACTIONS(2963), - [sym__nil_coalescing_operator_custom] = ACTIONS(2963), - [sym__eq_eq_custom] = ACTIONS(2963), - [sym__plus_then_ws] = ACTIONS(2963), - [sym__minus_then_ws] = ACTIONS(2963), - [sym_bang] = ACTIONS(2963), - [sym_default_keyword] = ACTIONS(2963), - [sym_where_keyword] = ACTIONS(2963), - [sym__as_custom] = ACTIONS(2963), - [sym__as_quest_custom] = ACTIONS(2963), - [sym__as_bang_custom] = ACTIONS(2963), - [sym__custom_operator] = ACTIONS(2963), - }, - [1060] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [aux_sym_custom_operator_token1] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_CARET_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_fallthrough] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2897), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_DOT_DOT_LT] = ACTIONS(2897), - [anon_sym_is] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2897), - [sym__explicit_semi] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__conjunction_operator_custom] = ACTIONS(2897), - [sym__disjunction_operator_custom] = ACTIONS(2897), - [sym__nil_coalescing_operator_custom] = ACTIONS(2897), - [sym__eq_eq_custom] = ACTIONS(2897), - [sym__plus_then_ws] = ACTIONS(2897), - [sym__minus_then_ws] = ACTIONS(2897), - [sym_bang] = ACTIONS(2897), - [sym_default_keyword] = ACTIONS(2897), - [sym__as_custom] = ACTIONS(2897), - [sym__as_quest_custom] = ACTIONS(2897), - [sym__as_bang_custom] = ACTIONS(2897), - [sym__custom_operator] = ACTIONS(2897), - }, - [1061] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [sym__immediate_quest] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [aux_sym_custom_operator_token1] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_CARET_LBRACE] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_case] = ACTIONS(3039), - [anon_sym_fallthrough] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_class] = ACTIONS(3039), - [anon_sym_prefix] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_postfix] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [sym_property_behavior_modifier] = ACTIONS(3039), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_convenience] = ACTIONS(3039), - [anon_sym_required] = ACTIONS(3039), - [anon_sym_nonisolated] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_fileprivate] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_mutating] = ACTIONS(3039), - [anon_sym_nonmutating] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3039), - [anon_sym_dynamic] = ACTIONS(3039), - [anon_sym_optional] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_inout] = ACTIONS(3039), - [anon_sym_ATescaping] = ACTIONS(3039), - [anon_sym_ATautoclosure] = ACTIONS(3039), - [anon_sym_weak] = ACTIONS(3039), - [anon_sym_unowned] = ACTIONS(3041), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3039), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3039), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3039), - [sym__explicit_semi] = ACTIONS(3039), - [sym__dot_custom] = ACTIONS(3039), - [sym__conjunction_operator_custom] = ACTIONS(3039), - [sym__disjunction_operator_custom] = ACTIONS(3039), - [sym__nil_coalescing_operator_custom] = ACTIONS(3039), - [sym__eq_eq_custom] = ACTIONS(3039), - [sym__plus_then_ws] = ACTIONS(3039), - [sym__minus_then_ws] = ACTIONS(3039), - [sym_bang] = ACTIONS(3039), - [sym_default_keyword] = ACTIONS(3039), - [sym_where_keyword] = ACTIONS(3039), - [sym__as_custom] = ACTIONS(3039), - [sym__as_quest_custom] = ACTIONS(3039), - [sym__as_bang_custom] = ACTIONS(3039), - [sym__custom_operator] = ACTIONS(3039), - }, - [1062] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3025), - [sym__immediate_quest] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [aux_sym_custom_operator_token1] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_CARET_LBRACE] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_fallthrough] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), - [anon_sym_DOT_DOT_LT] = ACTIONS(3023), - [anon_sym_is] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_prefix] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_postfix] = ACTIONS(3023), - [anon_sym_AT] = ACTIONS(3025), - [sym_property_behavior_modifier] = ACTIONS(3023), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_convenience] = ACTIONS(3023), - [anon_sym_required] = ACTIONS(3023), - [anon_sym_nonisolated] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_fileprivate] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_mutating] = ACTIONS(3023), - [anon_sym_nonmutating] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_dynamic] = ACTIONS(3023), - [anon_sym_optional] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_inout] = ACTIONS(3023), - [anon_sym_ATescaping] = ACTIONS(3023), - [anon_sym_ATautoclosure] = ACTIONS(3023), - [anon_sym_weak] = ACTIONS(3023), - [anon_sym_unowned] = ACTIONS(3025), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3023), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3023), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3023), - [sym__explicit_semi] = ACTIONS(3023), - [sym__dot_custom] = ACTIONS(3023), - [sym__conjunction_operator_custom] = ACTIONS(3023), - [sym__disjunction_operator_custom] = ACTIONS(3023), - [sym__nil_coalescing_operator_custom] = ACTIONS(3023), - [sym__eq_eq_custom] = ACTIONS(3023), - [sym__plus_then_ws] = ACTIONS(3023), - [sym__minus_then_ws] = ACTIONS(3023), - [sym_bang] = ACTIONS(3023), - [sym_default_keyword] = ACTIONS(3023), - [sym_where_keyword] = ACTIONS(3023), - [sym__as_custom] = ACTIONS(3023), - [sym__as_quest_custom] = ACTIONS(3023), - [sym__as_bang_custom] = ACTIONS(3023), - [sym__custom_operator] = ACTIONS(3023), - }, - [1063] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3050), - [sym__immediate_quest] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [aux_sym_custom_operator_token1] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_CARET_LBRACE] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_case] = ACTIONS(3047), - [anon_sym_fallthrough] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3047), - [anon_sym_DOT_DOT_LT] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_class] = ACTIONS(3047), - [anon_sym_prefix] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_postfix] = ACTIONS(3047), - [anon_sym_AT] = ACTIONS(3050), - [sym_property_behavior_modifier] = ACTIONS(3047), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_convenience] = ACTIONS(3047), - [anon_sym_required] = ACTIONS(3047), - [anon_sym_nonisolated] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_fileprivate] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_mutating] = ACTIONS(3047), - [anon_sym_nonmutating] = ACTIONS(3047), - [anon_sym_static] = ACTIONS(3047), - [anon_sym_dynamic] = ACTIONS(3047), - [anon_sym_optional] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_inout] = ACTIONS(3047), - [anon_sym_ATescaping] = ACTIONS(3047), - [anon_sym_ATautoclosure] = ACTIONS(3047), - [anon_sym_weak] = ACTIONS(3047), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3047), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3047), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3047), - [sym__explicit_semi] = ACTIONS(3047), - [sym__dot_custom] = ACTIONS(3047), - [sym__conjunction_operator_custom] = ACTIONS(3047), - [sym__disjunction_operator_custom] = ACTIONS(3047), - [sym__nil_coalescing_operator_custom] = ACTIONS(3047), - [sym__eq_eq_custom] = ACTIONS(3047), - [sym__plus_then_ws] = ACTIONS(3047), - [sym__minus_then_ws] = ACTIONS(3047), - [sym_bang] = ACTIONS(3047), - [sym_default_keyword] = ACTIONS(3047), - [sym_where_keyword] = ACTIONS(3047), - [sym__as_custom] = ACTIONS(3047), - [sym__as_quest_custom] = ACTIONS(3047), - [sym__as_bang_custom] = ACTIONS(3047), - [sym__custom_operator] = ACTIONS(3047), - }, - [1064] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3065), - [sym__immediate_quest] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [aux_sym_custom_operator_token1] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_CARET_LBRACE] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_fallthrough] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3063), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3063), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT_EQ] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3063), - [anon_sym_DOT_DOT_LT] = ACTIONS(3063), - [anon_sym_is] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_prefix] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_postfix] = ACTIONS(3063), - [anon_sym_AT] = ACTIONS(3065), - [sym_property_behavior_modifier] = ACTIONS(3063), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_convenience] = ACTIONS(3063), - [anon_sym_required] = ACTIONS(3063), - [anon_sym_nonisolated] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_fileprivate] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_mutating] = ACTIONS(3063), - [anon_sym_nonmutating] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_dynamic] = ACTIONS(3063), - [anon_sym_optional] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_inout] = ACTIONS(3063), - [anon_sym_ATescaping] = ACTIONS(3063), - [anon_sym_ATautoclosure] = ACTIONS(3063), - [anon_sym_weak] = ACTIONS(3063), - [anon_sym_unowned] = ACTIONS(3065), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3063), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3063), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3063), - [sym__explicit_semi] = ACTIONS(3063), - [sym__dot_custom] = ACTIONS(3063), - [sym__conjunction_operator_custom] = ACTIONS(3063), - [sym__disjunction_operator_custom] = ACTIONS(3063), - [sym__nil_coalescing_operator_custom] = ACTIONS(3063), - [sym__eq_eq_custom] = ACTIONS(3063), - [sym__plus_then_ws] = ACTIONS(3063), - [sym__minus_then_ws] = ACTIONS(3063), - [sym_bang] = ACTIONS(3063), - [sym_default_keyword] = ACTIONS(3063), - [sym_where_keyword] = ACTIONS(3063), - [sym__as_custom] = ACTIONS(3063), - [sym__as_quest_custom] = ACTIONS(3063), - [sym__as_bang_custom] = ACTIONS(3063), - [sym__custom_operator] = ACTIONS(3063), - }, - [1065] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2973), - [sym__immediate_quest] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [aux_sym_custom_operator_token1] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_CARET_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_fallthrough] = ACTIONS(2971), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2971), - [anon_sym_LT_EQ] = ACTIONS(2971), - [anon_sym_GT_EQ] = ACTIONS(2971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), - [anon_sym_DOT_DOT_LT] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_class] = ACTIONS(2971), - [anon_sym_prefix] = ACTIONS(2971), - [anon_sym_infix] = ACTIONS(2971), - [anon_sym_postfix] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2973), - [sym_property_behavior_modifier] = ACTIONS(2971), - [anon_sym_override] = ACTIONS(2971), - [anon_sym_convenience] = ACTIONS(2971), - [anon_sym_required] = ACTIONS(2971), - [anon_sym_nonisolated] = ACTIONS(2971), - [anon_sym_public] = ACTIONS(2971), - [anon_sym_private] = ACTIONS(2971), - [anon_sym_internal] = ACTIONS(2971), - [anon_sym_fileprivate] = ACTIONS(2971), - [anon_sym_open] = ACTIONS(2971), - [anon_sym_mutating] = ACTIONS(2971), - [anon_sym_nonmutating] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(2971), - [anon_sym_dynamic] = ACTIONS(2971), - [anon_sym_optional] = ACTIONS(2971), - [anon_sym_final] = ACTIONS(2971), - [anon_sym_inout] = ACTIONS(2971), - [anon_sym_ATescaping] = ACTIONS(2971), - [anon_sym_ATautoclosure] = ACTIONS(2971), - [anon_sym_weak] = ACTIONS(2971), - [anon_sym_unowned] = ACTIONS(2973), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2971), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2971), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2971), - [sym__explicit_semi] = ACTIONS(2971), - [sym__dot_custom] = ACTIONS(2971), - [sym__conjunction_operator_custom] = ACTIONS(2971), - [sym__disjunction_operator_custom] = ACTIONS(2971), - [sym__nil_coalescing_operator_custom] = ACTIONS(2971), - [sym__eq_eq_custom] = ACTIONS(2971), - [sym__plus_then_ws] = ACTIONS(2971), - [sym__minus_then_ws] = ACTIONS(2971), - [sym_bang] = ACTIONS(2971), - [sym_default_keyword] = ACTIONS(2971), - [sym_where_keyword] = ACTIONS(2971), - [sym__as_custom] = ACTIONS(2971), - [sym__as_quest_custom] = ACTIONS(2971), - [sym__as_bang_custom] = ACTIONS(2971), - [sym__custom_operator] = ACTIONS(2971), - }, - [1066] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [sym__immediate_quest] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_fallthrough] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3021), - [sym_property_behavior_modifier] = ACTIONS(3019), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3021), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3019), - [sym__explicit_semi] = ACTIONS(3019), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym_bang] = ACTIONS(3019), - [sym_default_keyword] = ACTIONS(3019), - [sym_where_keyword] = ACTIONS(3019), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__custom_operator] = ACTIONS(3019), - }, - [1067] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_fallthrough] = ACTIONS(2727), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_prefix] = ACTIONS(2727), - [anon_sym_infix] = ACTIONS(2727), - [anon_sym_postfix] = ACTIONS(2727), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2727), - [anon_sym_override] = ACTIONS(2727), - [anon_sym_convenience] = ACTIONS(2727), - [anon_sym_required] = ACTIONS(2727), - [anon_sym_nonisolated] = ACTIONS(2727), - [anon_sym_public] = ACTIONS(2727), - [anon_sym_private] = ACTIONS(2727), - [anon_sym_internal] = ACTIONS(2727), - [anon_sym_fileprivate] = ACTIONS(2727), - [anon_sym_open] = ACTIONS(2727), - [anon_sym_mutating] = ACTIONS(2727), - [anon_sym_nonmutating] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_dynamic] = ACTIONS(2727), - [anon_sym_optional] = ACTIONS(2727), - [anon_sym_final] = ACTIONS(2727), - [anon_sym_inout] = ACTIONS(2727), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2727), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2727), - [sym__explicit_semi] = ACTIONS(2727), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym_default_keyword] = ACTIONS(2727), - [sym_where_keyword] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [1068] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2449), - [sym__immediate_quest] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [aux_sym_custom_operator_token1] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_CARET_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_fallthrough] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2447), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2447), - [anon_sym_DOT_DOT_LT] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_prefix] = ACTIONS(2447), - [anon_sym_infix] = ACTIONS(2447), - [anon_sym_postfix] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2449), - [sym_property_behavior_modifier] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_convenience] = ACTIONS(2447), - [anon_sym_required] = ACTIONS(2447), - [anon_sym_nonisolated] = ACTIONS(2447), - [anon_sym_public] = ACTIONS(2447), - [anon_sym_private] = ACTIONS(2447), - [anon_sym_internal] = ACTIONS(2447), - [anon_sym_fileprivate] = ACTIONS(2447), - [anon_sym_open] = ACTIONS(2447), - [anon_sym_mutating] = ACTIONS(2447), - [anon_sym_nonmutating] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_dynamic] = ACTIONS(2447), - [anon_sym_optional] = ACTIONS(2447), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_inout] = ACTIONS(2447), - [anon_sym_ATescaping] = ACTIONS(2447), - [anon_sym_ATautoclosure] = ACTIONS(2447), - [anon_sym_weak] = ACTIONS(2447), - [anon_sym_unowned] = ACTIONS(2449), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2447), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2447), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2447), - [sym__explicit_semi] = ACTIONS(2447), - [sym__dot_custom] = ACTIONS(2447), - [sym__conjunction_operator_custom] = ACTIONS(2447), - [sym__disjunction_operator_custom] = ACTIONS(2447), - [sym__nil_coalescing_operator_custom] = ACTIONS(2447), - [sym__eq_eq_custom] = ACTIONS(2447), - [sym__plus_then_ws] = ACTIONS(2447), - [sym__minus_then_ws] = ACTIONS(2447), - [sym_bang] = ACTIONS(2447), - [sym_default_keyword] = ACTIONS(2447), - [sym_where_keyword] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2447), - [sym__as_quest_custom] = ACTIONS(2447), - [sym__as_bang_custom] = ACTIONS(2447), - [sym__custom_operator] = ACTIONS(2447), - }, - [1069] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3033), - [sym__immediate_quest] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [aux_sym_custom_operator_token1] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_CARET_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_fallthrough] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), - [anon_sym_DOT_DOT_LT] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_prefix] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_postfix] = ACTIONS(3031), - [anon_sym_AT] = ACTIONS(3033), - [sym_property_behavior_modifier] = ACTIONS(3031), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_convenience] = ACTIONS(3031), - [anon_sym_required] = ACTIONS(3031), - [anon_sym_nonisolated] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_fileprivate] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_mutating] = ACTIONS(3031), - [anon_sym_nonmutating] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_dynamic] = ACTIONS(3031), - [anon_sym_optional] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_inout] = ACTIONS(3031), - [anon_sym_ATescaping] = ACTIONS(3031), - [anon_sym_ATautoclosure] = ACTIONS(3031), - [anon_sym_weak] = ACTIONS(3031), - [anon_sym_unowned] = ACTIONS(3033), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3031), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3031), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3031), - [sym__explicit_semi] = ACTIONS(3031), - [sym__dot_custom] = ACTIONS(3031), - [sym__conjunction_operator_custom] = ACTIONS(3031), - [sym__disjunction_operator_custom] = ACTIONS(3031), - [sym__nil_coalescing_operator_custom] = ACTIONS(3031), - [sym__eq_eq_custom] = ACTIONS(3031), - [sym__plus_then_ws] = ACTIONS(3031), - [sym__minus_then_ws] = ACTIONS(3031), - [sym_bang] = ACTIONS(3031), - [sym_default_keyword] = ACTIONS(3031), - [sym_where_keyword] = ACTIONS(3031), - [sym__as_custom] = ACTIONS(3031), - [sym__as_quest_custom] = ACTIONS(3031), - [sym__as_bang_custom] = ACTIONS(3031), - [sym__custom_operator] = ACTIONS(3031), - }, - [1070] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_QMARK] = ACTIONS(3001), - [sym__immediate_quest] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(2999), - [aux_sym_custom_operator_token1] = ACTIONS(2999), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_CARET_LBRACE] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_case] = ACTIONS(2999), - [anon_sym_fallthrough] = ACTIONS(2999), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2999), - [anon_sym_LT_EQ] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2999), - [anon_sym_DOT_DOT_LT] = ACTIONS(2999), - [anon_sym_is] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(2999), - [anon_sym_PLUS_PLUS] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(2999), - [anon_sym_GT_GT] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_prefix] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_postfix] = ACTIONS(2999), - [anon_sym_AT] = ACTIONS(3001), - [sym_property_behavior_modifier] = ACTIONS(2999), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_convenience] = ACTIONS(2999), - [anon_sym_required] = ACTIONS(2999), - [anon_sym_nonisolated] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_fileprivate] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_mutating] = ACTIONS(2999), - [anon_sym_nonmutating] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_dynamic] = ACTIONS(2999), - [anon_sym_optional] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_inout] = ACTIONS(2999), - [anon_sym_ATescaping] = ACTIONS(2999), - [anon_sym_ATautoclosure] = ACTIONS(2999), - [anon_sym_weak] = ACTIONS(2999), - [anon_sym_unowned] = ACTIONS(3001), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2999), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2999), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2999), - [sym__explicit_semi] = ACTIONS(2999), - [sym__dot_custom] = ACTIONS(2999), - [sym__conjunction_operator_custom] = ACTIONS(2999), - [sym__disjunction_operator_custom] = ACTIONS(2999), - [sym__nil_coalescing_operator_custom] = ACTIONS(2999), - [sym__eq_eq_custom] = ACTIONS(2999), - [sym__plus_then_ws] = ACTIONS(2999), - [sym__minus_then_ws] = ACTIONS(2999), - [sym_bang] = ACTIONS(2999), - [sym_default_keyword] = ACTIONS(2999), - [sym_where_keyword] = ACTIONS(2999), - [sym__as_custom] = ACTIONS(2999), - [sym__as_quest_custom] = ACTIONS(2999), - [sym__as_bang_custom] = ACTIONS(2999), - [sym__custom_operator] = ACTIONS(2999), - }, - [1071] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3056), - [sym__immediate_quest] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [aux_sym_custom_operator_token1] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_CARET_LBRACE] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_fallthrough] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3053), - [anon_sym_DOT_DOT_LT] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_prefix] = ACTIONS(3053), - [anon_sym_infix] = ACTIONS(3053), - [anon_sym_postfix] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3056), - [sym_property_behavior_modifier] = ACTIONS(3053), - [anon_sym_override] = ACTIONS(3053), - [anon_sym_convenience] = ACTIONS(3053), - [anon_sym_required] = ACTIONS(3053), - [anon_sym_nonisolated] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_internal] = ACTIONS(3053), - [anon_sym_fileprivate] = ACTIONS(3053), - [anon_sym_open] = ACTIONS(3053), - [anon_sym_mutating] = ACTIONS(3053), - [anon_sym_nonmutating] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_dynamic] = ACTIONS(3053), - [anon_sym_optional] = ACTIONS(3053), - [anon_sym_final] = ACTIONS(3053), - [anon_sym_inout] = ACTIONS(3053), - [anon_sym_ATescaping] = ACTIONS(3053), - [anon_sym_ATautoclosure] = ACTIONS(3053), - [anon_sym_weak] = ACTIONS(3053), - [anon_sym_unowned] = ACTIONS(3056), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3053), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3053), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3053), - [sym__explicit_semi] = ACTIONS(3053), - [sym__dot_custom] = ACTIONS(3053), - [sym__conjunction_operator_custom] = ACTIONS(3053), - [sym__disjunction_operator_custom] = ACTIONS(3053), - [sym__nil_coalescing_operator_custom] = ACTIONS(3053), - [sym__eq_eq_custom] = ACTIONS(3053), - [sym__plus_then_ws] = ACTIONS(3053), - [sym__minus_then_ws] = ACTIONS(3053), - [sym_bang] = ACTIONS(3053), - [sym_default_keyword] = ACTIONS(3053), - [sym_where_keyword] = ACTIONS(3053), - [sym__as_custom] = ACTIONS(3053), - [sym__as_quest_custom] = ACTIONS(3053), - [sym__as_bang_custom] = ACTIONS(3053), - [sym__custom_operator] = ACTIONS(3053), - }, - [1072] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [sym__immediate_quest] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2995), - [aux_sym_custom_operator_token1] = ACTIONS(2995), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_CARET_LBRACE] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_case] = ACTIONS(2995), - [anon_sym_fallthrough] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2995), - [anon_sym_DOT_DOT_LT] = ACTIONS(2995), - [anon_sym_is] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2995), - [anon_sym_GT_GT] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_prefix] = ACTIONS(2995), - [anon_sym_infix] = ACTIONS(2995), - [anon_sym_postfix] = ACTIONS(2995), - [anon_sym_AT] = ACTIONS(2997), - [sym_property_behavior_modifier] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2995), - [anon_sym_convenience] = ACTIONS(2995), - [anon_sym_required] = ACTIONS(2995), - [anon_sym_nonisolated] = ACTIONS(2995), - [anon_sym_public] = ACTIONS(2995), - [anon_sym_private] = ACTIONS(2995), - [anon_sym_internal] = ACTIONS(2995), - [anon_sym_fileprivate] = ACTIONS(2995), - [anon_sym_open] = ACTIONS(2995), - [anon_sym_mutating] = ACTIONS(2995), - [anon_sym_nonmutating] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_dynamic] = ACTIONS(2995), - [anon_sym_optional] = ACTIONS(2995), - [anon_sym_final] = ACTIONS(2995), - [anon_sym_inout] = ACTIONS(2995), - [anon_sym_ATescaping] = ACTIONS(2995), - [anon_sym_ATautoclosure] = ACTIONS(2995), - [anon_sym_weak] = ACTIONS(2995), - [anon_sym_unowned] = ACTIONS(2997), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2995), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2995), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2995), - [sym__explicit_semi] = ACTIONS(2995), - [sym__dot_custom] = ACTIONS(2995), - [sym__conjunction_operator_custom] = ACTIONS(2995), - [sym__disjunction_operator_custom] = ACTIONS(2995), - [sym__nil_coalescing_operator_custom] = ACTIONS(2995), - [sym__eq_eq_custom] = ACTIONS(2995), - [sym__plus_then_ws] = ACTIONS(2995), - [sym__minus_then_ws] = ACTIONS(2995), - [sym_bang] = ACTIONS(2995), - [sym_default_keyword] = ACTIONS(2995), - [sym_where_keyword] = ACTIONS(2995), - [sym__as_custom] = ACTIONS(2995), - [sym__as_quest_custom] = ACTIONS(2995), - [sym__as_bang_custom] = ACTIONS(2995), - [sym__custom_operator] = ACTIONS(2995), - }, - [1073] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2989), - [sym__immediate_quest] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [aux_sym_custom_operator_token1] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_CARET_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_case] = ACTIONS(2987), - [anon_sym_fallthrough] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), - [anon_sym_DOT_DOT_LT] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2987), - [anon_sym_class] = ACTIONS(2987), - [anon_sym_prefix] = ACTIONS(2987), - [anon_sym_infix] = ACTIONS(2987), - [anon_sym_postfix] = ACTIONS(2987), - [anon_sym_AT] = ACTIONS(2989), - [sym_property_behavior_modifier] = ACTIONS(2987), - [anon_sym_override] = ACTIONS(2987), - [anon_sym_convenience] = ACTIONS(2987), - [anon_sym_required] = ACTIONS(2987), - [anon_sym_nonisolated] = ACTIONS(2987), - [anon_sym_public] = ACTIONS(2987), - [anon_sym_private] = ACTIONS(2987), - [anon_sym_internal] = ACTIONS(2987), - [anon_sym_fileprivate] = ACTIONS(2987), - [anon_sym_open] = ACTIONS(2987), - [anon_sym_mutating] = ACTIONS(2987), - [anon_sym_nonmutating] = ACTIONS(2987), - [anon_sym_static] = ACTIONS(2987), - [anon_sym_dynamic] = ACTIONS(2987), - [anon_sym_optional] = ACTIONS(2987), - [anon_sym_final] = ACTIONS(2987), - [anon_sym_inout] = ACTIONS(2987), - [anon_sym_ATescaping] = ACTIONS(2987), - [anon_sym_ATautoclosure] = ACTIONS(2987), - [anon_sym_weak] = ACTIONS(2987), - [anon_sym_unowned] = ACTIONS(2989), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2987), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2987), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2987), - [sym__explicit_semi] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(2987), - [sym__conjunction_operator_custom] = ACTIONS(2987), - [sym__disjunction_operator_custom] = ACTIONS(2987), - [sym__nil_coalescing_operator_custom] = ACTIONS(2987), - [sym__eq_eq_custom] = ACTIONS(2987), - [sym__plus_then_ws] = ACTIONS(2987), - [sym__minus_then_ws] = ACTIONS(2987), - [sym_bang] = ACTIONS(2987), - [sym_default_keyword] = ACTIONS(2987), - [sym_where_keyword] = ACTIONS(2987), - [sym__as_custom] = ACTIONS(2987), - [sym__as_quest_custom] = ACTIONS(2987), - [sym__as_bang_custom] = ACTIONS(2987), - [sym__custom_operator] = ACTIONS(2987), - }, - [1074] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2993), - [sym__immediate_quest] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [aux_sym_custom_operator_token1] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_CARET_LBRACE] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_case] = ACTIONS(2991), - [anon_sym_fallthrough] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2991), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2991), - [anon_sym_DOT_DOT_LT] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2991), - [anon_sym_class] = ACTIONS(2991), - [anon_sym_prefix] = ACTIONS(2991), - [anon_sym_infix] = ACTIONS(2991), - [anon_sym_postfix] = ACTIONS(2991), - [anon_sym_AT] = ACTIONS(2993), - [sym_property_behavior_modifier] = ACTIONS(2991), - [anon_sym_override] = ACTIONS(2991), - [anon_sym_convenience] = ACTIONS(2991), - [anon_sym_required] = ACTIONS(2991), - [anon_sym_nonisolated] = ACTIONS(2991), - [anon_sym_public] = ACTIONS(2991), - [anon_sym_private] = ACTIONS(2991), - [anon_sym_internal] = ACTIONS(2991), - [anon_sym_fileprivate] = ACTIONS(2991), - [anon_sym_open] = ACTIONS(2991), - [anon_sym_mutating] = ACTIONS(2991), - [anon_sym_nonmutating] = ACTIONS(2991), - [anon_sym_static] = ACTIONS(2991), - [anon_sym_dynamic] = ACTIONS(2991), - [anon_sym_optional] = ACTIONS(2991), - [anon_sym_final] = ACTIONS(2991), - [anon_sym_inout] = ACTIONS(2991), - [anon_sym_ATescaping] = ACTIONS(2991), - [anon_sym_ATautoclosure] = ACTIONS(2991), - [anon_sym_weak] = ACTIONS(2991), - [anon_sym_unowned] = ACTIONS(2993), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2991), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2991), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2991), - [sym__explicit_semi] = ACTIONS(2991), - [sym__dot_custom] = ACTIONS(2991), - [sym__conjunction_operator_custom] = ACTIONS(2991), - [sym__disjunction_operator_custom] = ACTIONS(2991), - [sym__nil_coalescing_operator_custom] = ACTIONS(2991), - [sym__eq_eq_custom] = ACTIONS(2991), - [sym__plus_then_ws] = ACTIONS(2991), - [sym__minus_then_ws] = ACTIONS(2991), - [sym_bang] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(2991), - [sym_where_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(2991), - [sym__as_quest_custom] = ACTIONS(2991), - [sym__as_bang_custom] = ACTIONS(2991), - [sym__custom_operator] = ACTIONS(2991), - }, - [1075] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_QMARK] = ACTIONS(2849), - [sym__immediate_quest] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [aux_sym_custom_operator_token1] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_CARET_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_fallthrough] = ACTIONS(2847), - [anon_sym_BANG_EQ] = ACTIONS(2849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2847), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2847), - [anon_sym_LT_EQ] = ACTIONS(2847), - [anon_sym_GT_EQ] = ACTIONS(2847), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), - [anon_sym_DOT_DOT_LT] = ACTIONS(2847), - [anon_sym_is] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_CARET] = ACTIONS(2849), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_prefix] = ACTIONS(2847), - [anon_sym_infix] = ACTIONS(2847), - [anon_sym_postfix] = ACTIONS(2847), - [anon_sym_AT] = ACTIONS(2849), - [sym_property_behavior_modifier] = ACTIONS(2847), - [anon_sym_override] = ACTIONS(2847), - [anon_sym_convenience] = ACTIONS(2847), - [anon_sym_required] = ACTIONS(2847), - [anon_sym_nonisolated] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_internal] = ACTIONS(2847), - [anon_sym_fileprivate] = ACTIONS(2847), - [anon_sym_open] = ACTIONS(2847), - [anon_sym_mutating] = ACTIONS(2847), - [anon_sym_nonmutating] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_dynamic] = ACTIONS(2847), - [anon_sym_optional] = ACTIONS(2847), - [anon_sym_final] = ACTIONS(2847), - [anon_sym_inout] = ACTIONS(2847), - [anon_sym_ATescaping] = ACTIONS(2847), - [anon_sym_ATautoclosure] = ACTIONS(2847), - [anon_sym_weak] = ACTIONS(2847), - [anon_sym_unowned] = ACTIONS(2849), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2847), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2847), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2847), - [sym__explicit_semi] = ACTIONS(2847), - [sym__dot_custom] = ACTIONS(2847), - [sym__conjunction_operator_custom] = ACTIONS(2847), - [sym__disjunction_operator_custom] = ACTIONS(2847), - [sym__nil_coalescing_operator_custom] = ACTIONS(2847), - [sym__eq_eq_custom] = ACTIONS(2847), - [sym__plus_then_ws] = ACTIONS(2847), - [sym__minus_then_ws] = ACTIONS(2847), - [sym_bang] = ACTIONS(2847), - [sym_default_keyword] = ACTIONS(2847), - [sym__as_custom] = ACTIONS(2847), - [sym__as_quest_custom] = ACTIONS(2847), - [sym__as_bang_custom] = ACTIONS(2847), - [sym__custom_operator] = ACTIONS(2847), - }, - [1076] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2977), - [sym__immediate_quest] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [aux_sym_custom_operator_token1] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_CARET_LBRACE] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_case] = ACTIONS(2975), - [anon_sym_fallthrough] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(2975), - [anon_sym_GT_EQ] = ACTIONS(2975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), - [anon_sym_DOT_DOT_LT] = ACTIONS(2975), - [anon_sym_is] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2975), - [anon_sym_class] = ACTIONS(2975), - [anon_sym_prefix] = ACTIONS(2975), - [anon_sym_infix] = ACTIONS(2975), - [anon_sym_postfix] = ACTIONS(2975), - [anon_sym_AT] = ACTIONS(2977), - [sym_property_behavior_modifier] = ACTIONS(2975), - [anon_sym_override] = ACTIONS(2975), - [anon_sym_convenience] = ACTIONS(2975), - [anon_sym_required] = ACTIONS(2975), - [anon_sym_nonisolated] = ACTIONS(2975), - [anon_sym_public] = ACTIONS(2975), - [anon_sym_private] = ACTIONS(2975), - [anon_sym_internal] = ACTIONS(2975), - [anon_sym_fileprivate] = ACTIONS(2975), - [anon_sym_open] = ACTIONS(2975), - [anon_sym_mutating] = ACTIONS(2975), - [anon_sym_nonmutating] = ACTIONS(2975), - [anon_sym_static] = ACTIONS(2975), - [anon_sym_dynamic] = ACTIONS(2975), - [anon_sym_optional] = ACTIONS(2975), - [anon_sym_final] = ACTIONS(2975), - [anon_sym_inout] = ACTIONS(2975), - [anon_sym_ATescaping] = ACTIONS(2975), - [anon_sym_ATautoclosure] = ACTIONS(2975), - [anon_sym_weak] = ACTIONS(2975), - [anon_sym_unowned] = ACTIONS(2977), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2975), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2975), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2975), - [sym__explicit_semi] = ACTIONS(2975), - [sym__dot_custom] = ACTIONS(2975), - [sym__conjunction_operator_custom] = ACTIONS(2975), - [sym__disjunction_operator_custom] = ACTIONS(2975), - [sym__nil_coalescing_operator_custom] = ACTIONS(2975), - [sym__eq_eq_custom] = ACTIONS(2975), - [sym__plus_then_ws] = ACTIONS(2975), - [sym__minus_then_ws] = ACTIONS(2975), - [sym_bang] = ACTIONS(2975), - [sym_default_keyword] = ACTIONS(2975), - [sym_where_keyword] = ACTIONS(2975), - [sym__as_custom] = ACTIONS(2975), - [sym__as_quest_custom] = ACTIONS(2975), - [sym__as_bang_custom] = ACTIONS(2975), - [sym__custom_operator] = ACTIONS(2975), - }, - [1077] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_QMARK] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [aux_sym_custom_operator_token1] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_CARET_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_fallthrough] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2857), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2857), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2855), - [sym__explicit_semi] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__conjunction_operator_custom] = ACTIONS(2855), - [sym__disjunction_operator_custom] = ACTIONS(2855), - [sym__nil_coalescing_operator_custom] = ACTIONS(2855), - [sym__eq_eq_custom] = ACTIONS(2855), - [sym__plus_then_ws] = ACTIONS(2855), - [sym__minus_then_ws] = ACTIONS(2855), - [sym_bang] = ACTIONS(2855), - [sym_default_keyword] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2855), - [sym__as_quest_custom] = ACTIONS(2855), - [sym__as_bang_custom] = ACTIONS(2855), - [sym__custom_operator] = ACTIONS(2855), - }, - [1078] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2985), - [sym__immediate_quest] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_fallthrough] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2985), - [sym_property_behavior_modifier] = ACTIONS(2983), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2985), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym_bang] = ACTIONS(2983), - [sym_default_keyword] = ACTIONS(2983), - [sym_where_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__custom_operator] = ACTIONS(2983), - }, - [1079] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3013), - [sym__immediate_quest] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [aux_sym_custom_operator_token1] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_CARET_LBRACE] = ACTIONS(3011), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_case] = ACTIONS(3011), - [anon_sym_fallthrough] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_DOT_DOT_LT] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_prefix] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_postfix] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(3013), - [sym_property_behavior_modifier] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_convenience] = ACTIONS(3011), - [anon_sym_required] = ACTIONS(3011), - [anon_sym_nonisolated] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_fileprivate] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_mutating] = ACTIONS(3011), - [anon_sym_nonmutating] = ACTIONS(3011), - [anon_sym_static] = ACTIONS(3011), - [anon_sym_dynamic] = ACTIONS(3011), - [anon_sym_optional] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_inout] = ACTIONS(3011), - [anon_sym_ATescaping] = ACTIONS(3011), - [anon_sym_ATautoclosure] = ACTIONS(3011), - [anon_sym_weak] = ACTIONS(3011), - [anon_sym_unowned] = ACTIONS(3013), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3011), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3011), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3011), - [sym__explicit_semi] = ACTIONS(3011), - [sym__dot_custom] = ACTIONS(3011), - [sym__conjunction_operator_custom] = ACTIONS(3011), - [sym__disjunction_operator_custom] = ACTIONS(3011), - [sym__nil_coalescing_operator_custom] = ACTIONS(3011), - [sym__eq_eq_custom] = ACTIONS(3011), - [sym__plus_then_ws] = ACTIONS(3011), - [sym__minus_then_ws] = ACTIONS(3011), - [sym_bang] = ACTIONS(3011), - [sym_default_keyword] = ACTIONS(3011), - [sym_where_keyword] = ACTIONS(3011), - [sym__as_custom] = ACTIONS(3011), - [sym__as_quest_custom] = ACTIONS(3011), - [sym__as_bang_custom] = ACTIONS(3011), - [sym__custom_operator] = ACTIONS(3011), - }, - [1080] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [sym__immediate_quest] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_fallthrough] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_prefix] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_postfix] = ACTIONS(3067), - [anon_sym_AT] = ACTIONS(3069), - [sym_property_behavior_modifier] = ACTIONS(3067), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_convenience] = ACTIONS(3067), - [anon_sym_required] = ACTIONS(3067), - [anon_sym_nonisolated] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_fileprivate] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_mutating] = ACTIONS(3067), - [anon_sym_nonmutating] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_dynamic] = ACTIONS(3067), - [anon_sym_optional] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_inout] = ACTIONS(3067), - [anon_sym_ATescaping] = ACTIONS(3067), - [anon_sym_ATautoclosure] = ACTIONS(3067), - [anon_sym_weak] = ACTIONS(3067), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3067), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3067), - [sym__explicit_semi] = ACTIONS(3067), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym_bang] = ACTIONS(3067), - [sym_default_keyword] = ACTIONS(3067), - [sym_where_keyword] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1081] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2981), - [sym__immediate_quest] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [aux_sym_custom_operator_token1] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_CARET_LBRACE] = ACTIONS(2979), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_case] = ACTIONS(2979), - [anon_sym_fallthrough] = ACTIONS(2979), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2979), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2979), - [anon_sym_LT_EQ] = ACTIONS(2979), - [anon_sym_GT_EQ] = ACTIONS(2979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2979), - [anon_sym_DOT_DOT_LT] = ACTIONS(2979), - [anon_sym_is] = ACTIONS(2979), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(2979), - [anon_sym_prefix] = ACTIONS(2979), - [anon_sym_infix] = ACTIONS(2979), - [anon_sym_postfix] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2981), - [sym_property_behavior_modifier] = ACTIONS(2979), - [anon_sym_override] = ACTIONS(2979), - [anon_sym_convenience] = ACTIONS(2979), - [anon_sym_required] = ACTIONS(2979), - [anon_sym_nonisolated] = ACTIONS(2979), - [anon_sym_public] = ACTIONS(2979), - [anon_sym_private] = ACTIONS(2979), - [anon_sym_internal] = ACTIONS(2979), - [anon_sym_fileprivate] = ACTIONS(2979), - [anon_sym_open] = ACTIONS(2979), - [anon_sym_mutating] = ACTIONS(2979), - [anon_sym_nonmutating] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(2979), - [anon_sym_dynamic] = ACTIONS(2979), - [anon_sym_optional] = ACTIONS(2979), - [anon_sym_final] = ACTIONS(2979), - [anon_sym_inout] = ACTIONS(2979), - [anon_sym_ATescaping] = ACTIONS(2979), - [anon_sym_ATautoclosure] = ACTIONS(2979), - [anon_sym_weak] = ACTIONS(2979), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2979), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2979), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2979), - [sym__explicit_semi] = ACTIONS(2979), - [sym__dot_custom] = ACTIONS(2979), - [sym__conjunction_operator_custom] = ACTIONS(2979), - [sym__disjunction_operator_custom] = ACTIONS(2979), - [sym__nil_coalescing_operator_custom] = ACTIONS(2979), - [sym__eq_eq_custom] = ACTIONS(2979), - [sym__plus_then_ws] = ACTIONS(2979), - [sym__minus_then_ws] = ACTIONS(2979), - [sym_bang] = ACTIONS(2979), - [sym_default_keyword] = ACTIONS(2979), - [sym_where_keyword] = ACTIONS(2979), - [sym__as_custom] = ACTIONS(2979), - [sym__as_quest_custom] = ACTIONS(2979), - [sym__as_bang_custom] = ACTIONS(2979), - [sym__custom_operator] = ACTIONS(2979), - }, - [1082] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [sym__immediate_quest] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [aux_sym_custom_operator_token1] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_CARET_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_fallthrough] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2885), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2885), - [anon_sym_DOT_DOT_LT] = ACTIONS(2885), - [anon_sym_is] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_prefix] = ACTIONS(2885), - [anon_sym_infix] = ACTIONS(2885), - [anon_sym_postfix] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2887), - [sym_property_behavior_modifier] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_convenience] = ACTIONS(2885), - [anon_sym_required] = ACTIONS(2885), - [anon_sym_nonisolated] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_internal] = ACTIONS(2885), - [anon_sym_fileprivate] = ACTIONS(2885), - [anon_sym_open] = ACTIONS(2885), - [anon_sym_mutating] = ACTIONS(2885), - [anon_sym_nonmutating] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_dynamic] = ACTIONS(2885), - [anon_sym_optional] = ACTIONS(2885), - [anon_sym_final] = ACTIONS(2885), - [anon_sym_inout] = ACTIONS(2885), - [anon_sym_ATescaping] = ACTIONS(2885), - [anon_sym_ATautoclosure] = ACTIONS(2885), - [anon_sym_weak] = ACTIONS(2885), - [anon_sym_unowned] = ACTIONS(2887), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2885), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2885), - [sym__explicit_semi] = ACTIONS(2885), - [sym__dot_custom] = ACTIONS(2885), - [sym__conjunction_operator_custom] = ACTIONS(2885), - [sym__disjunction_operator_custom] = ACTIONS(2885), - [sym__nil_coalescing_operator_custom] = ACTIONS(2885), - [sym__eq_eq_custom] = ACTIONS(2885), - [sym__plus_then_ws] = ACTIONS(2885), - [sym__minus_then_ws] = ACTIONS(2885), - [sym_bang] = ACTIONS(2885), - [sym_default_keyword] = ACTIONS(2885), - [sym__as_custom] = ACTIONS(2885), - [sym__as_quest_custom] = ACTIONS(2885), - [sym__as_bang_custom] = ACTIONS(2885), - [sym__custom_operator] = ACTIONS(2885), - }, - [1083] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [sym__immediate_quest] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [aux_sym_custom_operator_token1] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_CARET_LBRACE] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_fallthrough] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_prefix] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_postfix] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3061), - [sym_property_behavior_modifier] = ACTIONS(3059), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_convenience] = ACTIONS(3059), - [anon_sym_required] = ACTIONS(3059), - [anon_sym_nonisolated] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_fileprivate] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_mutating] = ACTIONS(3059), - [anon_sym_nonmutating] = ACTIONS(3059), - [anon_sym_static] = ACTIONS(3059), - [anon_sym_dynamic] = ACTIONS(3059), - [anon_sym_optional] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_inout] = ACTIONS(3059), - [anon_sym_ATescaping] = ACTIONS(3059), - [anon_sym_ATautoclosure] = ACTIONS(3059), - [anon_sym_weak] = ACTIONS(3059), - [anon_sym_unowned] = ACTIONS(3061), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3059), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3059), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3059), - [sym__explicit_semi] = ACTIONS(3059), - [sym__dot_custom] = ACTIONS(3059), - [sym__conjunction_operator_custom] = ACTIONS(3059), - [sym__disjunction_operator_custom] = ACTIONS(3059), - [sym__nil_coalescing_operator_custom] = ACTIONS(3059), - [sym__eq_eq_custom] = ACTIONS(3059), - [sym__plus_then_ws] = ACTIONS(3059), - [sym__minus_then_ws] = ACTIONS(3059), - [sym_bang] = ACTIONS(3059), - [sym_default_keyword] = ACTIONS(3059), - [sym_where_keyword] = ACTIONS(3059), - [sym__as_custom] = ACTIONS(3059), - [sym__as_quest_custom] = ACTIONS(3059), - [sym__as_bang_custom] = ACTIONS(3059), - [sym__custom_operator] = ACTIONS(3059), - }, - [1084] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3009), - [sym__immediate_quest] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [aux_sym_custom_operator_token1] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_CARET_LBRACE] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_case] = ACTIONS(3007), - [anon_sym_fallthrough] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), - [anon_sym_DOT_DOT_LT] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3007), - [anon_sym_class] = ACTIONS(3007), - [anon_sym_prefix] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_postfix] = ACTIONS(3007), - [anon_sym_AT] = ACTIONS(3009), - [sym_property_behavior_modifier] = ACTIONS(3007), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_convenience] = ACTIONS(3007), - [anon_sym_required] = ACTIONS(3007), - [anon_sym_nonisolated] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_fileprivate] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_mutating] = ACTIONS(3007), - [anon_sym_nonmutating] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_dynamic] = ACTIONS(3007), - [anon_sym_optional] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_inout] = ACTIONS(3007), - [anon_sym_ATescaping] = ACTIONS(3007), - [anon_sym_ATautoclosure] = ACTIONS(3007), - [anon_sym_weak] = ACTIONS(3007), - [anon_sym_unowned] = ACTIONS(3009), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3007), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3007), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3007), - [sym__explicit_semi] = ACTIONS(3007), - [sym__dot_custom] = ACTIONS(3007), - [sym__conjunction_operator_custom] = ACTIONS(3007), - [sym__disjunction_operator_custom] = ACTIONS(3007), - [sym__nil_coalescing_operator_custom] = ACTIONS(3007), - [sym__eq_eq_custom] = ACTIONS(3007), - [sym__plus_then_ws] = ACTIONS(3007), - [sym__minus_then_ws] = ACTIONS(3007), - [sym_bang] = ACTIONS(3007), - [sym_default_keyword] = ACTIONS(3007), - [sym_where_keyword] = ACTIONS(3007), - [sym__as_custom] = ACTIONS(3007), - [sym__as_quest_custom] = ACTIONS(3007), - [sym__as_bang_custom] = ACTIONS(3007), - [sym__custom_operator] = ACTIONS(3007), - }, - [1085] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3093), - [sym__immediate_quest] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3091), - [aux_sym_custom_operator_token1] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_CARET_LBRACE] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_case] = ACTIONS(3091), - [anon_sym_fallthrough] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3091), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), - [anon_sym_DOT_DOT_LT] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3091), - [anon_sym_class] = ACTIONS(3091), - [anon_sym_prefix] = ACTIONS(3091), - [anon_sym_infix] = ACTIONS(3091), - [anon_sym_postfix] = ACTIONS(3091), - [anon_sym_AT] = ACTIONS(3093), - [sym_property_behavior_modifier] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_convenience] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_nonisolated] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_internal] = ACTIONS(3091), - [anon_sym_fileprivate] = ACTIONS(3091), - [anon_sym_open] = ACTIONS(3091), - [anon_sym_mutating] = ACTIONS(3091), - [anon_sym_nonmutating] = ACTIONS(3091), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_dynamic] = ACTIONS(3091), - [anon_sym_optional] = ACTIONS(3091), - [anon_sym_final] = ACTIONS(3091), - [anon_sym_inout] = ACTIONS(3091), - [anon_sym_ATescaping] = ACTIONS(3091), - [anon_sym_ATautoclosure] = ACTIONS(3091), - [anon_sym_weak] = ACTIONS(3091), - [anon_sym_unowned] = ACTIONS(3093), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3091), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3091), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3091), - [sym__explicit_semi] = ACTIONS(3091), - [sym__dot_custom] = ACTIONS(3091), - [sym__conjunction_operator_custom] = ACTIONS(3091), - [sym__disjunction_operator_custom] = ACTIONS(3091), - [sym__nil_coalescing_operator_custom] = ACTIONS(3091), - [sym__eq_eq_custom] = ACTIONS(3091), - [sym__plus_then_ws] = ACTIONS(3091), - [sym__minus_then_ws] = ACTIONS(3091), - [sym_bang] = ACTIONS(3091), - [sym_default_keyword] = ACTIONS(3091), - [sym__as_custom] = ACTIONS(3091), - [sym__as_quest_custom] = ACTIONS(3091), - [sym__as_bang_custom] = ACTIONS(3091), - [sym__custom_operator] = ACTIONS(3091), - }, - [1086] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2969), - [sym__immediate_quest] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [aux_sym_custom_operator_token1] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_CARET_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_case] = ACTIONS(2967), - [anon_sym_fallthrough] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2969), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2967), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), - [anon_sym_DOT_DOT_LT] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2969), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_prefix] = ACTIONS(2967), - [anon_sym_infix] = ACTIONS(2967), - [anon_sym_postfix] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2969), - [sym_property_behavior_modifier] = ACTIONS(2967), - [anon_sym_override] = ACTIONS(2967), - [anon_sym_convenience] = ACTIONS(2967), - [anon_sym_required] = ACTIONS(2967), - [anon_sym_nonisolated] = ACTIONS(2967), - [anon_sym_public] = ACTIONS(2967), - [anon_sym_private] = ACTIONS(2967), - [anon_sym_internal] = ACTIONS(2967), - [anon_sym_fileprivate] = ACTIONS(2967), - [anon_sym_open] = ACTIONS(2967), - [anon_sym_mutating] = ACTIONS(2967), - [anon_sym_nonmutating] = ACTIONS(2967), - [anon_sym_static] = ACTIONS(2967), - [anon_sym_dynamic] = ACTIONS(2967), - [anon_sym_optional] = ACTIONS(2967), - [anon_sym_final] = ACTIONS(2967), - [anon_sym_inout] = ACTIONS(2967), - [anon_sym_ATescaping] = ACTIONS(2967), - [anon_sym_ATautoclosure] = ACTIONS(2967), - [anon_sym_weak] = ACTIONS(2967), - [anon_sym_unowned] = ACTIONS(2969), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2967), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2967), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2967), - [sym__explicit_semi] = ACTIONS(2967), - [sym__dot_custom] = ACTIONS(2967), - [sym__conjunction_operator_custom] = ACTIONS(2967), - [sym__disjunction_operator_custom] = ACTIONS(2967), - [sym__nil_coalescing_operator_custom] = ACTIONS(2967), - [sym__eq_eq_custom] = ACTIONS(2967), - [sym__plus_then_ws] = ACTIONS(2967), - [sym__minus_then_ws] = ACTIONS(2967), - [sym_bang] = ACTIONS(2967), - [sym_default_keyword] = ACTIONS(2967), - [sym__as_custom] = ACTIONS(2967), - [sym__as_quest_custom] = ACTIONS(2967), - [sym__as_bang_custom] = ACTIONS(2967), - [sym__custom_operator] = ACTIONS(2967), - }, - [1087] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2977), - [sym__immediate_quest] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [aux_sym_custom_operator_token1] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_CARET_LBRACE] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_case] = ACTIONS(2975), - [anon_sym_fallthrough] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(2975), - [anon_sym_GT_EQ] = ACTIONS(2975), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), - [anon_sym_DOT_DOT_LT] = ACTIONS(2975), - [anon_sym_is] = ACTIONS(2975), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2975), - [anon_sym_class] = ACTIONS(2975), - [anon_sym_prefix] = ACTIONS(2975), - [anon_sym_infix] = ACTIONS(2975), - [anon_sym_postfix] = ACTIONS(2975), - [anon_sym_AT] = ACTIONS(2977), - [sym_property_behavior_modifier] = ACTIONS(2975), - [anon_sym_override] = ACTIONS(2975), - [anon_sym_convenience] = ACTIONS(2975), - [anon_sym_required] = ACTIONS(2975), - [anon_sym_nonisolated] = ACTIONS(2975), - [anon_sym_public] = ACTIONS(2975), - [anon_sym_private] = ACTIONS(2975), - [anon_sym_internal] = ACTIONS(2975), - [anon_sym_fileprivate] = ACTIONS(2975), - [anon_sym_open] = ACTIONS(2975), - [anon_sym_mutating] = ACTIONS(2975), - [anon_sym_nonmutating] = ACTIONS(2975), - [anon_sym_static] = ACTIONS(2975), - [anon_sym_dynamic] = ACTIONS(2975), - [anon_sym_optional] = ACTIONS(2975), - [anon_sym_final] = ACTIONS(2975), - [anon_sym_inout] = ACTIONS(2975), - [anon_sym_ATescaping] = ACTIONS(2975), - [anon_sym_ATautoclosure] = ACTIONS(2975), - [anon_sym_weak] = ACTIONS(2975), - [anon_sym_unowned] = ACTIONS(2977), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2975), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2975), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2975), - [sym__explicit_semi] = ACTIONS(2975), - [sym__dot_custom] = ACTIONS(2975), - [sym__conjunction_operator_custom] = ACTIONS(2975), - [sym__disjunction_operator_custom] = ACTIONS(2975), - [sym__nil_coalescing_operator_custom] = ACTIONS(2975), - [sym__eq_eq_custom] = ACTIONS(2975), - [sym__plus_then_ws] = ACTIONS(2975), - [sym__minus_then_ws] = ACTIONS(2975), - [sym_bang] = ACTIONS(2975), - [sym_default_keyword] = ACTIONS(2975), - [sym__as_custom] = ACTIONS(2975), - [sym__as_quest_custom] = ACTIONS(2975), - [sym__as_bang_custom] = ACTIONS(2975), - [sym__custom_operator] = ACTIONS(2975), - }, - [1088] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2973), - [sym__immediate_quest] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [aux_sym_custom_operator_token1] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_CARET_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_fallthrough] = ACTIONS(2971), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2971), - [anon_sym_LT_EQ] = ACTIONS(2971), - [anon_sym_GT_EQ] = ACTIONS(2971), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), - [anon_sym_DOT_DOT_LT] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2971), - [anon_sym_DASH_DASH] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_class] = ACTIONS(2971), - [anon_sym_prefix] = ACTIONS(2971), - [anon_sym_infix] = ACTIONS(2971), - [anon_sym_postfix] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2973), - [sym_property_behavior_modifier] = ACTIONS(2971), - [anon_sym_override] = ACTIONS(2971), - [anon_sym_convenience] = ACTIONS(2971), - [anon_sym_required] = ACTIONS(2971), - [anon_sym_nonisolated] = ACTIONS(2971), - [anon_sym_public] = ACTIONS(2971), - [anon_sym_private] = ACTIONS(2971), - [anon_sym_internal] = ACTIONS(2971), - [anon_sym_fileprivate] = ACTIONS(2971), - [anon_sym_open] = ACTIONS(2971), - [anon_sym_mutating] = ACTIONS(2971), - [anon_sym_nonmutating] = ACTIONS(2971), - [anon_sym_static] = ACTIONS(2971), - [anon_sym_dynamic] = ACTIONS(2971), - [anon_sym_optional] = ACTIONS(2971), - [anon_sym_final] = ACTIONS(2971), - [anon_sym_inout] = ACTIONS(2971), - [anon_sym_ATescaping] = ACTIONS(2971), - [anon_sym_ATautoclosure] = ACTIONS(2971), - [anon_sym_weak] = ACTIONS(2971), - [anon_sym_unowned] = ACTIONS(2973), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2971), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2971), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2971), - [sym__explicit_semi] = ACTIONS(2971), - [sym__dot_custom] = ACTIONS(2971), - [sym__conjunction_operator_custom] = ACTIONS(2971), - [sym__disjunction_operator_custom] = ACTIONS(2971), - [sym__nil_coalescing_operator_custom] = ACTIONS(2971), - [sym__eq_eq_custom] = ACTIONS(2971), - [sym__plus_then_ws] = ACTIONS(2971), - [sym__minus_then_ws] = ACTIONS(2971), - [sym_bang] = ACTIONS(2971), - [sym_default_keyword] = ACTIONS(2971), - [sym__as_custom] = ACTIONS(2971), - [sym__as_quest_custom] = ACTIONS(2971), - [sym__as_bang_custom] = ACTIONS(2971), - [sym__custom_operator] = ACTIONS(2971), - }, - [1089] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3109), - [sym__immediate_quest] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3107), - [aux_sym_custom_operator_token1] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_CARET_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_fallthrough] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3107), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), - [anon_sym_DOT_DOT_LT] = ACTIONS(3107), - [anon_sym_is] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_prefix] = ACTIONS(3107), - [anon_sym_infix] = ACTIONS(3107), - [anon_sym_postfix] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3109), - [sym_property_behavior_modifier] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_convenience] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_nonisolated] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_fileprivate] = ACTIONS(3107), - [anon_sym_open] = ACTIONS(3107), - [anon_sym_mutating] = ACTIONS(3107), - [anon_sym_nonmutating] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_dynamic] = ACTIONS(3107), - [anon_sym_optional] = ACTIONS(3107), - [anon_sym_final] = ACTIONS(3107), - [anon_sym_inout] = ACTIONS(3107), - [anon_sym_ATescaping] = ACTIONS(3107), - [anon_sym_ATautoclosure] = ACTIONS(3107), - [anon_sym_weak] = ACTIONS(3107), - [anon_sym_unowned] = ACTIONS(3109), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3107), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3107), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3107), - [sym__explicit_semi] = ACTIONS(3107), - [sym__dot_custom] = ACTIONS(3107), - [sym__conjunction_operator_custom] = ACTIONS(3107), - [sym__disjunction_operator_custom] = ACTIONS(3107), - [sym__nil_coalescing_operator_custom] = ACTIONS(3107), - [sym__eq_eq_custom] = ACTIONS(3107), - [sym__plus_then_ws] = ACTIONS(3107), - [sym__minus_then_ws] = ACTIONS(3107), - [sym_bang] = ACTIONS(3107), - [sym_default_keyword] = ACTIONS(3107), - [sym__as_custom] = ACTIONS(3107), - [sym__as_quest_custom] = ACTIONS(3107), - [sym__as_bang_custom] = ACTIONS(3107), - [sym__custom_operator] = ACTIONS(3107), - }, - [1090] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3113), - [sym__immediate_quest] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3111), - [aux_sym_custom_operator_token1] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_CARET_LBRACE] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_case] = ACTIONS(3111), - [anon_sym_fallthrough] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3111), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3111), - [anon_sym_is] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_prefix] = ACTIONS(3111), - [anon_sym_infix] = ACTIONS(3111), - [anon_sym_postfix] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3113), - [sym_property_behavior_modifier] = ACTIONS(3111), - [anon_sym_override] = ACTIONS(3111), - [anon_sym_convenience] = ACTIONS(3111), - [anon_sym_required] = ACTIONS(3111), - [anon_sym_nonisolated] = ACTIONS(3111), - [anon_sym_public] = ACTIONS(3111), - [anon_sym_private] = ACTIONS(3111), - [anon_sym_internal] = ACTIONS(3111), - [anon_sym_fileprivate] = ACTIONS(3111), - [anon_sym_open] = ACTIONS(3111), - [anon_sym_mutating] = ACTIONS(3111), - [anon_sym_nonmutating] = ACTIONS(3111), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_dynamic] = ACTIONS(3111), - [anon_sym_optional] = ACTIONS(3111), - [anon_sym_final] = ACTIONS(3111), - [anon_sym_inout] = ACTIONS(3111), - [anon_sym_ATescaping] = ACTIONS(3111), - [anon_sym_ATautoclosure] = ACTIONS(3111), - [anon_sym_weak] = ACTIONS(3111), - [anon_sym_unowned] = ACTIONS(3113), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3111), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3111), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3111), - [sym__explicit_semi] = ACTIONS(3111), - [sym__dot_custom] = ACTIONS(3111), - [sym__conjunction_operator_custom] = ACTIONS(3111), - [sym__disjunction_operator_custom] = ACTIONS(3111), - [sym__nil_coalescing_operator_custom] = ACTIONS(3111), - [sym__eq_eq_custom] = ACTIONS(3111), - [sym__plus_then_ws] = ACTIONS(3111), - [sym__minus_then_ws] = ACTIONS(3111), - [sym_bang] = ACTIONS(3111), - [sym_default_keyword] = ACTIONS(3111), - [sym__as_custom] = ACTIONS(3111), - [sym__as_quest_custom] = ACTIONS(3111), - [sym__as_bang_custom] = ACTIONS(3111), - [sym__custom_operator] = ACTIONS(3111), - }, - [1091] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [sym__immediate_quest] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [aux_sym_custom_operator_token1] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_CARET_LBRACE] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_fallthrough] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3115), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), - [anon_sym_DOT_DOT_LT] = ACTIONS(3115), - [anon_sym_is] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_prefix] = ACTIONS(3115), - [anon_sym_infix] = ACTIONS(3115), - [anon_sym_postfix] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3117), - [sym_property_behavior_modifier] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_convenience] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_nonisolated] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_fileprivate] = ACTIONS(3115), - [anon_sym_open] = ACTIONS(3115), - [anon_sym_mutating] = ACTIONS(3115), - [anon_sym_nonmutating] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_dynamic] = ACTIONS(3115), - [anon_sym_optional] = ACTIONS(3115), - [anon_sym_final] = ACTIONS(3115), - [anon_sym_inout] = ACTIONS(3115), - [anon_sym_ATescaping] = ACTIONS(3115), - [anon_sym_ATautoclosure] = ACTIONS(3115), - [anon_sym_weak] = ACTIONS(3115), - [anon_sym_unowned] = ACTIONS(3117), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3115), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3115), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3115), - [sym__explicit_semi] = ACTIONS(3115), - [sym__dot_custom] = ACTIONS(3115), - [sym__conjunction_operator_custom] = ACTIONS(3115), - [sym__disjunction_operator_custom] = ACTIONS(3115), - [sym__nil_coalescing_operator_custom] = ACTIONS(3115), - [sym__eq_eq_custom] = ACTIONS(3115), - [sym__plus_then_ws] = ACTIONS(3115), - [sym__minus_then_ws] = ACTIONS(3115), - [sym_bang] = ACTIONS(3115), - [sym_default_keyword] = ACTIONS(3115), - [sym__as_custom] = ACTIONS(3115), - [sym__as_quest_custom] = ACTIONS(3115), - [sym__as_bang_custom] = ACTIONS(3115), - [sym__custom_operator] = ACTIONS(3115), - }, - [1092] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3121), - [sym__immediate_quest] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [aux_sym_custom_operator_token1] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_CARET_LBRACE] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_fallthrough] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_DOT_DOT_LT] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_prefix] = ACTIONS(3119), - [anon_sym_infix] = ACTIONS(3119), - [anon_sym_postfix] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3121), - [sym_property_behavior_modifier] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_convenience] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_nonisolated] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_fileprivate] = ACTIONS(3119), - [anon_sym_open] = ACTIONS(3119), - [anon_sym_mutating] = ACTIONS(3119), - [anon_sym_nonmutating] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_dynamic] = ACTIONS(3119), - [anon_sym_optional] = ACTIONS(3119), - [anon_sym_final] = ACTIONS(3119), - [anon_sym_inout] = ACTIONS(3119), - [anon_sym_ATescaping] = ACTIONS(3119), - [anon_sym_ATautoclosure] = ACTIONS(3119), - [anon_sym_weak] = ACTIONS(3119), - [anon_sym_unowned] = ACTIONS(3121), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3119), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3119), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3119), - [sym__explicit_semi] = ACTIONS(3119), - [sym__dot_custom] = ACTIONS(3119), - [sym__conjunction_operator_custom] = ACTIONS(3119), - [sym__disjunction_operator_custom] = ACTIONS(3119), - [sym__nil_coalescing_operator_custom] = ACTIONS(3119), - [sym__eq_eq_custom] = ACTIONS(3119), - [sym__plus_then_ws] = ACTIONS(3119), - [sym__minus_then_ws] = ACTIONS(3119), - [sym_bang] = ACTIONS(3119), - [sym_default_keyword] = ACTIONS(3119), - [sym__as_custom] = ACTIONS(3119), - [sym__as_quest_custom] = ACTIONS(3119), - [sym__as_bang_custom] = ACTIONS(3119), - [sym__custom_operator] = ACTIONS(3119), - }, - [1093] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3125), - [sym__immediate_quest] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [aux_sym_custom_operator_token1] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_CARET_LBRACE] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_fallthrough] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_DOT_DOT_LT] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_prefix] = ACTIONS(3123), - [anon_sym_infix] = ACTIONS(3123), - [anon_sym_postfix] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3125), - [sym_property_behavior_modifier] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_convenience] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_nonisolated] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_fileprivate] = ACTIONS(3123), - [anon_sym_open] = ACTIONS(3123), - [anon_sym_mutating] = ACTIONS(3123), - [anon_sym_nonmutating] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_dynamic] = ACTIONS(3123), - [anon_sym_optional] = ACTIONS(3123), - [anon_sym_final] = ACTIONS(3123), - [anon_sym_inout] = ACTIONS(3123), - [anon_sym_ATescaping] = ACTIONS(3123), - [anon_sym_ATautoclosure] = ACTIONS(3123), - [anon_sym_weak] = ACTIONS(3123), - [anon_sym_unowned] = ACTIONS(3125), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3123), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3123), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3123), - [sym__explicit_semi] = ACTIONS(3123), - [sym__dot_custom] = ACTIONS(3123), - [sym__conjunction_operator_custom] = ACTIONS(3123), - [sym__disjunction_operator_custom] = ACTIONS(3123), - [sym__nil_coalescing_operator_custom] = ACTIONS(3123), - [sym__eq_eq_custom] = ACTIONS(3123), - [sym__plus_then_ws] = ACTIONS(3123), - [sym__minus_then_ws] = ACTIONS(3123), - [sym_bang] = ACTIONS(3123), - [sym_default_keyword] = ACTIONS(3123), - [sym__as_custom] = ACTIONS(3123), - [sym__as_quest_custom] = ACTIONS(3123), - [sym__as_bang_custom] = ACTIONS(3123), - [sym__custom_operator] = ACTIONS(3123), - }, - [1094] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2993), - [sym__immediate_quest] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [aux_sym_custom_operator_token1] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_CARET_LBRACE] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_case] = ACTIONS(2991), - [anon_sym_fallthrough] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2991), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2991), - [anon_sym_DOT_DOT_LT] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2991), - [anon_sym_class] = ACTIONS(2991), - [anon_sym_prefix] = ACTIONS(2991), - [anon_sym_infix] = ACTIONS(2991), - [anon_sym_postfix] = ACTIONS(2991), - [anon_sym_AT] = ACTIONS(2993), - [sym_property_behavior_modifier] = ACTIONS(2991), - [anon_sym_override] = ACTIONS(2991), - [anon_sym_convenience] = ACTIONS(2991), - [anon_sym_required] = ACTIONS(2991), - [anon_sym_nonisolated] = ACTIONS(2991), - [anon_sym_public] = ACTIONS(2991), - [anon_sym_private] = ACTIONS(2991), - [anon_sym_internal] = ACTIONS(2991), - [anon_sym_fileprivate] = ACTIONS(2991), - [anon_sym_open] = ACTIONS(2991), - [anon_sym_mutating] = ACTIONS(2991), - [anon_sym_nonmutating] = ACTIONS(2991), - [anon_sym_static] = ACTIONS(2991), - [anon_sym_dynamic] = ACTIONS(2991), - [anon_sym_optional] = ACTIONS(2991), - [anon_sym_final] = ACTIONS(2991), - [anon_sym_inout] = ACTIONS(2991), - [anon_sym_ATescaping] = ACTIONS(2991), - [anon_sym_ATautoclosure] = ACTIONS(2991), - [anon_sym_weak] = ACTIONS(2991), - [anon_sym_unowned] = ACTIONS(2993), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2991), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2991), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2991), - [sym__explicit_semi] = ACTIONS(2991), - [sym__dot_custom] = ACTIONS(2991), - [sym__conjunction_operator_custom] = ACTIONS(2991), - [sym__disjunction_operator_custom] = ACTIONS(2991), - [sym__nil_coalescing_operator_custom] = ACTIONS(2991), - [sym__eq_eq_custom] = ACTIONS(2991), - [sym__plus_then_ws] = ACTIONS(2991), - [sym__minus_then_ws] = ACTIONS(2991), - [sym_bang] = ACTIONS(2991), - [sym_default_keyword] = ACTIONS(2991), - [sym__as_custom] = ACTIONS(2991), - [sym__as_quest_custom] = ACTIONS(2991), - [sym__as_bang_custom] = ACTIONS(2991), - [sym__custom_operator] = ACTIONS(2991), - }, - [1095] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3129), - [sym__immediate_quest] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [aux_sym_custom_operator_token1] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_CARET_LBRACE] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_fallthrough] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_DOT_DOT_LT] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_prefix] = ACTIONS(3127), - [anon_sym_infix] = ACTIONS(3127), - [anon_sym_postfix] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3129), - [sym_property_behavior_modifier] = ACTIONS(3127), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_convenience] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_nonisolated] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_fileprivate] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_mutating] = ACTIONS(3127), - [anon_sym_nonmutating] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_dynamic] = ACTIONS(3127), - [anon_sym_optional] = ACTIONS(3127), - [anon_sym_final] = ACTIONS(3127), - [anon_sym_inout] = ACTIONS(3127), - [anon_sym_ATescaping] = ACTIONS(3127), - [anon_sym_ATautoclosure] = ACTIONS(3127), - [anon_sym_weak] = ACTIONS(3127), - [anon_sym_unowned] = ACTIONS(3129), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3127), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3127), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3127), - [sym__explicit_semi] = ACTIONS(3127), - [sym__dot_custom] = ACTIONS(3127), - [sym__conjunction_operator_custom] = ACTIONS(3127), - [sym__disjunction_operator_custom] = ACTIONS(3127), - [sym__nil_coalescing_operator_custom] = ACTIONS(3127), - [sym__eq_eq_custom] = ACTIONS(3127), - [sym__plus_then_ws] = ACTIONS(3127), - [sym__minus_then_ws] = ACTIONS(3127), - [sym_bang] = ACTIONS(3127), - [sym_default_keyword] = ACTIONS(3127), - [sym__as_custom] = ACTIONS(3127), - [sym__as_quest_custom] = ACTIONS(3127), - [sym__as_bang_custom] = ACTIONS(3127), - [sym__custom_operator] = ACTIONS(3127), - }, - [1096] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [sym__immediate_quest] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [aux_sym_custom_operator_token1] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_CARET_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_fallthrough] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3131), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_DOT_DOT_LT] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_prefix] = ACTIONS(3131), - [anon_sym_infix] = ACTIONS(3131), - [anon_sym_postfix] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3133), - [sym_property_behavior_modifier] = ACTIONS(3131), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_convenience] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_nonisolated] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_fileprivate] = ACTIONS(3131), - [anon_sym_open] = ACTIONS(3131), - [anon_sym_mutating] = ACTIONS(3131), - [anon_sym_nonmutating] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_dynamic] = ACTIONS(3131), - [anon_sym_optional] = ACTIONS(3131), - [anon_sym_final] = ACTIONS(3131), - [anon_sym_inout] = ACTIONS(3131), - [anon_sym_ATescaping] = ACTIONS(3131), - [anon_sym_ATautoclosure] = ACTIONS(3131), - [anon_sym_weak] = ACTIONS(3131), - [anon_sym_unowned] = ACTIONS(3133), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3131), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3131), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3131), - [sym__explicit_semi] = ACTIONS(3131), - [sym__dot_custom] = ACTIONS(3131), - [sym__conjunction_operator_custom] = ACTIONS(3131), - [sym__disjunction_operator_custom] = ACTIONS(3131), - [sym__nil_coalescing_operator_custom] = ACTIONS(3131), - [sym__eq_eq_custom] = ACTIONS(3131), - [sym__plus_then_ws] = ACTIONS(3131), - [sym__minus_then_ws] = ACTIONS(3131), - [sym_bang] = ACTIONS(3131), - [sym_default_keyword] = ACTIONS(3131), - [sym__as_custom] = ACTIONS(3131), - [sym__as_quest_custom] = ACTIONS(3131), - [sym__as_bang_custom] = ACTIONS(3131), - [sym__custom_operator] = ACTIONS(3131), - }, - [1097] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3137), - [sym__immediate_quest] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [aux_sym_custom_operator_token1] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_CARET_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_fallthrough] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_DOT_DOT_LT] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_prefix] = ACTIONS(3135), - [anon_sym_infix] = ACTIONS(3135), - [anon_sym_postfix] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3137), - [sym_property_behavior_modifier] = ACTIONS(3135), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_convenience] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_nonisolated] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_fileprivate] = ACTIONS(3135), - [anon_sym_open] = ACTIONS(3135), - [anon_sym_mutating] = ACTIONS(3135), - [anon_sym_nonmutating] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_dynamic] = ACTIONS(3135), - [anon_sym_optional] = ACTIONS(3135), - [anon_sym_final] = ACTIONS(3135), - [anon_sym_inout] = ACTIONS(3135), - [anon_sym_ATescaping] = ACTIONS(3135), - [anon_sym_ATautoclosure] = ACTIONS(3135), - [anon_sym_weak] = ACTIONS(3135), - [anon_sym_unowned] = ACTIONS(3137), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3135), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3135), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3135), - [sym__explicit_semi] = ACTIONS(3135), - [sym__dot_custom] = ACTIONS(3135), - [sym__conjunction_operator_custom] = ACTIONS(3135), - [sym__disjunction_operator_custom] = ACTIONS(3135), - [sym__nil_coalescing_operator_custom] = ACTIONS(3135), - [sym__eq_eq_custom] = ACTIONS(3135), - [sym__plus_then_ws] = ACTIONS(3135), - [sym__minus_then_ws] = ACTIONS(3135), - [sym_bang] = ACTIONS(3135), - [sym_default_keyword] = ACTIONS(3135), - [sym__as_custom] = ACTIONS(3135), - [sym__as_quest_custom] = ACTIONS(3135), - [sym__as_bang_custom] = ACTIONS(3135), - [sym__custom_operator] = ACTIONS(3135), - }, - [1098] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [sym__immediate_quest] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2995), - [aux_sym_custom_operator_token1] = ACTIONS(2995), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_CARET_LBRACE] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_case] = ACTIONS(2995), - [anon_sym_fallthrough] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2995), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2995), - [anon_sym_DOT_DOT_LT] = ACTIONS(2995), - [anon_sym_is] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2995), - [anon_sym_GT_GT] = ACTIONS(2995), - [anon_sym_class] = ACTIONS(2995), - [anon_sym_prefix] = ACTIONS(2995), - [anon_sym_infix] = ACTIONS(2995), - [anon_sym_postfix] = ACTIONS(2995), - [anon_sym_AT] = ACTIONS(2997), - [sym_property_behavior_modifier] = ACTIONS(2995), - [anon_sym_override] = ACTIONS(2995), - [anon_sym_convenience] = ACTIONS(2995), - [anon_sym_required] = ACTIONS(2995), - [anon_sym_nonisolated] = ACTIONS(2995), - [anon_sym_public] = ACTIONS(2995), - [anon_sym_private] = ACTIONS(2995), - [anon_sym_internal] = ACTIONS(2995), - [anon_sym_fileprivate] = ACTIONS(2995), - [anon_sym_open] = ACTIONS(2995), - [anon_sym_mutating] = ACTIONS(2995), - [anon_sym_nonmutating] = ACTIONS(2995), - [anon_sym_static] = ACTIONS(2995), - [anon_sym_dynamic] = ACTIONS(2995), - [anon_sym_optional] = ACTIONS(2995), - [anon_sym_final] = ACTIONS(2995), - [anon_sym_inout] = ACTIONS(2995), - [anon_sym_ATescaping] = ACTIONS(2995), - [anon_sym_ATautoclosure] = ACTIONS(2995), - [anon_sym_weak] = ACTIONS(2995), - [anon_sym_unowned] = ACTIONS(2997), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2995), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2995), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2995), - [sym__explicit_semi] = ACTIONS(2995), - [sym__dot_custom] = ACTIONS(2995), - [sym__conjunction_operator_custom] = ACTIONS(2995), - [sym__disjunction_operator_custom] = ACTIONS(2995), - [sym__nil_coalescing_operator_custom] = ACTIONS(2995), - [sym__eq_eq_custom] = ACTIONS(2995), - [sym__plus_then_ws] = ACTIONS(2995), - [sym__minus_then_ws] = ACTIONS(2995), - [sym_bang] = ACTIONS(2995), - [sym_default_keyword] = ACTIONS(2995), - [sym__as_custom] = ACTIONS(2995), - [sym__as_quest_custom] = ACTIONS(2995), - [sym__as_bang_custom] = ACTIONS(2995), - [sym__custom_operator] = ACTIONS(2995), - }, - [1099] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3009), - [sym__immediate_quest] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [aux_sym_custom_operator_token1] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_CARET_LBRACE] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_case] = ACTIONS(3007), - [anon_sym_fallthrough] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), - [anon_sym_DOT_DOT_LT] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3007), - [anon_sym_class] = ACTIONS(3007), - [anon_sym_prefix] = ACTIONS(3007), - [anon_sym_infix] = ACTIONS(3007), - [anon_sym_postfix] = ACTIONS(3007), - [anon_sym_AT] = ACTIONS(3009), - [sym_property_behavior_modifier] = ACTIONS(3007), - [anon_sym_override] = ACTIONS(3007), - [anon_sym_convenience] = ACTIONS(3007), - [anon_sym_required] = ACTIONS(3007), - [anon_sym_nonisolated] = ACTIONS(3007), - [anon_sym_public] = ACTIONS(3007), - [anon_sym_private] = ACTIONS(3007), - [anon_sym_internal] = ACTIONS(3007), - [anon_sym_fileprivate] = ACTIONS(3007), - [anon_sym_open] = ACTIONS(3007), - [anon_sym_mutating] = ACTIONS(3007), - [anon_sym_nonmutating] = ACTIONS(3007), - [anon_sym_static] = ACTIONS(3007), - [anon_sym_dynamic] = ACTIONS(3007), - [anon_sym_optional] = ACTIONS(3007), - [anon_sym_final] = ACTIONS(3007), - [anon_sym_inout] = ACTIONS(3007), - [anon_sym_ATescaping] = ACTIONS(3007), - [anon_sym_ATautoclosure] = ACTIONS(3007), - [anon_sym_weak] = ACTIONS(3007), - [anon_sym_unowned] = ACTIONS(3009), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3007), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3007), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3007), - [sym__explicit_semi] = ACTIONS(3007), - [sym__dot_custom] = ACTIONS(3007), - [sym__conjunction_operator_custom] = ACTIONS(3007), - [sym__disjunction_operator_custom] = ACTIONS(3007), - [sym__nil_coalescing_operator_custom] = ACTIONS(3007), - [sym__eq_eq_custom] = ACTIONS(3007), - [sym__plus_then_ws] = ACTIONS(3007), - [sym__minus_then_ws] = ACTIONS(3007), - [sym_bang] = ACTIONS(3007), - [sym_default_keyword] = ACTIONS(3007), - [sym__as_custom] = ACTIONS(3007), - [sym__as_quest_custom] = ACTIONS(3007), - [sym__as_bang_custom] = ACTIONS(3007), - [sym__custom_operator] = ACTIONS(3007), - }, - [1100] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3005), - [sym__immediate_quest] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [aux_sym_custom_operator_token1] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_CARET_LBRACE] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_case] = ACTIONS(3003), - [anon_sym_fallthrough] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3003), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ] = ACTIONS(3003), - [anon_sym_GT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_is] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_PLUS_PLUS] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3003), - [anon_sym_GT_GT] = ACTIONS(3003), - [anon_sym_class] = ACTIONS(3003), - [anon_sym_prefix] = ACTIONS(3003), - [anon_sym_infix] = ACTIONS(3003), - [anon_sym_postfix] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3005), - [sym_property_behavior_modifier] = ACTIONS(3003), - [anon_sym_override] = ACTIONS(3003), - [anon_sym_convenience] = ACTIONS(3003), - [anon_sym_required] = ACTIONS(3003), - [anon_sym_nonisolated] = ACTIONS(3003), - [anon_sym_public] = ACTIONS(3003), - [anon_sym_private] = ACTIONS(3003), - [anon_sym_internal] = ACTIONS(3003), - [anon_sym_fileprivate] = ACTIONS(3003), - [anon_sym_open] = ACTIONS(3003), - [anon_sym_mutating] = ACTIONS(3003), - [anon_sym_nonmutating] = ACTIONS(3003), - [anon_sym_static] = ACTIONS(3003), - [anon_sym_dynamic] = ACTIONS(3003), - [anon_sym_optional] = ACTIONS(3003), - [anon_sym_final] = ACTIONS(3003), - [anon_sym_inout] = ACTIONS(3003), - [anon_sym_ATescaping] = ACTIONS(3003), - [anon_sym_ATautoclosure] = ACTIONS(3003), - [anon_sym_weak] = ACTIONS(3003), - [anon_sym_unowned] = ACTIONS(3005), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3003), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3003), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3003), - [sym__explicit_semi] = ACTIONS(3003), - [sym__dot_custom] = ACTIONS(3003), - [sym__conjunction_operator_custom] = ACTIONS(3003), - [sym__disjunction_operator_custom] = ACTIONS(3003), - [sym__nil_coalescing_operator_custom] = ACTIONS(3003), - [sym__eq_eq_custom] = ACTIONS(3003), - [sym__plus_then_ws] = ACTIONS(3003), - [sym__minus_then_ws] = ACTIONS(3003), - [sym_bang] = ACTIONS(3003), - [sym_default_keyword] = ACTIONS(3003), - [sym__as_custom] = ACTIONS(3003), - [sym__as_quest_custom] = ACTIONS(3003), - [sym__as_bang_custom] = ACTIONS(3003), - [sym__custom_operator] = ACTIONS(3003), - }, - [1101] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_QMARK] = ACTIONS(3001), - [sym__immediate_quest] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(2999), - [aux_sym_custom_operator_token1] = ACTIONS(2999), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_CARET_LBRACE] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_case] = ACTIONS(2999), - [anon_sym_fallthrough] = ACTIONS(2999), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2999), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2999), - [anon_sym_LT_EQ] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2999), - [anon_sym_DOT_DOT_LT] = ACTIONS(2999), - [anon_sym_is] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(2999), - [anon_sym_PLUS_PLUS] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(2999), - [anon_sym_GT_GT] = ACTIONS(2999), - [anon_sym_class] = ACTIONS(2999), - [anon_sym_prefix] = ACTIONS(2999), - [anon_sym_infix] = ACTIONS(2999), - [anon_sym_postfix] = ACTIONS(2999), - [anon_sym_AT] = ACTIONS(3001), - [sym_property_behavior_modifier] = ACTIONS(2999), - [anon_sym_override] = ACTIONS(2999), - [anon_sym_convenience] = ACTIONS(2999), - [anon_sym_required] = ACTIONS(2999), - [anon_sym_nonisolated] = ACTIONS(2999), - [anon_sym_public] = ACTIONS(2999), - [anon_sym_private] = ACTIONS(2999), - [anon_sym_internal] = ACTIONS(2999), - [anon_sym_fileprivate] = ACTIONS(2999), - [anon_sym_open] = ACTIONS(2999), - [anon_sym_mutating] = ACTIONS(2999), - [anon_sym_nonmutating] = ACTIONS(2999), - [anon_sym_static] = ACTIONS(2999), - [anon_sym_dynamic] = ACTIONS(2999), - [anon_sym_optional] = ACTIONS(2999), - [anon_sym_final] = ACTIONS(2999), - [anon_sym_inout] = ACTIONS(2999), - [anon_sym_ATescaping] = ACTIONS(2999), - [anon_sym_ATautoclosure] = ACTIONS(2999), - [anon_sym_weak] = ACTIONS(2999), - [anon_sym_unowned] = ACTIONS(3001), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2999), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2999), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2999), - [sym__explicit_semi] = ACTIONS(2999), - [sym__dot_custom] = ACTIONS(2999), - [sym__conjunction_operator_custom] = ACTIONS(2999), - [sym__disjunction_operator_custom] = ACTIONS(2999), - [sym__nil_coalescing_operator_custom] = ACTIONS(2999), - [sym__eq_eq_custom] = ACTIONS(2999), - [sym__plus_then_ws] = ACTIONS(2999), - [sym__minus_then_ws] = ACTIONS(2999), - [sym_bang] = ACTIONS(2999), - [sym_default_keyword] = ACTIONS(2999), - [sym__as_custom] = ACTIONS(2999), - [sym__as_quest_custom] = ACTIONS(2999), - [sym__as_bang_custom] = ACTIONS(2999), - [sym__custom_operator] = ACTIONS(2999), - }, - [1102] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3141), - [sym__immediate_quest] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [aux_sym_custom_operator_token1] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_CARET_LBRACE] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_fallthrough] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3139), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_DOT_DOT_LT] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_prefix] = ACTIONS(3139), - [anon_sym_infix] = ACTIONS(3139), - [anon_sym_postfix] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3141), - [sym_property_behavior_modifier] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_convenience] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_nonisolated] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_fileprivate] = ACTIONS(3139), - [anon_sym_open] = ACTIONS(3139), - [anon_sym_mutating] = ACTIONS(3139), - [anon_sym_nonmutating] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_dynamic] = ACTIONS(3139), - [anon_sym_optional] = ACTIONS(3139), - [anon_sym_final] = ACTIONS(3139), - [anon_sym_inout] = ACTIONS(3139), - [anon_sym_ATescaping] = ACTIONS(3139), - [anon_sym_ATautoclosure] = ACTIONS(3139), - [anon_sym_weak] = ACTIONS(3139), - [anon_sym_unowned] = ACTIONS(3141), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3139), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3139), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3139), - [sym__explicit_semi] = ACTIONS(3139), - [sym__dot_custom] = ACTIONS(3139), - [sym__conjunction_operator_custom] = ACTIONS(3139), - [sym__disjunction_operator_custom] = ACTIONS(3139), - [sym__nil_coalescing_operator_custom] = ACTIONS(3139), - [sym__eq_eq_custom] = ACTIONS(3139), - [sym__plus_then_ws] = ACTIONS(3139), - [sym__minus_then_ws] = ACTIONS(3139), - [sym_bang] = ACTIONS(3139), - [sym_default_keyword] = ACTIONS(3139), - [sym__as_custom] = ACTIONS(3139), - [sym__as_quest_custom] = ACTIONS(3139), - [sym__as_bang_custom] = ACTIONS(3139), - [sym__custom_operator] = ACTIONS(3139), - }, - [1103] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [sym__immediate_quest] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [aux_sym_custom_operator_token1] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_CARET_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_case] = ACTIONS(3019), - [anon_sym_fallthrough] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_LT] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_prefix] = ACTIONS(3019), - [anon_sym_infix] = ACTIONS(3019), - [anon_sym_postfix] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3021), - [sym_property_behavior_modifier] = ACTIONS(3019), - [anon_sym_override] = ACTIONS(3019), - [anon_sym_convenience] = ACTIONS(3019), - [anon_sym_required] = ACTIONS(3019), - [anon_sym_nonisolated] = ACTIONS(3019), - [anon_sym_public] = ACTIONS(3019), - [anon_sym_private] = ACTIONS(3019), - [anon_sym_internal] = ACTIONS(3019), - [anon_sym_fileprivate] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_mutating] = ACTIONS(3019), - [anon_sym_nonmutating] = ACTIONS(3019), - [anon_sym_static] = ACTIONS(3019), - [anon_sym_dynamic] = ACTIONS(3019), - [anon_sym_optional] = ACTIONS(3019), - [anon_sym_final] = ACTIONS(3019), - [anon_sym_inout] = ACTIONS(3019), - [anon_sym_ATescaping] = ACTIONS(3019), - [anon_sym_ATautoclosure] = ACTIONS(3019), - [anon_sym_weak] = ACTIONS(3019), - [anon_sym_unowned] = ACTIONS(3021), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3019), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3019), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3019), - [sym__explicit_semi] = ACTIONS(3019), - [sym__dot_custom] = ACTIONS(3019), - [sym__conjunction_operator_custom] = ACTIONS(3019), - [sym__disjunction_operator_custom] = ACTIONS(3019), - [sym__nil_coalescing_operator_custom] = ACTIONS(3019), - [sym__eq_eq_custom] = ACTIONS(3019), - [sym__plus_then_ws] = ACTIONS(3019), - [sym__minus_then_ws] = ACTIONS(3019), - [sym_bang] = ACTIONS(3019), - [sym_default_keyword] = ACTIONS(3019), - [sym__as_custom] = ACTIONS(3019), - [sym__as_quest_custom] = ACTIONS(3019), - [sym__as_bang_custom] = ACTIONS(3019), - [sym__custom_operator] = ACTIONS(3019), - }, - [1104] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [sym__immediate_quest] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [aux_sym_custom_operator_token1] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_CARET_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_fallthrough] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), - [anon_sym_DOT_DOT_LT] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_prefix] = ACTIONS(3143), - [anon_sym_infix] = ACTIONS(3143), - [anon_sym_postfix] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3145), - [sym_property_behavior_modifier] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_convenience] = ACTIONS(3143), - [anon_sym_required] = ACTIONS(3143), - [anon_sym_nonisolated] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_internal] = ACTIONS(3143), - [anon_sym_fileprivate] = ACTIONS(3143), - [anon_sym_open] = ACTIONS(3143), - [anon_sym_mutating] = ACTIONS(3143), - [anon_sym_nonmutating] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_dynamic] = ACTIONS(3143), - [anon_sym_optional] = ACTIONS(3143), - [anon_sym_final] = ACTIONS(3143), - [anon_sym_inout] = ACTIONS(3143), - [anon_sym_ATescaping] = ACTIONS(3143), - [anon_sym_ATautoclosure] = ACTIONS(3143), - [anon_sym_weak] = ACTIONS(3143), - [anon_sym_unowned] = ACTIONS(3145), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3143), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3143), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3143), - [sym__explicit_semi] = ACTIONS(3143), - [sym__dot_custom] = ACTIONS(3143), - [sym__conjunction_operator_custom] = ACTIONS(3143), - [sym__disjunction_operator_custom] = ACTIONS(3143), - [sym__nil_coalescing_operator_custom] = ACTIONS(3143), - [sym__eq_eq_custom] = ACTIONS(3143), - [sym__plus_then_ws] = ACTIONS(3143), - [sym__minus_then_ws] = ACTIONS(3143), - [sym_bang] = ACTIONS(3143), - [sym_default_keyword] = ACTIONS(3143), - [sym__as_custom] = ACTIONS(3143), - [sym__as_quest_custom] = ACTIONS(3143), - [sym__as_bang_custom] = ACTIONS(3143), - [sym__custom_operator] = ACTIONS(3143), - }, - [1105] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3033), - [sym__immediate_quest] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [aux_sym_custom_operator_token1] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_CARET_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_case] = ACTIONS(3031), - [anon_sym_fallthrough] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), - [anon_sym_DOT_DOT_LT] = ACTIONS(3031), - [anon_sym_is] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_class] = ACTIONS(3031), - [anon_sym_prefix] = ACTIONS(3031), - [anon_sym_infix] = ACTIONS(3031), - [anon_sym_postfix] = ACTIONS(3031), - [anon_sym_AT] = ACTIONS(3033), - [sym_property_behavior_modifier] = ACTIONS(3031), - [anon_sym_override] = ACTIONS(3031), - [anon_sym_convenience] = ACTIONS(3031), - [anon_sym_required] = ACTIONS(3031), - [anon_sym_nonisolated] = ACTIONS(3031), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_private] = ACTIONS(3031), - [anon_sym_internal] = ACTIONS(3031), - [anon_sym_fileprivate] = ACTIONS(3031), - [anon_sym_open] = ACTIONS(3031), - [anon_sym_mutating] = ACTIONS(3031), - [anon_sym_nonmutating] = ACTIONS(3031), - [anon_sym_static] = ACTIONS(3031), - [anon_sym_dynamic] = ACTIONS(3031), - [anon_sym_optional] = ACTIONS(3031), - [anon_sym_final] = ACTIONS(3031), - [anon_sym_inout] = ACTIONS(3031), - [anon_sym_ATescaping] = ACTIONS(3031), - [anon_sym_ATautoclosure] = ACTIONS(3031), - [anon_sym_weak] = ACTIONS(3031), - [anon_sym_unowned] = ACTIONS(3033), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3031), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3031), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3031), - [sym__explicit_semi] = ACTIONS(3031), - [sym__dot_custom] = ACTIONS(3031), - [sym__conjunction_operator_custom] = ACTIONS(3031), - [sym__disjunction_operator_custom] = ACTIONS(3031), - [sym__nil_coalescing_operator_custom] = ACTIONS(3031), - [sym__eq_eq_custom] = ACTIONS(3031), - [sym__plus_then_ws] = ACTIONS(3031), - [sym__minus_then_ws] = ACTIONS(3031), - [sym_bang] = ACTIONS(3031), - [sym_default_keyword] = ACTIONS(3031), - [sym__as_custom] = ACTIONS(3031), - [sym__as_quest_custom] = ACTIONS(3031), - [sym__as_bang_custom] = ACTIONS(3031), - [sym__custom_operator] = ACTIONS(3031), - }, - [1106] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [sym__immediate_quest] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [aux_sym_custom_operator_token1] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_CARET_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_case] = ACTIONS(2959), - [anon_sym_fallthrough] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), - [anon_sym_DOT_DOT_LT] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_prefix] = ACTIONS(2959), - [anon_sym_infix] = ACTIONS(2959), - [anon_sym_postfix] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2961), - [sym_property_behavior_modifier] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_convenience] = ACTIONS(2959), - [anon_sym_required] = ACTIONS(2959), - [anon_sym_nonisolated] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_internal] = ACTIONS(2959), - [anon_sym_fileprivate] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_mutating] = ACTIONS(2959), - [anon_sym_nonmutating] = ACTIONS(2959), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_dynamic] = ACTIONS(2959), - [anon_sym_optional] = ACTIONS(2959), - [anon_sym_final] = ACTIONS(2959), - [anon_sym_inout] = ACTIONS(2959), - [anon_sym_ATescaping] = ACTIONS(2959), - [anon_sym_ATautoclosure] = ACTIONS(2959), - [anon_sym_weak] = ACTIONS(2959), - [anon_sym_unowned] = ACTIONS(2961), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2959), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2959), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2959), - [sym__explicit_semi] = ACTIONS(2959), - [sym__dot_custom] = ACTIONS(2959), - [sym__conjunction_operator_custom] = ACTIONS(2959), - [sym__disjunction_operator_custom] = ACTIONS(2959), - [sym__nil_coalescing_operator_custom] = ACTIONS(2959), - [sym__eq_eq_custom] = ACTIONS(2959), - [sym__plus_then_ws] = ACTIONS(2959), - [sym__minus_then_ws] = ACTIONS(2959), - [sym_bang] = ACTIONS(2959), - [sym_default_keyword] = ACTIONS(2959), - [sym__as_custom] = ACTIONS(2959), - [sym__as_quest_custom] = ACTIONS(2959), - [sym__as_bang_custom] = ACTIONS(2959), - [sym__custom_operator] = ACTIONS(2959), - }, - [1107] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3050), - [sym__immediate_quest] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [aux_sym_custom_operator_token1] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3050), - [anon_sym_GT] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_CARET_LBRACE] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_case] = ACTIONS(3047), - [anon_sym_fallthrough] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3047), - [anon_sym_DOT_DOT_LT] = ACTIONS(3047), - [anon_sym_is] = ACTIONS(3047), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3050), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3050), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3047), - [anon_sym_class] = ACTIONS(3047), - [anon_sym_prefix] = ACTIONS(3047), - [anon_sym_infix] = ACTIONS(3047), - [anon_sym_postfix] = ACTIONS(3047), - [anon_sym_AT] = ACTIONS(3050), - [sym_property_behavior_modifier] = ACTIONS(3047), - [anon_sym_override] = ACTIONS(3047), - [anon_sym_convenience] = ACTIONS(3047), - [anon_sym_required] = ACTIONS(3047), - [anon_sym_nonisolated] = ACTIONS(3047), - [anon_sym_public] = ACTIONS(3047), - [anon_sym_private] = ACTIONS(3047), - [anon_sym_internal] = ACTIONS(3047), - [anon_sym_fileprivate] = ACTIONS(3047), - [anon_sym_open] = ACTIONS(3047), - [anon_sym_mutating] = ACTIONS(3047), - [anon_sym_nonmutating] = ACTIONS(3047), - [anon_sym_static] = ACTIONS(3047), - [anon_sym_dynamic] = ACTIONS(3047), - [anon_sym_optional] = ACTIONS(3047), - [anon_sym_final] = ACTIONS(3047), - [anon_sym_inout] = ACTIONS(3047), - [anon_sym_ATescaping] = ACTIONS(3047), - [anon_sym_ATautoclosure] = ACTIONS(3047), - [anon_sym_weak] = ACTIONS(3047), - [anon_sym_unowned] = ACTIONS(3050), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3047), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3047), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3047), - [sym__explicit_semi] = ACTIONS(3047), - [sym__dot_custom] = ACTIONS(3047), - [sym__conjunction_operator_custom] = ACTIONS(3047), - [sym__disjunction_operator_custom] = ACTIONS(3047), - [sym__nil_coalescing_operator_custom] = ACTIONS(3047), - [sym__eq_eq_custom] = ACTIONS(3047), - [sym__plus_then_ws] = ACTIONS(3047), - [sym__minus_then_ws] = ACTIONS(3047), - [sym_bang] = ACTIONS(3047), - [sym_default_keyword] = ACTIONS(3047), - [sym__as_custom] = ACTIONS(3047), - [sym__as_quest_custom] = ACTIONS(3047), - [sym__as_bang_custom] = ACTIONS(3047), - [sym__custom_operator] = ACTIONS(3047), - }, - [1108] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3037), - [sym__immediate_quest] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [aux_sym_custom_operator_token1] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_CARET_LBRACE] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_case] = ACTIONS(3035), - [anon_sym_fallthrough] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), - [anon_sym_DOT_DOT_LT] = ACTIONS(3035), - [anon_sym_is] = ACTIONS(3035), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3035), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_prefix] = ACTIONS(3035), - [anon_sym_infix] = ACTIONS(3035), - [anon_sym_postfix] = ACTIONS(3035), - [anon_sym_AT] = ACTIONS(3037), - [sym_property_behavior_modifier] = ACTIONS(3035), - [anon_sym_override] = ACTIONS(3035), - [anon_sym_convenience] = ACTIONS(3035), - [anon_sym_required] = ACTIONS(3035), - [anon_sym_nonisolated] = ACTIONS(3035), - [anon_sym_public] = ACTIONS(3035), - [anon_sym_private] = ACTIONS(3035), - [anon_sym_internal] = ACTIONS(3035), - [anon_sym_fileprivate] = ACTIONS(3035), - [anon_sym_open] = ACTIONS(3035), - [anon_sym_mutating] = ACTIONS(3035), - [anon_sym_nonmutating] = ACTIONS(3035), - [anon_sym_static] = ACTIONS(3035), - [anon_sym_dynamic] = ACTIONS(3035), - [anon_sym_optional] = ACTIONS(3035), - [anon_sym_final] = ACTIONS(3035), - [anon_sym_inout] = ACTIONS(3035), - [anon_sym_ATescaping] = ACTIONS(3035), - [anon_sym_ATautoclosure] = ACTIONS(3035), - [anon_sym_weak] = ACTIONS(3035), - [anon_sym_unowned] = ACTIONS(3037), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3035), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3035), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3035), - [sym__explicit_semi] = ACTIONS(3035), - [sym__dot_custom] = ACTIONS(3035), - [sym__conjunction_operator_custom] = ACTIONS(3035), - [sym__disjunction_operator_custom] = ACTIONS(3035), - [sym__nil_coalescing_operator_custom] = ACTIONS(3035), - [sym__eq_eq_custom] = ACTIONS(3035), - [sym__plus_then_ws] = ACTIONS(3035), - [sym__minus_then_ws] = ACTIONS(3035), - [sym_bang] = ACTIONS(3035), - [sym_default_keyword] = ACTIONS(3035), - [sym__as_custom] = ACTIONS(3035), - [sym__as_quest_custom] = ACTIONS(3035), - [sym__as_bang_custom] = ACTIONS(3035), - [sym__custom_operator] = ACTIONS(3035), - }, - [1109] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3065), - [sym__immediate_quest] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [aux_sym_custom_operator_token1] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_CARET_LBRACE] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_case] = ACTIONS(3063), - [anon_sym_fallthrough] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3063), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3063), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT_EQ] = ACTIONS(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3063), - [anon_sym_DOT_DOT_LT] = ACTIONS(3063), - [anon_sym_is] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3063), - [anon_sym_class] = ACTIONS(3063), - [anon_sym_prefix] = ACTIONS(3063), - [anon_sym_infix] = ACTIONS(3063), - [anon_sym_postfix] = ACTIONS(3063), - [anon_sym_AT] = ACTIONS(3065), - [sym_property_behavior_modifier] = ACTIONS(3063), - [anon_sym_override] = ACTIONS(3063), - [anon_sym_convenience] = ACTIONS(3063), - [anon_sym_required] = ACTIONS(3063), - [anon_sym_nonisolated] = ACTIONS(3063), - [anon_sym_public] = ACTIONS(3063), - [anon_sym_private] = ACTIONS(3063), - [anon_sym_internal] = ACTIONS(3063), - [anon_sym_fileprivate] = ACTIONS(3063), - [anon_sym_open] = ACTIONS(3063), - [anon_sym_mutating] = ACTIONS(3063), - [anon_sym_nonmutating] = ACTIONS(3063), - [anon_sym_static] = ACTIONS(3063), - [anon_sym_dynamic] = ACTIONS(3063), - [anon_sym_optional] = ACTIONS(3063), - [anon_sym_final] = ACTIONS(3063), - [anon_sym_inout] = ACTIONS(3063), - [anon_sym_ATescaping] = ACTIONS(3063), - [anon_sym_ATautoclosure] = ACTIONS(3063), - [anon_sym_weak] = ACTIONS(3063), - [anon_sym_unowned] = ACTIONS(3065), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3063), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3063), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3063), - [sym__explicit_semi] = ACTIONS(3063), - [sym__dot_custom] = ACTIONS(3063), - [sym__conjunction_operator_custom] = ACTIONS(3063), - [sym__disjunction_operator_custom] = ACTIONS(3063), - [sym__nil_coalescing_operator_custom] = ACTIONS(3063), - [sym__eq_eq_custom] = ACTIONS(3063), - [sym__plus_then_ws] = ACTIONS(3063), - [sym__minus_then_ws] = ACTIONS(3063), - [sym_bang] = ACTIONS(3063), - [sym_default_keyword] = ACTIONS(3063), - [sym__as_custom] = ACTIONS(3063), - [sym__as_quest_custom] = ACTIONS(3063), - [sym__as_bang_custom] = ACTIONS(3063), - [sym__custom_operator] = ACTIONS(3063), - }, - [1110] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2727), - [anon_sym_QMARK] = ACTIONS(2725), - [sym__immediate_quest] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2727), - [aux_sym_custom_operator_token1] = ACTIONS(2727), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_GT] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_CARET_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_case] = ACTIONS(2727), - [anon_sym_fallthrough] = ACTIONS(2727), - [anon_sym_BANG_EQ] = ACTIONS(2725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2727), - [anon_sym_LT_EQ] = ACTIONS(2727), - [anon_sym_GT_EQ] = ACTIONS(2727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), - [anon_sym_DOT_DOT_LT] = ACTIONS(2727), - [anon_sym_is] = ACTIONS(2727), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_PERCENT] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PIPE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2725), - [anon_sym_LT_LT] = ACTIONS(2727), - [anon_sym_GT_GT] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2727), - [anon_sym_prefix] = ACTIONS(2727), - [anon_sym_infix] = ACTIONS(2727), - [anon_sym_postfix] = ACTIONS(2727), - [anon_sym_AT] = ACTIONS(2725), - [sym_property_behavior_modifier] = ACTIONS(2727), - [anon_sym_override] = ACTIONS(2727), - [anon_sym_convenience] = ACTIONS(2727), - [anon_sym_required] = ACTIONS(2727), - [anon_sym_nonisolated] = ACTIONS(2727), - [anon_sym_public] = ACTIONS(2727), - [anon_sym_private] = ACTIONS(2727), - [anon_sym_internal] = ACTIONS(2727), - [anon_sym_fileprivate] = ACTIONS(2727), - [anon_sym_open] = ACTIONS(2727), - [anon_sym_mutating] = ACTIONS(2727), - [anon_sym_nonmutating] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_dynamic] = ACTIONS(2727), - [anon_sym_optional] = ACTIONS(2727), - [anon_sym_final] = ACTIONS(2727), - [anon_sym_inout] = ACTIONS(2727), - [anon_sym_ATescaping] = ACTIONS(2727), - [anon_sym_ATautoclosure] = ACTIONS(2727), - [anon_sym_weak] = ACTIONS(2727), - [anon_sym_unowned] = ACTIONS(2725), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2727), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2727), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2727), - [sym__explicit_semi] = ACTIONS(2727), - [sym__dot_custom] = ACTIONS(2727), - [sym__conjunction_operator_custom] = ACTIONS(2727), - [sym__disjunction_operator_custom] = ACTIONS(2727), - [sym__nil_coalescing_operator_custom] = ACTIONS(2727), - [sym__eq_eq_custom] = ACTIONS(2727), - [sym__plus_then_ws] = ACTIONS(2727), - [sym__minus_then_ws] = ACTIONS(2727), - [sym_bang] = ACTIONS(2727), - [sym_default_keyword] = ACTIONS(2727), - [sym__as_custom] = ACTIONS(2727), - [sym__as_quest_custom] = ACTIONS(2727), - [sym__as_bang_custom] = ACTIONS(2727), - [sym__custom_operator] = ACTIONS(2727), - }, - [1111] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(2449), - [sym__immediate_quest] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2447), - [aux_sym_custom_operator_token1] = ACTIONS(2447), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_GT] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_CARET_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_fallthrough] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(2449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2447), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2447), - [anon_sym_DOT_DOT_LT] = ACTIONS(2447), - [anon_sym_is] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2447), - [anon_sym_SLASH] = ACTIONS(2449), - [anon_sym_PERCENT] = ACTIONS(2447), - [anon_sym_PLUS_PLUS] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_CARET] = ACTIONS(2449), - [anon_sym_LT_LT] = ACTIONS(2447), - [anon_sym_GT_GT] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_prefix] = ACTIONS(2447), - [anon_sym_infix] = ACTIONS(2447), - [anon_sym_postfix] = ACTIONS(2447), - [anon_sym_AT] = ACTIONS(2449), - [sym_property_behavior_modifier] = ACTIONS(2447), - [anon_sym_override] = ACTIONS(2447), - [anon_sym_convenience] = ACTIONS(2447), - [anon_sym_required] = ACTIONS(2447), - [anon_sym_nonisolated] = ACTIONS(2447), - [anon_sym_public] = ACTIONS(2447), - [anon_sym_private] = ACTIONS(2447), - [anon_sym_internal] = ACTIONS(2447), - [anon_sym_fileprivate] = ACTIONS(2447), - [anon_sym_open] = ACTIONS(2447), - [anon_sym_mutating] = ACTIONS(2447), - [anon_sym_nonmutating] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_dynamic] = ACTIONS(2447), - [anon_sym_optional] = ACTIONS(2447), - [anon_sym_final] = ACTIONS(2447), - [anon_sym_inout] = ACTIONS(2447), - [anon_sym_ATescaping] = ACTIONS(2447), - [anon_sym_ATautoclosure] = ACTIONS(2447), - [anon_sym_weak] = ACTIONS(2447), - [anon_sym_unowned] = ACTIONS(2449), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2447), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2447), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2447), - [sym__explicit_semi] = ACTIONS(2447), - [sym__dot_custom] = ACTIONS(2447), - [sym__conjunction_operator_custom] = ACTIONS(2447), - [sym__disjunction_operator_custom] = ACTIONS(2447), - [sym__nil_coalescing_operator_custom] = ACTIONS(2447), - [sym__eq_eq_custom] = ACTIONS(2447), - [sym__plus_then_ws] = ACTIONS(2447), - [sym__minus_then_ws] = ACTIONS(2447), - [sym_bang] = ACTIONS(2447), - [sym_default_keyword] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2447), - [sym__as_quest_custom] = ACTIONS(2447), - [sym__as_bang_custom] = ACTIONS(2447), - [sym__custom_operator] = ACTIONS(2447), - }, - [1112] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3056), - [sym__immediate_quest] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [aux_sym_custom_operator_token1] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_CARET_LBRACE] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_fallthrough] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3053), - [anon_sym_DOT_DOT_LT] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_prefix] = ACTIONS(3053), - [anon_sym_infix] = ACTIONS(3053), - [anon_sym_postfix] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3056), - [sym_property_behavior_modifier] = ACTIONS(3053), - [anon_sym_override] = ACTIONS(3053), - [anon_sym_convenience] = ACTIONS(3053), - [anon_sym_required] = ACTIONS(3053), - [anon_sym_nonisolated] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_internal] = ACTIONS(3053), - [anon_sym_fileprivate] = ACTIONS(3053), - [anon_sym_open] = ACTIONS(3053), - [anon_sym_mutating] = ACTIONS(3053), - [anon_sym_nonmutating] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_dynamic] = ACTIONS(3053), - [anon_sym_optional] = ACTIONS(3053), - [anon_sym_final] = ACTIONS(3053), - [anon_sym_inout] = ACTIONS(3053), - [anon_sym_ATescaping] = ACTIONS(3053), - [anon_sym_ATautoclosure] = ACTIONS(3053), - [anon_sym_weak] = ACTIONS(3053), - [anon_sym_unowned] = ACTIONS(3056), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3053), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3053), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3053), - [sym__explicit_semi] = ACTIONS(3053), - [sym__dot_custom] = ACTIONS(3053), - [sym__conjunction_operator_custom] = ACTIONS(3053), - [sym__disjunction_operator_custom] = ACTIONS(3053), - [sym__nil_coalescing_operator_custom] = ACTIONS(3053), - [sym__eq_eq_custom] = ACTIONS(3053), - [sym__plus_then_ws] = ACTIONS(3053), - [sym__minus_then_ws] = ACTIONS(3053), - [sym_bang] = ACTIONS(3053), - [sym_default_keyword] = ACTIONS(3053), - [sym__as_custom] = ACTIONS(3053), - [sym__as_quest_custom] = ACTIONS(3053), - [sym__as_bang_custom] = ACTIONS(3053), - [sym__custom_operator] = ACTIONS(3053), - }, - [1113] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [sym__immediate_quest] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [aux_sym_custom_operator_token1] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_CARET_LBRACE] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_case] = ACTIONS(3147), - [anon_sym_fallthrough] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3147), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), - [anon_sym_DOT_DOT_LT] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_prefix] = ACTIONS(3147), - [anon_sym_infix] = ACTIONS(3147), - [anon_sym_postfix] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3149), - [sym_property_behavior_modifier] = ACTIONS(3147), - [anon_sym_override] = ACTIONS(3147), - [anon_sym_convenience] = ACTIONS(3147), - [anon_sym_required] = ACTIONS(3147), - [anon_sym_nonisolated] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_private] = ACTIONS(3147), - [anon_sym_internal] = ACTIONS(3147), - [anon_sym_fileprivate] = ACTIONS(3147), - [anon_sym_open] = ACTIONS(3147), - [anon_sym_mutating] = ACTIONS(3147), - [anon_sym_nonmutating] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_dynamic] = ACTIONS(3147), - [anon_sym_optional] = ACTIONS(3147), - [anon_sym_final] = ACTIONS(3147), - [anon_sym_inout] = ACTIONS(3147), - [anon_sym_ATescaping] = ACTIONS(3147), - [anon_sym_ATautoclosure] = ACTIONS(3147), - [anon_sym_weak] = ACTIONS(3147), - [anon_sym_unowned] = ACTIONS(3149), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3147), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3147), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3147), - [sym__explicit_semi] = ACTIONS(3147), - [sym__dot_custom] = ACTIONS(3147), - [sym__conjunction_operator_custom] = ACTIONS(3147), - [sym__disjunction_operator_custom] = ACTIONS(3147), - [sym__nil_coalescing_operator_custom] = ACTIONS(3147), - [sym__eq_eq_custom] = ACTIONS(3147), - [sym__plus_then_ws] = ACTIONS(3147), - [sym__minus_then_ws] = ACTIONS(3147), - [sym_bang] = ACTIONS(3147), - [sym_default_keyword] = ACTIONS(3147), - [sym__as_custom] = ACTIONS(3147), - [sym__as_quest_custom] = ACTIONS(3147), - [sym__as_bang_custom] = ACTIONS(3147), - [sym__custom_operator] = ACTIONS(3147), - }, - [1114] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3013), - [sym__immediate_quest] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [aux_sym_custom_operator_token1] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_CARET_LBRACE] = ACTIONS(3011), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_case] = ACTIONS(3011), - [anon_sym_fallthrough] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_DOT_DOT_LT] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3011), - [anon_sym_prefix] = ACTIONS(3011), - [anon_sym_infix] = ACTIONS(3011), - [anon_sym_postfix] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(3013), - [sym_property_behavior_modifier] = ACTIONS(3011), - [anon_sym_override] = ACTIONS(3011), - [anon_sym_convenience] = ACTIONS(3011), - [anon_sym_required] = ACTIONS(3011), - [anon_sym_nonisolated] = ACTIONS(3011), - [anon_sym_public] = ACTIONS(3011), - [anon_sym_private] = ACTIONS(3011), - [anon_sym_internal] = ACTIONS(3011), - [anon_sym_fileprivate] = ACTIONS(3011), - [anon_sym_open] = ACTIONS(3011), - [anon_sym_mutating] = ACTIONS(3011), - [anon_sym_nonmutating] = ACTIONS(3011), - [anon_sym_static] = ACTIONS(3011), - [anon_sym_dynamic] = ACTIONS(3011), - [anon_sym_optional] = ACTIONS(3011), - [anon_sym_final] = ACTIONS(3011), - [anon_sym_inout] = ACTIONS(3011), - [anon_sym_ATescaping] = ACTIONS(3011), - [anon_sym_ATautoclosure] = ACTIONS(3011), - [anon_sym_weak] = ACTIONS(3011), - [anon_sym_unowned] = ACTIONS(3013), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3011), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3011), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3011), - [sym__explicit_semi] = ACTIONS(3011), - [sym__dot_custom] = ACTIONS(3011), - [sym__conjunction_operator_custom] = ACTIONS(3011), - [sym__disjunction_operator_custom] = ACTIONS(3011), - [sym__nil_coalescing_operator_custom] = ACTIONS(3011), - [sym__eq_eq_custom] = ACTIONS(3011), - [sym__plus_then_ws] = ACTIONS(3011), - [sym__minus_then_ws] = ACTIONS(3011), - [sym_bang] = ACTIONS(3011), - [sym_default_keyword] = ACTIONS(3011), - [sym__as_custom] = ACTIONS(3011), - [sym__as_quest_custom] = ACTIONS(3011), - [sym__as_bang_custom] = ACTIONS(3011), - [sym__custom_operator] = ACTIONS(3011), - }, - [1115] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3025), - [sym__immediate_quest] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [aux_sym_custom_operator_token1] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_CARET_LBRACE] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_case] = ACTIONS(3023), - [anon_sym_fallthrough] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), - [anon_sym_DOT_DOT_LT] = ACTIONS(3023), - [anon_sym_is] = ACTIONS(3023), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_prefix] = ACTIONS(3023), - [anon_sym_infix] = ACTIONS(3023), - [anon_sym_postfix] = ACTIONS(3023), - [anon_sym_AT] = ACTIONS(3025), - [sym_property_behavior_modifier] = ACTIONS(3023), - [anon_sym_override] = ACTIONS(3023), - [anon_sym_convenience] = ACTIONS(3023), - [anon_sym_required] = ACTIONS(3023), - [anon_sym_nonisolated] = ACTIONS(3023), - [anon_sym_public] = ACTIONS(3023), - [anon_sym_private] = ACTIONS(3023), - [anon_sym_internal] = ACTIONS(3023), - [anon_sym_fileprivate] = ACTIONS(3023), - [anon_sym_open] = ACTIONS(3023), - [anon_sym_mutating] = ACTIONS(3023), - [anon_sym_nonmutating] = ACTIONS(3023), - [anon_sym_static] = ACTIONS(3023), - [anon_sym_dynamic] = ACTIONS(3023), - [anon_sym_optional] = ACTIONS(3023), - [anon_sym_final] = ACTIONS(3023), - [anon_sym_inout] = ACTIONS(3023), - [anon_sym_ATescaping] = ACTIONS(3023), - [anon_sym_ATautoclosure] = ACTIONS(3023), - [anon_sym_weak] = ACTIONS(3023), - [anon_sym_unowned] = ACTIONS(3025), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3023), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3023), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3023), - [sym__explicit_semi] = ACTIONS(3023), - [sym__dot_custom] = ACTIONS(3023), - [sym__conjunction_operator_custom] = ACTIONS(3023), - [sym__disjunction_operator_custom] = ACTIONS(3023), - [sym__nil_coalescing_operator_custom] = ACTIONS(3023), - [sym__eq_eq_custom] = ACTIONS(3023), - [sym__plus_then_ws] = ACTIONS(3023), - [sym__minus_then_ws] = ACTIONS(3023), - [sym_bang] = ACTIONS(3023), - [sym_default_keyword] = ACTIONS(3023), - [sym__as_custom] = ACTIONS(3023), - [sym__as_quest_custom] = ACTIONS(3023), - [sym__as_bang_custom] = ACTIONS(3023), - [sym__custom_operator] = ACTIONS(3023), - }, - [1116] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3029), - [sym__immediate_quest] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [aux_sym_custom_operator_token1] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_CARET_LBRACE] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_case] = ACTIONS(3027), - [anon_sym_fallthrough] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3027), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), - [anon_sym_DOT_DOT_LT] = ACTIONS(3027), - [anon_sym_is] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_class] = ACTIONS(3027), - [anon_sym_prefix] = ACTIONS(3027), - [anon_sym_infix] = ACTIONS(3027), - [anon_sym_postfix] = ACTIONS(3027), - [anon_sym_AT] = ACTIONS(3029), - [sym_property_behavior_modifier] = ACTIONS(3027), - [anon_sym_override] = ACTIONS(3027), - [anon_sym_convenience] = ACTIONS(3027), - [anon_sym_required] = ACTIONS(3027), - [anon_sym_nonisolated] = ACTIONS(3027), - [anon_sym_public] = ACTIONS(3027), - [anon_sym_private] = ACTIONS(3027), - [anon_sym_internal] = ACTIONS(3027), - [anon_sym_fileprivate] = ACTIONS(3027), - [anon_sym_open] = ACTIONS(3027), - [anon_sym_mutating] = ACTIONS(3027), - [anon_sym_nonmutating] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(3027), - [anon_sym_dynamic] = ACTIONS(3027), - [anon_sym_optional] = ACTIONS(3027), - [anon_sym_final] = ACTIONS(3027), - [anon_sym_inout] = ACTIONS(3027), - [anon_sym_ATescaping] = ACTIONS(3027), - [anon_sym_ATautoclosure] = ACTIONS(3027), - [anon_sym_weak] = ACTIONS(3027), - [anon_sym_unowned] = ACTIONS(3029), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3027), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3027), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3027), - [sym__explicit_semi] = ACTIONS(3027), - [sym__dot_custom] = ACTIONS(3027), - [sym__conjunction_operator_custom] = ACTIONS(3027), - [sym__disjunction_operator_custom] = ACTIONS(3027), - [sym__nil_coalescing_operator_custom] = ACTIONS(3027), - [sym__eq_eq_custom] = ACTIONS(3027), - [sym__plus_then_ws] = ACTIONS(3027), - [sym__minus_then_ws] = ACTIONS(3027), - [sym_bang] = ACTIONS(3027), - [sym_default_keyword] = ACTIONS(3027), - [sym__as_custom] = ACTIONS(3027), - [sym__as_quest_custom] = ACTIONS(3027), - [sym__as_bang_custom] = ACTIONS(3027), - [sym__custom_operator] = ACTIONS(3027), - }, - [1117] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [sym__immediate_quest] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [aux_sym_custom_operator_token1] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_CARET_LBRACE] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_case] = ACTIONS(3103), - [anon_sym_fallthrough] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3103), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_DOT_DOT_LT] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_class] = ACTIONS(3103), - [anon_sym_prefix] = ACTIONS(3103), - [anon_sym_infix] = ACTIONS(3103), - [anon_sym_postfix] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3105), - [sym_property_behavior_modifier] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_convenience] = ACTIONS(3103), - [anon_sym_required] = ACTIONS(3103), - [anon_sym_nonisolated] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_internal] = ACTIONS(3103), - [anon_sym_fileprivate] = ACTIONS(3103), - [anon_sym_open] = ACTIONS(3103), - [anon_sym_mutating] = ACTIONS(3103), - [anon_sym_nonmutating] = ACTIONS(3103), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_dynamic] = ACTIONS(3103), - [anon_sym_optional] = ACTIONS(3103), - [anon_sym_final] = ACTIONS(3103), - [anon_sym_inout] = ACTIONS(3103), - [anon_sym_ATescaping] = ACTIONS(3103), - [anon_sym_ATautoclosure] = ACTIONS(3103), - [anon_sym_weak] = ACTIONS(3103), - [anon_sym_unowned] = ACTIONS(3105), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3103), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3103), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3103), - [sym__explicit_semi] = ACTIONS(3103), - [sym__dot_custom] = ACTIONS(3103), - [sym__conjunction_operator_custom] = ACTIONS(3103), - [sym__disjunction_operator_custom] = ACTIONS(3103), - [sym__nil_coalescing_operator_custom] = ACTIONS(3103), - [sym__eq_eq_custom] = ACTIONS(3103), - [sym__plus_then_ws] = ACTIONS(3103), - [sym__minus_then_ws] = ACTIONS(3103), - [sym_bang] = ACTIONS(3103), - [sym_default_keyword] = ACTIONS(3103), - [sym__as_custom] = ACTIONS(3103), - [sym__as_quest_custom] = ACTIONS(3103), - [sym__as_bang_custom] = ACTIONS(3103), - [sym__custom_operator] = ACTIONS(3103), - }, - [1118] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3101), - [sym__immediate_quest] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3099), - [aux_sym_custom_operator_token1] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_CARET_LBRACE] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_fallthrough] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3099), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_is] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3099), - [anon_sym_class] = ACTIONS(3099), - [anon_sym_prefix] = ACTIONS(3099), - [anon_sym_infix] = ACTIONS(3099), - [anon_sym_postfix] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3101), - [sym_property_behavior_modifier] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_convenience] = ACTIONS(3099), - [anon_sym_required] = ACTIONS(3099), - [anon_sym_nonisolated] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_internal] = ACTIONS(3099), - [anon_sym_fileprivate] = ACTIONS(3099), - [anon_sym_open] = ACTIONS(3099), - [anon_sym_mutating] = ACTIONS(3099), - [anon_sym_nonmutating] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_dynamic] = ACTIONS(3099), - [anon_sym_optional] = ACTIONS(3099), - [anon_sym_final] = ACTIONS(3099), - [anon_sym_inout] = ACTIONS(3099), - [anon_sym_ATescaping] = ACTIONS(3099), - [anon_sym_ATautoclosure] = ACTIONS(3099), - [anon_sym_weak] = ACTIONS(3099), - [anon_sym_unowned] = ACTIONS(3101), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3099), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3099), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3099), - [sym__explicit_semi] = ACTIONS(3099), - [sym__dot_custom] = ACTIONS(3099), - [sym__conjunction_operator_custom] = ACTIONS(3099), - [sym__disjunction_operator_custom] = ACTIONS(3099), - [sym__nil_coalescing_operator_custom] = ACTIONS(3099), - [sym__eq_eq_custom] = ACTIONS(3099), - [sym__plus_then_ws] = ACTIONS(3099), - [sym__minus_then_ws] = ACTIONS(3099), - [sym_bang] = ACTIONS(3099), - [sym_default_keyword] = ACTIONS(3099), - [sym__as_custom] = ACTIONS(3099), - [sym__as_quest_custom] = ACTIONS(3099), - [sym__as_bang_custom] = ACTIONS(3099), - [sym__custom_operator] = ACTIONS(3099), - }, - [1119] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [sym__immediate_quest] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [aux_sym_custom_operator_token1] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_CARET_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_case] = ACTIONS(3067), - [anon_sym_fallthrough] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), - [anon_sym_DOT_DOT_LT] = ACTIONS(3067), - [anon_sym_is] = ACTIONS(3067), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3067), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3067), - [anon_sym_class] = ACTIONS(3067), - [anon_sym_prefix] = ACTIONS(3067), - [anon_sym_infix] = ACTIONS(3067), - [anon_sym_postfix] = ACTIONS(3067), - [anon_sym_AT] = ACTIONS(3069), - [sym_property_behavior_modifier] = ACTIONS(3067), - [anon_sym_override] = ACTIONS(3067), - [anon_sym_convenience] = ACTIONS(3067), - [anon_sym_required] = ACTIONS(3067), - [anon_sym_nonisolated] = ACTIONS(3067), - [anon_sym_public] = ACTIONS(3067), - [anon_sym_private] = ACTIONS(3067), - [anon_sym_internal] = ACTIONS(3067), - [anon_sym_fileprivate] = ACTIONS(3067), - [anon_sym_open] = ACTIONS(3067), - [anon_sym_mutating] = ACTIONS(3067), - [anon_sym_nonmutating] = ACTIONS(3067), - [anon_sym_static] = ACTIONS(3067), - [anon_sym_dynamic] = ACTIONS(3067), - [anon_sym_optional] = ACTIONS(3067), - [anon_sym_final] = ACTIONS(3067), - [anon_sym_inout] = ACTIONS(3067), - [anon_sym_ATescaping] = ACTIONS(3067), - [anon_sym_ATautoclosure] = ACTIONS(3067), - [anon_sym_weak] = ACTIONS(3067), - [anon_sym_unowned] = ACTIONS(3069), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3067), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3067), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3067), - [sym__explicit_semi] = ACTIONS(3067), - [sym__dot_custom] = ACTIONS(3067), - [sym__conjunction_operator_custom] = ACTIONS(3067), - [sym__disjunction_operator_custom] = ACTIONS(3067), - [sym__nil_coalescing_operator_custom] = ACTIONS(3067), - [sym__eq_eq_custom] = ACTIONS(3067), - [sym__plus_then_ws] = ACTIONS(3067), - [sym__minus_then_ws] = ACTIONS(3067), - [sym_bang] = ACTIONS(3067), - [sym_default_keyword] = ACTIONS(3067), - [sym__as_custom] = ACTIONS(3067), - [sym__as_quest_custom] = ACTIONS(3067), - [sym__as_bang_custom] = ACTIONS(3067), - [sym__custom_operator] = ACTIONS(3067), - }, - [1120] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2981), - [sym__immediate_quest] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [aux_sym_custom_operator_token1] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_CARET_LBRACE] = ACTIONS(2979), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_case] = ACTIONS(2979), - [anon_sym_fallthrough] = ACTIONS(2979), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2979), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2979), - [anon_sym_LT_EQ] = ACTIONS(2979), - [anon_sym_GT_EQ] = ACTIONS(2979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2979), - [anon_sym_DOT_DOT_LT] = ACTIONS(2979), - [anon_sym_is] = ACTIONS(2979), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2979), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(2979), - [anon_sym_prefix] = ACTIONS(2979), - [anon_sym_infix] = ACTIONS(2979), - [anon_sym_postfix] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2981), - [sym_property_behavior_modifier] = ACTIONS(2979), - [anon_sym_override] = ACTIONS(2979), - [anon_sym_convenience] = ACTIONS(2979), - [anon_sym_required] = ACTIONS(2979), - [anon_sym_nonisolated] = ACTIONS(2979), - [anon_sym_public] = ACTIONS(2979), - [anon_sym_private] = ACTIONS(2979), - [anon_sym_internal] = ACTIONS(2979), - [anon_sym_fileprivate] = ACTIONS(2979), - [anon_sym_open] = ACTIONS(2979), - [anon_sym_mutating] = ACTIONS(2979), - [anon_sym_nonmutating] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(2979), - [anon_sym_dynamic] = ACTIONS(2979), - [anon_sym_optional] = ACTIONS(2979), - [anon_sym_final] = ACTIONS(2979), - [anon_sym_inout] = ACTIONS(2979), - [anon_sym_ATescaping] = ACTIONS(2979), - [anon_sym_ATautoclosure] = ACTIONS(2979), - [anon_sym_weak] = ACTIONS(2979), - [anon_sym_unowned] = ACTIONS(2981), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2979), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2979), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2979), - [sym__explicit_semi] = ACTIONS(2979), - [sym__dot_custom] = ACTIONS(2979), - [sym__conjunction_operator_custom] = ACTIONS(2979), - [sym__disjunction_operator_custom] = ACTIONS(2979), - [sym__nil_coalescing_operator_custom] = ACTIONS(2979), - [sym__eq_eq_custom] = ACTIONS(2979), - [sym__plus_then_ws] = ACTIONS(2979), - [sym__minus_then_ws] = ACTIONS(2979), - [sym_bang] = ACTIONS(2979), - [sym_default_keyword] = ACTIONS(2979), - [sym__as_custom] = ACTIONS(2979), - [sym__as_quest_custom] = ACTIONS(2979), - [sym__as_bang_custom] = ACTIONS(2979), - [sym__custom_operator] = ACTIONS(2979), - }, - [1121] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [sym__immediate_quest] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [aux_sym_custom_operator_token1] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_CARET_LBRACE] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_case] = ACTIONS(3039), - [anon_sym_fallthrough] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), - [anon_sym_DOT_DOT_LT] = ACTIONS(3039), - [anon_sym_is] = ACTIONS(3039), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3039), - [anon_sym_class] = ACTIONS(3039), - [anon_sym_prefix] = ACTIONS(3039), - [anon_sym_infix] = ACTIONS(3039), - [anon_sym_postfix] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [sym_property_behavior_modifier] = ACTIONS(3039), - [anon_sym_override] = ACTIONS(3039), - [anon_sym_convenience] = ACTIONS(3039), - [anon_sym_required] = ACTIONS(3039), - [anon_sym_nonisolated] = ACTIONS(3039), - [anon_sym_public] = ACTIONS(3039), - [anon_sym_private] = ACTIONS(3039), - [anon_sym_internal] = ACTIONS(3039), - [anon_sym_fileprivate] = ACTIONS(3039), - [anon_sym_open] = ACTIONS(3039), - [anon_sym_mutating] = ACTIONS(3039), - [anon_sym_nonmutating] = ACTIONS(3039), - [anon_sym_static] = ACTIONS(3039), - [anon_sym_dynamic] = ACTIONS(3039), - [anon_sym_optional] = ACTIONS(3039), - [anon_sym_final] = ACTIONS(3039), - [anon_sym_inout] = ACTIONS(3039), - [anon_sym_ATescaping] = ACTIONS(3039), - [anon_sym_ATautoclosure] = ACTIONS(3039), - [anon_sym_weak] = ACTIONS(3039), - [anon_sym_unowned] = ACTIONS(3041), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3039), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3039), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3039), - [sym__explicit_semi] = ACTIONS(3039), - [sym__dot_custom] = ACTIONS(3039), - [sym__conjunction_operator_custom] = ACTIONS(3039), - [sym__disjunction_operator_custom] = ACTIONS(3039), - [sym__nil_coalescing_operator_custom] = ACTIONS(3039), - [sym__eq_eq_custom] = ACTIONS(3039), - [sym__plus_then_ws] = ACTIONS(3039), - [sym__minus_then_ws] = ACTIONS(3039), - [sym_bang] = ACTIONS(3039), - [sym_default_keyword] = ACTIONS(3039), - [sym__as_custom] = ACTIONS(3039), - [sym__as_quest_custom] = ACTIONS(3039), - [sym__as_bang_custom] = ACTIONS(3039), - [sym__custom_operator] = ACTIONS(3039), - }, - [1122] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [sym__immediate_quest] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [aux_sym_custom_operator_token1] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_CARET_LBRACE] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_fallthrough] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_DOT_DOT_LT] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_prefix] = ACTIONS(3151), - [anon_sym_infix] = ACTIONS(3151), - [anon_sym_postfix] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3153), - [sym_property_behavior_modifier] = ACTIONS(3151), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_convenience] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_nonisolated] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_fileprivate] = ACTIONS(3151), - [anon_sym_open] = ACTIONS(3151), - [anon_sym_mutating] = ACTIONS(3151), - [anon_sym_nonmutating] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_dynamic] = ACTIONS(3151), - [anon_sym_optional] = ACTIONS(3151), - [anon_sym_final] = ACTIONS(3151), - [anon_sym_inout] = ACTIONS(3151), - [anon_sym_ATescaping] = ACTIONS(3151), - [anon_sym_ATautoclosure] = ACTIONS(3151), - [anon_sym_weak] = ACTIONS(3151), - [anon_sym_unowned] = ACTIONS(3153), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3151), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3151), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3151), - [sym__explicit_semi] = ACTIONS(3151), - [sym__dot_custom] = ACTIONS(3151), - [sym__conjunction_operator_custom] = ACTIONS(3151), - [sym__disjunction_operator_custom] = ACTIONS(3151), - [sym__nil_coalescing_operator_custom] = ACTIONS(3151), - [sym__eq_eq_custom] = ACTIONS(3151), - [sym__plus_then_ws] = ACTIONS(3151), - [sym__minus_then_ws] = ACTIONS(3151), - [sym_bang] = ACTIONS(3151), - [sym_default_keyword] = ACTIONS(3151), - [sym__as_custom] = ACTIONS(3151), - [sym__as_quest_custom] = ACTIONS(3151), - [sym__as_bang_custom] = ACTIONS(3151), - [sym__custom_operator] = ACTIONS(3151), - }, - [1123] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3157), - [sym__immediate_quest] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [aux_sym_custom_operator_token1] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_CARET_LBRACE] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_fallthrough] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3155), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_DOT_DOT_LT] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_prefix] = ACTIONS(3155), - [anon_sym_infix] = ACTIONS(3155), - [anon_sym_postfix] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3157), - [sym_property_behavior_modifier] = ACTIONS(3155), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_convenience] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_nonisolated] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_fileprivate] = ACTIONS(3155), - [anon_sym_open] = ACTIONS(3155), - [anon_sym_mutating] = ACTIONS(3155), - [anon_sym_nonmutating] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_dynamic] = ACTIONS(3155), - [anon_sym_optional] = ACTIONS(3155), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_inout] = ACTIONS(3155), - [anon_sym_ATescaping] = ACTIONS(3155), - [anon_sym_ATautoclosure] = ACTIONS(3155), - [anon_sym_weak] = ACTIONS(3155), - [anon_sym_unowned] = ACTIONS(3157), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3155), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3155), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3155), - [sym__explicit_semi] = ACTIONS(3155), - [sym__dot_custom] = ACTIONS(3155), - [sym__conjunction_operator_custom] = ACTIONS(3155), - [sym__disjunction_operator_custom] = ACTIONS(3155), - [sym__nil_coalescing_operator_custom] = ACTIONS(3155), - [sym__eq_eq_custom] = ACTIONS(3155), - [sym__plus_then_ws] = ACTIONS(3155), - [sym__minus_then_ws] = ACTIONS(3155), - [sym_bang] = ACTIONS(3155), - [sym_default_keyword] = ACTIONS(3155), - [sym__as_custom] = ACTIONS(3155), - [sym__as_quest_custom] = ACTIONS(3155), - [sym__as_bang_custom] = ACTIONS(3155), - [sym__custom_operator] = ACTIONS(3155), - }, - [1124] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3017), - [sym__immediate_quest] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [aux_sym_custom_operator_token1] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_CARET_LBRACE] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_case] = ACTIONS(3015), - [anon_sym_fallthrough] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), - [anon_sym_DOT_DOT_LT] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_class] = ACTIONS(3015), - [anon_sym_prefix] = ACTIONS(3015), - [anon_sym_infix] = ACTIONS(3015), - [anon_sym_postfix] = ACTIONS(3015), - [anon_sym_AT] = ACTIONS(3017), - [sym_property_behavior_modifier] = ACTIONS(3015), - [anon_sym_override] = ACTIONS(3015), - [anon_sym_convenience] = ACTIONS(3015), - [anon_sym_required] = ACTIONS(3015), - [anon_sym_nonisolated] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3015), - [anon_sym_private] = ACTIONS(3015), - [anon_sym_internal] = ACTIONS(3015), - [anon_sym_fileprivate] = ACTIONS(3015), - [anon_sym_open] = ACTIONS(3015), - [anon_sym_mutating] = ACTIONS(3015), - [anon_sym_nonmutating] = ACTIONS(3015), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_dynamic] = ACTIONS(3015), - [anon_sym_optional] = ACTIONS(3015), - [anon_sym_final] = ACTIONS(3015), - [anon_sym_inout] = ACTIONS(3015), - [anon_sym_ATescaping] = ACTIONS(3015), - [anon_sym_ATautoclosure] = ACTIONS(3015), - [anon_sym_weak] = ACTIONS(3015), - [anon_sym_unowned] = ACTIONS(3017), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3015), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3015), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3015), - [sym__explicit_semi] = ACTIONS(3015), - [sym__dot_custom] = ACTIONS(3015), - [sym__conjunction_operator_custom] = ACTIONS(3015), - [sym__disjunction_operator_custom] = ACTIONS(3015), - [sym__nil_coalescing_operator_custom] = ACTIONS(3015), - [sym__eq_eq_custom] = ACTIONS(3015), - [sym__plus_then_ws] = ACTIONS(3015), - [sym__minus_then_ws] = ACTIONS(3015), - [sym_bang] = ACTIONS(3015), - [sym_default_keyword] = ACTIONS(3015), - [sym__as_custom] = ACTIONS(3015), - [sym__as_quest_custom] = ACTIONS(3015), - [sym__as_bang_custom] = ACTIONS(3015), - [sym__custom_operator] = ACTIONS(3015), - }, - [1125] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_QMARK] = ACTIONS(3073), - [sym__immediate_quest] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3071), - [aux_sym_custom_operator_token1] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_CARET_LBRACE] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_fallthrough] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), - [anon_sym_DOT_DOT_LT] = ACTIONS(3071), - [anon_sym_is] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3071), - [anon_sym_class] = ACTIONS(3071), - [anon_sym_prefix] = ACTIONS(3071), - [anon_sym_infix] = ACTIONS(3071), - [anon_sym_postfix] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3073), - [sym_property_behavior_modifier] = ACTIONS(3071), - [anon_sym_override] = ACTIONS(3071), - [anon_sym_convenience] = ACTIONS(3071), - [anon_sym_required] = ACTIONS(3071), - [anon_sym_nonisolated] = ACTIONS(3071), - [anon_sym_public] = ACTIONS(3071), - [anon_sym_private] = ACTIONS(3071), - [anon_sym_internal] = ACTIONS(3071), - [anon_sym_fileprivate] = ACTIONS(3071), - [anon_sym_open] = ACTIONS(3071), - [anon_sym_mutating] = ACTIONS(3071), - [anon_sym_nonmutating] = ACTIONS(3071), - [anon_sym_static] = ACTIONS(3071), - [anon_sym_dynamic] = ACTIONS(3071), - [anon_sym_optional] = ACTIONS(3071), - [anon_sym_final] = ACTIONS(3071), - [anon_sym_inout] = ACTIONS(3071), - [anon_sym_ATescaping] = ACTIONS(3071), - [anon_sym_ATautoclosure] = ACTIONS(3071), - [anon_sym_weak] = ACTIONS(3071), - [anon_sym_unowned] = ACTIONS(3073), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3071), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3071), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3071), - [sym__explicit_semi] = ACTIONS(3071), - [sym__dot_custom] = ACTIONS(3071), - [sym__conjunction_operator_custom] = ACTIONS(3071), - [sym__disjunction_operator_custom] = ACTIONS(3071), - [sym__nil_coalescing_operator_custom] = ACTIONS(3071), - [sym__eq_eq_custom] = ACTIONS(3071), - [sym__plus_then_ws] = ACTIONS(3071), - [sym__minus_then_ws] = ACTIONS(3071), - [sym_bang] = ACTIONS(3071), - [sym_default_keyword] = ACTIONS(3071), - [sym__as_custom] = ACTIONS(3071), - [sym__as_quest_custom] = ACTIONS(3071), - [sym__as_bang_custom] = ACTIONS(3071), - [sym__custom_operator] = ACTIONS(3071), - }, - [1126] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_QMARK] = ACTIONS(2707), - [sym__immediate_quest] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [aux_sym_custom_operator_token1] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2707), - [anon_sym_GT] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_CARET_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_fallthrough] = ACTIONS(2709), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2709), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2709), - [anon_sym_GT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_is] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2707), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_prefix] = ACTIONS(2709), - [anon_sym_infix] = ACTIONS(2709), - [anon_sym_postfix] = ACTIONS(2709), - [anon_sym_AT] = ACTIONS(2707), - [sym_property_behavior_modifier] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2709), - [anon_sym_convenience] = ACTIONS(2709), - [anon_sym_required] = ACTIONS(2709), - [anon_sym_nonisolated] = ACTIONS(2709), - [anon_sym_public] = ACTIONS(2709), - [anon_sym_private] = ACTIONS(2709), - [anon_sym_internal] = ACTIONS(2709), - [anon_sym_fileprivate] = ACTIONS(2709), - [anon_sym_open] = ACTIONS(2709), - [anon_sym_mutating] = ACTIONS(2709), - [anon_sym_nonmutating] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_dynamic] = ACTIONS(2709), - [anon_sym_optional] = ACTIONS(2709), - [anon_sym_final] = ACTIONS(2709), - [anon_sym_inout] = ACTIONS(2709), - [anon_sym_ATescaping] = ACTIONS(2709), - [anon_sym_ATautoclosure] = ACTIONS(2709), - [anon_sym_weak] = ACTIONS(2709), - [anon_sym_unowned] = ACTIONS(2707), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2709), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2709), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2709), - [sym__explicit_semi] = ACTIONS(2709), - [sym__dot_custom] = ACTIONS(2709), - [sym__conjunction_operator_custom] = ACTIONS(2709), - [sym__disjunction_operator_custom] = ACTIONS(2709), - [sym__nil_coalescing_operator_custom] = ACTIONS(2709), - [sym__eq_eq_custom] = ACTIONS(2709), - [sym__plus_then_ws] = ACTIONS(2709), - [sym__minus_then_ws] = ACTIONS(2709), - [sym_bang] = ACTIONS(2709), - [sym_default_keyword] = ACTIONS(2709), - [sym__as_custom] = ACTIONS(2709), - [sym__as_quest_custom] = ACTIONS(2709), - [sym__as_bang_custom] = ACTIONS(2709), - [sym__custom_operator] = ACTIONS(2709), - }, - [1127] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [sym__immediate_quest] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [aux_sym_custom_operator_token1] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_CARET_LBRACE] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_case] = ACTIONS(3059), - [anon_sym_fallthrough] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [anon_sym_DOT_DOT_LT] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_class] = ACTIONS(3059), - [anon_sym_prefix] = ACTIONS(3059), - [anon_sym_infix] = ACTIONS(3059), - [anon_sym_postfix] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3061), - [sym_property_behavior_modifier] = ACTIONS(3059), - [anon_sym_override] = ACTIONS(3059), - [anon_sym_convenience] = ACTIONS(3059), - [anon_sym_required] = ACTIONS(3059), - [anon_sym_nonisolated] = ACTIONS(3059), - [anon_sym_public] = ACTIONS(3059), - [anon_sym_private] = ACTIONS(3059), - [anon_sym_internal] = ACTIONS(3059), - [anon_sym_fileprivate] = ACTIONS(3059), - [anon_sym_open] = ACTIONS(3059), - [anon_sym_mutating] = ACTIONS(3059), - [anon_sym_nonmutating] = ACTIONS(3059), - [anon_sym_static] = ACTIONS(3059), - [anon_sym_dynamic] = ACTIONS(3059), - [anon_sym_optional] = ACTIONS(3059), - [anon_sym_final] = ACTIONS(3059), - [anon_sym_inout] = ACTIONS(3059), - [anon_sym_ATescaping] = ACTIONS(3059), - [anon_sym_ATautoclosure] = ACTIONS(3059), - [anon_sym_weak] = ACTIONS(3059), - [anon_sym_unowned] = ACTIONS(3061), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3059), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3059), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3059), - [sym__explicit_semi] = ACTIONS(3059), - [sym__dot_custom] = ACTIONS(3059), - [sym__conjunction_operator_custom] = ACTIONS(3059), - [sym__disjunction_operator_custom] = ACTIONS(3059), - [sym__nil_coalescing_operator_custom] = ACTIONS(3059), - [sym__eq_eq_custom] = ACTIONS(3059), - [sym__plus_then_ws] = ACTIONS(3059), - [sym__minus_then_ws] = ACTIONS(3059), - [sym_bang] = ACTIONS(3059), - [sym_default_keyword] = ACTIONS(3059), - [sym__as_custom] = ACTIONS(3059), - [sym__as_quest_custom] = ACTIONS(3059), - [sym__as_bang_custom] = ACTIONS(3059), - [sym__custom_operator] = ACTIONS(3059), - }, - [1128] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_QMARK] = ACTIONS(2691), - [sym__immediate_quest] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [aux_sym_custom_operator_token1] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_CARET_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_fallthrough] = ACTIONS(2693), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(2693), - [anon_sym_GT_EQ] = ACTIONS(2693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2693), - [anon_sym_DOT_DOT_LT] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2693), - [anon_sym_GT_GT] = ACTIONS(2693), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_prefix] = ACTIONS(2693), - [anon_sym_infix] = ACTIONS(2693), - [anon_sym_postfix] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2691), - [sym_property_behavior_modifier] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_convenience] = ACTIONS(2693), - [anon_sym_required] = ACTIONS(2693), - [anon_sym_nonisolated] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_internal] = ACTIONS(2693), - [anon_sym_fileprivate] = ACTIONS(2693), - [anon_sym_open] = ACTIONS(2693), - [anon_sym_mutating] = ACTIONS(2693), - [anon_sym_nonmutating] = ACTIONS(2693), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_dynamic] = ACTIONS(2693), - [anon_sym_optional] = ACTIONS(2693), - [anon_sym_final] = ACTIONS(2693), - [anon_sym_inout] = ACTIONS(2693), - [anon_sym_ATescaping] = ACTIONS(2693), - [anon_sym_ATautoclosure] = ACTIONS(2693), - [anon_sym_weak] = ACTIONS(2693), - [anon_sym_unowned] = ACTIONS(2691), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2693), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2693), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2693), - [sym__explicit_semi] = ACTIONS(2693), - [sym__dot_custom] = ACTIONS(2693), - [sym__conjunction_operator_custom] = ACTIONS(2693), - [sym__disjunction_operator_custom] = ACTIONS(2693), - [sym__nil_coalescing_operator_custom] = ACTIONS(2693), - [sym__eq_eq_custom] = ACTIONS(2693), - [sym__plus_then_ws] = ACTIONS(2693), - [sym__minus_then_ws] = ACTIONS(2693), - [sym_bang] = ACTIONS(2693), - [sym_default_keyword] = ACTIONS(2693), - [sym__as_custom] = ACTIONS(2693), - [sym__as_quest_custom] = ACTIONS(2693), - [sym__as_bang_custom] = ACTIONS(2693), - [sym__custom_operator] = ACTIONS(2693), - }, - [1129] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2687), - [sym__immediate_quest] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [aux_sym_custom_operator_token1] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2687), - [anon_sym_GT] = ACTIONS(2687), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_CARET_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_fallthrough] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2687), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2689), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), - [anon_sym_DOT_DOT_LT] = ACTIONS(2689), - [anon_sym_is] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2687), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2687), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2687), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2689), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_prefix] = ACTIONS(2689), - [anon_sym_infix] = ACTIONS(2689), - [anon_sym_postfix] = ACTIONS(2689), - [anon_sym_AT] = ACTIONS(2687), - [sym_property_behavior_modifier] = ACTIONS(2689), - [anon_sym_override] = ACTIONS(2689), - [anon_sym_convenience] = ACTIONS(2689), - [anon_sym_required] = ACTIONS(2689), - [anon_sym_nonisolated] = ACTIONS(2689), - [anon_sym_public] = ACTIONS(2689), - [anon_sym_private] = ACTIONS(2689), - [anon_sym_internal] = ACTIONS(2689), - [anon_sym_fileprivate] = ACTIONS(2689), - [anon_sym_open] = ACTIONS(2689), - [anon_sym_mutating] = ACTIONS(2689), - [anon_sym_nonmutating] = ACTIONS(2689), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_dynamic] = ACTIONS(2689), - [anon_sym_optional] = ACTIONS(2689), - [anon_sym_final] = ACTIONS(2689), - [anon_sym_inout] = ACTIONS(2689), - [anon_sym_ATescaping] = ACTIONS(2689), - [anon_sym_ATautoclosure] = ACTIONS(2689), - [anon_sym_weak] = ACTIONS(2689), - [anon_sym_unowned] = ACTIONS(2687), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2689), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2689), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2689), - [sym__explicit_semi] = ACTIONS(2689), - [sym__dot_custom] = ACTIONS(2689), - [sym__conjunction_operator_custom] = ACTIONS(2689), - [sym__disjunction_operator_custom] = ACTIONS(2689), - [sym__nil_coalescing_operator_custom] = ACTIONS(2689), - [sym__eq_eq_custom] = ACTIONS(2689), - [sym__plus_then_ws] = ACTIONS(2689), - [sym__minus_then_ws] = ACTIONS(2689), - [sym_bang] = ACTIONS(2689), - [sym_default_keyword] = ACTIONS(2689), - [sym__as_custom] = ACTIONS(2689), - [sym__as_quest_custom] = ACTIONS(2689), - [sym__as_bang_custom] = ACTIONS(2689), - [sym__custom_operator] = ACTIONS(2689), - }, - [1130] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [sym__immediate_quest] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3095), - [aux_sym_custom_operator_token1] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_CARET_LBRACE] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_fallthrough] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3095), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), - [anon_sym_DOT_DOT_LT] = ACTIONS(3095), - [anon_sym_is] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3095), - [anon_sym_class] = ACTIONS(3095), - [anon_sym_prefix] = ACTIONS(3095), - [anon_sym_infix] = ACTIONS(3095), - [anon_sym_postfix] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3097), - [sym_property_behavior_modifier] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_convenience] = ACTIONS(3095), - [anon_sym_required] = ACTIONS(3095), - [anon_sym_nonisolated] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_internal] = ACTIONS(3095), - [anon_sym_fileprivate] = ACTIONS(3095), - [anon_sym_open] = ACTIONS(3095), - [anon_sym_mutating] = ACTIONS(3095), - [anon_sym_nonmutating] = ACTIONS(3095), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_dynamic] = ACTIONS(3095), - [anon_sym_optional] = ACTIONS(3095), - [anon_sym_final] = ACTIONS(3095), - [anon_sym_inout] = ACTIONS(3095), - [anon_sym_ATescaping] = ACTIONS(3095), - [anon_sym_ATautoclosure] = ACTIONS(3095), - [anon_sym_weak] = ACTIONS(3095), - [anon_sym_unowned] = ACTIONS(3097), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3095), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3095), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3095), - [sym__explicit_semi] = ACTIONS(3095), - [sym__dot_custom] = ACTIONS(3095), - [sym__conjunction_operator_custom] = ACTIONS(3095), - [sym__disjunction_operator_custom] = ACTIONS(3095), - [sym__nil_coalescing_operator_custom] = ACTIONS(3095), - [sym__eq_eq_custom] = ACTIONS(3095), - [sym__plus_then_ws] = ACTIONS(3095), - [sym__minus_then_ws] = ACTIONS(3095), - [sym_bang] = ACTIONS(3095), - [sym_default_keyword] = ACTIONS(3095), - [sym__as_custom] = ACTIONS(3095), - [sym__as_quest_custom] = ACTIONS(3095), - [sym__as_bang_custom] = ACTIONS(3095), - [sym__custom_operator] = ACTIONS(3095), - }, - [1131] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_QMARK] = ACTIONS(3077), - [sym__immediate_quest] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3075), - [aux_sym_custom_operator_token1] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_CARET_LBRACE] = ACTIONS(3075), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_case] = ACTIONS(3075), - [anon_sym_fallthrough] = ACTIONS(3075), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3075), - [anon_sym_LT_EQ] = ACTIONS(3075), - [anon_sym_GT_EQ] = ACTIONS(3075), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), - [anon_sym_DOT_DOT_LT] = ACTIONS(3075), - [anon_sym_is] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3075), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3075), - [anon_sym_GT_GT] = ACTIONS(3075), - [anon_sym_class] = ACTIONS(3075), - [anon_sym_prefix] = ACTIONS(3075), - [anon_sym_infix] = ACTIONS(3075), - [anon_sym_postfix] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(3077), - [sym_property_behavior_modifier] = ACTIONS(3075), - [anon_sym_override] = ACTIONS(3075), - [anon_sym_convenience] = ACTIONS(3075), - [anon_sym_required] = ACTIONS(3075), - [anon_sym_nonisolated] = ACTIONS(3075), - [anon_sym_public] = ACTIONS(3075), - [anon_sym_private] = ACTIONS(3075), - [anon_sym_internal] = ACTIONS(3075), - [anon_sym_fileprivate] = ACTIONS(3075), - [anon_sym_open] = ACTIONS(3075), - [anon_sym_mutating] = ACTIONS(3075), - [anon_sym_nonmutating] = ACTIONS(3075), - [anon_sym_static] = ACTIONS(3075), - [anon_sym_dynamic] = ACTIONS(3075), - [anon_sym_optional] = ACTIONS(3075), - [anon_sym_final] = ACTIONS(3075), - [anon_sym_inout] = ACTIONS(3075), - [anon_sym_ATescaping] = ACTIONS(3075), - [anon_sym_ATautoclosure] = ACTIONS(3075), - [anon_sym_weak] = ACTIONS(3075), - [anon_sym_unowned] = ACTIONS(3077), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3075), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3075), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3075), - [sym__explicit_semi] = ACTIONS(3075), - [sym__dot_custom] = ACTIONS(3075), - [sym__conjunction_operator_custom] = ACTIONS(3075), - [sym__disjunction_operator_custom] = ACTIONS(3075), - [sym__nil_coalescing_operator_custom] = ACTIONS(3075), - [sym__eq_eq_custom] = ACTIONS(3075), - [sym__plus_then_ws] = ACTIONS(3075), - [sym__minus_then_ws] = ACTIONS(3075), - [sym_bang] = ACTIONS(3075), - [sym_default_keyword] = ACTIONS(3075), - [sym__as_custom] = ACTIONS(3075), - [sym__as_quest_custom] = ACTIONS(3075), - [sym__as_bang_custom] = ACTIONS(3075), - [sym__custom_operator] = ACTIONS(3075), - }, - [1132] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3089), - [sym__immediate_quest] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [aux_sym_custom_operator_token1] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_CARET_LBRACE] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_fallthrough] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3087), - [anon_sym_DOT_DOT_LT] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_prefix] = ACTIONS(3087), - [anon_sym_infix] = ACTIONS(3087), - [anon_sym_postfix] = ACTIONS(3087), - [anon_sym_AT] = ACTIONS(3089), - [sym_property_behavior_modifier] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_convenience] = ACTIONS(3087), - [anon_sym_required] = ACTIONS(3087), - [anon_sym_nonisolated] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_internal] = ACTIONS(3087), - [anon_sym_fileprivate] = ACTIONS(3087), - [anon_sym_open] = ACTIONS(3087), - [anon_sym_mutating] = ACTIONS(3087), - [anon_sym_nonmutating] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_dynamic] = ACTIONS(3087), - [anon_sym_optional] = ACTIONS(3087), - [anon_sym_final] = ACTIONS(3087), - [anon_sym_inout] = ACTIONS(3087), - [anon_sym_ATescaping] = ACTIONS(3087), - [anon_sym_ATautoclosure] = ACTIONS(3087), - [anon_sym_weak] = ACTIONS(3087), - [anon_sym_unowned] = ACTIONS(3089), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3087), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3087), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3087), - [sym__explicit_semi] = ACTIONS(3087), - [sym__dot_custom] = ACTIONS(3087), - [sym__conjunction_operator_custom] = ACTIONS(3087), - [sym__disjunction_operator_custom] = ACTIONS(3087), - [sym__nil_coalescing_operator_custom] = ACTIONS(3087), - [sym__eq_eq_custom] = ACTIONS(3087), - [sym__plus_then_ws] = ACTIONS(3087), - [sym__minus_then_ws] = ACTIONS(3087), - [sym_bang] = ACTIONS(3087), - [sym_default_keyword] = ACTIONS(3087), - [sym__as_custom] = ACTIONS(3087), - [sym__as_quest_custom] = ACTIONS(3087), - [sym__as_bang_custom] = ACTIONS(3087), - [sym__custom_operator] = ACTIONS(3087), - }, - [1133] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2989), - [sym__immediate_quest] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [aux_sym_custom_operator_token1] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_CARET_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_case] = ACTIONS(2987), - [anon_sym_fallthrough] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), - [anon_sym_DOT_DOT_LT] = ACTIONS(2987), - [anon_sym_is] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2987), - [anon_sym_class] = ACTIONS(2987), - [anon_sym_prefix] = ACTIONS(2987), - [anon_sym_infix] = ACTIONS(2987), - [anon_sym_postfix] = ACTIONS(2987), - [anon_sym_AT] = ACTIONS(2989), - [sym_property_behavior_modifier] = ACTIONS(2987), - [anon_sym_override] = ACTIONS(2987), - [anon_sym_convenience] = ACTIONS(2987), - [anon_sym_required] = ACTIONS(2987), - [anon_sym_nonisolated] = ACTIONS(2987), - [anon_sym_public] = ACTIONS(2987), - [anon_sym_private] = ACTIONS(2987), - [anon_sym_internal] = ACTIONS(2987), - [anon_sym_fileprivate] = ACTIONS(2987), - [anon_sym_open] = ACTIONS(2987), - [anon_sym_mutating] = ACTIONS(2987), - [anon_sym_nonmutating] = ACTIONS(2987), - [anon_sym_static] = ACTIONS(2987), - [anon_sym_dynamic] = ACTIONS(2987), - [anon_sym_optional] = ACTIONS(2987), - [anon_sym_final] = ACTIONS(2987), - [anon_sym_inout] = ACTIONS(2987), - [anon_sym_ATescaping] = ACTIONS(2987), - [anon_sym_ATautoclosure] = ACTIONS(2987), - [anon_sym_weak] = ACTIONS(2987), - [anon_sym_unowned] = ACTIONS(2989), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2987), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2987), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2987), - [sym__explicit_semi] = ACTIONS(2987), - [sym__dot_custom] = ACTIONS(2987), - [sym__conjunction_operator_custom] = ACTIONS(2987), - [sym__disjunction_operator_custom] = ACTIONS(2987), - [sym__nil_coalescing_operator_custom] = ACTIONS(2987), - [sym__eq_eq_custom] = ACTIONS(2987), - [sym__plus_then_ws] = ACTIONS(2987), - [sym__minus_then_ws] = ACTIONS(2987), - [sym_bang] = ACTIONS(2987), - [sym_default_keyword] = ACTIONS(2987), - [sym__as_custom] = ACTIONS(2987), - [sym__as_quest_custom] = ACTIONS(2987), - [sym__as_bang_custom] = ACTIONS(2987), - [sym__custom_operator] = ACTIONS(2987), - }, - [1134] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3045), - [sym__immediate_quest] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [aux_sym_custom_operator_token1] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_CARET_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_case] = ACTIONS(3043), - [anon_sym_fallthrough] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3043), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3043), - [anon_sym_DOT_DOT_LT] = ACTIONS(3043), - [anon_sym_is] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3043), - [anon_sym_class] = ACTIONS(3043), - [anon_sym_prefix] = ACTIONS(3043), - [anon_sym_infix] = ACTIONS(3043), - [anon_sym_postfix] = ACTIONS(3043), - [anon_sym_AT] = ACTIONS(3045), - [sym_property_behavior_modifier] = ACTIONS(3043), - [anon_sym_override] = ACTIONS(3043), - [anon_sym_convenience] = ACTIONS(3043), - [anon_sym_required] = ACTIONS(3043), - [anon_sym_nonisolated] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_internal] = ACTIONS(3043), - [anon_sym_fileprivate] = ACTIONS(3043), - [anon_sym_open] = ACTIONS(3043), - [anon_sym_mutating] = ACTIONS(3043), - [anon_sym_nonmutating] = ACTIONS(3043), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_dynamic] = ACTIONS(3043), - [anon_sym_optional] = ACTIONS(3043), - [anon_sym_final] = ACTIONS(3043), - [anon_sym_inout] = ACTIONS(3043), - [anon_sym_ATescaping] = ACTIONS(3043), - [anon_sym_ATautoclosure] = ACTIONS(3043), - [anon_sym_weak] = ACTIONS(3043), - [anon_sym_unowned] = ACTIONS(3045), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3043), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3043), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3043), - [sym__explicit_semi] = ACTIONS(3043), - [sym__dot_custom] = ACTIONS(3043), - [sym__conjunction_operator_custom] = ACTIONS(3043), - [sym__disjunction_operator_custom] = ACTIONS(3043), - [sym__nil_coalescing_operator_custom] = ACTIONS(3043), - [sym__eq_eq_custom] = ACTIONS(3043), - [sym__plus_then_ws] = ACTIONS(3043), - [sym__minus_then_ws] = ACTIONS(3043), - [sym_bang] = ACTIONS(3043), - [sym_default_keyword] = ACTIONS(3043), - [sym__as_custom] = ACTIONS(3043), - [sym__as_quest_custom] = ACTIONS(3043), - [sym__as_bang_custom] = ACTIONS(3043), - [sym__custom_operator] = ACTIONS(3043), - }, - [1135] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2985), - [sym__immediate_quest] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2983), - [aux_sym_custom_operator_token1] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_CARET_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_case] = ACTIONS(2983), - [anon_sym_fallthrough] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [anon_sym_is] = ACTIONS(2983), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2983), - [anon_sym_class] = ACTIONS(2983), - [anon_sym_prefix] = ACTIONS(2983), - [anon_sym_infix] = ACTIONS(2983), - [anon_sym_postfix] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2985), - [sym_property_behavior_modifier] = ACTIONS(2983), - [anon_sym_override] = ACTIONS(2983), - [anon_sym_convenience] = ACTIONS(2983), - [anon_sym_required] = ACTIONS(2983), - [anon_sym_nonisolated] = ACTIONS(2983), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_internal] = ACTIONS(2983), - [anon_sym_fileprivate] = ACTIONS(2983), - [anon_sym_open] = ACTIONS(2983), - [anon_sym_mutating] = ACTIONS(2983), - [anon_sym_nonmutating] = ACTIONS(2983), - [anon_sym_static] = ACTIONS(2983), - [anon_sym_dynamic] = ACTIONS(2983), - [anon_sym_optional] = ACTIONS(2983), - [anon_sym_final] = ACTIONS(2983), - [anon_sym_inout] = ACTIONS(2983), - [anon_sym_ATescaping] = ACTIONS(2983), - [anon_sym_ATautoclosure] = ACTIONS(2983), - [anon_sym_weak] = ACTIONS(2983), - [anon_sym_unowned] = ACTIONS(2985), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2983), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2983), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2983), - [sym__explicit_semi] = ACTIONS(2983), - [sym__dot_custom] = ACTIONS(2983), - [sym__conjunction_operator_custom] = ACTIONS(2983), - [sym__disjunction_operator_custom] = ACTIONS(2983), - [sym__nil_coalescing_operator_custom] = ACTIONS(2983), - [sym__eq_eq_custom] = ACTIONS(2983), - [sym__plus_then_ws] = ACTIONS(2983), - [sym__minus_then_ws] = ACTIONS(2983), - [sym_bang] = ACTIONS(2983), - [sym_default_keyword] = ACTIONS(2983), - [sym__as_custom] = ACTIONS(2983), - [sym__as_quest_custom] = ACTIONS(2983), - [sym__as_bang_custom] = ACTIONS(2983), - [sym__custom_operator] = ACTIONS(2983), - }, - [1136] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3085), - [sym__immediate_quest] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [aux_sym_custom_operator_token1] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_CARET_LBRACE] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_case] = ACTIONS(3083), - [anon_sym_fallthrough] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3083), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), - [anon_sym_DOT_DOT_LT] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3083), - [anon_sym_class] = ACTIONS(3083), - [anon_sym_prefix] = ACTIONS(3083), - [anon_sym_infix] = ACTIONS(3083), - [anon_sym_postfix] = ACTIONS(3083), - [anon_sym_AT] = ACTIONS(3085), - [sym_property_behavior_modifier] = ACTIONS(3083), - [anon_sym_override] = ACTIONS(3083), - [anon_sym_convenience] = ACTIONS(3083), - [anon_sym_required] = ACTIONS(3083), - [anon_sym_nonisolated] = ACTIONS(3083), - [anon_sym_public] = ACTIONS(3083), - [anon_sym_private] = ACTIONS(3083), - [anon_sym_internal] = ACTIONS(3083), - [anon_sym_fileprivate] = ACTIONS(3083), - [anon_sym_open] = ACTIONS(3083), - [anon_sym_mutating] = ACTIONS(3083), - [anon_sym_nonmutating] = ACTIONS(3083), - [anon_sym_static] = ACTIONS(3083), - [anon_sym_dynamic] = ACTIONS(3083), - [anon_sym_optional] = ACTIONS(3083), - [anon_sym_final] = ACTIONS(3083), - [anon_sym_inout] = ACTIONS(3083), - [anon_sym_ATescaping] = ACTIONS(3083), - [anon_sym_ATautoclosure] = ACTIONS(3083), - [anon_sym_weak] = ACTIONS(3083), - [anon_sym_unowned] = ACTIONS(3085), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3083), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3083), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3083), - [sym__explicit_semi] = ACTIONS(3083), - [sym__dot_custom] = ACTIONS(3083), - [sym__conjunction_operator_custom] = ACTIONS(3083), - [sym__disjunction_operator_custom] = ACTIONS(3083), - [sym__nil_coalescing_operator_custom] = ACTIONS(3083), - [sym__eq_eq_custom] = ACTIONS(3083), - [sym__plus_then_ws] = ACTIONS(3083), - [sym__minus_then_ws] = ACTIONS(3083), - [sym_bang] = ACTIONS(3083), - [sym_default_keyword] = ACTIONS(3083), - [sym__as_custom] = ACTIONS(3083), - [sym__as_quest_custom] = ACTIONS(3083), - [sym__as_bang_custom] = ACTIONS(3083), - [sym__custom_operator] = ACTIONS(3083), - }, - [1137] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3081), - [sym__immediate_quest] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3079), - [aux_sym_custom_operator_token1] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_CARET_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_case] = ACTIONS(3079), - [anon_sym_fallthrough] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3079), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT_EQ] = ACTIONS(3079), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3079), - [anon_sym_DOT_DOT_LT] = ACTIONS(3079), - [anon_sym_is] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3079), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_GT_GT] = ACTIONS(3079), - [anon_sym_class] = ACTIONS(3079), - [anon_sym_prefix] = ACTIONS(3079), - [anon_sym_infix] = ACTIONS(3079), - [anon_sym_postfix] = ACTIONS(3079), - [anon_sym_AT] = ACTIONS(3081), - [sym_property_behavior_modifier] = ACTIONS(3079), - [anon_sym_override] = ACTIONS(3079), - [anon_sym_convenience] = ACTIONS(3079), - [anon_sym_required] = ACTIONS(3079), - [anon_sym_nonisolated] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_internal] = ACTIONS(3079), - [anon_sym_fileprivate] = ACTIONS(3079), - [anon_sym_open] = ACTIONS(3079), - [anon_sym_mutating] = ACTIONS(3079), - [anon_sym_nonmutating] = ACTIONS(3079), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_dynamic] = ACTIONS(3079), - [anon_sym_optional] = ACTIONS(3079), - [anon_sym_final] = ACTIONS(3079), - [anon_sym_inout] = ACTIONS(3079), - [anon_sym_ATescaping] = ACTIONS(3079), - [anon_sym_ATautoclosure] = ACTIONS(3079), - [anon_sym_weak] = ACTIONS(3079), - [anon_sym_unowned] = ACTIONS(3081), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(3079), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(3079), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3079), - [sym__explicit_semi] = ACTIONS(3079), - [sym__dot_custom] = ACTIONS(3079), - [sym__conjunction_operator_custom] = ACTIONS(3079), - [sym__disjunction_operator_custom] = ACTIONS(3079), - [sym__nil_coalescing_operator_custom] = ACTIONS(3079), - [sym__eq_eq_custom] = ACTIONS(3079), - [sym__plus_then_ws] = ACTIONS(3079), - [sym__minus_then_ws] = ACTIONS(3079), - [sym_bang] = ACTIONS(3079), - [sym_default_keyword] = ACTIONS(3079), - [sym__as_custom] = ACTIONS(3079), - [sym__as_quest_custom] = ACTIONS(3079), - [sym__as_bang_custom] = ACTIONS(3079), - [sym__custom_operator] = ACTIONS(3079), - }, - [1138] = { - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2965), - [sym__immediate_quest] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [aux_sym_custom_operator_token1] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_CARET_LBRACE] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_case] = ACTIONS(2963), - [anon_sym_fallthrough] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2963), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2963), - [anon_sym_DOT_DOT_LT] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_prefix] = ACTIONS(2963), - [anon_sym_infix] = ACTIONS(2963), - [anon_sym_postfix] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2965), - [sym_property_behavior_modifier] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(2963), - [anon_sym_convenience] = ACTIONS(2963), - [anon_sym_required] = ACTIONS(2963), - [anon_sym_nonisolated] = ACTIONS(2963), - [anon_sym_public] = ACTIONS(2963), - [anon_sym_private] = ACTIONS(2963), - [anon_sym_internal] = ACTIONS(2963), - [anon_sym_fileprivate] = ACTIONS(2963), - [anon_sym_open] = ACTIONS(2963), - [anon_sym_mutating] = ACTIONS(2963), - [anon_sym_nonmutating] = ACTIONS(2963), - [anon_sym_static] = ACTIONS(2963), - [anon_sym_dynamic] = ACTIONS(2963), - [anon_sym_optional] = ACTIONS(2963), - [anon_sym_final] = ACTIONS(2963), - [anon_sym_inout] = ACTIONS(2963), - [anon_sym_ATescaping] = ACTIONS(2963), - [anon_sym_ATautoclosure] = ACTIONS(2963), - [anon_sym_weak] = ACTIONS(2963), - [anon_sym_unowned] = ACTIONS(2965), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2963), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2963), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2963), - [sym__explicit_semi] = ACTIONS(2963), - [sym__dot_custom] = ACTIONS(2963), - [sym__conjunction_operator_custom] = ACTIONS(2963), - [sym__disjunction_operator_custom] = ACTIONS(2963), - [sym__nil_coalescing_operator_custom] = ACTIONS(2963), - [sym__eq_eq_custom] = ACTIONS(2963), - [sym__plus_then_ws] = ACTIONS(2963), - [sym__minus_then_ws] = ACTIONS(2963), - [sym_bang] = ACTIONS(2963), - [sym_default_keyword] = ACTIONS(2963), - [sym__as_custom] = ACTIONS(2963), - [sym__as_quest_custom] = ACTIONS(2963), - [sym__as_bang_custom] = ACTIONS(2963), - [sym__custom_operator] = ACTIONS(2963), - }, - [1139] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym_where_clause] = STATE(4921), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3547), - [sym__immediate_quest] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3551), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3553), - [anon_sym_GT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3555), - [anon_sym_CARET_LBRACE] = ACTIONS(3555), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_BANG_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3559), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3551), - [anon_sym_GT_GT] = ACTIONS(3551), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2531), - [sym__explicit_semi] = ACTIONS(2531), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3579), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3583), - [sym__eq_eq_custom] = ACTIONS(3559), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym_bang] = ACTIONS(3573), - [sym_where_keyword] = ACTIONS(3587), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1140] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1555), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2231), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3551), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3553), - [anon_sym_GT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3559), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3551), - [anon_sym_GT_GT] = ACTIONS(3551), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2367), - [sym__explicit_semi] = ACTIONS(2367), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3579), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3583), - [sym__eq_eq_custom] = ACTIONS(3559), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym_bang] = ACTIONS(3573), - [sym_where_keyword] = ACTIONS(2367), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1141] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2427), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3547), - [sym__immediate_quest] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3551), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3553), - [anon_sym_GT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3555), - [anon_sym_CARET_LBRACE] = ACTIONS(3555), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3559), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3551), - [anon_sym_GT_GT] = ACTIONS(3551), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2427), - [sym__explicit_semi] = ACTIONS(2427), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3579), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3583), - [sym__eq_eq_custom] = ACTIONS(3559), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym_bang] = ACTIONS(3573), - [sym_where_keyword] = ACTIONS(2427), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1142] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2439), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3547), - [sym__immediate_quest] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3551), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3553), - [anon_sym_GT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3555), - [anon_sym_CARET_LBRACE] = ACTIONS(3555), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3559), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3551), - [anon_sym_GT_GT] = ACTIONS(3551), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2439), - [sym__explicit_semi] = ACTIONS(2439), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3579), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3583), - [sym__eq_eq_custom] = ACTIONS(3559), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym_bang] = ACTIONS(3573), - [sym_where_keyword] = ACTIONS(2439), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1143] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2443), - [sym__explicit_semi] = ACTIONS(2443), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3583), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym_bang] = ACTIONS(2443), - [sym_where_keyword] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1144] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1615), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2406), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2367), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2367), - [sym__explicit_semi] = ACTIONS(2367), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1145] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2431), - [sym__explicit_semi] = ACTIONS(2431), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym_where_keyword] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1146] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3547), - [sym__immediate_quest] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3551), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3553), - [anon_sym_GT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3555), - [anon_sym_CARET_LBRACE] = ACTIONS(3555), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_BANG_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3559), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3551), - [anon_sym_GT_GT] = ACTIONS(3551), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2415), - [sym__explicit_semi] = ACTIONS(2415), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3579), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3583), - [sym__eq_eq_custom] = ACTIONS(3559), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym_bang] = ACTIONS(3573), - [sym_where_keyword] = ACTIONS(2415), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1147] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_QMARK] = ACTIONS(3547), - [sym__immediate_quest] = ACTIONS(3549), - [anon_sym_AMP] = ACTIONS(3551), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3553), - [anon_sym_GT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3555), - [anon_sym_CARET_LBRACE] = ACTIONS(3555), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(3557), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3559), - [anon_sym_LT_EQ] = ACTIONS(3561), - [anon_sym_GT_EQ] = ACTIONS(3561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_LT] = ACTIONS(3563), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_PLUS] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(3573), - [anon_sym_DASH_DASH] = ACTIONS(3573), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_CARET] = ACTIONS(3575), - [anon_sym_LT_LT] = ACTIONS(3551), - [anon_sym_GT_GT] = ACTIONS(3551), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2447), - [sym__explicit_semi] = ACTIONS(2447), - [sym__dot_custom] = ACTIONS(3577), - [sym__conjunction_operator_custom] = ACTIONS(3579), - [sym__disjunction_operator_custom] = ACTIONS(3581), - [sym__nil_coalescing_operator_custom] = ACTIONS(3583), - [sym__eq_eq_custom] = ACTIONS(3559), - [sym__plus_then_ws] = ACTIONS(3585), - [sym__minus_then_ws] = ACTIONS(3585), - [sym_bang] = ACTIONS(3573), - [sym_where_keyword] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1148] = { - [sym__quest] = STATE(376), - [sym__range_operator] = STATE(264), - [sym_custom_operator] = STATE(249), - [sym_navigation_suffix] = STATE(1650), - [sym_call_suffix] = STATE(1654), - [sym__fn_call_lambda_arguments] = STATE(1655), - [sym_value_arguments] = STATE(1575), - [sym_lambda_literal] = STATE(1427), - [sym__equality_operator] = STATE(235), - [sym__comparison_operator] = STATE(210), - [sym__three_dot_operator] = STATE(719), - [sym__open_ended_range_operator] = STATE(264), - [sym__is_operator] = STATE(3429), - [sym__additive_operator] = STATE(432), - [sym__multiplicative_operator] = STATE(446), - [sym_as_operator] = STATE(3395), - [sym__bitwise_binary_operator] = STATE(332), - [sym__postfix_unary_operator] = STATE(1659), - [sym__eq_eq] = STATE(235), - [sym__dot] = STATE(4605), - [sym__conjunction_operator] = STATE(329), - [sym__disjunction_operator] = STATE(207), - [sym__nil_coalescing_operator] = STATE(320), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3569), - [anon_sym_SLASH] = ACTIONS(3571), - [anon_sym_PERCENT] = ACTIONS(3569), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2435), - [sym__explicit_semi] = ACTIONS(2435), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym_where_keyword] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1149] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2603), - [sym__explicit_semi] = ACTIONS(2603), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1150] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2443), - [sym__explicit_semi] = ACTIONS(2443), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1151] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1657), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(727), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2367), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_COLON] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2367), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1152] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2427), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2427), - [sym__explicit_semi] = ACTIONS(2427), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1153] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2451), - [sym__explicit_semi] = ACTIONS(2451), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1154] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2599), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2599), - [sym__explicit_semi] = ACTIONS(2599), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1155] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2459), - [sym__explicit_semi] = ACTIONS(2459), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1156] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2447), - [sym__explicit_semi] = ACTIONS(2447), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1157] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2455), - [sym__explicit_semi] = ACTIONS(2455), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1158] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2455), - [sym__explicit_semi] = ACTIONS(2455), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1159] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2435), - [sym__explicit_semi] = ACTIONS(2435), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1160] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2431), - [sym__explicit_semi] = ACTIONS(2431), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1161] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2439), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2439), - [sym__explicit_semi] = ACTIONS(2439), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1162] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2415), - [sym__explicit_semi] = ACTIONS(2415), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1163] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1643), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2517), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2367), - [sym__implicit_semi] = ACTIONS(2367), - [sym__explicit_semi] = ACTIONS(2367), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1164] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_COLON] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_RBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1165] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5400), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3701), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3705), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1166] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2451), - [sym__implicit_semi] = ACTIONS(2451), - [sym__explicit_semi] = ACTIONS(2451), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1167] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1691), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2626), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3721), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3727), - [anon_sym_LT_EQ] = ACTIONS(3729), - [anon_sym_GT_EQ] = ACTIONS(3729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3741), - [anon_sym_PIPE] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3721), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3745), - [sym__conjunction_operator_custom] = ACTIONS(3747), - [sym__disjunction_operator_custom] = ACTIONS(3749), - [sym__nil_coalescing_operator_custom] = ACTIONS(3751), - [sym__eq_eq_custom] = ACTIONS(3727), - [sym__plus_then_ws] = ACTIONS(3753), - [sym__minus_then_ws] = ACTIONS(3753), - [sym_bang] = ACTIONS(3741), - [sym_where_keyword] = ACTIONS(2367), - [sym_else] = ACTIONS(2367), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1168] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_COLON] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2415), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1169] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2455), - [sym__implicit_semi] = ACTIONS(2455), - [sym__explicit_semi] = ACTIONS(2455), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1170] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5488), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3755), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3757), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1171] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2443), - [sym__implicit_semi] = ACTIONS(2443), - [sym__explicit_semi] = ACTIONS(2443), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1172] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2427), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_COLON] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2427), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1173] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5565), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3759), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1174] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5670), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3763), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3765), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1175] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2447), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1176] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1703), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2619), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_COLON] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3773), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), - [anon_sym_LT_EQ] = ACTIONS(3781), - [anon_sym_GT_EQ] = ACTIONS(3781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3783), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3799), - [sym__disjunction_operator_custom] = ACTIONS(3801), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(3779), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2367), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1177] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2665), - [sym__explicit_semi] = ACTIONS(2665), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1178] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2435), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_RBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1179] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2455), - [sym__implicit_semi] = ACTIONS(2455), - [sym__explicit_semi] = ACTIONS(2455), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1180] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5836), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3807), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1181] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1182] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5271), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3811), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3813), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1183] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5415), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3815), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1184] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2439), - [sym__implicit_semi] = ACTIONS(2439), - [sym__explicit_semi] = ACTIONS(2439), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1185] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5585), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3819), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3821), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1186] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(2439), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(2439), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1187] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2431), - [sym__implicit_semi] = ACTIONS(2431), - [sym__explicit_semi] = ACTIONS(2431), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1188] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2435), - [sym__implicit_semi] = ACTIONS(2435), - [sym__explicit_semi] = ACTIONS(2435), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1189] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2415), - [sym__implicit_semi] = ACTIONS(2415), - [sym__explicit_semi] = ACTIONS(2415), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1190] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2427), - [sym__implicit_semi] = ACTIONS(2427), - [sym__explicit_semi] = ACTIONS(2427), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1191] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2459), - [sym__implicit_semi] = ACTIONS(2459), - [sym__explicit_semi] = ACTIONS(2459), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1192] = { - [sym__quest] = STATE(392), - [sym__range_operator] = STATE(224), - [sym_custom_operator] = STATE(223), - [sym_navigation_suffix] = STATE(1806), - [sym_call_suffix] = STATE(1808), - [sym__fn_call_lambda_arguments] = STATE(1810), - [sym_value_arguments] = STATE(1626), - [sym_lambda_literal] = STATE(1472), - [sym__equality_operator] = STATE(222), - [sym__comparison_operator] = STATE(218), - [sym__three_dot_operator] = STATE(794), - [sym__open_ended_range_operator] = STATE(224), - [sym__is_operator] = STATE(3396), - [sym__additive_operator] = STATE(403), - [sym__multiplicative_operator] = STATE(393), - [sym_as_operator] = STATE(3399), - [sym__bitwise_binary_operator] = STATE(214), - [sym__postfix_unary_operator] = STATE(1814), - [sym__eq_eq] = STATE(222), - [sym__dot] = STATE(4637), - [sym__conjunction_operator] = STATE(213), - [sym__disjunction_operator] = STATE(212), - [sym__nil_coalescing_operator] = STATE(211), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3663), - [anon_sym_QMARK] = ACTIONS(3711), - [sym__immediate_quest] = ACTIONS(3665), - [anon_sym_AMP] = ACTIONS(3667), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3713), - [anon_sym_CARET_LBRACE] = ACTIONS(3713), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_BANG_EQ] = ACTIONS(3671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3673), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3673), - [anon_sym_LT_EQ] = ACTIONS(3675), - [anon_sym_GT_EQ] = ACTIONS(3675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DOT_DOT_LT] = ACTIONS(3677), - [anon_sym_is] = ACTIONS(3679), - [anon_sym_PLUS] = ACTIONS(3681), - [anon_sym_DASH] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(3683), - [anon_sym_SLASH] = ACTIONS(3685), - [anon_sym_PERCENT] = ACTIONS(3683), - [anon_sym_PLUS_PLUS] = ACTIONS(3687), - [anon_sym_DASH_DASH] = ACTIONS(3687), - [anon_sym_PIPE] = ACTIONS(3667), - [anon_sym_CARET] = ACTIONS(3689), - [anon_sym_LT_LT] = ACTIONS(3667), - [anon_sym_GT_GT] = ACTIONS(3667), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(2447), - [sym__implicit_semi] = ACTIONS(2447), - [sym__explicit_semi] = ACTIONS(2447), - [sym__dot_custom] = ACTIONS(3691), - [sym__conjunction_operator_custom] = ACTIONS(3693), - [sym__disjunction_operator_custom] = ACTIONS(3695), - [sym__nil_coalescing_operator_custom] = ACTIONS(3697), - [sym__eq_eq_custom] = ACTIONS(3673), - [sym__plus_then_ws] = ACTIONS(3699), - [sym__minus_then_ws] = ACTIONS(3699), - [sym_bang] = ACTIONS(3687), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1193] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym_where_clause] = STATE(5982), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3823), - [sym__immediate_quest] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3721), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_LBRACE] = ACTIONS(3825), - [anon_sym_CARET_LBRACE] = ACTIONS(3825), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3727), - [anon_sym_LT_EQ] = ACTIONS(3729), - [anon_sym_GT_EQ] = ACTIONS(3729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3741), - [anon_sym_PIPE] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3721), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3745), - [sym__conjunction_operator_custom] = ACTIONS(3747), - [sym__disjunction_operator_custom] = ACTIONS(3749), - [sym__nil_coalescing_operator_custom] = ACTIONS(3751), - [sym__eq_eq_custom] = ACTIONS(3727), - [sym__plus_then_ws] = ACTIONS(3753), - [sym__minus_then_ws] = ACTIONS(3753), - [sym_bang] = ACTIONS(3741), - [sym_where_keyword] = ACTIONS(3827), - [sym_else] = ACTIONS(2531), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1194] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_array_literal_repeat1] = STATE(5342), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3831), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1195] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3823), - [sym__immediate_quest] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3721), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_LBRACE] = ACTIONS(3825), - [anon_sym_CARET_LBRACE] = ACTIONS(3825), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3727), - [anon_sym_LT_EQ] = ACTIONS(3729), - [anon_sym_GT_EQ] = ACTIONS(3729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3741), - [anon_sym_PIPE] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3721), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3745), - [sym__conjunction_operator_custom] = ACTIONS(3747), - [sym__disjunction_operator_custom] = ACTIONS(3749), - [sym__nil_coalescing_operator_custom] = ACTIONS(3751), - [sym__eq_eq_custom] = ACTIONS(3727), - [sym__plus_then_ws] = ACTIONS(3753), - [sym__minus_then_ws] = ACTIONS(3753), - [sym_bang] = ACTIONS(3741), - [sym_where_keyword] = ACTIONS(2415), - [sym_else] = ACTIONS(2415), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1196] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5474), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1197] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6250), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5084), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1198] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5498), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3873), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1199] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5413), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3877), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1200] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(5942), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5049), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1201] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_switch_entry_repeat1] = STATE(5828), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3881), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1202] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5310), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3883), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1203] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2661), - [sym__explicit_semi] = ACTIONS(2661), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1204] = { - [sym__quest] = STATE(205), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5482), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3885), - [anon_sym_COMMA] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3887), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1205] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3889), - [anon_sym_COMMA] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1206] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5305), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3891), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1207] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5265), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1208] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym_where_clause] = STATE(6185), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3895), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3773), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_CARET_LBRACE] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), - [anon_sym_LT_EQ] = ACTIONS(3781), - [anon_sym_GT_EQ] = ACTIONS(3781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3783), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3799), - [sym__disjunction_operator_custom] = ACTIONS(3801), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(3779), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3899), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1209] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5551), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3901), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1210] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [ts_builtin_sym_end] = ACTIONS(3903), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(3903), - [sym__explicit_semi] = ACTIONS(3903), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1211] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5296), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3905), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1212] = { - [sym__quest] = STATE(205), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5850), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3885), - [anon_sym_COMMA] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3887), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1213] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5300), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1214] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6253), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5081), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1215] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5335), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1216] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6244), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5088), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1217] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6238), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5092), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1218] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5600), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1219] = { - [sym__quest] = STATE(205), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5595), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3885), - [anon_sym_COMMA] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3887), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1220] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1221] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3915), - [anon_sym_COMMA] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1222] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5667), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1223] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5369), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3919), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1224] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5373), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1225] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5672), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1226] = { - [sym__quest] = STATE(205), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5705), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3885), - [anon_sym_COMMA] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3887), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1227] = { - [sym__quest] = STATE(196), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3885), - [anon_sym_COLON] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3925), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3773), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_CARET_LBRACE] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), - [anon_sym_LT_EQ] = ACTIONS(3781), - [anon_sym_GT_EQ] = ACTIONS(3781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3783), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3799), - [sym__disjunction_operator_custom] = ACTIONS(3801), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(3779), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3885), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1228] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5408), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3927), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1229] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3929), - [anon_sym_COMMA] = ACTIONS(3929), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3929), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1230] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3931), - [anon_sym_COMMA] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3931), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1231] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1766), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2753), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3959), - [anon_sym_DASH_DASH] = ACTIONS(3959), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_LT_LT] = ACTIONS(3939), - [anon_sym_GT_GT] = ACTIONS(3939), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3963), - [sym__conjunction_operator_custom] = ACTIONS(3965), - [sym__disjunction_operator_custom] = ACTIONS(3967), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(3945), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(3959), - [sym_else] = ACTIONS(2367), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1232] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6149), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2903), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1233] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5755), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3975), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1234] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6167), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2914), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1235] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5705), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3977), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1236] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6169), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2911), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1237] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5442), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3979), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1238] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5674), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3981), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1239] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5446), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3983), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1240] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6170), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2933), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1241] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3823), - [sym__immediate_quest] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3721), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_LBRACE] = ACTIONS(3825), - [anon_sym_CARET_LBRACE] = ACTIONS(3825), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3727), - [anon_sym_LT_EQ] = ACTIONS(3729), - [anon_sym_GT_EQ] = ACTIONS(3729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3741), - [anon_sym_PIPE] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3721), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3745), - [sym__conjunction_operator_custom] = ACTIONS(3747), - [sym__disjunction_operator_custom] = ACTIONS(3749), - [sym__nil_coalescing_operator_custom] = ACTIONS(3751), - [sym__eq_eq_custom] = ACTIONS(3727), - [sym__plus_then_ws] = ACTIONS(3753), - [sym__minus_then_ws] = ACTIONS(3753), - [sym_bang] = ACTIONS(3741), - [sym_where_keyword] = ACTIONS(2439), - [sym_else] = ACTIONS(2439), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1242] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym_where_keyword] = ACTIONS(2431), - [sym_else] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1243] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym_where_keyword] = ACTIONS(2435), - [sym_else] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1244] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6193), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2972), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1245] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6199), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2926), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1246] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6202), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2917), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1247] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5610), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3985), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1248] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3751), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3753), - [sym__minus_then_ws] = ACTIONS(3753), - [sym_bang] = ACTIONS(2443), - [sym_where_keyword] = ACTIONS(2443), - [sym_else] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1249] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3823), - [sym__immediate_quest] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3721), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_LBRACE] = ACTIONS(3825), - [anon_sym_CARET_LBRACE] = ACTIONS(3825), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3727), - [anon_sym_LT_EQ] = ACTIONS(3729), - [anon_sym_GT_EQ] = ACTIONS(3729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3741), - [anon_sym_PIPE] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3721), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3745), - [sym__conjunction_operator_custom] = ACTIONS(3747), - [sym__disjunction_operator_custom] = ACTIONS(3749), - [sym__nil_coalescing_operator_custom] = ACTIONS(3751), - [sym__eq_eq_custom] = ACTIONS(3727), - [sym__plus_then_ws] = ACTIONS(3753), - [sym__minus_then_ws] = ACTIONS(3753), - [sym_bang] = ACTIONS(3741), - [sym_where_keyword] = ACTIONS(2447), - [sym_else] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1250] = { - [sym__quest] = STATE(427), - [sym__range_operator] = STATE(313), - [sym_custom_operator] = STATE(312), - [sym_navigation_suffix] = STATE(1960), - [sym_call_suffix] = STATE(1963), - [sym__fn_call_lambda_arguments] = STATE(1964), - [sym_value_arguments] = STATE(1719), - [sym_lambda_literal] = STATE(1499), - [sym__equality_operator] = STATE(311), - [sym__comparison_operator] = STATE(310), - [sym__three_dot_operator] = STATE(799), - [sym__open_ended_range_operator] = STATE(313), - [sym__is_operator] = STATE(3279), - [sym__additive_operator] = STATE(515), - [sym__multiplicative_operator] = STATE(516), - [sym_as_operator] = STATE(3280), - [sym__bitwise_binary_operator] = STATE(305), - [sym__postfix_unary_operator] = STATE(1970), - [sym__eq_eq] = STATE(311), - [sym__dot] = STATE(4511), - [sym__conjunction_operator] = STATE(303), - [sym__disjunction_operator] = STATE(302), - [sym__nil_coalescing_operator] = STATE(301), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(3715), - [anon_sym_LBRACK] = ACTIONS(3717), - [anon_sym_QMARK] = ACTIONS(3823), - [sym__immediate_quest] = ACTIONS(3719), - [anon_sym_AMP] = ACTIONS(3721), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3723), - [anon_sym_GT] = ACTIONS(3723), - [anon_sym_LBRACE] = ACTIONS(3825), - [anon_sym_CARET_LBRACE] = ACTIONS(3825), - [anon_sym_BANG_EQ] = ACTIONS(3725), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3727), - [anon_sym_LT_EQ] = ACTIONS(3729), - [anon_sym_GT_EQ] = ACTIONS(3729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_LT] = ACTIONS(3731), - [anon_sym_is] = ACTIONS(3733), - [anon_sym_PLUS] = ACTIONS(3735), - [anon_sym_DASH] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_SLASH] = ACTIONS(3739), - [anon_sym_PERCENT] = ACTIONS(3737), - [anon_sym_PLUS_PLUS] = ACTIONS(3741), - [anon_sym_DASH_DASH] = ACTIONS(3741), - [anon_sym_PIPE] = ACTIONS(3721), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_LT_LT] = ACTIONS(3721), - [anon_sym_GT_GT] = ACTIONS(3721), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3745), - [sym__conjunction_operator_custom] = ACTIONS(3747), - [sym__disjunction_operator_custom] = ACTIONS(3749), - [sym__nil_coalescing_operator_custom] = ACTIONS(3751), - [sym__eq_eq_custom] = ACTIONS(3727), - [sym__plus_then_ws] = ACTIONS(3753), - [sym__minus_then_ws] = ACTIONS(3753), - [sym_bang] = ACTIONS(3741), - [sym_where_keyword] = ACTIONS(2427), - [sym_else] = ACTIONS(2427), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1251] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_enum_type_parameters_repeat1] = STATE(5751), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3987), - [anon_sym_COMMA] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1252] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(6224), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(2941), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1253] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_switch_entry_repeat1] = STATE(5869), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(3879), - [anon_sym_COLON] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1254] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3993), - [anon_sym_COMMA] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(3993), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1255] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5595), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1256] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_COLON] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3895), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3773), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_CARET_LBRACE] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), - [anon_sym_LT_EQ] = ACTIONS(3781), - [anon_sym_GT_EQ] = ACTIONS(3781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3783), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3799), - [sym__disjunction_operator_custom] = ACTIONS(3801), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(3779), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2439), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1257] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_COLON] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym_where_keyword] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1258] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_COLON] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym_where_keyword] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1259] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_COLON] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(2443), - [sym_where_keyword] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1260] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_COLON] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3895), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3773), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_CARET_LBRACE] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), - [anon_sym_LT_EQ] = ACTIONS(3781), - [anon_sym_GT_EQ] = ACTIONS(3781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3783), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3799), - [sym__disjunction_operator_custom] = ACTIONS(3801), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(3779), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1261] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5778), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1262] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_COLON] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3895), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3773), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_CARET_LBRACE] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), - [anon_sym_LT_EQ] = ACTIONS(3781), - [anon_sym_GT_EQ] = ACTIONS(3781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3783), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3799), - [sym__disjunction_operator_custom] = ACTIONS(3801), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(3779), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2427), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1263] = { - [sym__quest] = STATE(463), - [sym__range_operator] = STATE(297), - [sym_custom_operator] = STATE(309), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1686), - [sym_lambda_literal] = STATE(1491), - [sym__equality_operator] = STATE(317), - [sym__comparison_operator] = STATE(322), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(297), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(413), - [sym__multiplicative_operator] = STATE(379), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(324), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(317), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(327), - [sym__disjunction_operator] = STATE(331), - [sym__nil_coalescing_operator] = STATE(341), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_COLON] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3895), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3773), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3775), - [anon_sym_GT] = ACTIONS(3775), - [anon_sym_LBRACE] = ACTIONS(3897), - [anon_sym_CARET_LBRACE] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3777), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), - [anon_sym_LT_EQ] = ACTIONS(3781), - [anon_sym_GT_EQ] = ACTIONS(3781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3783), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3787), - [anon_sym_DASH] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_SLASH] = ACTIONS(3791), - [anon_sym_PERCENT] = ACTIONS(3789), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3773), - [anon_sym_CARET] = ACTIONS(3795), - [anon_sym_LT_LT] = ACTIONS(3773), - [anon_sym_GT_GT] = ACTIONS(3773), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3799), - [sym__disjunction_operator_custom] = ACTIONS(3801), - [sym__nil_coalescing_operator_custom] = ACTIONS(3803), - [sym__eq_eq_custom] = ACTIONS(3779), - [sym__plus_then_ws] = ACTIONS(3805), - [sym__minus_then_ws] = ACTIONS(3805), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2415), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1264] = { - [sym__quest] = STATE(436), - [sym__range_operator] = STATE(220), - [sym_custom_operator] = STATE(221), - [sym_navigation_suffix] = STATE(1678), - [sym_call_suffix] = STATE(1705), - [sym__fn_call_lambda_arguments] = STATE(1708), - [sym_value_arguments] = STATE(1610), - [sym_lambda_literal] = STATE(1443), - [sym__equality_operator] = STATE(226), - [sym__comparison_operator] = STATE(227), - [sym__three_dot_operator] = STATE(729), - [sym__open_ended_range_operator] = STATE(220), - [sym__is_operator] = STATE(3361), - [sym__additive_operator] = STATE(454), - [sym__multiplicative_operator] = STATE(455), - [sym_as_operator] = STATE(3362), - [sym__bitwise_binary_operator] = STATE(233), - [sym__postfix_unary_operator] = STATE(1711), - [sym__eq_eq] = STATE(226), - [sym__dot] = STATE(4612), - [sym__conjunction_operator] = STATE(236), - [sym__disjunction_operator] = STATE(237), - [sym__nil_coalescing_operator] = STATE(238), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3629), - [sym__immediate_quest] = ACTIONS(3593), - [anon_sym_AMP] = ACTIONS(3595), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3597), - [anon_sym_GT] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3631), - [anon_sym_CARET_LBRACE] = ACTIONS(3631), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3601), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3601), - [anon_sym_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_DOT_DOT_LT] = ACTIONS(3605), - [anon_sym_is] = ACTIONS(3607), - [anon_sym_PLUS] = ACTIONS(3609), - [anon_sym_DASH] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(3611), - [anon_sym_SLASH] = ACTIONS(3613), - [anon_sym_PERCENT] = ACTIONS(3611), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PIPE] = ACTIONS(3595), - [anon_sym_CARET] = ACTIONS(3617), - [anon_sym_LT_LT] = ACTIONS(3595), - [anon_sym_GT_GT] = ACTIONS(3595), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2657), - [sym__explicit_semi] = ACTIONS(2657), - [sym__dot_custom] = ACTIONS(3619), - [sym__conjunction_operator_custom] = ACTIONS(3621), - [sym__disjunction_operator_custom] = ACTIONS(3623), - [sym__nil_coalescing_operator_custom] = ACTIONS(3625), - [sym__eq_eq_custom] = ACTIONS(3601), - [sym__plus_then_ws] = ACTIONS(3627), - [sym__minus_then_ws] = ACTIONS(3627), - [sym_bang] = ACTIONS(3615), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1265] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5482), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3999), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1266] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_enum_type_parameters_repeat1] = STATE(5711), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4001), - [anon_sym_COMMA] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1267] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym__playground_literal_repeat1] = STATE(5343), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4003), - [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1268] = { - [sym__quest] = STATE(205), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(3885), - [anon_sym_COMMA] = ACTIONS(3885), - [anon_sym_COLON] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3887), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1269] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(5916), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5164), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1270] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(5921), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5207), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1271] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_tuple_expression_repeat1] = STATE(5850), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4005), - [anon_sym_COMMA] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1272] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym_where_clause] = STATE(5927), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__block] = STATE(5206), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(3871), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1273] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [aux_sym_enum_type_parameters_repeat1] = STATE(5720), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(3989), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1274] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4009), - [anon_sym_COMMA] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1275] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1276] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(4013), - [sym__immediate_quest] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_CARET_LBRACE] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3959), - [anon_sym_DASH_DASH] = ACTIONS(3959), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_LT_LT] = ACTIONS(3939), - [anon_sym_GT_GT] = ACTIONS(3939), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3963), - [sym__conjunction_operator_custom] = ACTIONS(3965), - [sym__disjunction_operator_custom] = ACTIONS(3967), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(3945), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(3959), - [sym_else] = ACTIONS(2439), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1277] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym_else] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1278] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(4013), - [sym__immediate_quest] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_CARET_LBRACE] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3959), - [anon_sym_DASH_DASH] = ACTIONS(3959), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_LT_LT] = ACTIONS(3939), - [anon_sym_GT_GT] = ACTIONS(3939), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3963), - [sym__conjunction_operator_custom] = ACTIONS(3965), - [sym__disjunction_operator_custom] = ACTIONS(3967), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(3945), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(3959), - [sym_else] = ACTIONS(2599), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1279] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(4013), - [sym__immediate_quest] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_CARET_LBRACE] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3959), - [anon_sym_DASH_DASH] = ACTIONS(3959), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_LT_LT] = ACTIONS(3939), - [anon_sym_GT_GT] = ACTIONS(3939), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3963), - [sym__conjunction_operator_custom] = ACTIONS(3965), - [sym__disjunction_operator_custom] = ACTIONS(3967), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(3945), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(3959), - [sym_else] = ACTIONS(2603), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1280] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym_else] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1281] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4017), - [anon_sym_COMMA] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1282] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4019), - [anon_sym_COMMA] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1283] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1284] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4023), - [anon_sym_COMMA] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1285] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(2443), - [sym_else] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1286] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1966), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(2619), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2367), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1287] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4025), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1288] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(4013), - [sym__immediate_quest] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_CARET_LBRACE] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3959), - [anon_sym_DASH_DASH] = ACTIONS(3959), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_LT_LT] = ACTIONS(3939), - [anon_sym_GT_GT] = ACTIONS(3939), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3963), - [sym__conjunction_operator_custom] = ACTIONS(3965), - [sym__disjunction_operator_custom] = ACTIONS(3967), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(3945), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(3959), - [sym_else] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1289] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4027), - [anon_sym_COMMA] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1290] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4029), - [anon_sym_COMMA] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1291] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1292] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4033), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(4033), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1293] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(4013), - [sym__immediate_quest] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_CARET_LBRACE] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3959), - [anon_sym_DASH_DASH] = ACTIONS(3959), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_LT_LT] = ACTIONS(3939), - [anon_sym_GT_GT] = ACTIONS(3939), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3963), - [sym__conjunction_operator_custom] = ACTIONS(3965), - [sym__disjunction_operator_custom] = ACTIONS(3967), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(3945), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(3959), - [sym_else] = ACTIONS(2415), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1294] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(4035), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1295] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4037), - [anon_sym_COMMA] = ACTIONS(4037), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1296] = { - [sym__quest] = STATE(514), - [sym__range_operator] = STATE(333), - [sym_custom_operator] = STATE(334), - [sym_navigation_suffix] = STATE(2029), - [sym_call_suffix] = STATE(2023), - [sym__fn_call_lambda_arguments] = STATE(2020), - [sym_value_arguments] = STATE(1845), - [sym_lambda_literal] = STATE(1532), - [sym__equality_operator] = STATE(336), - [sym__comparison_operator] = STATE(337), - [sym__three_dot_operator] = STATE(814), - [sym__open_ended_range_operator] = STATE(333), - [sym__is_operator] = STATE(3462), - [sym__additive_operator] = STATE(437), - [sym__multiplicative_operator] = STATE(435), - [sym_as_operator] = STATE(3457), - [sym__bitwise_binary_operator] = STATE(339), - [sym__postfix_unary_operator] = STATE(2009), - [sym__eq_eq] = STATE(336), - [sym__dot] = STATE(4615), - [sym__conjunction_operator] = STATE(206), - [sym__disjunction_operator] = STATE(340), - [sym__nil_coalescing_operator] = STATE(321), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(4013), - [sym__immediate_quest] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3941), - [anon_sym_GT] = ACTIONS(3941), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_CARET_LBRACE] = ACTIONS(4015), - [anon_sym_BANG_EQ] = ACTIONS(3943), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3945), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3949), - [anon_sym_is] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3953), - [anon_sym_DASH] = ACTIONS(3953), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_SLASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3955), - [anon_sym_PLUS_PLUS] = ACTIONS(3959), - [anon_sym_DASH_DASH] = ACTIONS(3959), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3961), - [anon_sym_LT_LT] = ACTIONS(3939), - [anon_sym_GT_GT] = ACTIONS(3939), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3963), - [sym__conjunction_operator_custom] = ACTIONS(3965), - [sym__disjunction_operator_custom] = ACTIONS(3967), - [sym__nil_coalescing_operator_custom] = ACTIONS(3969), - [sym__eq_eq_custom] = ACTIONS(3945), - [sym__plus_then_ws] = ACTIONS(3971), - [sym__minus_then_ws] = ACTIONS(3971), - [sym_bang] = ACTIONS(3959), - [sym_else] = ACTIONS(2427), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1297] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(4039), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_RBRACK] = ACTIONS(4039), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1298] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4041), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1299] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1300] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4045), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1301] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4047), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1302] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3845), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2447), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1303] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1304] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1305] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4053), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1306] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4055), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1307] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4057), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1308] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(2443), - [sym_where_keyword] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1309] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1310] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1311] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym_where_keyword] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1312] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4061), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1313] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1314] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1315] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1316] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4069), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1317] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4071), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1318] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym_where_keyword] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1319] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4073), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1320] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1321] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3845), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2427), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1322] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4077), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1323] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1324] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4079), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1325] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4081), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1326] = { - [sym_protocol_property_declaration] = STATE(4944), - [sym_typealias_declaration] = STATE(4944), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym__bodyless_function_declaration] = STATE(4737), - [sym__modifierless_function_declaration_no_body] = STATE(5126), - [sym__constructor_function_decl] = STATE(5234), - [sym__non_constructor_function_decl] = STATE(5233), - [sym__async_modifier] = STATE(5341), - [sym__protocol_member_declarations] = STATE(6292), - [sym__protocol_member_declaration] = STATE(4944), - [sym_deinit_declaration] = STATE(4944), - [sym_subscript_declaration] = STATE(4944), - [sym_associatedtype_declaration] = STATE(4944), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3497), - [sym__binding_kind_and_pattern] = STATE(4722), - [sym_modifiers] = STATE(3721), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4083), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(4089), - [anon_sym_subscript] = ACTIONS(4091), - [anon_sym_prefix] = ACTIONS(4093), - [anon_sym_infix] = ACTIONS(4093), - [anon_sym_postfix] = ACTIONS(4093), - [anon_sym_associatedtype] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [1327] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4097), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1328] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4099), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1329] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3845), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2439), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1330] = { - [sym_protocol_property_declaration] = STATE(4944), - [sym_typealias_declaration] = STATE(4944), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym__bodyless_function_declaration] = STATE(4737), - [sym__modifierless_function_declaration_no_body] = STATE(5126), - [sym__constructor_function_decl] = STATE(5234), - [sym__non_constructor_function_decl] = STATE(5233), - [sym__async_modifier] = STATE(5341), - [sym__protocol_member_declarations] = STATE(6543), - [sym__protocol_member_declaration] = STATE(4944), - [sym_deinit_declaration] = STATE(4944), - [sym_subscript_declaration] = STATE(4944), - [sym_associatedtype_declaration] = STATE(4944), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3497), - [sym__binding_kind_and_pattern] = STATE(4722), - [sym_modifiers] = STATE(3721), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(4089), - [anon_sym_subscript] = ACTIONS(4091), - [anon_sym_prefix] = ACTIONS(4093), - [anon_sym_infix] = ACTIONS(4093), - [anon_sym_postfix] = ACTIONS(4093), - [anon_sym_associatedtype] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [1331] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1332] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1333] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4107), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1334] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1335] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4111), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1336] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4113), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1337] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4115), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1338] = { - [sym__quest] = STATE(428), - [sym__range_operator] = STATE(267), - [sym_custom_operator] = STATE(268), - [sym_navigation_suffix] = STATE(1934), - [sym_call_suffix] = STATE(1935), - [sym__fn_call_lambda_arguments] = STATE(1936), - [sym_value_arguments] = STATE(1929), - [sym_lambda_literal] = STATE(1568), - [sym__equality_operator] = STATE(273), - [sym__comparison_operator] = STATE(275), - [sym__three_dot_operator] = STATE(807), - [sym__open_ended_range_operator] = STATE(267), - [sym__is_operator] = STATE(3171), - [sym__additive_operator] = STATE(502), - [sym__multiplicative_operator] = STATE(507), - [sym_as_operator] = STATE(3180), - [sym__bitwise_binary_operator] = STATE(289), - [sym__postfix_unary_operator] = STATE(1943), - [sym__eq_eq] = STATE(273), - [sym__dot] = STATE(4529), - [sym__conjunction_operator] = STATE(291), - [sym__disjunction_operator] = STATE(292), - [sym__nil_coalescing_operator] = STATE(296), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(3767), - [anon_sym_LBRACK] = ACTIONS(3769), - [anon_sym_QMARK] = ACTIONS(3837), - [sym__immediate_quest] = ACTIONS(3771), - [anon_sym_AMP] = ACTIONS(3839), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3841), - [anon_sym_GT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3845), - [anon_sym_CARET_LBRACE] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3847), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3851), - [anon_sym_GT_EQ] = ACTIONS(3851), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_LT] = ACTIONS(3853), - [anon_sym_is] = ACTIONS(3785), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3857), - [anon_sym_SLASH] = ACTIONS(3859), - [anon_sym_PERCENT] = ACTIONS(3857), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PIPE] = ACTIONS(3839), - [anon_sym_CARET] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3839), - [anon_sym_GT_GT] = ACTIONS(3839), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(3797), - [sym__conjunction_operator_custom] = ACTIONS(3863), - [sym__disjunction_operator_custom] = ACTIONS(3865), - [sym__nil_coalescing_operator_custom] = ACTIONS(3867), - [sym__eq_eq_custom] = ACTIONS(3849), - [sym__plus_then_ws] = ACTIONS(3869), - [sym__minus_then_ws] = ACTIONS(3869), - [sym_bang] = ACTIONS(3793), - [sym_where_keyword] = ACTIONS(2415), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1339] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4117), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1340] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4119), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1341] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4121), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1342] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1343] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1344] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4125), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1345] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4127), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1346] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2044), - [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(727), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(2373), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_CARET_LBRACE] = ACTIONS(2367), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1347] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4157), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1348] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_RPAREN] = ACTIONS(4159), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1349] = { - [sym__quest] = STATE(485), - [sym__range_operator] = STATE(253), - [sym_custom_operator] = STATE(254), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(1646), - [sym_lambda_literal] = STATE(1458), - [sym__equality_operator] = STATE(257), - [sym__comparison_operator] = STATE(258), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(253), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(558), - [sym__multiplicative_operator] = STATE(566), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(260), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(257), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(261), - [sym__disjunction_operator] = STATE(262), - [sym__nil_coalescing_operator] = STATE(263), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON] = ACTIONS(4161), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(3707), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(3633), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(3635), - [anon_sym_GT] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3709), - [anon_sym_CARET_LBRACE] = ACTIONS(3709), - [anon_sym_BANG_EQ] = ACTIONS(3637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), - [anon_sym_LT_EQ] = ACTIONS(3641), - [anon_sym_GT_EQ] = ACTIONS(3641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(3643), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_STAR] = ACTIONS(3647), - [anon_sym_SLASH] = ACTIONS(3649), - [anon_sym_PERCENT] = ACTIONS(3647), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(3633), - [anon_sym_CARET] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3633), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(3653), - [sym__disjunction_operator_custom] = ACTIONS(3655), - [sym__nil_coalescing_operator_custom] = ACTIONS(3657), - [sym__eq_eq_custom] = ACTIONS(3639), - [sym__plus_then_ws] = ACTIONS(3659), - [sym__minus_then_ws] = ACTIONS(3659), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1350] = { - [sym_protocol_property_declaration] = STATE(4944), - [sym_typealias_declaration] = STATE(4944), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym__bodyless_function_declaration] = STATE(4737), - [sym__modifierless_function_declaration_no_body] = STATE(5126), - [sym__constructor_function_decl] = STATE(5234), - [sym__non_constructor_function_decl] = STATE(5233), - [sym__async_modifier] = STATE(5341), - [sym__protocol_member_declarations] = STATE(6366), - [sym__protocol_member_declaration] = STATE(4944), - [sym_deinit_declaration] = STATE(4944), - [sym_subscript_declaration] = STATE(4944), - [sym_associatedtype_declaration] = STATE(4944), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3497), - [sym__binding_kind_and_pattern] = STATE(4722), - [sym_modifiers] = STATE(3721), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(4089), - [anon_sym_subscript] = ACTIONS(4091), - [anon_sym_prefix] = ACTIONS(4093), - [anon_sym_infix] = ACTIONS(4093), - [anon_sym_postfix] = ACTIONS(4093), - [anon_sym_associatedtype] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [1351] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(4165), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_CARET_LBRACE] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1352] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(4165), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4169), - [anon_sym_CARET_LBRACE] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1353] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_QMARK] = ACTIONS(2445), - [sym__immediate_quest] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2443), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2443), - [anon_sym_CARET_LBRACE] = ACTIONS(2443), - [anon_sym_BANG_EQ] = ACTIONS(2445), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2443), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2443), - [anon_sym_LT_EQ] = ACTIONS(2443), - [anon_sym_GT_EQ] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2443), - [anon_sym_DOT_DOT_LT] = ACTIONS(2443), - [anon_sym_is] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2443), - [anon_sym_PIPE] = ACTIONS(2443), - [anon_sym_CARET] = ACTIONS(2445), - [anon_sym_LT_LT] = ACTIONS(2443), - [anon_sym_GT_GT] = ACTIONS(2443), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2443), - [sym__conjunction_operator_custom] = ACTIONS(2443), - [sym__disjunction_operator_custom] = ACTIONS(2443), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(2443), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2443), - [sym__as_custom] = ACTIONS(2443), - [sym__as_quest_custom] = ACTIONS(2443), - [sym__as_bang_custom] = ACTIONS(2443), - [sym__custom_operator] = ACTIONS(2379), - }, - [1354] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(4165), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_CARET_LBRACE] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1355] = { - [sym_protocol_property_declaration] = STATE(5277), - [sym_typealias_declaration] = STATE(5277), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym__bodyless_function_declaration] = STATE(4737), - [sym__modifierless_function_declaration_no_body] = STATE(5126), - [sym__constructor_function_decl] = STATE(5234), - [sym__non_constructor_function_decl] = STATE(5233), - [sym__async_modifier] = STATE(5341), - [sym__protocol_member_declaration] = STATE(5277), - [sym_deinit_declaration] = STATE(5277), - [sym_subscript_declaration] = STATE(5277), - [sym_associatedtype_declaration] = STATE(5277), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3497), - [sym__binding_kind_and_pattern] = STATE(4722), - [sym_modifiers] = STATE(3721), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(4089), - [anon_sym_subscript] = ACTIONS(4091), - [anon_sym_prefix] = ACTIONS(4093), - [anon_sym_infix] = ACTIONS(4093), - [anon_sym_postfix] = ACTIONS(4093), - [anon_sym_associatedtype] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [1356] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(4165), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_CARET_LBRACE] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1357] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(4165), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_CARET_LBRACE] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1358] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(4165), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_CARET_LBRACE] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1359] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2435), - [anon_sym_QMARK] = ACTIONS(2437), - [sym__immediate_quest] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [aux_sym_custom_operator_token1] = ACTIONS(2435), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_CARET_LBRACE] = ACTIONS(2435), - [anon_sym_BANG_EQ] = ACTIONS(2437), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2435), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2435), - [anon_sym_DOT_DOT_LT] = ACTIONS(2435), - [anon_sym_is] = ACTIONS(2435), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PIPE] = ACTIONS(2435), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(2435), - [anon_sym_GT_GT] = ACTIONS(2435), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2435), - [sym__conjunction_operator_custom] = ACTIONS(2435), - [sym__disjunction_operator_custom] = ACTIONS(2435), - [sym__nil_coalescing_operator_custom] = ACTIONS(2435), - [sym__eq_eq_custom] = ACTIONS(2435), - [sym__plus_then_ws] = ACTIONS(2435), - [sym__minus_then_ws] = ACTIONS(2435), - [sym_bang] = ACTIONS(2435), - [sym__as_custom] = ACTIONS(2435), - [sym__as_quest_custom] = ACTIONS(2435), - [sym__as_bang_custom] = ACTIONS(2435), - [sym__custom_operator] = ACTIONS(2435), - }, - [1360] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_QMARK] = ACTIONS(4165), - [sym__immediate_quest] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(4129), - [aux_sym_custom_operator_token1] = ACTIONS(2379), - [anon_sym_LT] = ACTIONS(4131), - [anon_sym_GT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_CARET_LBRACE] = ACTIONS(4167), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4137), - [anon_sym_GT_EQ] = ACTIONS(4137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_LT] = ACTIONS(4139), - [anon_sym_is] = ACTIONS(2391), - [anon_sym_PLUS] = ACTIONS(4141), - [anon_sym_DASH] = ACTIONS(4141), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4145), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PIPE] = ACTIONS(4129), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_LT_LT] = ACTIONS(4129), - [anon_sym_GT_GT] = ACTIONS(4129), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2403), - [sym__conjunction_operator_custom] = ACTIONS(4149), - [sym__disjunction_operator_custom] = ACTIONS(4151), - [sym__nil_coalescing_operator_custom] = ACTIONS(4153), - [sym__eq_eq_custom] = ACTIONS(4135), - [sym__plus_then_ws] = ACTIONS(4155), - [sym__minus_then_ws] = ACTIONS(4155), - [sym_bang] = ACTIONS(2399), - [sym__as_custom] = ACTIONS(2413), - [sym__as_quest_custom] = ACTIONS(2413), - [sym__as_bang_custom] = ACTIONS(2413), - [sym__custom_operator] = ACTIONS(2379), - }, - [1361] = { - [sym__quest] = STATE(431), - [sym__range_operator] = STATE(231), - [sym_custom_operator] = STATE(228), - [sym_navigation_suffix] = STATE(654), - [sym_call_suffix] = STATE(653), - [sym__fn_call_lambda_arguments] = STATE(664), - [sym_value_arguments] = STATE(2016), - [sym_lambda_literal] = STATE(1595), - [sym__equality_operator] = STATE(225), - [sym__comparison_operator] = STATE(219), - [sym__three_dot_operator] = STATE(793), - [sym__open_ended_range_operator] = STATE(231), - [sym__is_operator] = STATE(3420), - [sym__additive_operator] = STATE(430), - [sym__multiplicative_operator] = STATE(391), - [sym_as_operator] = STATE(3418), - [sym__bitwise_binary_operator] = STATE(230), - [sym__postfix_unary_operator] = STATE(667), - [sym__eq_eq] = STATE(225), - [sym__dot] = STATE(4585), - [sym__conjunction_operator] = STATE(234), - [sym__disjunction_operator] = STATE(239), - [sym__nil_coalescing_operator] = STATE(255), - [sym__as] = STATE(4318), - [sym__as_quest] = STATE(4318), - [sym__as_bang] = STATE(4318), - [sym_comment] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(2433), - [sym__immediate_quest] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [aux_sym_custom_operator_token1] = ACTIONS(2431), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_CARET_LBRACE] = ACTIONS(2431), - [anon_sym_BANG_EQ] = ACTIONS(2433), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(2431), - [anon_sym_GT_EQ] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_DOT_DOT_LT] = ACTIONS(2431), - [anon_sym_is] = ACTIONS(2431), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2433), - [anon_sym_PERCENT] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PIPE] = ACTIONS(2431), - [anon_sym_CARET] = ACTIONS(2433), - [anon_sym_LT_LT] = ACTIONS(2431), - [anon_sym_GT_GT] = ACTIONS(2431), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__dot_custom] = ACTIONS(2431), - [sym__conjunction_operator_custom] = ACTIONS(2431), - [sym__disjunction_operator_custom] = ACTIONS(2431), - [sym__nil_coalescing_operator_custom] = ACTIONS(2431), - [sym__eq_eq_custom] = ACTIONS(2431), - [sym__plus_then_ws] = ACTIONS(2431), - [sym__minus_then_ws] = ACTIONS(2431), - [sym_bang] = ACTIONS(2431), - [sym__as_custom] = ACTIONS(2431), - [sym__as_quest_custom] = ACTIONS(2431), - [sym__as_bang_custom] = ACTIONS(2431), - [sym__custom_operator] = ACTIONS(2431), - }, - [1362] = { - [sym_protocol_property_declaration] = STATE(5277), - [sym_typealias_declaration] = STATE(5277), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym__bodyless_function_declaration] = STATE(4737), - [sym__modifierless_function_declaration_no_body] = STATE(5126), - [sym__constructor_function_decl] = STATE(5234), - [sym__non_constructor_function_decl] = STATE(5233), - [sym__async_modifier] = STATE(5341), - [sym__protocol_member_declaration] = STATE(5277), - [sym_deinit_declaration] = STATE(5277), - [sym_subscript_declaration] = STATE(5277), - [sym_associatedtype_declaration] = STATE(5277), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3497), - [sym__binding_kind_and_pattern] = STATE(4722), - [sym_modifiers] = STATE(3721), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4175), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(4089), - [anon_sym_subscript] = ACTIONS(4091), - [anon_sym_prefix] = ACTIONS(4093), - [anon_sym_infix] = ACTIONS(4093), - [anon_sym_postfix] = ACTIONS(4093), - [anon_sym_associatedtype] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [1363] = { - [sym_protocol_property_declaration] = STATE(5277), - [sym_typealias_declaration] = STATE(5277), - [sym__modifierless_typealias_declaration] = STATE(5145), - [sym__bodyless_function_declaration] = STATE(4737), - [sym__modifierless_function_declaration_no_body] = STATE(5126), - [sym__constructor_function_decl] = STATE(5234), - [sym__non_constructor_function_decl] = STATE(5233), - [sym__async_modifier] = STATE(5341), - [sym__protocol_member_declaration] = STATE(5277), - [sym_deinit_declaration] = STATE(5277), - [sym_subscript_declaration] = STATE(5277), - [sym_associatedtype_declaration] = STATE(5277), - [sym_attribute] = STATE(1962), - [sym__binding_pattern_kind] = STATE(4153), - [sym__possibly_async_binding_pattern_kind] = STATE(3497), - [sym__binding_kind_and_pattern] = STATE(4722), - [sym_modifiers] = STATE(3721), - [aux_sym__locally_permitted_modifiers] = STATE(1962), - [sym__non_local_scope_modifier] = STATE(1456), - [sym__locally_permitted_modifier] = STATE(1962), - [sym_member_modifier] = STATE(1456), - [sym_visibility_modifier] = STATE(1456), - [sym_function_modifier] = STATE(1456), - [sym_mutation_modifier] = STATE(1456), - [sym_property_modifier] = STATE(1456), - [sym_inheritance_modifier] = STATE(1962), - [sym_parameter_modifier] = STATE(1456), - [sym_ownership_modifier] = STATE(1962), - [aux_sym_modifiers_repeat1] = STATE(1456), - [sym_comment] = ACTIONS(5), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_typealias] = ACTIONS(4085), - [anon_sym_class] = ACTIONS(4087), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_func] = ACTIONS(3228), - [anon_sym_init] = ACTIONS(3234), - [anon_sym_deinit] = ACTIONS(4089), - [anon_sym_subscript] = ACTIONS(4091), - [anon_sym_prefix] = ACTIONS(4093), - [anon_sym_infix] = ACTIONS(4093), - [anon_sym_postfix] = ACTIONS(4093), - [anon_sym_associatedtype] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(117), - [sym_property_behavior_modifier] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_convenience] = ACTIONS(3248), - [anon_sym_required] = ACTIONS(3248), - [anon_sym_nonisolated] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_internal] = ACTIONS(3250), - [anon_sym_fileprivate] = ACTIONS(3250), - [anon_sym_open] = ACTIONS(3250), - [anon_sym_mutating] = ACTIONS(3252), - [anon_sym_nonmutating] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_dynamic] = ACTIONS(3254), - [anon_sym_optional] = ACTIONS(3254), - [anon_sym_final] = ACTIONS(3256), - [anon_sym_inout] = ACTIONS(133), - [anon_sym_ATescaping] = ACTIONS(133), - [anon_sym_ATautoclosure] = ACTIONS(133), - [anon_sym_weak] = ACTIONS(137), - [anon_sym_unowned] = ACTIONS(135), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(137), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(137), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - }, - [1364] = { - [sym__arrow_operator] = STATE(3403), - [sym__async_keyword] = STATE(4959), - [sym_throws] = STATE(6232), - [aux_sym_optional_type_repeat1] = STATE(1400), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_typealias] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_protocol] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_func] = ACTIONS(2626), - [anon_sym_extension] = ACTIONS(2626), - [anon_sym_indirect] = ACTIONS(2626), - [anon_sym_init] = ACTIONS(2626), - [anon_sym_deinit] = ACTIONS(2626), - [anon_sym_subscript] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_precedencegroup] = ACTIONS(2626), - [anon_sym_associatedtype] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4179), - [sym__eq_custom] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2626), - [sym__as_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(4181), - }, - [1365] = { - [sym_simple_identifier] = STATE(6270), - [sym_type_arguments] = STATE(1997), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2611), - [aux_sym_simple_identifier_token2] = ACTIONS(2613), - [aux_sym_simple_identifier_token3] = ACTIONS(2613), - [aux_sym_simple_identifier_token4] = ACTIONS(2613), - [anon_sym_actor] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2711), - [anon_sym_QMARK] = ACTIONS(2716), - [sym__immediate_quest] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2711), - [aux_sym_custom_operator_token1] = ACTIONS(2711), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_CARET_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_PLUS_EQ] = ACTIONS(2721), - [anon_sym_DASH_EQ] = ACTIONS(2721), - [anon_sym_STAR_EQ] = ACTIONS(2721), - [anon_sym_SLASH_EQ] = ACTIONS(2721), - [anon_sym_PERCENT_EQ] = ACTIONS(2721), - [anon_sym_EQ] = ACTIONS(2723), - [anon_sym_BANG_EQ] = ACTIONS(2716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2711), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2711), - [anon_sym_LT_EQ] = ACTIONS(2711), - [anon_sym_GT_EQ] = ACTIONS(2711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2711), - [anon_sym_DOT_DOT_LT] = ACTIONS(2711), - [anon_sym_is] = ACTIONS(2716), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PIPE] = ACTIONS(2711), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_LT_LT] = ACTIONS(2711), - [anon_sym_GT_GT] = ACTIONS(2711), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2711), - [sym__explicit_semi] = ACTIONS(2711), - [sym__arrow_operator_custom] = ACTIONS(4183), - [sym__dot_custom] = ACTIONS(2713), - [sym__conjunction_operator_custom] = ACTIONS(2711), - [sym__disjunction_operator_custom] = ACTIONS(2711), - [sym__nil_coalescing_operator_custom] = ACTIONS(2711), - [sym__eq_eq_custom] = ACTIONS(2711), - [sym__plus_then_ws] = ACTIONS(2711), - [sym__minus_then_ws] = ACTIONS(2711), - [sym_bang] = ACTIONS(2711), - [sym__throws_keyword] = ACTIONS(4183), - [sym__rethrows_keyword] = ACTIONS(4183), - [sym__as_custom] = ACTIONS(2711), - [sym__as_quest_custom] = ACTIONS(2711), - [sym__as_bang_custom] = ACTIONS(2711), - [sym__async_keyword_custom] = ACTIONS(4183), - [sym__custom_operator] = ACTIONS(2711), - }, - [1366] = { - [sym__arrow_operator] = STATE(3403), - [sym__async_keyword] = STATE(4959), - [sym_throws] = STATE(6232), - [aux_sym_protocol_composition_type_repeat1] = STATE(1416), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2636), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_COLON] = ACTIONS(2636), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(4191), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(2636), - [anon_sym_typealias] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_protocol] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_var] = ACTIONS(2636), - [anon_sym_func] = ACTIONS(2636), - [anon_sym_extension] = ACTIONS(2636), - [anon_sym_indirect] = ACTIONS(2636), - [anon_sym_init] = ACTIONS(2636), - [anon_sym_deinit] = ACTIONS(2636), - [anon_sym_subscript] = ACTIONS(2636), - [anon_sym_prefix] = ACTIONS(2636), - [anon_sym_infix] = ACTIONS(2636), - [anon_sym_postfix] = ACTIONS(2636), - [anon_sym_precedencegroup] = ACTIONS(2636), - [anon_sym_associatedtype] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2638), - [sym_property_behavior_modifier] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_convenience] = ACTIONS(2636), - [anon_sym_required] = ACTIONS(2636), - [anon_sym_nonisolated] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_internal] = ACTIONS(2636), - [anon_sym_fileprivate] = ACTIONS(2636), - [anon_sym_open] = ACTIONS(2636), - [anon_sym_mutating] = ACTIONS(2636), - [anon_sym_nonmutating] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_dynamic] = ACTIONS(2636), - [anon_sym_optional] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_inout] = ACTIONS(2636), - [anon_sym_ATescaping] = ACTIONS(2636), - [anon_sym_ATautoclosure] = ACTIONS(2636), - [anon_sym_weak] = ACTIONS(2636), - [anon_sym_unowned] = ACTIONS(2638), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2636), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4179), - [sym__eq_custom] = ACTIONS(2636), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2636), - [sym__as_custom] = ACTIONS(2636), - [sym__async_keyword_custom] = ACTIONS(4181), - }, - [1367] = { - [sym__arrow_operator] = STATE(3197), - [sym__async_keyword] = STATE(4879), - [sym_throws] = STATE(6151), - [aux_sym_optional_type_repeat1] = STATE(1412), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_typealias] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_protocol] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_func] = ACTIONS(2626), - [anon_sym_extension] = ACTIONS(2626), - [anon_sym_indirect] = ACTIONS(2626), - [anon_sym_init] = ACTIONS(2626), - [anon_sym_deinit] = ACTIONS(2626), - [anon_sym_subscript] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_precedencegroup] = ACTIONS(2626), - [anon_sym_associatedtype] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4195), - [sym__eq_custom] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__async_keyword_custom] = ACTIONS(4197), - }, - [1368] = { - [sym__arrow_operator] = STATE(3403), - [sym__async_keyword] = STATE(4959), - [sym_throws] = STATE(6232), - [aux_sym_protocol_composition_type_repeat1] = STATE(1416), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2632), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_COLON] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(4191), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_typealias] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_protocol] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_func] = ACTIONS(2632), - [anon_sym_extension] = ACTIONS(2632), - [anon_sym_indirect] = ACTIONS(2632), - [anon_sym_init] = ACTIONS(2632), - [anon_sym_deinit] = ACTIONS(2632), - [anon_sym_subscript] = ACTIONS(2632), - [anon_sym_prefix] = ACTIONS(2632), - [anon_sym_infix] = ACTIONS(2632), - [anon_sym_postfix] = ACTIONS(2632), - [anon_sym_precedencegroup] = ACTIONS(2632), - [anon_sym_associatedtype] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2634), - [sym_property_behavior_modifier] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_convenience] = ACTIONS(2632), - [anon_sym_required] = ACTIONS(2632), - [anon_sym_nonisolated] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_internal] = ACTIONS(2632), - [anon_sym_fileprivate] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2632), - [anon_sym_mutating] = ACTIONS(2632), - [anon_sym_nonmutating] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_dynamic] = ACTIONS(2632), - [anon_sym_optional] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_inout] = ACTIONS(2632), - [anon_sym_ATescaping] = ACTIONS(2632), - [anon_sym_ATautoclosure] = ACTIONS(2632), - [anon_sym_weak] = ACTIONS(2632), - [anon_sym_unowned] = ACTIONS(2634), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2632), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2632), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4179), - [sym__eq_custom] = ACTIONS(2632), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2632), - [sym__as_custom] = ACTIONS(2632), - [sym__async_keyword_custom] = ACTIONS(4181), - }, - [1369] = { - [sym__dot] = STATE(4560), - [aux_sym_user_type_repeat1] = STATE(1369), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_typealias] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_protocol] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_extension] = ACTIONS(2729), - [anon_sym_indirect] = ACTIONS(2729), - [anon_sym_init] = ACTIONS(2729), - [anon_sym_deinit] = ACTIONS(2729), - [anon_sym_subscript] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_precedencegroup] = ACTIONS(2729), - [anon_sym_associatedtype] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(4199), - [sym__eq_custom] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym_where_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - }, - [1370] = { - [sym__arrow_operator] = STATE(3403), - [sym__async_keyword] = STATE(4959), - [sym_throws] = STATE(6232), - [aux_sym_protocol_composition_type_repeat1] = STATE(1416), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2607), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_COLON] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(4191), - [anon_sym_async] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_case] = ACTIONS(2607), - [anon_sym_import] = ACTIONS(2607), - [anon_sym_typealias] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(2607), - [anon_sym_protocol] = ACTIONS(2607), - [anon_sym_let] = ACTIONS(2607), - [anon_sym_var] = ACTIONS(2607), - [anon_sym_func] = ACTIONS(2607), - [anon_sym_extension] = ACTIONS(2607), - [anon_sym_indirect] = ACTIONS(2607), - [anon_sym_init] = ACTIONS(2607), - [anon_sym_deinit] = ACTIONS(2607), - [anon_sym_subscript] = ACTIONS(2607), - [anon_sym_prefix] = ACTIONS(2607), - [anon_sym_infix] = ACTIONS(2607), - [anon_sym_postfix] = ACTIONS(2607), - [anon_sym_precedencegroup] = ACTIONS(2607), - [anon_sym_associatedtype] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2609), - [sym_property_behavior_modifier] = ACTIONS(2607), - [anon_sym_override] = ACTIONS(2607), - [anon_sym_convenience] = ACTIONS(2607), - [anon_sym_required] = ACTIONS(2607), - [anon_sym_nonisolated] = ACTIONS(2607), - [anon_sym_public] = ACTIONS(2607), - [anon_sym_private] = ACTIONS(2607), - [anon_sym_internal] = ACTIONS(2607), - [anon_sym_fileprivate] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2607), - [anon_sym_mutating] = ACTIONS(2607), - [anon_sym_nonmutating] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_dynamic] = ACTIONS(2607), - [anon_sym_optional] = ACTIONS(2607), - [anon_sym_final] = ACTIONS(2607), - [anon_sym_inout] = ACTIONS(2607), - [anon_sym_ATescaping] = ACTIONS(2607), - [anon_sym_ATautoclosure] = ACTIONS(2607), - [anon_sym_weak] = ACTIONS(2607), - [anon_sym_unowned] = ACTIONS(2609), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2607), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2607), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4179), - [sym__eq_custom] = ACTIONS(2607), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2607), - [sym__as_custom] = ACTIONS(2607), - [sym__async_keyword_custom] = ACTIONS(4181), - }, - [1371] = { - [sym__dot] = STATE(4560), - [aux_sym_user_type_repeat1] = STATE(1369), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2671), - [sym__immediate_quest] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_typealias] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_protocol] = ACTIONS(2669), - [anon_sym_let] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2669), - [anon_sym_func] = ACTIONS(2669), - [anon_sym_extension] = ACTIONS(2669), - [anon_sym_indirect] = ACTIONS(2669), - [anon_sym_init] = ACTIONS(2669), - [anon_sym_deinit] = ACTIONS(2669), - [anon_sym_subscript] = ACTIONS(2669), - [anon_sym_prefix] = ACTIONS(2669), - [anon_sym_infix] = ACTIONS(2669), - [anon_sym_postfix] = ACTIONS(2669), - [anon_sym_precedencegroup] = ACTIONS(2669), - [anon_sym_associatedtype] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2671), - [sym_property_behavior_modifier] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_convenience] = ACTIONS(2669), - [anon_sym_required] = ACTIONS(2669), - [anon_sym_nonisolated] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_internal] = ACTIONS(2669), - [anon_sym_fileprivate] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2669), - [anon_sym_mutating] = ACTIONS(2669), - [anon_sym_nonmutating] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_dynamic] = ACTIONS(2669), - [anon_sym_optional] = ACTIONS(2669), - [anon_sym_final] = ACTIONS(2669), - [anon_sym_inout] = ACTIONS(2669), - [anon_sym_ATescaping] = ACTIONS(2669), - [anon_sym_ATautoclosure] = ACTIONS(2669), - [anon_sym_weak] = ACTIONS(2669), - [anon_sym_unowned] = ACTIONS(2671), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2669), - [sym__dot_custom] = ACTIONS(4202), - [sym__eq_custom] = ACTIONS(2669), - [sym__throws_keyword] = ACTIONS(2669), - [sym__rethrows_keyword] = ACTIONS(2669), - [sym_where_keyword] = ACTIONS(2669), - [sym__as_custom] = ACTIONS(2669), - [sym__async_keyword_custom] = ACTIONS(2669), - }, - [1372] = { - [sym__arrow_operator] = STATE(3403), - [sym__async_keyword] = STATE(4959), - [sym_throws] = STATE(6232), - [aux_sym_protocol_composition_type_repeat1] = STATE(1416), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2622), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(4191), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_typealias] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_protocol] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_var] = ACTIONS(2622), - [anon_sym_func] = ACTIONS(2622), - [anon_sym_extension] = ACTIONS(2622), - [anon_sym_indirect] = ACTIONS(2622), - [anon_sym_init] = ACTIONS(2622), - [anon_sym_deinit] = ACTIONS(2622), - [anon_sym_subscript] = ACTIONS(2622), - [anon_sym_prefix] = ACTIONS(2622), - [anon_sym_infix] = ACTIONS(2622), - [anon_sym_postfix] = ACTIONS(2622), - [anon_sym_precedencegroup] = ACTIONS(2622), - [anon_sym_associatedtype] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2624), - [sym_property_behavior_modifier] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_convenience] = ACTIONS(2622), - [anon_sym_required] = ACTIONS(2622), - [anon_sym_nonisolated] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_internal] = ACTIONS(2622), - [anon_sym_fileprivate] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_mutating] = ACTIONS(2622), - [anon_sym_nonmutating] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_dynamic] = ACTIONS(2622), - [anon_sym_optional] = ACTIONS(2622), - [anon_sym_final] = ACTIONS(2622), - [anon_sym_inout] = ACTIONS(2622), - [anon_sym_ATescaping] = ACTIONS(2622), - [anon_sym_ATautoclosure] = ACTIONS(2622), - [anon_sym_weak] = ACTIONS(2622), - [anon_sym_unowned] = ACTIONS(2624), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2622), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2622), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4179), - [sym__eq_custom] = ACTIONS(2622), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2622), - [sym__as_custom] = ACTIONS(2622), - [sym__async_keyword_custom] = ACTIONS(4181), - }, - [1373] = { - [sym__arrow_operator] = STATE(3403), - [sym__async_keyword] = STATE(4959), - [sym_throws] = STATE(6232), - [aux_sym_protocol_composition_type_repeat1] = STATE(1416), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(4191), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_typealias] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_protocol] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_func] = ACTIONS(2581), - [anon_sym_extension] = ACTIONS(2581), - [anon_sym_indirect] = ACTIONS(2581), - [anon_sym_init] = ACTIONS(2581), - [anon_sym_deinit] = ACTIONS(2581), - [anon_sym_subscript] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_precedencegroup] = ACTIONS(2581), - [anon_sym_associatedtype] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4179), - [sym__eq_custom] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2581), - [sym__as_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(4181), - }, - [1374] = { - [sym_type_arguments] = STATE(1390), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_COLON] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(4204), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_typealias] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_protocol] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_func] = ACTIONS(2830), - [anon_sym_extension] = ACTIONS(2830), - [anon_sym_indirect] = ACTIONS(2830), - [anon_sym_init] = ACTIONS(2830), - [anon_sym_deinit] = ACTIONS(2830), - [anon_sym_subscript] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_precedencegroup] = ACTIONS(2830), - [anon_sym_associatedtype] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__eq_custom] = ACTIONS(2830), - [sym__throws_keyword] = ACTIONS(2830), - [sym__rethrows_keyword] = ACTIONS(2830), - [sym_where_keyword] = ACTIONS(2830), - [sym__as_custom] = ACTIONS(2830), - [sym__async_keyword_custom] = ACTIONS(2830), - }, - [1375] = { - [sym__dot] = STATE(4560), - [aux_sym_user_type_repeat1] = STATE(1371), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2682), - [sym__immediate_quest] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_typealias] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_protocol] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_func] = ACTIONS(2680), - [anon_sym_extension] = ACTIONS(2680), - [anon_sym_indirect] = ACTIONS(2680), - [anon_sym_init] = ACTIONS(2680), - [anon_sym_deinit] = ACTIONS(2680), - [anon_sym_subscript] = ACTIONS(2680), - [anon_sym_prefix] = ACTIONS(2680), - [anon_sym_infix] = ACTIONS(2680), - [anon_sym_postfix] = ACTIONS(2680), - [anon_sym_precedencegroup] = ACTIONS(2680), - [anon_sym_associatedtype] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2682), - [sym_property_behavior_modifier] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_convenience] = ACTIONS(2680), - [anon_sym_required] = ACTIONS(2680), - [anon_sym_nonisolated] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_internal] = ACTIONS(2680), - [anon_sym_fileprivate] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_mutating] = ACTIONS(2680), - [anon_sym_nonmutating] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_dynamic] = ACTIONS(2680), - [anon_sym_optional] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_inout] = ACTIONS(2680), - [anon_sym_ATescaping] = ACTIONS(2680), - [anon_sym_ATautoclosure] = ACTIONS(2680), - [anon_sym_weak] = ACTIONS(2680), - [anon_sym_unowned] = ACTIONS(2682), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2680), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2680), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2680), - [sym__dot_custom] = ACTIONS(4202), - [sym__eq_custom] = ACTIONS(2680), - [sym__throws_keyword] = ACTIONS(2680), - [sym__rethrows_keyword] = ACTIONS(2680), - [sym_where_keyword] = ACTIONS(2680), - [sym__as_custom] = ACTIONS(2680), - [sym__async_keyword_custom] = ACTIONS(2680), - }, - [1376] = { - [sym__arrow_operator] = STATE(3365), - [sym__async_keyword] = STATE(4919), - [sym_throws] = STATE(6248), - [aux_sym_optional_type_repeat1] = STATE(1424), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [sym__immediate_quest] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_typealias] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_protocol] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_func] = ACTIONS(2626), - [anon_sym_extension] = ACTIONS(2626), - [anon_sym_indirect] = ACTIONS(2626), - [anon_sym_init] = ACTIONS(2626), - [anon_sym_deinit] = ACTIONS(2626), - [anon_sym_subscript] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_precedencegroup] = ACTIONS(2626), - [anon_sym_associatedtype] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4208), - [sym__eq_custom] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(4210), - }, - [1377] = { - [sym__arrow_operator] = STATE(3197), - [sym__async_keyword] = STATE(4879), - [sym_throws] = STATE(6151), - [aux_sym_protocol_composition_type_repeat1] = STATE(1437), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2622), - [anon_sym_RPAREN] = ACTIONS(2622), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_typealias] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_protocol] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_var] = ACTIONS(2622), - [anon_sym_func] = ACTIONS(2622), - [anon_sym_extension] = ACTIONS(2622), - [anon_sym_indirect] = ACTIONS(2622), - [anon_sym_init] = ACTIONS(2622), - [anon_sym_deinit] = ACTIONS(2622), - [anon_sym_subscript] = ACTIONS(2622), - [anon_sym_prefix] = ACTIONS(2622), - [anon_sym_infix] = ACTIONS(2622), - [anon_sym_postfix] = ACTIONS(2622), - [anon_sym_precedencegroup] = ACTIONS(2622), - [anon_sym_associatedtype] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2624), - [sym_property_behavior_modifier] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_convenience] = ACTIONS(2622), - [anon_sym_required] = ACTIONS(2622), - [anon_sym_nonisolated] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_internal] = ACTIONS(2622), - [anon_sym_fileprivate] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_mutating] = ACTIONS(2622), - [anon_sym_nonmutating] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_dynamic] = ACTIONS(2622), - [anon_sym_optional] = ACTIONS(2622), - [anon_sym_final] = ACTIONS(2622), - [anon_sym_inout] = ACTIONS(2622), - [anon_sym_ATescaping] = ACTIONS(2622), - [anon_sym_ATautoclosure] = ACTIONS(2622), - [anon_sym_weak] = ACTIONS(2622), - [anon_sym_unowned] = ACTIONS(2624), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2622), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2622), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4195), - [sym__eq_custom] = ACTIONS(2622), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__async_keyword_custom] = ACTIONS(4197), - }, - [1378] = { - [sym_type_arguments] = STATE(1409), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2830), - [anon_sym_RPAREN] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_typealias] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_protocol] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_func] = ACTIONS(2830), - [anon_sym_extension] = ACTIONS(2830), - [anon_sym_indirect] = ACTIONS(2830), - [anon_sym_init] = ACTIONS(2830), - [anon_sym_deinit] = ACTIONS(2830), - [anon_sym_subscript] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_precedencegroup] = ACTIONS(2830), - [anon_sym_associatedtype] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__eq_custom] = ACTIONS(2830), - [sym__throws_keyword] = ACTIONS(2830), - [sym__rethrows_keyword] = ACTIONS(2830), - [sym__async_keyword_custom] = ACTIONS(2830), - }, - [1379] = { - [sym__dot] = STATE(4498), - [aux_sym_user_type_repeat1] = STATE(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2729), - [anon_sym_RPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_typealias] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_protocol] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_extension] = ACTIONS(2729), - [anon_sym_indirect] = ACTIONS(2729), - [anon_sym_init] = ACTIONS(2729), - [anon_sym_deinit] = ACTIONS(2729), - [anon_sym_subscript] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_precedencegroup] = ACTIONS(2729), - [anon_sym_associatedtype] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(4218), - [sym__eq_custom] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - }, - [1380] = { - [sym__dot] = STATE(4498), - [aux_sym_user_type_repeat1] = STATE(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [sym__immediate_quest] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_typealias] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_protocol] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_func] = ACTIONS(2680), - [anon_sym_extension] = ACTIONS(2680), - [anon_sym_indirect] = ACTIONS(2680), - [anon_sym_init] = ACTIONS(2680), - [anon_sym_deinit] = ACTIONS(2680), - [anon_sym_subscript] = ACTIONS(2680), - [anon_sym_prefix] = ACTIONS(2680), - [anon_sym_infix] = ACTIONS(2680), - [anon_sym_postfix] = ACTIONS(2680), - [anon_sym_precedencegroup] = ACTIONS(2680), - [anon_sym_associatedtype] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2682), - [sym_property_behavior_modifier] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_convenience] = ACTIONS(2680), - [anon_sym_required] = ACTIONS(2680), - [anon_sym_nonisolated] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_internal] = ACTIONS(2680), - [anon_sym_fileprivate] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_mutating] = ACTIONS(2680), - [anon_sym_nonmutating] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_dynamic] = ACTIONS(2680), - [anon_sym_optional] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_inout] = ACTIONS(2680), - [anon_sym_ATescaping] = ACTIONS(2680), - [anon_sym_ATautoclosure] = ACTIONS(2680), - [anon_sym_weak] = ACTIONS(2680), - [anon_sym_unowned] = ACTIONS(2682), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2680), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2680), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2680), - [sym__dot_custom] = ACTIONS(4221), - [sym__eq_custom] = ACTIONS(2680), - [sym__throws_keyword] = ACTIONS(2680), - [sym__rethrows_keyword] = ACTIONS(2680), - [sym__async_keyword_custom] = ACTIONS(2680), - }, - [1381] = { - [sym__arrow_operator] = STATE(3197), - [sym__async_keyword] = STATE(4879), - [sym_throws] = STATE(6151), - [aux_sym_protocol_composition_type_repeat1] = STATE(1437), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2632), - [anon_sym_RPAREN] = ACTIONS(2632), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_typealias] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_protocol] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_func] = ACTIONS(2632), - [anon_sym_extension] = ACTIONS(2632), - [anon_sym_indirect] = ACTIONS(2632), - [anon_sym_init] = ACTIONS(2632), - [anon_sym_deinit] = ACTIONS(2632), - [anon_sym_subscript] = ACTIONS(2632), - [anon_sym_prefix] = ACTIONS(2632), - [anon_sym_infix] = ACTIONS(2632), - [anon_sym_postfix] = ACTIONS(2632), - [anon_sym_precedencegroup] = ACTIONS(2632), - [anon_sym_associatedtype] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2634), - [sym_property_behavior_modifier] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_convenience] = ACTIONS(2632), - [anon_sym_required] = ACTIONS(2632), - [anon_sym_nonisolated] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_internal] = ACTIONS(2632), - [anon_sym_fileprivate] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2632), - [anon_sym_mutating] = ACTIONS(2632), - [anon_sym_nonmutating] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_dynamic] = ACTIONS(2632), - [anon_sym_optional] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_inout] = ACTIONS(2632), - [anon_sym_ATescaping] = ACTIONS(2632), - [anon_sym_ATautoclosure] = ACTIONS(2632), - [anon_sym_weak] = ACTIONS(2632), - [anon_sym_unowned] = ACTIONS(2634), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2632), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2632), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4195), - [sym__eq_custom] = ACTIONS(2632), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__async_keyword_custom] = ACTIONS(4197), - }, - [1382] = { - [sym_simple_identifier] = STATE(4636), - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(4223), - [aux_sym_simple_identifier_token2] = ACTIONS(4226), - [aux_sym_simple_identifier_token3] = ACTIONS(4226), - [aux_sym_simple_identifier_token4] = ACTIONS(4226), - [anon_sym_actor] = ACTIONS(4223), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_in] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [1383] = { - [sym__arrow_operator] = STATE(3197), - [sym__async_keyword] = STATE(4879), - [sym_throws] = STATE(6151), - [aux_sym_protocol_composition_type_repeat1] = STATE(1437), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2636), - [anon_sym_RPAREN] = ACTIONS(2636), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(2636), - [anon_sym_typealias] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_protocol] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_var] = ACTIONS(2636), - [anon_sym_func] = ACTIONS(2636), - [anon_sym_extension] = ACTIONS(2636), - [anon_sym_indirect] = ACTIONS(2636), - [anon_sym_init] = ACTIONS(2636), - [anon_sym_deinit] = ACTIONS(2636), - [anon_sym_subscript] = ACTIONS(2636), - [anon_sym_prefix] = ACTIONS(2636), - [anon_sym_infix] = ACTIONS(2636), - [anon_sym_postfix] = ACTIONS(2636), - [anon_sym_precedencegroup] = ACTIONS(2636), - [anon_sym_associatedtype] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2638), - [sym_property_behavior_modifier] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_convenience] = ACTIONS(2636), - [anon_sym_required] = ACTIONS(2636), - [anon_sym_nonisolated] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_internal] = ACTIONS(2636), - [anon_sym_fileprivate] = ACTIONS(2636), - [anon_sym_open] = ACTIONS(2636), - [anon_sym_mutating] = ACTIONS(2636), - [anon_sym_nonmutating] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_dynamic] = ACTIONS(2636), - [anon_sym_optional] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_inout] = ACTIONS(2636), - [anon_sym_ATescaping] = ACTIONS(2636), - [anon_sym_ATautoclosure] = ACTIONS(2636), - [anon_sym_weak] = ACTIONS(2636), - [anon_sym_unowned] = ACTIONS(2638), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2636), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4195), - [sym__eq_custom] = ACTIONS(2636), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__async_keyword_custom] = ACTIONS(4197), - }, - [1384] = { - [sym__arrow_operator] = STATE(3197), - [sym__async_keyword] = STATE(4879), - [sym_throws] = STATE(6151), - [aux_sym_protocol_composition_type_repeat1] = STATE(1437), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_async] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_case] = ACTIONS(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2607), - [anon_sym_import] = ACTIONS(2607), - [anon_sym_typealias] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(2607), - [anon_sym_protocol] = ACTIONS(2607), - [anon_sym_let] = ACTIONS(2607), - [anon_sym_var] = ACTIONS(2607), - [anon_sym_func] = ACTIONS(2607), - [anon_sym_extension] = ACTIONS(2607), - [anon_sym_indirect] = ACTIONS(2607), - [anon_sym_init] = ACTIONS(2607), - [anon_sym_deinit] = ACTIONS(2607), - [anon_sym_subscript] = ACTIONS(2607), - [anon_sym_prefix] = ACTIONS(2607), - [anon_sym_infix] = ACTIONS(2607), - [anon_sym_postfix] = ACTIONS(2607), - [anon_sym_precedencegroup] = ACTIONS(2607), - [anon_sym_associatedtype] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2609), - [sym_property_behavior_modifier] = ACTIONS(2607), - [anon_sym_override] = ACTIONS(2607), - [anon_sym_convenience] = ACTIONS(2607), - [anon_sym_required] = ACTIONS(2607), - [anon_sym_nonisolated] = ACTIONS(2607), - [anon_sym_public] = ACTIONS(2607), - [anon_sym_private] = ACTIONS(2607), - [anon_sym_internal] = ACTIONS(2607), - [anon_sym_fileprivate] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2607), - [anon_sym_mutating] = ACTIONS(2607), - [anon_sym_nonmutating] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_dynamic] = ACTIONS(2607), - [anon_sym_optional] = ACTIONS(2607), - [anon_sym_final] = ACTIONS(2607), - [anon_sym_inout] = ACTIONS(2607), - [anon_sym_ATescaping] = ACTIONS(2607), - [anon_sym_ATautoclosure] = ACTIONS(2607), - [anon_sym_weak] = ACTIONS(2607), - [anon_sym_unowned] = ACTIONS(2609), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2607), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2607), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4195), - [sym__eq_custom] = ACTIONS(2607), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__async_keyword_custom] = ACTIONS(4197), - }, - [1385] = { - [sym__dot] = STATE(4498), - [aux_sym_user_type_repeat1] = STATE(1379), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2669), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2671), - [sym__immediate_quest] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_typealias] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_protocol] = ACTIONS(2669), - [anon_sym_let] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2669), - [anon_sym_func] = ACTIONS(2669), - [anon_sym_extension] = ACTIONS(2669), - [anon_sym_indirect] = ACTIONS(2669), - [anon_sym_init] = ACTIONS(2669), - [anon_sym_deinit] = ACTIONS(2669), - [anon_sym_subscript] = ACTIONS(2669), - [anon_sym_prefix] = ACTIONS(2669), - [anon_sym_infix] = ACTIONS(2669), - [anon_sym_postfix] = ACTIONS(2669), - [anon_sym_precedencegroup] = ACTIONS(2669), - [anon_sym_associatedtype] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2671), - [sym_property_behavior_modifier] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_convenience] = ACTIONS(2669), - [anon_sym_required] = ACTIONS(2669), - [anon_sym_nonisolated] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_internal] = ACTIONS(2669), - [anon_sym_fileprivate] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2669), - [anon_sym_mutating] = ACTIONS(2669), - [anon_sym_nonmutating] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_dynamic] = ACTIONS(2669), - [anon_sym_optional] = ACTIONS(2669), - [anon_sym_final] = ACTIONS(2669), - [anon_sym_inout] = ACTIONS(2669), - [anon_sym_ATescaping] = ACTIONS(2669), - [anon_sym_ATautoclosure] = ACTIONS(2669), - [anon_sym_weak] = ACTIONS(2669), - [anon_sym_unowned] = ACTIONS(2671), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2669), - [sym__dot_custom] = ACTIONS(4221), - [sym__eq_custom] = ACTIONS(2669), - [sym__throws_keyword] = ACTIONS(2669), - [sym__rethrows_keyword] = ACTIONS(2669), - [sym__async_keyword_custom] = ACTIONS(2669), - }, - [1386] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_typealias] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_protocol] = ACTIONS(2779), - [anon_sym_let] = ACTIONS(2779), - [anon_sym_var] = ACTIONS(2779), - [anon_sym_func] = ACTIONS(2779), - [anon_sym_extension] = ACTIONS(2779), - [anon_sym_indirect] = ACTIONS(2779), - [anon_sym_init] = ACTIONS(2779), - [anon_sym_deinit] = ACTIONS(2779), - [anon_sym_subscript] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_precedencegroup] = ACTIONS(2779), - [anon_sym_associatedtype] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__eq_custom] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym_where_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - }, - [1387] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_typealias] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_protocol] = ACTIONS(2779), - [anon_sym_let] = ACTIONS(2779), - [anon_sym_var] = ACTIONS(2779), - [anon_sym_func] = ACTIONS(2779), - [anon_sym_extension] = ACTIONS(2779), - [anon_sym_indirect] = ACTIONS(2779), - [anon_sym_init] = ACTIONS(2779), - [anon_sym_deinit] = ACTIONS(2779), - [anon_sym_subscript] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_precedencegroup] = ACTIONS(2779), - [anon_sym_associatedtype] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__eq_custom] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - }, - [1388] = { - [sym__arrow_operator] = STATE(3197), - [sym__async_keyword] = STATE(4879), - [sym_throws] = STATE(6151), - [aux_sym_protocol_composition_type_repeat1] = STATE(1437), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_AMP] = ACTIONS(4214), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_typealias] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_protocol] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_func] = ACTIONS(2581), - [anon_sym_extension] = ACTIONS(2581), - [anon_sym_indirect] = ACTIONS(2581), - [anon_sym_init] = ACTIONS(2581), - [anon_sym_deinit] = ACTIONS(2581), - [anon_sym_subscript] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_precedencegroup] = ACTIONS(2581), - [anon_sym_associatedtype] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4195), - [sym__eq_custom] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym__async_keyword_custom] = ACTIONS(4197), - }, - [1389] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2897), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_COLON] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2897), - [anon_sym_QMARK] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_import] = ACTIONS(2897), - [anon_sym_typealias] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_protocol] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_var] = ACTIONS(2897), - [anon_sym_func] = ACTIONS(2897), - [anon_sym_extension] = ACTIONS(2897), - [anon_sym_indirect] = ACTIONS(2897), - [anon_sym_init] = ACTIONS(2897), - [anon_sym_deinit] = ACTIONS(2897), - [anon_sym_subscript] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_precedencegroup] = ACTIONS(2897), - [anon_sym_associatedtype] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2897), - [sym__throws_keyword] = ACTIONS(2897), - [sym__rethrows_keyword] = ACTIONS(2897), - [sym_where_keyword] = ACTIONS(2897), - [sym__as_custom] = ACTIONS(2897), - [sym__async_keyword_custom] = ACTIONS(2897), - }, - [1390] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_COLON] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_import] = ACTIONS(2855), - [anon_sym_typealias] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_protocol] = ACTIONS(2855), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_var] = ACTIONS(2855), - [anon_sym_func] = ACTIONS(2855), - [anon_sym_extension] = ACTIONS(2855), - [anon_sym_indirect] = ACTIONS(2855), - [anon_sym_init] = ACTIONS(2855), - [anon_sym_deinit] = ACTIONS(2855), - [anon_sym_subscript] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_precedencegroup] = ACTIONS(2855), - [anon_sym_associatedtype] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__eq_custom] = ACTIONS(2855), - [sym__throws_keyword] = ACTIONS(2855), - [sym__rethrows_keyword] = ACTIONS(2855), - [sym_where_keyword] = ACTIONS(2855), - [sym__as_custom] = ACTIONS(2855), - [sym__async_keyword_custom] = ACTIONS(2855), - }, - [1391] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_COLON] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_QMARK] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_typealias] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_protocol] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_extension] = ACTIONS(2729), - [anon_sym_indirect] = ACTIONS(2729), - [anon_sym_init] = ACTIONS(2729), - [anon_sym_deinit] = ACTIONS(2729), - [anon_sym_subscript] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_precedencegroup] = ACTIONS(2729), - [anon_sym_associatedtype] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(2729), - [sym__eq_custom] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym_where_keyword] = ACTIONS(2729), - [sym__as_custom] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - }, - [1392] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_COLON] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_typealias] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_protocol] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2873), - [anon_sym_extension] = ACTIONS(2873), - [anon_sym_indirect] = ACTIONS(2873), - [anon_sym_init] = ACTIONS(2873), - [anon_sym_deinit] = ACTIONS(2873), - [anon_sym_subscript] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_precedencegroup] = ACTIONS(2873), - [anon_sym_associatedtype] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__eq_custom] = ACTIONS(2873), - [sym__throws_keyword] = ACTIONS(2873), - [sym__rethrows_keyword] = ACTIONS(2873), - [sym_where_keyword] = ACTIONS(2873), - [sym__as_custom] = ACTIONS(2873), - [sym__async_keyword_custom] = ACTIONS(2873), - }, - [1393] = { - [aux_sym_optional_type_repeat1] = STATE(1393), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2799), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_COLON] = ACTIONS(2799), - [anon_sym_DOT] = ACTIONS(2799), - [anon_sym_QMARK] = ACTIONS(2801), - [sym__immediate_quest] = ACTIONS(4229), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_async] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2799), - [anon_sym_typealias] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_protocol] = ACTIONS(2799), - [anon_sym_let] = ACTIONS(2799), - [anon_sym_var] = ACTIONS(2799), - [anon_sym_func] = ACTIONS(2799), - [anon_sym_extension] = ACTIONS(2799), - [anon_sym_indirect] = ACTIONS(2799), - [anon_sym_init] = ACTIONS(2799), - [anon_sym_deinit] = ACTIONS(2799), - [anon_sym_subscript] = ACTIONS(2799), - [anon_sym_prefix] = ACTIONS(2799), - [anon_sym_infix] = ACTIONS(2799), - [anon_sym_postfix] = ACTIONS(2799), - [anon_sym_precedencegroup] = ACTIONS(2799), - [anon_sym_associatedtype] = ACTIONS(2799), - [anon_sym_AT] = ACTIONS(2801), - [sym_property_behavior_modifier] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2799), - [anon_sym_convenience] = ACTIONS(2799), - [anon_sym_required] = ACTIONS(2799), - [anon_sym_nonisolated] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_internal] = ACTIONS(2799), - [anon_sym_fileprivate] = ACTIONS(2799), - [anon_sym_open] = ACTIONS(2799), - [anon_sym_mutating] = ACTIONS(2799), - [anon_sym_nonmutating] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_dynamic] = ACTIONS(2799), - [anon_sym_optional] = ACTIONS(2799), - [anon_sym_final] = ACTIONS(2799), - [anon_sym_inout] = ACTIONS(2799), - [anon_sym_ATescaping] = ACTIONS(2799), - [anon_sym_ATautoclosure] = ACTIONS(2799), - [anon_sym_weak] = ACTIONS(2799), - [anon_sym_unowned] = ACTIONS(2801), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2799), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2799), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2799), - [sym__eq_custom] = ACTIONS(2799), - [sym__throws_keyword] = ACTIONS(2799), - [sym__rethrows_keyword] = ACTIONS(2799), - [sym_where_keyword] = ACTIONS(2799), - [sym__as_custom] = ACTIONS(2799), - [sym__async_keyword_custom] = ACTIONS(2799), - }, - [1394] = { - [sym__arrow_operator] = STATE(3365), - [sym__async_keyword] = STATE(4919), - [sym_throws] = STATE(6248), - [aux_sym_protocol_composition_type_repeat1] = STATE(1454), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_typealias] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_protocol] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_func] = ACTIONS(2581), - [anon_sym_extension] = ACTIONS(2581), - [anon_sym_indirect] = ACTIONS(2581), - [anon_sym_init] = ACTIONS(2581), - [anon_sym_deinit] = ACTIONS(2581), - [anon_sym_subscript] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_precedencegroup] = ACTIONS(2581), - [anon_sym_associatedtype] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4208), - [sym__eq_custom] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(4210), - }, - [1395] = { - [sym__dot] = STATE(4553), - [aux_sym_user_type_repeat1] = STATE(1399), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2680), - [sym__immediate_quest] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_typealias] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_protocol] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_func] = ACTIONS(2680), - [anon_sym_extension] = ACTIONS(2680), - [anon_sym_indirect] = ACTIONS(2680), - [anon_sym_init] = ACTIONS(2680), - [anon_sym_deinit] = ACTIONS(2680), - [anon_sym_subscript] = ACTIONS(2680), - [anon_sym_prefix] = ACTIONS(2680), - [anon_sym_infix] = ACTIONS(2680), - [anon_sym_postfix] = ACTIONS(2680), - [anon_sym_precedencegroup] = ACTIONS(2680), - [anon_sym_associatedtype] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2682), - [sym_property_behavior_modifier] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_convenience] = ACTIONS(2680), - [anon_sym_required] = ACTIONS(2680), - [anon_sym_nonisolated] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_internal] = ACTIONS(2680), - [anon_sym_fileprivate] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_mutating] = ACTIONS(2680), - [anon_sym_nonmutating] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_dynamic] = ACTIONS(2680), - [anon_sym_optional] = ACTIONS(2680), - [anon_sym_final] = ACTIONS(2680), - [anon_sym_inout] = ACTIONS(2680), - [anon_sym_ATescaping] = ACTIONS(2680), - [anon_sym_ATautoclosure] = ACTIONS(2680), - [anon_sym_weak] = ACTIONS(2680), - [anon_sym_unowned] = ACTIONS(2682), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2680), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2680), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2680), - [sym__dot_custom] = ACTIONS(4236), - [sym__eq_custom] = ACTIONS(2680), - [sym__throws_keyword] = ACTIONS(2680), - [sym__rethrows_keyword] = ACTIONS(2680), - [sym_where_keyword] = ACTIONS(2680), - [sym__async_keyword_custom] = ACTIONS(2680), - }, - [1396] = { - [sym_type_arguments] = STATE(1435), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2830), - [sym__immediate_quest] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(4238), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_typealias] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_protocol] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_func] = ACTIONS(2830), - [anon_sym_extension] = ACTIONS(2830), - [anon_sym_indirect] = ACTIONS(2830), - [anon_sym_init] = ACTIONS(2830), - [anon_sym_deinit] = ACTIONS(2830), - [anon_sym_subscript] = ACTIONS(2830), - [anon_sym_prefix] = ACTIONS(2830), - [anon_sym_infix] = ACTIONS(2830), - [anon_sym_postfix] = ACTIONS(2830), - [anon_sym_precedencegroup] = ACTIONS(2830), - [anon_sym_associatedtype] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [sym_property_behavior_modifier] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_convenience] = ACTIONS(2830), - [anon_sym_required] = ACTIONS(2830), - [anon_sym_nonisolated] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_internal] = ACTIONS(2830), - [anon_sym_fileprivate] = ACTIONS(2830), - [anon_sym_open] = ACTIONS(2830), - [anon_sym_mutating] = ACTIONS(2830), - [anon_sym_nonmutating] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_dynamic] = ACTIONS(2830), - [anon_sym_optional] = ACTIONS(2830), - [anon_sym_final] = ACTIONS(2830), - [anon_sym_inout] = ACTIONS(2830), - [anon_sym_ATescaping] = ACTIONS(2830), - [anon_sym_ATautoclosure] = ACTIONS(2830), - [anon_sym_weak] = ACTIONS(2830), - [anon_sym_unowned] = ACTIONS(2832), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2830), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2830), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2830), - [sym__dot_custom] = ACTIONS(2830), - [sym__eq_custom] = ACTIONS(2830), - [sym__throws_keyword] = ACTIONS(2830), - [sym__rethrows_keyword] = ACTIONS(2830), - [sym_where_keyword] = ACTIONS(2830), - [sym__async_keyword_custom] = ACTIONS(2830), - }, - [1397] = { - [aux_sym_optional_type_repeat1] = STATE(1400), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_typealias] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_protocol] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_func] = ACTIONS(2626), - [anon_sym_extension] = ACTIONS(2626), - [anon_sym_indirect] = ACTIONS(2626), - [anon_sym_init] = ACTIONS(2626), - [anon_sym_deinit] = ACTIONS(2626), - [anon_sym_subscript] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_precedencegroup] = ACTIONS(2626), - [anon_sym_associatedtype] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2626), - [sym__eq_custom] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2626), - [sym__rethrows_keyword] = ACTIONS(2626), - [sym_where_keyword] = ACTIONS(2626), - [sym__as_custom] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(2626), - }, - [1398] = { - [sym__dot] = STATE(4553), - [aux_sym_user_type_repeat1] = STATE(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2729), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_typealias] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_protocol] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_extension] = ACTIONS(2729), - [anon_sym_indirect] = ACTIONS(2729), - [anon_sym_init] = ACTIONS(2729), - [anon_sym_deinit] = ACTIONS(2729), - [anon_sym_subscript] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_precedencegroup] = ACTIONS(2729), - [anon_sym_associatedtype] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(4240), - [sym__eq_custom] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym_where_keyword] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - }, - [1399] = { - [sym__dot] = STATE(4553), - [aux_sym_user_type_repeat1] = STATE(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2669), - [sym__immediate_quest] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_typealias] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_protocol] = ACTIONS(2669), - [anon_sym_let] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2669), - [anon_sym_func] = ACTIONS(2669), - [anon_sym_extension] = ACTIONS(2669), - [anon_sym_indirect] = ACTIONS(2669), - [anon_sym_init] = ACTIONS(2669), - [anon_sym_deinit] = ACTIONS(2669), - [anon_sym_subscript] = ACTIONS(2669), - [anon_sym_prefix] = ACTIONS(2669), - [anon_sym_infix] = ACTIONS(2669), - [anon_sym_postfix] = ACTIONS(2669), - [anon_sym_precedencegroup] = ACTIONS(2669), - [anon_sym_associatedtype] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2671), - [sym_property_behavior_modifier] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_convenience] = ACTIONS(2669), - [anon_sym_required] = ACTIONS(2669), - [anon_sym_nonisolated] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_internal] = ACTIONS(2669), - [anon_sym_fileprivate] = ACTIONS(2669), - [anon_sym_open] = ACTIONS(2669), - [anon_sym_mutating] = ACTIONS(2669), - [anon_sym_nonmutating] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_dynamic] = ACTIONS(2669), - [anon_sym_optional] = ACTIONS(2669), - [anon_sym_final] = ACTIONS(2669), - [anon_sym_inout] = ACTIONS(2669), - [anon_sym_ATescaping] = ACTIONS(2669), - [anon_sym_ATautoclosure] = ACTIONS(2669), - [anon_sym_weak] = ACTIONS(2669), - [anon_sym_unowned] = ACTIONS(2671), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2669), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2669), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2669), - [sym__dot_custom] = ACTIONS(4236), - [sym__eq_custom] = ACTIONS(2669), - [sym__throws_keyword] = ACTIONS(2669), - [sym__rethrows_keyword] = ACTIONS(2669), - [sym_where_keyword] = ACTIONS(2669), - [sym__async_keyword_custom] = ACTIONS(2669), - }, - [1400] = { - [aux_sym_optional_type_repeat1] = STATE(1393), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_COLON] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(2738), - [sym__immediate_quest] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_typealias] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_protocol] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_func] = ACTIONS(2736), - [anon_sym_extension] = ACTIONS(2736), - [anon_sym_indirect] = ACTIONS(2736), - [anon_sym_init] = ACTIONS(2736), - [anon_sym_deinit] = ACTIONS(2736), - [anon_sym_subscript] = ACTIONS(2736), - [anon_sym_prefix] = ACTIONS(2736), - [anon_sym_infix] = ACTIONS(2736), - [anon_sym_postfix] = ACTIONS(2736), - [anon_sym_precedencegroup] = ACTIONS(2736), - [anon_sym_associatedtype] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2738), - [sym_property_behavior_modifier] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_convenience] = ACTIONS(2736), - [anon_sym_required] = ACTIONS(2736), - [anon_sym_nonisolated] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_internal] = ACTIONS(2736), - [anon_sym_fileprivate] = ACTIONS(2736), - [anon_sym_open] = ACTIONS(2736), - [anon_sym_mutating] = ACTIONS(2736), - [anon_sym_nonmutating] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_dynamic] = ACTIONS(2736), - [anon_sym_optional] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_inout] = ACTIONS(2736), - [anon_sym_ATescaping] = ACTIONS(2736), - [anon_sym_ATautoclosure] = ACTIONS(2736), - [anon_sym_weak] = ACTIONS(2736), - [anon_sym_unowned] = ACTIONS(2738), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2736), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2736), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2736), - [sym__eq_custom] = ACTIONS(2736), - [sym__throws_keyword] = ACTIONS(2736), - [sym__rethrows_keyword] = ACTIONS(2736), - [sym_where_keyword] = ACTIONS(2736), - [sym__as_custom] = ACTIONS(2736), - [sym__async_keyword_custom] = ACTIONS(2736), - }, - [1401] = { - [sym__arrow_operator] = STATE(3365), - [sym__async_keyword] = STATE(4919), - [sym_throws] = STATE(6248), - [aux_sym_protocol_composition_type_repeat1] = STATE(1454), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2607), - [anon_sym_COMMA] = ACTIONS(2607), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_async] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_case] = ACTIONS(2607), - [anon_sym_import] = ACTIONS(2607), - [anon_sym_typealias] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(2607), - [anon_sym_protocol] = ACTIONS(2607), - [anon_sym_let] = ACTIONS(2607), - [anon_sym_var] = ACTIONS(2607), - [anon_sym_func] = ACTIONS(2607), - [anon_sym_extension] = ACTIONS(2607), - [anon_sym_indirect] = ACTIONS(2607), - [anon_sym_init] = ACTIONS(2607), - [anon_sym_deinit] = ACTIONS(2607), - [anon_sym_subscript] = ACTIONS(2607), - [anon_sym_prefix] = ACTIONS(2607), - [anon_sym_infix] = ACTIONS(2607), - [anon_sym_postfix] = ACTIONS(2607), - [anon_sym_precedencegroup] = ACTIONS(2607), - [anon_sym_associatedtype] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2609), - [sym_property_behavior_modifier] = ACTIONS(2607), - [anon_sym_override] = ACTIONS(2607), - [anon_sym_convenience] = ACTIONS(2607), - [anon_sym_required] = ACTIONS(2607), - [anon_sym_nonisolated] = ACTIONS(2607), - [anon_sym_public] = ACTIONS(2607), - [anon_sym_private] = ACTIONS(2607), - [anon_sym_internal] = ACTIONS(2607), - [anon_sym_fileprivate] = ACTIONS(2607), - [anon_sym_open] = ACTIONS(2607), - [anon_sym_mutating] = ACTIONS(2607), - [anon_sym_nonmutating] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_dynamic] = ACTIONS(2607), - [anon_sym_optional] = ACTIONS(2607), - [anon_sym_final] = ACTIONS(2607), - [anon_sym_inout] = ACTIONS(2607), - [anon_sym_ATescaping] = ACTIONS(2607), - [anon_sym_ATautoclosure] = ACTIONS(2607), - [anon_sym_weak] = ACTIONS(2607), - [anon_sym_unowned] = ACTIONS(2609), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2607), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2607), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4208), - [sym__eq_custom] = ACTIONS(2607), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2607), - [sym__async_keyword_custom] = ACTIONS(4210), - }, - [1402] = { - [sym_comment] = ACTIONS(3), - [aux_sym_simple_identifier_token1] = ACTIONS(2781), - [aux_sym_simple_identifier_token2] = ACTIONS(2779), - [aux_sym_simple_identifier_token3] = ACTIONS(2779), - [aux_sym_simple_identifier_token4] = ACTIONS(2779), - [anon_sym_actor] = ACTIONS(2781), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(2781), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [aux_sym_custom_operator_token1] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_CARET_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_in] = ACTIONS(2781), - [anon_sym_PLUS_EQ] = ACTIONS(2779), - [anon_sym_DASH_EQ] = ACTIONS(2779), - [anon_sym_STAR_EQ] = ACTIONS(2779), - [anon_sym_SLASH_EQ] = ACTIONS(2779), - [anon_sym_PERCENT_EQ] = ACTIONS(2779), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2779), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2779), - [anon_sym_LT_EQ] = ACTIONS(2779), - [anon_sym_GT_EQ] = ACTIONS(2779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), - [anon_sym_DOT_DOT_LT] = ACTIONS(2779), - [anon_sym_is] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_PERCENT] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_CARET] = ACTIONS(2781), - [anon_sym_LT_LT] = ACTIONS(2779), - [anon_sym_GT_GT] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__implicit_semi] = ACTIONS(2779), - [sym__explicit_semi] = ACTIONS(2779), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__conjunction_operator_custom] = ACTIONS(2779), - [sym__disjunction_operator_custom] = ACTIONS(2779), - [sym__nil_coalescing_operator_custom] = ACTIONS(2779), - [sym__eq_eq_custom] = ACTIONS(2779), - [sym__plus_then_ws] = ACTIONS(2779), - [sym__minus_then_ws] = ACTIONS(2779), - [sym_bang] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym__as_custom] = ACTIONS(2779), - [sym__as_quest_custom] = ACTIONS(2779), - [sym__as_bang_custom] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - [sym__custom_operator] = ACTIONS(2779), - }, - [1403] = { - [sym__arrow_operator] = STATE(3365), - [sym__async_keyword] = STATE(4919), - [sym_throws] = STATE(6248), - [aux_sym_protocol_composition_type_repeat1] = STATE(1454), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2622), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_typealias] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_protocol] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_var] = ACTIONS(2622), - [anon_sym_func] = ACTIONS(2622), - [anon_sym_extension] = ACTIONS(2622), - [anon_sym_indirect] = ACTIONS(2622), - [anon_sym_init] = ACTIONS(2622), - [anon_sym_deinit] = ACTIONS(2622), - [anon_sym_subscript] = ACTIONS(2622), - [anon_sym_prefix] = ACTIONS(2622), - [anon_sym_infix] = ACTIONS(2622), - [anon_sym_postfix] = ACTIONS(2622), - [anon_sym_precedencegroup] = ACTIONS(2622), - [anon_sym_associatedtype] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2624), - [sym_property_behavior_modifier] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_convenience] = ACTIONS(2622), - [anon_sym_required] = ACTIONS(2622), - [anon_sym_nonisolated] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_internal] = ACTIONS(2622), - [anon_sym_fileprivate] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_mutating] = ACTIONS(2622), - [anon_sym_nonmutating] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_dynamic] = ACTIONS(2622), - [anon_sym_optional] = ACTIONS(2622), - [anon_sym_final] = ACTIONS(2622), - [anon_sym_inout] = ACTIONS(2622), - [anon_sym_ATescaping] = ACTIONS(2622), - [anon_sym_ATautoclosure] = ACTIONS(2622), - [anon_sym_weak] = ACTIONS(2622), - [anon_sym_unowned] = ACTIONS(2624), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2622), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2622), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4208), - [sym__eq_custom] = ACTIONS(2622), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2622), - [sym__async_keyword_custom] = ACTIONS(4210), - }, - [1404] = { - [sym__arrow_operator] = STATE(3365), - [sym__async_keyword] = STATE(4919), - [sym_throws] = STATE(6248), - [aux_sym_protocol_composition_type_repeat1] = STATE(1454), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2632), - [anon_sym_COMMA] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_import] = ACTIONS(2632), - [anon_sym_typealias] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_protocol] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_var] = ACTIONS(2632), - [anon_sym_func] = ACTIONS(2632), - [anon_sym_extension] = ACTIONS(2632), - [anon_sym_indirect] = ACTIONS(2632), - [anon_sym_init] = ACTIONS(2632), - [anon_sym_deinit] = ACTIONS(2632), - [anon_sym_subscript] = ACTIONS(2632), - [anon_sym_prefix] = ACTIONS(2632), - [anon_sym_infix] = ACTIONS(2632), - [anon_sym_postfix] = ACTIONS(2632), - [anon_sym_precedencegroup] = ACTIONS(2632), - [anon_sym_associatedtype] = ACTIONS(2632), - [anon_sym_AT] = ACTIONS(2634), - [sym_property_behavior_modifier] = ACTIONS(2632), - [anon_sym_override] = ACTIONS(2632), - [anon_sym_convenience] = ACTIONS(2632), - [anon_sym_required] = ACTIONS(2632), - [anon_sym_nonisolated] = ACTIONS(2632), - [anon_sym_public] = ACTIONS(2632), - [anon_sym_private] = ACTIONS(2632), - [anon_sym_internal] = ACTIONS(2632), - [anon_sym_fileprivate] = ACTIONS(2632), - [anon_sym_open] = ACTIONS(2632), - [anon_sym_mutating] = ACTIONS(2632), - [anon_sym_nonmutating] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_dynamic] = ACTIONS(2632), - [anon_sym_optional] = ACTIONS(2632), - [anon_sym_final] = ACTIONS(2632), - [anon_sym_inout] = ACTIONS(2632), - [anon_sym_ATescaping] = ACTIONS(2632), - [anon_sym_ATautoclosure] = ACTIONS(2632), - [anon_sym_weak] = ACTIONS(2632), - [anon_sym_unowned] = ACTIONS(2634), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2632), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2632), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4208), - [sym__eq_custom] = ACTIONS(2632), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2632), - [sym__async_keyword_custom] = ACTIONS(4210), - }, - [1405] = { - [sym__arrow_operator] = STATE(3365), - [sym__async_keyword] = STATE(4919), - [sym_throws] = STATE(6248), - [aux_sym_protocol_composition_type_repeat1] = STATE(1454), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2636), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_case] = ACTIONS(2636), - [anon_sym_import] = ACTIONS(2636), - [anon_sym_typealias] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_protocol] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_var] = ACTIONS(2636), - [anon_sym_func] = ACTIONS(2636), - [anon_sym_extension] = ACTIONS(2636), - [anon_sym_indirect] = ACTIONS(2636), - [anon_sym_init] = ACTIONS(2636), - [anon_sym_deinit] = ACTIONS(2636), - [anon_sym_subscript] = ACTIONS(2636), - [anon_sym_prefix] = ACTIONS(2636), - [anon_sym_infix] = ACTIONS(2636), - [anon_sym_postfix] = ACTIONS(2636), - [anon_sym_precedencegroup] = ACTIONS(2636), - [anon_sym_associatedtype] = ACTIONS(2636), - [anon_sym_AT] = ACTIONS(2638), - [sym_property_behavior_modifier] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2636), - [anon_sym_convenience] = ACTIONS(2636), - [anon_sym_required] = ACTIONS(2636), - [anon_sym_nonisolated] = ACTIONS(2636), - [anon_sym_public] = ACTIONS(2636), - [anon_sym_private] = ACTIONS(2636), - [anon_sym_internal] = ACTIONS(2636), - [anon_sym_fileprivate] = ACTIONS(2636), - [anon_sym_open] = ACTIONS(2636), - [anon_sym_mutating] = ACTIONS(2636), - [anon_sym_nonmutating] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_dynamic] = ACTIONS(2636), - [anon_sym_optional] = ACTIONS(2636), - [anon_sym_final] = ACTIONS(2636), - [anon_sym_inout] = ACTIONS(2636), - [anon_sym_ATescaping] = ACTIONS(2636), - [anon_sym_ATautoclosure] = ACTIONS(2636), - [anon_sym_weak] = ACTIONS(2636), - [anon_sym_unowned] = ACTIONS(2638), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2636), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2636), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(4208), - [sym__eq_custom] = ACTIONS(2636), - [sym__throws_keyword] = ACTIONS(2591), - [sym__rethrows_keyword] = ACTIONS(2591), - [sym_where_keyword] = ACTIONS(2636), - [sym__async_keyword_custom] = ACTIONS(4210), - }, - [1406] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1406), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2581), - [anon_sym_COMMA] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2581), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_typealias] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_protocol] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_func] = ACTIONS(2581), - [anon_sym_extension] = ACTIONS(2581), - [anon_sym_indirect] = ACTIONS(2581), - [anon_sym_init] = ACTIONS(2581), - [anon_sym_deinit] = ACTIONS(2581), - [anon_sym_subscript] = ACTIONS(2581), - [anon_sym_prefix] = ACTIONS(2581), - [anon_sym_infix] = ACTIONS(2581), - [anon_sym_postfix] = ACTIONS(2581), - [anon_sym_precedencegroup] = ACTIONS(2581), - [anon_sym_associatedtype] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2585), - [sym_property_behavior_modifier] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_convenience] = ACTIONS(2581), - [anon_sym_required] = ACTIONS(2581), - [anon_sym_nonisolated] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_internal] = ACTIONS(2581), - [anon_sym_fileprivate] = ACTIONS(2581), - [anon_sym_open] = ACTIONS(2581), - [anon_sym_mutating] = ACTIONS(2581), - [anon_sym_nonmutating] = ACTIONS(2581), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_dynamic] = ACTIONS(2581), - [anon_sym_optional] = ACTIONS(2581), - [anon_sym_final] = ACTIONS(2581), - [anon_sym_inout] = ACTIONS(2581), - [anon_sym_ATescaping] = ACTIONS(2581), - [anon_sym_ATautoclosure] = ACTIONS(2581), - [anon_sym_weak] = ACTIONS(2581), - [anon_sym_unowned] = ACTIONS(2585), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2581), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2581), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2581), - [sym__eq_custom] = ACTIONS(2581), - [sym__throws_keyword] = ACTIONS(2581), - [sym__rethrows_keyword] = ACTIONS(2581), - [sym_where_keyword] = ACTIONS(2581), - [sym__as_custom] = ACTIONS(2581), - [sym__async_keyword_custom] = ACTIONS(2581), - }, - [1407] = { - [aux_sym_optional_type_repeat1] = STATE(1412), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [sym__immediate_quest] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_typealias] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_protocol] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_func] = ACTIONS(2626), - [anon_sym_extension] = ACTIONS(2626), - [anon_sym_indirect] = ACTIONS(2626), - [anon_sym_init] = ACTIONS(2626), - [anon_sym_deinit] = ACTIONS(2626), - [anon_sym_subscript] = ACTIONS(2626), - [anon_sym_prefix] = ACTIONS(2626), - [anon_sym_infix] = ACTIONS(2626), - [anon_sym_postfix] = ACTIONS(2626), - [anon_sym_precedencegroup] = ACTIONS(2626), - [anon_sym_associatedtype] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [sym_property_behavior_modifier] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_convenience] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_nonisolated] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_internal] = ACTIONS(2626), - [anon_sym_fileprivate] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_mutating] = ACTIONS(2626), - [anon_sym_nonmutating] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_dynamic] = ACTIONS(2626), - [anon_sym_optional] = ACTIONS(2626), - [anon_sym_final] = ACTIONS(2626), - [anon_sym_inout] = ACTIONS(2626), - [anon_sym_ATescaping] = ACTIONS(2626), - [anon_sym_ATautoclosure] = ACTIONS(2626), - [anon_sym_weak] = ACTIONS(2626), - [anon_sym_unowned] = ACTIONS(2628), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2626), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2626), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2626), - [sym__eq_custom] = ACTIONS(2626), - [sym__throws_keyword] = ACTIONS(2626), - [sym__rethrows_keyword] = ACTIONS(2626), - [sym__async_keyword_custom] = ACTIONS(2626), - }, - [1408] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_COLON] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2887), - [sym__immediate_quest] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_async] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2885), - [anon_sym_typealias] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2885), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), - [anon_sym_protocol] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2885), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_func] = ACTIONS(2885), - [anon_sym_extension] = ACTIONS(2885), - [anon_sym_indirect] = ACTIONS(2885), - [anon_sym_init] = ACTIONS(2885), - [anon_sym_deinit] = ACTIONS(2885), - [anon_sym_subscript] = ACTIONS(2885), - [anon_sym_prefix] = ACTIONS(2885), - [anon_sym_infix] = ACTIONS(2885), - [anon_sym_postfix] = ACTIONS(2885), - [anon_sym_precedencegroup] = ACTIONS(2885), - [anon_sym_associatedtype] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2887), - [sym_property_behavior_modifier] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_convenience] = ACTIONS(2885), - [anon_sym_required] = ACTIONS(2885), - [anon_sym_nonisolated] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_internal] = ACTIONS(2885), - [anon_sym_fileprivate] = ACTIONS(2885), - [anon_sym_open] = ACTIONS(2885), - [anon_sym_mutating] = ACTIONS(2885), - [anon_sym_nonmutating] = ACTIONS(2885), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_dynamic] = ACTIONS(2885), - [anon_sym_optional] = ACTIONS(2885), - [anon_sym_final] = ACTIONS(2885), - [anon_sym_inout] = ACTIONS(2885), - [anon_sym_ATescaping] = ACTIONS(2885), - [anon_sym_ATautoclosure] = ACTIONS(2885), - [anon_sym_weak] = ACTIONS(2885), - [anon_sym_unowned] = ACTIONS(2887), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2885), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2885), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2885), - [sym__eq_custom] = ACTIONS(2885), - [sym__throws_keyword] = ACTIONS(2885), - [sym__rethrows_keyword] = ACTIONS(2885), - [sym_where_keyword] = ACTIONS(2885), - [sym__as_custom] = ACTIONS(2885), - [sym__async_keyword_custom] = ACTIONS(2885), - }, - [1409] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [sym__immediate_quest] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_async] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_case] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_import] = ACTIONS(2855), - [anon_sym_typealias] = ACTIONS(2855), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_protocol] = ACTIONS(2855), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_var] = ACTIONS(2855), - [anon_sym_func] = ACTIONS(2855), - [anon_sym_extension] = ACTIONS(2855), - [anon_sym_indirect] = ACTIONS(2855), - [anon_sym_init] = ACTIONS(2855), - [anon_sym_deinit] = ACTIONS(2855), - [anon_sym_subscript] = ACTIONS(2855), - [anon_sym_prefix] = ACTIONS(2855), - [anon_sym_infix] = ACTIONS(2855), - [anon_sym_postfix] = ACTIONS(2855), - [anon_sym_precedencegroup] = ACTIONS(2855), - [anon_sym_associatedtype] = ACTIONS(2855), - [anon_sym_AT] = ACTIONS(2857), - [sym_property_behavior_modifier] = ACTIONS(2855), - [anon_sym_override] = ACTIONS(2855), - [anon_sym_convenience] = ACTIONS(2855), - [anon_sym_required] = ACTIONS(2855), - [anon_sym_nonisolated] = ACTIONS(2855), - [anon_sym_public] = ACTIONS(2855), - [anon_sym_private] = ACTIONS(2855), - [anon_sym_internal] = ACTIONS(2855), - [anon_sym_fileprivate] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_mutating] = ACTIONS(2855), - [anon_sym_nonmutating] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2855), - [anon_sym_dynamic] = ACTIONS(2855), - [anon_sym_optional] = ACTIONS(2855), - [anon_sym_final] = ACTIONS(2855), - [anon_sym_inout] = ACTIONS(2855), - [anon_sym_ATescaping] = ACTIONS(2855), - [anon_sym_ATautoclosure] = ACTIONS(2855), - [anon_sym_weak] = ACTIONS(2855), - [anon_sym_unowned] = ACTIONS(2857), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2855), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2855), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2855), - [sym__dot_custom] = ACTIONS(2855), - [sym__eq_custom] = ACTIONS(2855), - [sym__throws_keyword] = ACTIONS(2855), - [sym__rethrows_keyword] = ACTIONS(2855), - [sym__async_keyword_custom] = ACTIONS(2855), - }, - [1410] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_COLON] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2847), - [anon_sym_QMARK] = ACTIONS(2849), - [sym__immediate_quest] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_async] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_case] = ACTIONS(2847), - [anon_sym_import] = ACTIONS(2847), - [anon_sym_typealias] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2847), - [anon_sym_enum] = ACTIONS(2847), - [anon_sym_protocol] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2847), - [anon_sym_var] = ACTIONS(2847), - [anon_sym_func] = ACTIONS(2847), - [anon_sym_extension] = ACTIONS(2847), - [anon_sym_indirect] = ACTIONS(2847), - [anon_sym_init] = ACTIONS(2847), - [anon_sym_deinit] = ACTIONS(2847), - [anon_sym_subscript] = ACTIONS(2847), - [anon_sym_prefix] = ACTIONS(2847), - [anon_sym_infix] = ACTIONS(2847), - [anon_sym_postfix] = ACTIONS(2847), - [anon_sym_precedencegroup] = ACTIONS(2847), - [anon_sym_associatedtype] = ACTIONS(2847), - [anon_sym_AT] = ACTIONS(2849), - [sym_property_behavior_modifier] = ACTIONS(2847), - [anon_sym_override] = ACTIONS(2847), - [anon_sym_convenience] = ACTIONS(2847), - [anon_sym_required] = ACTIONS(2847), - [anon_sym_nonisolated] = ACTIONS(2847), - [anon_sym_public] = ACTIONS(2847), - [anon_sym_private] = ACTIONS(2847), - [anon_sym_internal] = ACTIONS(2847), - [anon_sym_fileprivate] = ACTIONS(2847), - [anon_sym_open] = ACTIONS(2847), - [anon_sym_mutating] = ACTIONS(2847), - [anon_sym_nonmutating] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2847), - [anon_sym_dynamic] = ACTIONS(2847), - [anon_sym_optional] = ACTIONS(2847), - [anon_sym_final] = ACTIONS(2847), - [anon_sym_inout] = ACTIONS(2847), - [anon_sym_ATescaping] = ACTIONS(2847), - [anon_sym_ATautoclosure] = ACTIONS(2847), - [anon_sym_weak] = ACTIONS(2847), - [anon_sym_unowned] = ACTIONS(2849), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2847), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2847), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2847), - [sym__eq_custom] = ACTIONS(2847), - [sym__throws_keyword] = ACTIONS(2847), - [sym__rethrows_keyword] = ACTIONS(2847), - [sym_where_keyword] = ACTIONS(2847), - [sym__as_custom] = ACTIONS(2847), - [sym__async_keyword_custom] = ACTIONS(2847), - }, - [1411] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(2897), - [anon_sym_DOT] = ACTIONS(2899), - [sym__immediate_quest] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2897), - [anon_sym_import] = ACTIONS(2897), - [anon_sym_typealias] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2897), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), - [anon_sym_protocol] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_var] = ACTIONS(2897), - [anon_sym_func] = ACTIONS(2897), - [anon_sym_extension] = ACTIONS(2897), - [anon_sym_indirect] = ACTIONS(2897), - [anon_sym_init] = ACTIONS(2897), - [anon_sym_deinit] = ACTIONS(2897), - [anon_sym_subscript] = ACTIONS(2897), - [anon_sym_prefix] = ACTIONS(2897), - [anon_sym_infix] = ACTIONS(2897), - [anon_sym_postfix] = ACTIONS(2897), - [anon_sym_precedencegroup] = ACTIONS(2897), - [anon_sym_associatedtype] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [sym_property_behavior_modifier] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_convenience] = ACTIONS(2897), - [anon_sym_required] = ACTIONS(2897), - [anon_sym_nonisolated] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_internal] = ACTIONS(2897), - [anon_sym_fileprivate] = ACTIONS(2897), - [anon_sym_open] = ACTIONS(2897), - [anon_sym_mutating] = ACTIONS(2897), - [anon_sym_nonmutating] = ACTIONS(2897), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_dynamic] = ACTIONS(2897), - [anon_sym_optional] = ACTIONS(2897), - [anon_sym_final] = ACTIONS(2897), - [anon_sym_inout] = ACTIONS(2897), - [anon_sym_ATescaping] = ACTIONS(2897), - [anon_sym_ATautoclosure] = ACTIONS(2897), - [anon_sym_weak] = ACTIONS(2897), - [anon_sym_unowned] = ACTIONS(2899), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2897), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2897), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2897), - [sym__dot_custom] = ACTIONS(2897), - [sym__eq_custom] = ACTIONS(2897), - [sym__throws_keyword] = ACTIONS(2897), - [sym__rethrows_keyword] = ACTIONS(2897), - [sym__async_keyword_custom] = ACTIONS(2897), - }, - [1412] = { - [aux_sym_optional_type_repeat1] = STATE(1417), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_DOT] = ACTIONS(2738), - [sym__immediate_quest] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(2736), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_case] = ACTIONS(2736), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2736), - [anon_sym_import] = ACTIONS(2736), - [anon_sym_typealias] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_protocol] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_var] = ACTIONS(2736), - [anon_sym_func] = ACTIONS(2736), - [anon_sym_extension] = ACTIONS(2736), - [anon_sym_indirect] = ACTIONS(2736), - [anon_sym_init] = ACTIONS(2736), - [anon_sym_deinit] = ACTIONS(2736), - [anon_sym_subscript] = ACTIONS(2736), - [anon_sym_prefix] = ACTIONS(2736), - [anon_sym_infix] = ACTIONS(2736), - [anon_sym_postfix] = ACTIONS(2736), - [anon_sym_precedencegroup] = ACTIONS(2736), - [anon_sym_associatedtype] = ACTIONS(2736), - [anon_sym_AT] = ACTIONS(2738), - [sym_property_behavior_modifier] = ACTIONS(2736), - [anon_sym_override] = ACTIONS(2736), - [anon_sym_convenience] = ACTIONS(2736), - [anon_sym_required] = ACTIONS(2736), - [anon_sym_nonisolated] = ACTIONS(2736), - [anon_sym_public] = ACTIONS(2736), - [anon_sym_private] = ACTIONS(2736), - [anon_sym_internal] = ACTIONS(2736), - [anon_sym_fileprivate] = ACTIONS(2736), - [anon_sym_open] = ACTIONS(2736), - [anon_sym_mutating] = ACTIONS(2736), - [anon_sym_nonmutating] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_dynamic] = ACTIONS(2736), - [anon_sym_optional] = ACTIONS(2736), - [anon_sym_final] = ACTIONS(2736), - [anon_sym_inout] = ACTIONS(2736), - [anon_sym_ATescaping] = ACTIONS(2736), - [anon_sym_ATautoclosure] = ACTIONS(2736), - [anon_sym_weak] = ACTIONS(2736), - [anon_sym_unowned] = ACTIONS(2738), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2736), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2736), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2736), - [sym__eq_custom] = ACTIONS(2736), - [sym__throws_keyword] = ACTIONS(2736), - [sym__rethrows_keyword] = ACTIONS(2736), - [sym__async_keyword_custom] = ACTIONS(2736), - }, - [1413] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_COLON] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2871), - [sym__immediate_quest] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_async] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_import] = ACTIONS(2869), - [anon_sym_typealias] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_protocol] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_var] = ACTIONS(2869), - [anon_sym_func] = ACTIONS(2869), - [anon_sym_extension] = ACTIONS(2869), - [anon_sym_indirect] = ACTIONS(2869), - [anon_sym_init] = ACTIONS(2869), - [anon_sym_deinit] = ACTIONS(2869), - [anon_sym_subscript] = ACTIONS(2869), - [anon_sym_prefix] = ACTIONS(2869), - [anon_sym_infix] = ACTIONS(2869), - [anon_sym_postfix] = ACTIONS(2869), - [anon_sym_precedencegroup] = ACTIONS(2869), - [anon_sym_associatedtype] = ACTIONS(2869), - [anon_sym_AT] = ACTIONS(2871), - [sym_property_behavior_modifier] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2869), - [anon_sym_convenience] = ACTIONS(2869), - [anon_sym_required] = ACTIONS(2869), - [anon_sym_nonisolated] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_internal] = ACTIONS(2869), - [anon_sym_fileprivate] = ACTIONS(2869), - [anon_sym_open] = ACTIONS(2869), - [anon_sym_mutating] = ACTIONS(2869), - [anon_sym_nonmutating] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_dynamic] = ACTIONS(2869), - [anon_sym_optional] = ACTIONS(2869), - [anon_sym_final] = ACTIONS(2869), - [anon_sym_inout] = ACTIONS(2869), - [anon_sym_ATescaping] = ACTIONS(2869), - [anon_sym_ATautoclosure] = ACTIONS(2869), - [anon_sym_weak] = ACTIONS(2869), - [anon_sym_unowned] = ACTIONS(2871), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2869), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2869), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2869), - [sym__eq_custom] = ACTIONS(2869), - [sym__throws_keyword] = ACTIONS(2869), - [sym__rethrows_keyword] = ACTIONS(2869), - [sym_where_keyword] = ACTIONS(2869), - [sym__as_custom] = ACTIONS(2869), - [sym__async_keyword_custom] = ACTIONS(2869), - }, - [1414] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2873), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [sym__immediate_quest] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_typealias] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_protocol] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_func] = ACTIONS(2873), - [anon_sym_extension] = ACTIONS(2873), - [anon_sym_indirect] = ACTIONS(2873), - [anon_sym_init] = ACTIONS(2873), - [anon_sym_deinit] = ACTIONS(2873), - [anon_sym_subscript] = ACTIONS(2873), - [anon_sym_prefix] = ACTIONS(2873), - [anon_sym_infix] = ACTIONS(2873), - [anon_sym_postfix] = ACTIONS(2873), - [anon_sym_precedencegroup] = ACTIONS(2873), - [anon_sym_associatedtype] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2875), - [sym_property_behavior_modifier] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_convenience] = ACTIONS(2873), - [anon_sym_required] = ACTIONS(2873), - [anon_sym_nonisolated] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_internal] = ACTIONS(2873), - [anon_sym_fileprivate] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_mutating] = ACTIONS(2873), - [anon_sym_nonmutating] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_dynamic] = ACTIONS(2873), - [anon_sym_optional] = ACTIONS(2873), - [anon_sym_final] = ACTIONS(2873), - [anon_sym_inout] = ACTIONS(2873), - [anon_sym_ATescaping] = ACTIONS(2873), - [anon_sym_ATautoclosure] = ACTIONS(2873), - [anon_sym_weak] = ACTIONS(2873), - [anon_sym_unowned] = ACTIONS(2875), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2873), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2873), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2873), - [sym__dot_custom] = ACTIONS(2873), - [sym__eq_custom] = ACTIONS(2873), - [sym__throws_keyword] = ACTIONS(2873), - [sym__rethrows_keyword] = ACTIONS(2873), - [sym__async_keyword_custom] = ACTIONS(2873), - }, - [1415] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2877), - [anon_sym_COMMA] = ACTIONS(2877), - [anon_sym_COLON] = ACTIONS(2877), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_QMARK] = ACTIONS(2879), - [sym__immediate_quest] = ACTIONS(2877), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_async] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_import] = ACTIONS(2877), - [anon_sym_typealias] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_protocol] = ACTIONS(2877), - [anon_sym_let] = ACTIONS(2877), - [anon_sym_var] = ACTIONS(2877), - [anon_sym_func] = ACTIONS(2877), - [anon_sym_extension] = ACTIONS(2877), - [anon_sym_indirect] = ACTIONS(2877), - [anon_sym_init] = ACTIONS(2877), - [anon_sym_deinit] = ACTIONS(2877), - [anon_sym_subscript] = ACTIONS(2877), - [anon_sym_prefix] = ACTIONS(2877), - [anon_sym_infix] = ACTIONS(2877), - [anon_sym_postfix] = ACTIONS(2877), - [anon_sym_precedencegroup] = ACTIONS(2877), - [anon_sym_associatedtype] = ACTIONS(2877), - [anon_sym_AT] = ACTIONS(2879), - [sym_property_behavior_modifier] = ACTIONS(2877), - [anon_sym_override] = ACTIONS(2877), - [anon_sym_convenience] = ACTIONS(2877), - [anon_sym_required] = ACTIONS(2877), - [anon_sym_nonisolated] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_internal] = ACTIONS(2877), - [anon_sym_fileprivate] = ACTIONS(2877), - [anon_sym_open] = ACTIONS(2877), - [anon_sym_mutating] = ACTIONS(2877), - [anon_sym_nonmutating] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_dynamic] = ACTIONS(2877), - [anon_sym_optional] = ACTIONS(2877), - [anon_sym_final] = ACTIONS(2877), - [anon_sym_inout] = ACTIONS(2877), - [anon_sym_ATescaping] = ACTIONS(2877), - [anon_sym_ATautoclosure] = ACTIONS(2877), - [anon_sym_weak] = ACTIONS(2877), - [anon_sym_unowned] = ACTIONS(2879), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2877), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2877), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2877), - [sym__eq_custom] = ACTIONS(2877), - [sym__throws_keyword] = ACTIONS(2877), - [sym__rethrows_keyword] = ACTIONS(2877), - [sym_where_keyword] = ACTIONS(2877), - [sym__as_custom] = ACTIONS(2877), - [sym__async_keyword_custom] = ACTIONS(2877), - }, - [1416] = { - [aux_sym_protocol_composition_type_repeat1] = STATE(1406), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2787), - [anon_sym_COMMA] = ACTIONS(2787), - [anon_sym_COLON] = ACTIONS(2787), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_case] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_typealias] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_protocol] = ACTIONS(2787), - [anon_sym_let] = ACTIONS(2787), - [anon_sym_var] = ACTIONS(2787), - [anon_sym_func] = ACTIONS(2787), - [anon_sym_extension] = ACTIONS(2787), - [anon_sym_indirect] = ACTIONS(2787), - [anon_sym_init] = ACTIONS(2787), - [anon_sym_deinit] = ACTIONS(2787), - [anon_sym_subscript] = ACTIONS(2787), - [anon_sym_prefix] = ACTIONS(2787), - [anon_sym_infix] = ACTIONS(2787), - [anon_sym_postfix] = ACTIONS(2787), - [anon_sym_precedencegroup] = ACTIONS(2787), - [anon_sym_associatedtype] = ACTIONS(2787), - [anon_sym_AT] = ACTIONS(2789), - [sym_property_behavior_modifier] = ACTIONS(2787), - [anon_sym_override] = ACTIONS(2787), - [anon_sym_convenience] = ACTIONS(2787), - [anon_sym_required] = ACTIONS(2787), - [anon_sym_nonisolated] = ACTIONS(2787), - [anon_sym_public] = ACTIONS(2787), - [anon_sym_private] = ACTIONS(2787), - [anon_sym_internal] = ACTIONS(2787), - [anon_sym_fileprivate] = ACTIONS(2787), - [anon_sym_open] = ACTIONS(2787), - [anon_sym_mutating] = ACTIONS(2787), - [anon_sym_nonmutating] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_dynamic] = ACTIONS(2787), - [anon_sym_optional] = ACTIONS(2787), - [anon_sym_final] = ACTIONS(2787), - [anon_sym_inout] = ACTIONS(2787), - [anon_sym_ATescaping] = ACTIONS(2787), - [anon_sym_ATautoclosure] = ACTIONS(2787), - [anon_sym_weak] = ACTIONS(2787), - [anon_sym_unowned] = ACTIONS(2789), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2787), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2787), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2787), - [sym__eq_custom] = ACTIONS(2787), - [sym__throws_keyword] = ACTIONS(2787), - [sym__rethrows_keyword] = ACTIONS(2787), - [sym_where_keyword] = ACTIONS(2787), - [sym__as_custom] = ACTIONS(2787), - [sym__async_keyword_custom] = ACTIONS(2787), - }, - [1417] = { - [aux_sym_optional_type_repeat1] = STATE(1417), - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2799), - [anon_sym_RPAREN] = ACTIONS(2799), - [anon_sym_COMMA] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_DOT] = ACTIONS(2801), - [sym__immediate_quest] = ACTIONS(4250), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_async] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_case] = ACTIONS(2799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2799), - [anon_sym_typealias] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_protocol] = ACTIONS(2799), - [anon_sym_let] = ACTIONS(2799), - [anon_sym_var] = ACTIONS(2799), - [anon_sym_func] = ACTIONS(2799), - [anon_sym_extension] = ACTIONS(2799), - [anon_sym_indirect] = ACTIONS(2799), - [anon_sym_init] = ACTIONS(2799), - [anon_sym_deinit] = ACTIONS(2799), - [anon_sym_subscript] = ACTIONS(2799), - [anon_sym_prefix] = ACTIONS(2799), - [anon_sym_infix] = ACTIONS(2799), - [anon_sym_postfix] = ACTIONS(2799), - [anon_sym_precedencegroup] = ACTIONS(2799), - [anon_sym_associatedtype] = ACTIONS(2799), - [anon_sym_AT] = ACTIONS(2801), - [sym_property_behavior_modifier] = ACTIONS(2799), - [anon_sym_override] = ACTIONS(2799), - [anon_sym_convenience] = ACTIONS(2799), - [anon_sym_required] = ACTIONS(2799), - [anon_sym_nonisolated] = ACTIONS(2799), - [anon_sym_public] = ACTIONS(2799), - [anon_sym_private] = ACTIONS(2799), - [anon_sym_internal] = ACTIONS(2799), - [anon_sym_fileprivate] = ACTIONS(2799), - [anon_sym_open] = ACTIONS(2799), - [anon_sym_mutating] = ACTIONS(2799), - [anon_sym_nonmutating] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_dynamic] = ACTIONS(2799), - [anon_sym_optional] = ACTIONS(2799), - [anon_sym_final] = ACTIONS(2799), - [anon_sym_inout] = ACTIONS(2799), - [anon_sym_ATescaping] = ACTIONS(2799), - [anon_sym_ATautoclosure] = ACTIONS(2799), - [anon_sym_weak] = ACTIONS(2799), - [anon_sym_unowned] = ACTIONS(2801), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2799), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2799), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2799), - [sym__eq_custom] = ACTIONS(2799), - [sym__throws_keyword] = ACTIONS(2799), - [sym__rethrows_keyword] = ACTIONS(2799), - [sym__async_keyword_custom] = ACTIONS(2799), - }, - [1418] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2901), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_COLON] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2901), - [anon_sym_QMARK] = ACTIONS(2903), - [sym__immediate_quest] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_import] = ACTIONS(2901), - [anon_sym_typealias] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_protocol] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_var] = ACTIONS(2901), - [anon_sym_func] = ACTIONS(2901), - [anon_sym_extension] = ACTIONS(2901), - [anon_sym_indirect] = ACTIONS(2901), - [anon_sym_init] = ACTIONS(2901), - [anon_sym_deinit] = ACTIONS(2901), - [anon_sym_subscript] = ACTIONS(2901), - [anon_sym_prefix] = ACTIONS(2901), - [anon_sym_infix] = ACTIONS(2901), - [anon_sym_postfix] = ACTIONS(2901), - [anon_sym_precedencegroup] = ACTIONS(2901), - [anon_sym_associatedtype] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2903), - [sym_property_behavior_modifier] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_convenience] = ACTIONS(2901), - [anon_sym_required] = ACTIONS(2901), - [anon_sym_nonisolated] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_internal] = ACTIONS(2901), - [anon_sym_fileprivate] = ACTIONS(2901), - [anon_sym_open] = ACTIONS(2901), - [anon_sym_mutating] = ACTIONS(2901), - [anon_sym_nonmutating] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_dynamic] = ACTIONS(2901), - [anon_sym_optional] = ACTIONS(2901), - [anon_sym_final] = ACTIONS(2901), - [anon_sym_inout] = ACTIONS(2901), - [anon_sym_ATescaping] = ACTIONS(2901), - [anon_sym_ATautoclosure] = ACTIONS(2901), - [anon_sym_weak] = ACTIONS(2901), - [anon_sym_unowned] = ACTIONS(2903), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2901), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2901), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2901), - [sym__eq_custom] = ACTIONS(2901), - [sym__throws_keyword] = ACTIONS(2901), - [sym__rethrows_keyword] = ACTIONS(2901), - [sym_where_keyword] = ACTIONS(2901), - [sym__as_custom] = ACTIONS(2901), - [sym__async_keyword_custom] = ACTIONS(2901), - }, - [1419] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2729), - [anon_sym_RPAREN] = ACTIONS(2729), - [anon_sym_COMMA] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_DOT] = ACTIONS(2731), - [sym__immediate_quest] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_typealias] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_protocol] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_func] = ACTIONS(2729), - [anon_sym_extension] = ACTIONS(2729), - [anon_sym_indirect] = ACTIONS(2729), - [anon_sym_init] = ACTIONS(2729), - [anon_sym_deinit] = ACTIONS(2729), - [anon_sym_subscript] = ACTIONS(2729), - [anon_sym_prefix] = ACTIONS(2729), - [anon_sym_infix] = ACTIONS(2729), - [anon_sym_postfix] = ACTIONS(2729), - [anon_sym_precedencegroup] = ACTIONS(2729), - [anon_sym_associatedtype] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2731), - [sym_property_behavior_modifier] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_convenience] = ACTIONS(2729), - [anon_sym_required] = ACTIONS(2729), - [anon_sym_nonisolated] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_internal] = ACTIONS(2729), - [anon_sym_fileprivate] = ACTIONS(2729), - [anon_sym_open] = ACTIONS(2729), - [anon_sym_mutating] = ACTIONS(2729), - [anon_sym_nonmutating] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_dynamic] = ACTIONS(2729), - [anon_sym_optional] = ACTIONS(2729), - [anon_sym_final] = ACTIONS(2729), - [anon_sym_inout] = ACTIONS(2729), - [anon_sym_ATescaping] = ACTIONS(2729), - [anon_sym_ATautoclosure] = ACTIONS(2729), - [anon_sym_weak] = ACTIONS(2729), - [anon_sym_unowned] = ACTIONS(2731), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2729), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2729), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2729), - [sym__dot_custom] = ACTIONS(2729), - [sym__eq_custom] = ACTIONS(2729), - [sym__throws_keyword] = ACTIONS(2729), - [sym__rethrows_keyword] = ACTIONS(2729), - [sym__async_keyword_custom] = ACTIONS(2729), - }, - [1420] = { - [sym_comment] = ACTIONS(5), - [anon_sym_actor] = ACTIONS(2779), - [anon_sym_COMMA] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2779), - [sym__immediate_quest] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_case] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_typealias] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_protocol] = ACTIONS(2779), - [anon_sym_let] = ACTIONS(2779), - [anon_sym_var] = ACTIONS(2779), - [anon_sym_func] = ACTIONS(2779), - [anon_sym_extension] = ACTIONS(2779), - [anon_sym_indirect] = ACTIONS(2779), - [anon_sym_init] = ACTIONS(2779), - [anon_sym_deinit] = ACTIONS(2779), - [anon_sym_subscript] = ACTIONS(2779), - [anon_sym_prefix] = ACTIONS(2779), - [anon_sym_infix] = ACTIONS(2779), - [anon_sym_postfix] = ACTIONS(2779), - [anon_sym_precedencegroup] = ACTIONS(2779), - [anon_sym_associatedtype] = ACTIONS(2779), - [anon_sym_AT] = ACTIONS(2781), - [sym_property_behavior_modifier] = ACTIONS(2779), - [anon_sym_override] = ACTIONS(2779), - [anon_sym_convenience] = ACTIONS(2779), - [anon_sym_required] = ACTIONS(2779), - [anon_sym_nonisolated] = ACTIONS(2779), - [anon_sym_public] = ACTIONS(2779), - [anon_sym_private] = ACTIONS(2779), - [anon_sym_internal] = ACTIONS(2779), - [anon_sym_fileprivate] = ACTIONS(2779), - [anon_sym_open] = ACTIONS(2779), - [anon_sym_mutating] = ACTIONS(2779), - [anon_sym_nonmutating] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_dynamic] = ACTIONS(2779), - [anon_sym_optional] = ACTIONS(2779), - [anon_sym_final] = ACTIONS(2779), - [anon_sym_inout] = ACTIONS(2779), - [anon_sym_ATescaping] = ACTIONS(2779), - [anon_sym_ATautoclosure] = ACTIONS(2779), - [anon_sym_weak] = ACTIONS(2779), - [anon_sym_unowned] = ACTIONS(2781), - [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(2779), - [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(2779), - [sym_directive] = ACTIONS(5), - [sym_diagnostic] = ACTIONS(5), - [sym_multiline_comment] = ACTIONS(5), - [sym__arrow_operator_custom] = ACTIONS(2779), - [sym__dot_custom] = ACTIONS(2779), - [sym__eq_custom] = ACTIONS(2779), - [sym__throws_keyword] = ACTIONS(2779), - [sym__rethrows_keyword] = ACTIONS(2779), - [sym_where_keyword] = ACTIONS(2779), - [sym__async_keyword_custom] = ACTIONS(2779), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(2887), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [71] = 3, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 58, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [142] = 3, - ACTIONS(2871), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [213] = 5, - ACTIONS(4253), 1, - sym__immediate_quest, - STATE(1426), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [288] = 3, - ACTIONS(2875), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 58, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [359] = 5, - ACTIONS(4255), 1, - sym__immediate_quest, - STATE(1426), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2801), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [434] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1428), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6331), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [515] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1441), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6331), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [596] = 3, - ACTIONS(2899), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 58, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [667] = 3, - ACTIONS(2849), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [738] = 3, - ACTIONS(2883), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 58, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [809] = 3, - ACTIONS(2895), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 58, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [880] = 3, - ACTIONS(2903), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [951] = 5, - ACTIONS(4206), 1, - sym__immediate_quest, - STATE(1424), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1026] = 3, - ACTIONS(2857), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 58, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1097] = 3, - ACTIONS(2891), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 58, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1168] = 4, - STATE(1438), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2789), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1241] = 5, - ACTIONS(4258), 1, - anon_sym_AMP, - STATE(1438), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2585), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 55, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1316] = 3, - ACTIONS(2879), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1387] = 3, - ACTIONS(2853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 58, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1458] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1441), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6331), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1539] = 3, - ACTIONS(2895), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1609] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1455), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6390), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [1689] = 3, - ACTIONS(2891), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1759] = 3, - ACTIONS(2871), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1829] = 3, - ACTIONS(2879), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1899] = 3, - ACTIONS(2887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [1969] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1448), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6390), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2049] = 5, - ACTIONS(4261), 1, - anon_sym_AMP, - STATE(1449), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 55, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [2123] = 3, - ACTIONS(2853), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [2193] = 3, - ACTIONS(2883), 3, - anon_sym_DOT, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [2263] = 3, - ACTIONS(2903), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [2333] = 3, - ACTIONS(2849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 57, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [2403] = 4, - STATE(1449), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2789), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [2475] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1448), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6390), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2555] = 16, - ACTIONS(117), 1, - anon_sym_AT, - ACTIONS(135), 1, - anon_sym_unowned, - ACTIONS(3256), 1, - anon_sym_final, - ACTIONS(4266), 1, - anon_sym_class, - ACTIONS(4269), 1, - sym_property_behavior_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(133), 3, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(137), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3254), 3, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - ACTIONS(4093), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3248), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(3250), 5, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(1962), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - STATE(1464), 8, - sym__non_local_scope_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_parameter_modifier, - aux_sym_modifiers_repeat1, - ACTIONS(4264), 17, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_associatedtype, - [2650] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2678), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2721] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1469), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6302), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2800] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(2832), 1, - anon_sym_DOT, - ACTIONS(4271), 1, - anon_sym_COMMA, - ACTIONS(4274), 1, - anon_sym_RBRACK, - ACTIONS(4278), 1, - anon_sym_LT, - ACTIONS(4281), 1, - sym__eq_custom, - STATE(417), 1, - sym__equal_sign, - STATE(3723), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2713), 7, - sym__dot_custom, - anon_sym_COLON, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 25, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [2893] = 3, - ACTIONS(2853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [2962] = 3, - ACTIONS(2891), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [3031] = 3, - ACTIONS(2895), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [3100] = 3, - ACTIONS(2883), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 56, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [3169] = 15, - ACTIONS(4291), 1, - anon_sym_AT, - ACTIONS(4294), 1, - sym_property_behavior_modifier, - ACTIONS(4306), 1, - anon_sym_final, - ACTIONS(4315), 1, - anon_sym_unowned, - ACTIONS(4303), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(4288), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(4309), 3, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(4312), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4285), 4, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - ACTIONS(4297), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(4300), 5, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(1962), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - STATE(1464), 8, - sym__non_local_scope_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_parameter_modifier, - aux_sym_modifiers_repeat1, - ACTIONS(4283), 17, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_associatedtype, - [3262] = 11, - ACTIONS(4318), 1, - sym__immediate_quest, - ACTIONS(4320), 1, - sym__arrow_operator_custom, - ACTIONS(4322), 1, - sym__async_keyword_custom, - STATE(1545), 1, - aux_sym_optional_type_repeat1, - STATE(3313), 1, - sym__arrow_operator, - STATE(4937), 1, - sym__async_keyword, - STATE(6080), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 47, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [3347] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1466), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6317), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3426] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3497] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1466), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6317), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3576] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1474), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6302), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3655] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3797] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1468), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6317), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [3947] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1474), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6302), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4026] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 1, - anon_sym_LBRACK, - ACTIONS(4330), 1, - anon_sym_DOT, - STATE(1987), 1, - sym_simple_identifier, - STATE(2057), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(4324), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4326), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2061), 3, - sym__simple_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2705), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2699), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4183] = 12, - ACTIONS(4320), 1, - sym__arrow_operator_custom, - ACTIONS(4322), 1, - sym__async_keyword_custom, - ACTIONS(4332), 1, - anon_sym_DOT, - ACTIONS(4334), 1, - anon_sym_AMP, - STATE(1577), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3313), 1, - sym__arrow_operator, - STATE(4937), 1, - sym__async_keyword, - STATE(6080), 1, - sym_throws, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [4269] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4339), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - STATE(6405), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(4336), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 10, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 26, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4359] = 12, - ACTIONS(4320), 1, - sym__arrow_operator_custom, - ACTIONS(4322), 1, - sym__async_keyword_custom, - ACTIONS(4332), 1, - anon_sym_DOT, - ACTIONS(4334), 1, - anon_sym_AMP, - STATE(1577), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3313), 1, - sym__arrow_operator, - STATE(4937), 1, - sym__async_keyword, - STATE(6080), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2638), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [4445] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1480), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6266), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4523] = 12, - ACTIONS(4320), 1, - sym__arrow_operator_custom, - ACTIONS(4322), 1, - sym__async_keyword_custom, - ACTIONS(4332), 1, - anon_sym_DOT, - ACTIONS(4334), 1, - anon_sym_AMP, - STATE(1577), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3313), 1, - sym__arrow_operator, - STATE(4937), 1, - sym__async_keyword, - STATE(6080), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2634), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [4609] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4345), 1, - anon_sym_LBRACK, - ACTIONS(4347), 1, - anon_sym_DOT, - STATE(2123), 1, - aux_sym_key_path_expression_repeat1, - STATE(2125), 1, - sym_simple_identifier, - ACTIONS(4341), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4343), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2124), 3, - sym__simple_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2705), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2699), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4763] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1493), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6282), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 13, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [4981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5051] = 12, - ACTIONS(4320), 1, - sym__arrow_operator_custom, - ACTIONS(4322), 1, - sym__async_keyword_custom, - ACTIONS(4332), 1, - anon_sym_DOT, - ACTIONS(4334), 1, - anon_sym_AMP, - STATE(1577), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3313), 1, - sym__arrow_operator, - STATE(4937), 1, - sym__async_keyword, - STATE(6080), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2624), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [5137] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1480), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6266), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5215] = 6, - ACTIONS(2830), 1, - sym__dot_custom, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(4353), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4349), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [5289] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1489), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6266), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5367] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4636), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2781), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5443] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1493), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6282), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2678), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5661] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4359), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(4355), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(4357), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_integer_literal, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 10, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 28, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5747] = 6, - ACTIONS(4361), 1, - sym__dot_custom, - STATE(1497), 1, - aux_sym_user_type_repeat1, - STATE(4525), 1, - sym__dot, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [5821] = 6, - ACTIONS(4364), 1, - sym__dot_custom, - STATE(1497), 1, - aux_sym_user_type_repeat1, - STATE(4525), 1, - sym__dot, - ACTIONS(2671), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [5895] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1484), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6282), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [5973] = 12, - ACTIONS(4320), 1, - sym__arrow_operator_custom, - ACTIONS(4322), 1, - sym__async_keyword_custom, - ACTIONS(4332), 1, - anon_sym_DOT, - ACTIONS(4334), 1, - anon_sym_AMP, - STATE(1577), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3313), 1, - sym__arrow_operator, - STATE(4937), 1, - sym__async_keyword, - STATE(6080), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2609), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [6059] = 5, - ACTIONS(4366), 1, - anon_sym_LT, - STATE(1553), 1, - sym_type_arguments, - ACTIONS(2832), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 53, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [6131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6203] = 6, - ACTIONS(4364), 1, - sym__dot_custom, - STATE(1498), 1, - aux_sym_user_type_repeat1, - STATE(4525), 1, - sym__dot, - ACTIONS(2682), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [6277] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - sym__immediate_quest, - ACTIONS(4370), 1, - sym__arrow_operator_custom, - ACTIONS(4372), 1, - sym__async_keyword_custom, - STATE(1644), 1, - aux_sym_optional_type_repeat1, - STATE(3300), 1, - sym__arrow_operator, - STATE(4981), 1, - sym__async_keyword, - STATE(6011), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6362] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(2832), 1, - anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LT, - ACTIONS(4374), 1, - anon_sym_COLON, - STATE(3723), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2713), 8, - sym__dot_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 25, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6447] = 11, - ACTIONS(4378), 1, - anon_sym_COLON, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(4384), 1, - sym__eq_custom, - ACTIONS(4386), 1, - sym_where_keyword, - STATE(418), 1, - sym__equal_sign, - STATE(1604), 1, - sym_type_annotation, - STATE(1723), 1, - sym_type_constraints, - STATE(2157), 1, - sym_computed_property, - ACTIONS(4382), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4376), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [6530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 44, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6599] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 42, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6668] = 5, - ACTIONS(4390), 1, - anon_sym_LPAREN, - STATE(1616), 1, - sym__tuple_pattern, - ACTIONS(4392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [6739] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 1, - sym__arrow_operator_custom, - ACTIONS(4372), 1, - sym__async_keyword_custom, - ACTIONS(4394), 1, - anon_sym_DOT, - ACTIONS(4396), 1, - anon_sym_AMP, - STATE(1645), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3300), 1, - sym__arrow_operator, - STATE(4981), 1, - sym__async_keyword, - STATE(6011), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2638), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2636), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2678), 42, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6895] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [6964] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1531), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6284), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7110] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(2832), 1, - anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_LT, - STATE(3723), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2713), 8, - sym__dot_custom, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 26, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7193] = 5, - ACTIONS(4390), 1, - anon_sym_LPAREN, - STATE(1581), 1, - sym__tuple_pattern, - ACTIONS(4400), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4398), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [7264] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4402), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 34, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 42, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_integer_literal, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7408] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2678), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 43, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7615] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 1, - sym__arrow_operator_custom, - ACTIONS(4372), 1, - sym__async_keyword_custom, - ACTIONS(4394), 1, - anon_sym_DOT, - ACTIONS(4396), 1, - anon_sym_AMP, - STATE(1645), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3300), 1, - sym__arrow_operator, - STATE(4981), 1, - sym__async_keyword, - STATE(6011), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2624), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2622), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7702] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 1, - sym__arrow_operator_custom, - ACTIONS(4372), 1, - sym__async_keyword_custom, - ACTIONS(4394), 1, - anon_sym_DOT, - ACTIONS(4396), 1, - anon_sym_AMP, - STATE(1645), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3300), 1, - sym__arrow_operator, - STATE(4981), 1, - sym__async_keyword, - STATE(6011), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2609), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2607), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7789] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 1, - sym__arrow_operator_custom, - ACTIONS(4372), 1, - sym__async_keyword_custom, - ACTIONS(4394), 1, - anon_sym_DOT, - ACTIONS(4396), 1, - anon_sym_AMP, - STATE(1645), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3300), 1, - sym__arrow_operator, - STATE(4981), 1, - sym__async_keyword, - STATE(6011), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2634), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2632), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7876] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2701), 1, - anon_sym_LBRACK, - ACTIONS(2703), 1, - anon_sym_DOT, - STATE(701), 1, - aux_sym_key_path_expression_repeat1, - STATE(708), 1, - sym_simple_identifier, - ACTIONS(2695), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2697), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(707), 3, - sym__simple_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2705), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2699), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [7959] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 42, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8028] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 1, - sym__arrow_operator_custom, - ACTIONS(4372), 1, - sym__async_keyword_custom, - ACTIONS(4394), 1, - anon_sym_DOT, - ACTIONS(4396), 1, - anon_sym_AMP, - STATE(1645), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3300), 1, - sym__arrow_operator, - STATE(4981), 1, - sym__async_keyword, - STATE(6011), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8115] = 5, - ACTIONS(4390), 1, - anon_sym_LPAREN, - STATE(1582), 1, - sym__tuple_pattern, - ACTIONS(4406), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [8186] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 54, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [8253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2774), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2772), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_in, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8322] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1531), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6284), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8399] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1513), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6284), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3202), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8547] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - anon_sym_LBRACK, - ACTIONS(4414), 1, - anon_sym_DOT, - STATE(2176), 1, - sym_simple_identifier, - STATE(2297), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(4408), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(4410), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2288), 3, - sym__simple_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2705), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2699), 36, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8630] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 42, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8699] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 54, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_LT, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [8766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 42, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8835] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4278), 1, - anon_sym_LT, - STATE(3723), 1, - sym_type_arguments, - ACTIONS(2832), 2, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 4, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2713), 8, - sym__dot_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 25, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LBRACK, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [8918] = 27, - ACTIONS(3210), 1, - anon_sym_async, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3234), 1, - anon_sym_init, - ACTIONS(4085), 1, - anon_sym_typealias, - ACTIONS(4420), 1, - anon_sym_class, - ACTIONS(4423), 1, - anon_sym_enum, - ACTIONS(4425), 1, - anon_sym_extension, - ACTIONS(4427), 1, - anon_sym_indirect, - ACTIONS(4429), 1, - anon_sym_AT, - ACTIONS(4432), 1, - anon_sym_final, - ACTIONS(4438), 1, - anon_sym_unowned, - STATE(3470), 1, - sym__possibly_async_binding_pattern_kind, - STATE(4153), 1, - sym__binding_pattern_kind, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(5341), 1, - sym__async_modifier, - STATE(5443), 1, - sym__modifierless_function_declaration_no_body, - STATE(5587), 1, - sym__modifierless_property_declaration, - STATE(5588), 1, - sym__modifierless_typealias_declaration, - STATE(5589), 1, - sym__modifierless_function_declaration, - STATE(5590), 1, - sym__modifierless_class_declaration, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(4416), 2, - anon_sym_actor, - anon_sym_struct, - ACTIONS(4435), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2378), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(4418), 23, - sym_default_keyword, - anon_sym_case, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [9033] = 6, - ACTIONS(4443), 1, - anon_sym_QMARK, - ACTIONS(4447), 1, - sym__as_custom, - STATE(1653), 1, - sym__quest, - ACTIONS(4445), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 50, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [9105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9173] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1543), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6289), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9249] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1543), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6289), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9325] = 3, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 53, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [9391] = 5, - ACTIONS(4449), 1, - sym__immediate_quest, - STATE(1548), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [9461] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_AMP, - ACTIONS(4455), 1, - sym__arrow_operator_custom, - ACTIONS(4457), 1, - sym__async_keyword_custom, - STATE(1683), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3187), 1, - sym__arrow_operator, - STATE(4991), 1, - sym__async_keyword, - STATE(6157), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2624), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2622), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9615] = 5, - ACTIONS(4459), 1, - sym__immediate_quest, - STATE(1548), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2801), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [9685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [9753] = 11, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_LPAREN, - ACTIONS(4468), 1, - anon_sym_SEMI, - ACTIONS(4472), 1, - sym__eq_custom, - STATE(530), 1, - sym__equal_sign, - STATE(1894), 1, - sym__enum_entry_suffix, - STATE(1899), 1, - aux_sym_enum_entry_repeat1, - STATE(1976), 1, - sym_enum_type_parameters, - ACTIONS(4470), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4462), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [9835] = 3, - ACTIONS(2875), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 53, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [9901] = 3, - ACTIONS(2899), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 53, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [9967] = 3, - ACTIONS(2857), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 53, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [10033] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10101] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(1427), 1, - sym_lambda_literal, - STATE(1667), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4474), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10247] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2678), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10383] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 53, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [10449] = 11, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_LPAREN, - ACTIONS(4472), 1, - sym__eq_custom, - ACTIONS(4480), 1, - anon_sym_SEMI, - STATE(530), 1, - sym__equal_sign, - STATE(1900), 1, - aux_sym_enum_entry_repeat1, - STATE(1901), 1, - sym__enum_entry_suffix, - STATE(1976), 1, - sym_enum_type_parameters, - ACTIONS(4482), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4478), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [10531] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_AMP, - ACTIONS(4455), 1, - sym__arrow_operator_custom, - ACTIONS(4457), 1, - sym__async_keyword_custom, - STATE(1683), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3187), 1, - sym__arrow_operator, - STATE(4991), 1, - sym__async_keyword, - STATE(6157), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2634), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2632), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10617] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_AMP, - ACTIONS(4455), 1, - sym__arrow_operator_custom, - ACTIONS(4457), 1, - sym__async_keyword_custom, - STATE(1683), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3187), 1, - sym__arrow_operator, - STATE(4991), 1, - sym__async_keyword, - STATE(6157), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2638), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2636), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2678), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10771] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [10839] = 11, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4466), 1, - anon_sym_LPAREN, - ACTIONS(4472), 1, - sym__eq_custom, - ACTIONS(4486), 1, - anon_sym_SEMI, - STATE(530), 1, - sym__equal_sign, - STATE(1971), 1, - aux_sym_enum_entry_repeat1, - STATE(1973), 1, - sym__enum_entry_suffix, - STATE(1976), 1, - sym_enum_type_parameters, - ACTIONS(4488), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4484), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [10921] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4494), 1, - anon_sym_LBRACK, - ACTIONS(4496), 1, - anon_sym_DOT, - STATE(2430), 1, - aux_sym_key_path_expression_repeat1, - STATE(2433), 1, - sym_simple_identifier, - ACTIONS(4490), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4492), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2432), 3, - sym__simple_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2705), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2699), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11003] = 6, - ACTIONS(4500), 1, - anon_sym_QMARK, - ACTIONS(4504), 1, - sym__as_custom, - STATE(1656), 1, - sym__quest, - ACTIONS(4502), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 50, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [11075] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1542), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6289), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11151] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_AMP, - ACTIONS(4455), 1, - sym__arrow_operator_custom, - ACTIONS(4457), 1, - sym__async_keyword_custom, - STATE(1683), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3187), 1, - sym__arrow_operator, - STATE(4991), 1, - sym__async_keyword, - STATE(6157), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11237] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4510), 1, - anon_sym_LBRACK, - ACTIONS(4512), 1, - anon_sym_DOT, - STATE(2359), 1, - aux_sym_key_path_expression_repeat1, - STATE(2382), 1, - sym_simple_identifier, - ACTIONS(4506), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4508), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2366), 3, - sym__simple_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2705), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2699), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11319] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, - anon_sym_DOT, - ACTIONS(4453), 1, - anon_sym_AMP, - ACTIONS(4455), 1, - sym__arrow_operator_custom, - ACTIONS(4457), 1, - sym__async_keyword_custom, - STATE(1683), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3187), 1, - sym__arrow_operator, - STATE(4991), 1, - sym__async_keyword, - STATE(6157), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2609), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2607), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11405] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 1, - sym__arrow_operator_custom, - ACTIONS(4457), 1, - sym__async_keyword_custom, - ACTIONS(4514), 1, - sym__immediate_quest, - STATE(1681), 1, - aux_sym_optional_type_repeat1, - STATE(3187), 1, - sym__arrow_operator, - STATE(4991), 1, - sym__async_keyword, - STATE(6157), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11489] = 5, - ACTIONS(4318), 1, - sym__immediate_quest, - STATE(1545), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [11559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 41, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11627] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1427), 1, - sym_lambda_literal, - STATE(1667), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4516), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11701] = 3, - ACTIONS(2887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [11766] = 4, - STATE(1612), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2789), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [11833] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1608), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6324), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2643), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [11908] = 3, - ACTIONS(4521), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4519), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [11973] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 33, - sym__implicit_semi, - sym__explicit_semi, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12050] = 3, - ACTIONS(4392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [12115] = 3, - ACTIONS(4525), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4523), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [12180] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 1, - anon_sym_LBRACK, - ACTIONS(4533), 1, - anon_sym_DOT, - STATE(2461), 1, - aux_sym_key_path_expression_repeat1, - STATE(2551), 1, - sym_simple_identifier, - ACTIONS(4527), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4529), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2459), 3, - sym__simple_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(2705), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2699), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12261] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 1, - sym__dot_custom, - STATE(1584), 1, - aux_sym_user_type_repeat1, - STATE(4544), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12334] = 3, - ACTIONS(2871), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [12399] = 3, - ACTIONS(4540), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4538), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [12464] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 1, - sym__dot_custom, - STATE(1591), 1, - aux_sym_user_type_repeat1, - STATE(4544), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2680), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12537] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_DOT, - ACTIONS(4547), 1, - anon_sym_AMP, - ACTIONS(4549), 1, - sym__arrow_operator_custom, - ACTIONS(4551), 1, - sym__async_keyword_custom, - STATE(1801), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3204), 1, - sym__arrow_operator, - STATE(4881), 1, - sym__async_keyword, - STATE(6034), 1, - sym_throws, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2585), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2709), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12756] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4553), 1, - sym__dot_custom, - STATE(1584), 1, - aux_sym_user_type_repeat1, - STATE(4544), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2669), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12829] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2678), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [12963] = 8, - ACTIONS(4466), 1, - anon_sym_LPAREN, - ACTIONS(4472), 1, - sym__eq_custom, - STATE(530), 1, - sym__equal_sign, - STATE(1976), 1, - sym_enum_type_parameters, - STATE(2090), 1, - sym__enum_entry_suffix, - ACTIONS(4558), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4556), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [13038] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1600), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6273), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2643), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13113] = 3, - ACTIONS(4562), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4560), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [13178] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1597), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6324), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2653), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13253] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_DOT, - ACTIONS(4547), 1, - anon_sym_AMP, - ACTIONS(4549), 1, - sym__arrow_operator_custom, - ACTIONS(4551), 1, - sym__async_keyword_custom, - STATE(1801), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3204), 1, - sym__arrow_operator, - STATE(4881), 1, - sym__async_keyword, - STATE(6034), 1, - sym_throws, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2609), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2607), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13338] = 3, - ACTIONS(2849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [13403] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1606), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6273), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2618), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13478] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4549), 1, - sym__arrow_operator_custom, - ACTIONS(4551), 1, - sym__async_keyword_custom, - ACTIONS(4564), 1, - sym__immediate_quest, - STATE(1796), 1, - aux_sym_optional_type_repeat1, - STATE(3204), 1, - sym__arrow_operator, - STATE(4881), 1, - sym__async_keyword, - STATE(6034), 1, - sym_throws, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13561] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_DOT, - ACTIONS(4547), 1, - anon_sym_AMP, - ACTIONS(4549), 1, - sym__arrow_operator_custom, - ACTIONS(4551), 1, - sym__async_keyword_custom, - STATE(1801), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3204), 1, - sym__arrow_operator, - STATE(4881), 1, - sym__async_keyword, - STATE(6034), 1, - sym_throws, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2624), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2622), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13646] = 3, - ACTIONS(2879), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [13711] = 9, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(4386), 1, - sym_where_keyword, - ACTIONS(4570), 1, - sym__eq_custom, - STATE(411), 1, - sym__equal_sign, - STATE(1750), 1, - sym_type_constraints, - STATE(2109), 1, - sym_computed_property, - ACTIONS(4568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [13788] = 3, - ACTIONS(4574), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4572), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [13853] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1606), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6273), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 12, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2653), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13928] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2689), 40, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [13995] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1597), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6324), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2618), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14070] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_DOT, - ACTIONS(4547), 1, - anon_sym_AMP, - ACTIONS(4549), 1, - sym__arrow_operator_custom, - ACTIONS(4551), 1, - sym__async_keyword_custom, - STATE(1801), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3204), 1, - sym__arrow_operator, - STATE(4881), 1, - sym__async_keyword, - STATE(6034), 1, - sym_throws, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2638), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2636), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14155] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1443), 1, - sym_lambda_literal, - STATE(1756), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4576), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14228] = 3, - ACTIONS(2903), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 52, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [14293] = 5, - ACTIONS(4579), 1, - anon_sym_AMP, - STATE(1612), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 50, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [14362] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_DOT, - ACTIONS(4547), 1, - anon_sym_AMP, - ACTIONS(4549), 1, - sym__arrow_operator_custom, - ACTIONS(4551), 1, - sym__async_keyword_custom, - STATE(1801), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3204), 1, - sym__arrow_operator, - STATE(4881), 1, - sym__async_keyword, - STATE(6034), 1, - sym_throws, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2634), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2632), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14447] = 3, - ACTIONS(4584), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4582), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [14512] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(1443), 1, - sym_lambda_literal, - STATE(1756), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4586), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 34, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14589] = 3, - ACTIONS(4406), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 52, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [14654] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_AMP, - ACTIONS(4594), 1, - sym__arrow_operator_custom, - ACTIONS(4596), 1, - sym__async_keyword_custom, - STATE(1952), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3199), 1, - sym__arrow_operator, - STATE(4892), 1, - sym__async_keyword, - STATE(6127), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2638), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2636), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14738] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, - anon_sym_DOT, - ACTIONS(4600), 1, - anon_sym_AMP, - ACTIONS(4602), 1, - sym__arrow_operator_custom, - ACTIONS(4604), 1, - sym__async_keyword_custom, - STATE(1909), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3334), 1, - sym__arrow_operator, - STATE(4894), 1, - sym__async_keyword, - STATE(6123), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2609), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2607), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14822] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4606), 1, - sym__dot_custom, - STATE(1634), 1, - aux_sym_user_type_repeat1, - STATE(4635), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2680), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14894] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4602), 1, - sym__arrow_operator_custom, - ACTIONS(4604), 1, - sym__async_keyword_custom, - ACTIONS(4609), 1, - sym__immediate_quest, - STATE(1908), 1, - aux_sym_optional_type_repeat1, - STATE(3334), 1, - sym__arrow_operator, - STATE(4894), 1, - sym__async_keyword, - STATE(6123), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [14976] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, - anon_sym_DOT, - ACTIONS(4600), 1, - anon_sym_AMP, - ACTIONS(4602), 1, - sym__arrow_operator_custom, - ACTIONS(4604), 1, - sym__async_keyword_custom, - STATE(1909), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3334), 1, - sym__arrow_operator, - STATE(4894), 1, - sym__async_keyword, - STATE(6123), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2634), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2632), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15060] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1633), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6308), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2643), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15134] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, - anon_sym_DOT, - ACTIONS(4600), 1, - anon_sym_AMP, - ACTIONS(4602), 1, - sym__arrow_operator_custom, - ACTIONS(4604), 1, - sym__async_keyword_custom, - STATE(1909), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3334), 1, - sym__arrow_operator, - STATE(4894), 1, - sym__async_keyword, - STATE(6123), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2638), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2636), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4611), 1, - anon_sym_AMP, - STATE(1625), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15354] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1472), 1, - sym_lambda_literal, - STATE(1831), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(4614), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 39, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15426] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_AMP, - ACTIONS(4594), 1, - sym__arrow_operator_custom, - ACTIONS(4596), 1, - sym__async_keyword_custom, - STATE(1952), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3199), 1, - sym__arrow_operator, - STATE(4892), 1, - sym__async_keyword, - STATE(6127), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15510] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, - anon_sym_DOT, - ACTIONS(4600), 1, - anon_sym_AMP, - ACTIONS(4602), 1, - sym__arrow_operator_custom, - ACTIONS(4604), 1, - sym__async_keyword_custom, - STATE(1909), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3334), 1, - sym__arrow_operator, - STATE(4894), 1, - sym__async_keyword, - STATE(6123), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2624), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2622), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15594] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_AMP, - ACTIONS(4594), 1, - sym__arrow_operator_custom, - ACTIONS(4596), 1, - sym__async_keyword_custom, - STATE(1952), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3199), 1, - sym__arrow_operator, - STATE(4892), 1, - sym__async_keyword, - STATE(6127), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2624), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2622), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15744] = 3, - ACTIONS(2895), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [15808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2750), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2748), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15874] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1640), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6308), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2618), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [15948] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4617), 1, - sym__dot_custom, - STATE(1647), 1, - aux_sym_user_type_repeat1, - STATE(4635), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2669), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16020] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 51, - sym__dot_custom, - anon_sym_actor, - sym_integer_literal, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [16084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2762), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2760), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16150] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_AMP, - ACTIONS(4594), 1, - sym__arrow_operator_custom, - ACTIONS(4596), 1, - sym__async_keyword_custom, - STATE(1952), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3199), 1, - sym__arrow_operator, - STATE(4892), 1, - sym__async_keyword, - STATE(6127), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2634), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2632), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - sym__immediate_quest, - STATE(1644), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16304] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4594), 1, - sym__arrow_operator_custom, - ACTIONS(4596), 1, - sym__async_keyword_custom, - ACTIONS(4620), 1, - sym__immediate_quest, - STATE(1959), 1, - aux_sym_optional_type_repeat1, - STATE(3199), 1, - sym__arrow_operator, - STATE(4892), 1, - sym__async_keyword, - STATE(6127), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16386] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1640), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6308), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2653), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16460] = 4, - ACTIONS(4624), 1, - anon_sym_BANG, - ACTIONS(4626), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 50, - sym__eq_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [16526] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4590), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_AMP, - ACTIONS(4594), 1, - sym__arrow_operator_custom, - ACTIONS(4596), 1, - sym__async_keyword_custom, - STATE(1952), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3199), 1, - sym__arrow_operator, - STATE(4892), 1, - sym__async_keyword, - STATE(6127), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2609), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2607), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16610] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(1472), 1, - sym_lambda_literal, - STATE(1831), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(4628), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 34, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16686] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1662), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2738), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2736), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16754] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1625), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2789), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2787), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16822] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(656), 1, - sym__fn_call_lambda_arguments, - STATE(1458), 1, - sym_lambda_literal, - ACTIONS(4632), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16894] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 1, - sym__dot_custom, - STATE(1647), 1, - aux_sym_user_type_repeat1, - STATE(4635), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [16966] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2838), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2836), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17036] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17106] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2746), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2744), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17238] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, - anon_sym_DOT, - ACTIONS(4600), 1, - anon_sym_AMP, - ACTIONS(4602), 1, - sym__arrow_operator_custom, - ACTIONS(4604), 1, - sym__async_keyword_custom, - STATE(1909), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3334), 1, - sym__arrow_operator, - STATE(4894), 1, - sym__async_keyword, - STATE(6123), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17322] = 4, - ACTIONS(4642), 1, - sym__as_custom, - ACTIONS(4640), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 50, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [17388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2742), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2740), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2785), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2783), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17520] = 4, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(4646), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 50, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [17586] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(656), 1, - sym__fn_call_lambda_arguments, - STATE(1458), 1, - sym_lambda_literal, - ACTIONS(4650), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17662] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4654), 1, - anon_sym_LT, - STATE(1700), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17732] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2797), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2795), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17798] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2809), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2806), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17868] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2823), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2820), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [17938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4656), 1, - sym__immediate_quest, - STATE(1662), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2801), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2799), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18008] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 51, - sym__eq_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_async, - anon_sym_LT, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [18072] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2818), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2816), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18138] = 12, - ACTIONS(3174), 1, - aux_sym_simple_identifier_token1, - ACTIONS(4659), 1, - anon_sym_actor, - ACTIONS(4664), 1, - anon_sym_func, - ACTIONS(4667), 1, - anon_sym_init, - STATE(4600), 1, - sym_simple_identifier, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(6426), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4670), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(4662), 38, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_extension, - anon_sym_indirect, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [18220] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2758), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2756), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2754), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2752), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18352] = 3, - ACTIONS(2883), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [18416] = 3, - ACTIONS(2891), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [18480] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2766), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2764), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18546] = 3, - ACTIONS(2853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 51, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_actor, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [18610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2793), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2791), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2814), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2812), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18742] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 32, - sym__implicit_semi, - sym__explicit_semi, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18818] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2770), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2768), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2774), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2772), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [18950] = 5, - ACTIONS(4672), 1, - anon_sym_LT, - STATE(1872), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 11, - sym__dot_custom, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2832), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [19017] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2746), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2744), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19082] = 8, - ACTIONS(4386), 1, - sym_where_keyword, - ACTIONS(4676), 1, - anon_sym_COLON, - ACTIONS(4680), 1, - sym__eq_custom, - STATE(2008), 1, - sym_type_constraints, - STATE(3304), 1, - sym__equal_sign, - ACTIONS(4678), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4674), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [19155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2762), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2760), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19220] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1699), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2738), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2736), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19287] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1701), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6332), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2643), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19360] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1697), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2789), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2787), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19427] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19492] = 3, - ACTIONS(4684), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 50, - sym__eq_custom, - anon_sym_actor, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_DOT_DOT_DOT, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [19555] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1491), 1, - sym_lambda_literal, - STATE(1953), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4686), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19691] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4689), 1, - sym__dot_custom, - STATE(1702), 1, - aux_sym_user_type_repeat1, - STATE(4537), 1, - sym__dot, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2669), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19762] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - sym__immediate_quest, - STATE(1681), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19831] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4692), 1, - sym__dot_custom, - STATE(1688), 1, - aux_sym_user_type_repeat1, - STATE(4537), 1, - sym__dot, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2680), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19902] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(1499), 1, - sym_lambda_literal, - STATE(1905), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4695), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 32, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [19977] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20042] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2758), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2756), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20107] = 12, - ACTIONS(3174), 1, - aux_sym_simple_identifier_token1, - ACTIONS(4659), 1, - anon_sym_actor, - ACTIONS(4664), 1, - anon_sym_func, - ACTIONS(4667), 1, - anon_sym_init, - STATE(4563), 1, - sym_simple_identifier, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(6426), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4670), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(4662), 37, - anon_sym_async, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_extension, - anon_sym_indirect, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [20188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2814), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2812), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20253] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 32, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 1, - anon_sym_AMP, - STATE(1697), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2766), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2764), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20462] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4702), 1, - sym__immediate_quest, - STATE(1699), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2801), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2799), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20596] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1748), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6332), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2618), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20669] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4705), 1, - sym__dot_custom, - STATE(1702), 1, - aux_sym_user_type_repeat1, - STATE(4537), 1, - sym__dot, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20740] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(1491), 1, - sym_lambda_literal, - STATE(1953), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4708), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 32, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2742), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2740), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [20945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2693), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21075] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2785), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2783), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21140] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2891), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2889), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21205] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_AMP, - ACTIONS(4716), 1, - sym__arrow_operator_custom, - ACTIONS(4718), 1, - sym__async_keyword_custom, - STATE(1989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3437), 1, - sym__arrow_operator, - STATE(4898), 1, - sym__async_keyword, - STATE(6234), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2609), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2607), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21288] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2797), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2795), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21353] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2809), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2806), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21422] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4720), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 30, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21499] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2853), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2851), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21564] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1715), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6310), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2653), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21637] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_AMP, - ACTIONS(4716), 1, - sym__arrow_operator_custom, - ACTIONS(4718), 1, - sym__async_keyword_custom, - STATE(1989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3437), 1, - sym__arrow_operator, - STATE(4898), 1, - sym__async_keyword, - STATE(6234), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2624), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2622), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21720] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2879), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2877), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2895), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2893), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21850] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1499), 1, - sym_lambda_literal, - STATE(1905), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4722), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2818), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2816), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [21986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2883), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2881), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2871), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2869), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22116] = 7, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(4725), 1, - sym__eq_custom, - STATE(409), 1, - sym__equal_sign, - STATE(2110), 1, - sym_computed_property, - ACTIONS(4568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [22187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22252] = 8, - ACTIONS(4386), 1, - sym_where_keyword, - ACTIONS(4729), 1, - anon_sym_COLON, - ACTIONS(4733), 1, - sym__eq_custom, - STATE(2101), 1, - sym_type_constraints, - STATE(3451), 1, - sym__equal_sign, - ACTIONS(4731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4727), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [22325] = 6, - ACTIONS(4735), 1, - sym__dot_custom, - STATE(1733), 1, - aux_sym_user_type_repeat1, - STATE(4492), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 10, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2682), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [22394] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2823), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2820), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22463] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1715), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6310), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2618), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22536] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2903), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2901), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22731] = 4, - ACTIONS(4737), 1, - anon_sym_BANG, - ACTIONS(4626), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 49, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [22796] = 6, - ACTIONS(4735), 1, - sym__dot_custom, - STATE(1738), 1, - aux_sym_user_type_repeat1, - STATE(4492), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 10, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2671), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [22865] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2774), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2772), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [22930] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1728), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6310), 1, - sym_simple_identifier, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2643), 37, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2770), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2768), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2678), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23133] = 6, - ACTIONS(4739), 1, - sym__dot_custom, - STATE(1738), 1, - aux_sym_user_type_repeat1, - STATE(4492), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 10, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2731), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [23202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23267] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4742), 1, - anon_sym_LT, - STATE(1851), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23336] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4716), 1, - sym__arrow_operator_custom, - ACTIONS(4718), 1, - sym__async_keyword_custom, - ACTIONS(4744), 1, - sym__immediate_quest, - STATE(1983), 1, - aux_sym_optional_type_repeat1, - STATE(3437), 1, - sym__arrow_operator, - STATE(4898), 1, - sym__async_keyword, - STATE(6234), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2793), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2791), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23681] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4746), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 30, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23758] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2750), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2748), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23823] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1748), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6332), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2653), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [23896] = 11, - ACTIONS(4748), 1, - sym__immediate_quest, - ACTIONS(4750), 1, - sym__arrow_operator_custom, - ACTIONS(4752), 1, - sym__async_keyword_custom, - STATE(2019), 1, - aux_sym_optional_type_repeat1, - STATE(3285), 1, - sym__arrow_operator, - STATE(4988), 1, - sym__async_keyword, - STATE(6056), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2628), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [23975] = 7, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(4758), 1, - sym__eq_custom, - STATE(401), 1, - sym__equal_sign, - STATE(2148), 1, - sym_computed_property, - ACTIONS(4756), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4754), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [24046] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_AMP, - ACTIONS(4716), 1, - sym__arrow_operator_custom, - ACTIONS(4718), 1, - sym__async_keyword_custom, - STATE(1989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3437), 1, - sym__arrow_operator, - STATE(4898), 1, - sym__async_keyword, - STATE(6234), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2634), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2632), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24129] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_AMP, - ACTIONS(4716), 1, - sym__arrow_operator_custom, - ACTIONS(4718), 1, - sym__async_keyword_custom, - STATE(1989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3437), 1, - sym__arrow_operator, - STATE(4898), 1, - sym__async_keyword, - STATE(6234), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2638), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2636), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24212] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2838), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2836), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24281] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_AMP, - ACTIONS(4716), 1, - sym__arrow_operator_custom, - ACTIONS(4718), 1, - sym__async_keyword_custom, - STATE(1989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3437), 1, - sym__arrow_operator, - STATE(4898), 1, - sym__async_keyword, - STATE(6234), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24364] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 14, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2727), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2754), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2752), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24494] = 12, - ACTIONS(4750), 1, - sym__arrow_operator_custom, - ACTIONS(4752), 1, - sym__async_keyword_custom, - ACTIONS(4760), 1, - anon_sym_DOT, - ACTIONS(4762), 1, - anon_sym_AMP, - STATE(2151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3285), 1, - sym__arrow_operator, - STATE(4988), 1, - sym__async_keyword, - STATE(6056), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2624), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [24574] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4349), 1, - sym__as_custom, - ACTIONS(4353), 1, - anon_sym_QMARK, - ACTIONS(4764), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 8, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 28, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24654] = 12, - ACTIONS(4750), 1, - sym__arrow_operator_custom, - ACTIONS(4752), 1, - sym__async_keyword_custom, - ACTIONS(4760), 1, - anon_sym_DOT, - ACTIONS(4762), 1, - anon_sym_AMP, - STATE(2151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3285), 1, - sym__arrow_operator, - STATE(4988), 1, - sym__async_keyword, - STATE(6056), 1, - sym_throws, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [24734] = 12, - ACTIONS(4750), 1, - sym__arrow_operator_custom, - ACTIONS(4752), 1, - sym__async_keyword_custom, - ACTIONS(4760), 1, - anon_sym_DOT, - ACTIONS(4762), 1, - anon_sym_AMP, - STATE(2151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3285), 1, - sym__arrow_operator, - STATE(4988), 1, - sym__async_keyword, - STATE(6056), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2638), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [24814] = 12, - ACTIONS(4750), 1, - sym__arrow_operator_custom, - ACTIONS(4752), 1, - sym__async_keyword_custom, - ACTIONS(4760), 1, - anon_sym_DOT, - ACTIONS(4762), 1, - anon_sym_AMP, - STATE(2151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3285), 1, - sym__arrow_operator, - STATE(4988), 1, - sym__async_keyword, - STATE(6056), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2634), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [24894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [24958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4766), 1, - sym__dot_custom, - STATE(1776), 1, - aux_sym_user_type_repeat1, - STATE(4505), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2680), 39, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25028] = 3, - ACTIONS(4684), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 49, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [25090] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 12, - sym__dot_custom, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2781), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [25152] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(1532), 1, - sym_lambda_literal, - STATE(2018), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4769), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 31, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25226] = 12, - ACTIONS(4750), 1, - sym__arrow_operator_custom, - ACTIONS(4752), 1, - sym__async_keyword_custom, - ACTIONS(4760), 1, - anon_sym_DOT, - ACTIONS(4762), 1, - anon_sym_AMP, - STATE(2151), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3285), 1, - sym__arrow_operator, - STATE(4988), 1, - sym__async_keyword, - STATE(6056), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2609), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [25306] = 7, - ACTIONS(4386), 1, - sym_where_keyword, - ACTIONS(4777), 1, - sym__eq_custom, - STATE(2084), 1, - sym_type_constraints, - STATE(3319), 1, - sym__equal_sign, - ACTIONS(4775), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4773), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [25376] = 6, - ACTIONS(4783), 1, - sym__dot_custom, - STATE(1769), 1, - aux_sym_identifier_repeat1, - STATE(4774), 1, - sym__dot, - ACTIONS(4781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4779), 46, - anon_sym_actor, - sym_integer_literal, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [25444] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1790), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6275), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2643), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25516] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4786), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25656] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4788), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25732] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2774), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2772), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25796] = 3, - ACTIONS(4792), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4790), 49, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [25858] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4794), 1, - sym__dot_custom, - STATE(1842), 1, - aux_sym_user_type_repeat1, - STATE(4505), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2669), 39, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [25928] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4797), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26004] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4799), 1, - sym__immediate_quest, - STATE(1778), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2801), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2799), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26072] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 30, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26146] = 7, - ACTIONS(4386), 1, - sym_where_keyword, - ACTIONS(4806), 1, - sym__eq_custom, - STATE(2064), 1, - sym_type_constraints, - STATE(3273), 1, - sym__equal_sign, - ACTIONS(4804), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4802), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [26216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26280] = 6, - ACTIONS(4808), 1, - sym__dot_custom, - STATE(1782), 1, - aux_sym_user_type_repeat1, - STATE(4535), 1, - sym__dot, - ACTIONS(2731), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [26348] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4349), 1, - sym__as_custom, - ACTIONS(4353), 1, - anon_sym_QMARK, - ACTIONS(4811), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 8, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 28, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26428] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4813), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26504] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4815), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26580] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1786), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6275), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2653), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26652] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4817), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26792] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4819), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26868] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1786), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6275), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2618), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [26940] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4349), 1, - sym__as_custom, - ACTIONS(4353), 1, - anon_sym_QMARK, - ACTIONS(4821), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 8, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 28, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27020] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 30, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2891), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2889), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27286] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1778), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2738), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2736), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27352] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2838), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2836), 36, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27420] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4823), 1, - anon_sym_LT, - STATE(1913), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 36, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27556] = 5, - ACTIONS(4827), 1, - anon_sym_COMMA, - STATE(1800), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4830), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 47, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [27622] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1852), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2789), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2787), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27688] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4832), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27764] = 6, - ACTIONS(4834), 1, - sym__dot_custom, - STATE(1818), 1, - aux_sym_user_type_repeat1, - STATE(4535), 1, - sym__dot, - ACTIONS(2682), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [27832] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1828), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6420), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2643), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [27904] = 6, - ACTIONS(4836), 1, - sym__dot_custom, - STATE(1805), 1, - aux_sym_user_type_repeat1, - STATE(4632), 1, - sym__dot, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 46, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [27972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2746), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2744), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28036] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4349), 1, - sym__as_custom, - ACTIONS(4353), 1, - anon_sym_QMARK, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 8, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2742), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2740), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2853), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2851), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2785), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2783), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2879), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2877), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28370] = 5, - ACTIONS(4841), 1, - anon_sym_COMMA, - STATE(1800), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4843), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4839), 47, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [28436] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4845), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2797), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2795), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2809), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2806), 36, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2823), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2820), 36, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28712] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4349), 1, - sym__as_custom, - ACTIONS(4353), 1, - anon_sym_QMARK, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 8, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28790] = 6, - ACTIONS(4834), 1, - sym__dot_custom, - STATE(1782), 1, - aux_sym_user_type_repeat1, - STATE(4535), 1, - sym__dot, - ACTIONS(2671), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [28858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [28922] = 3, - ACTIONS(2319), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2321), 49, - anon_sym_actor, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [28984] = 6, - ACTIONS(4851), 1, - sym__dot_custom, - STATE(1769), 1, - aux_sym_identifier_repeat1, - STATE(4774), 1, - sym__dot, - ACTIONS(4849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4847), 46, - anon_sym_actor, - sym_integer_literal, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [29052] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2895), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2893), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29116] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 1, - sym__dot_custom, - STATE(1846), 1, - aux_sym_user_type_repeat1, - STATE(4501), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2669), 39, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2883), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2881), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29250] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2818), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2816), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2871), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2869), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29442] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1837), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6420), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2618), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29514] = 5, - ACTIONS(4841), 1, - anon_sym_COMMA, - STATE(1812), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4858), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4856), 47, - sym__eq_custom, - anon_sym_actor, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [29580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2758), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2756), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2754), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2752), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2903), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2901), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2766), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2764), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29900] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4564), 1, - sym__immediate_quest, - STATE(1796), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [29968] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2793), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2791), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30032] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1837), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6420), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2653), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30104] = 5, - ACTIONS(4860), 1, - anon_sym_LT, - STATE(2013), 1, - sym_type_arguments, - ACTIONS(2832), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [30170] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2814), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2812), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2770), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2768), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30362] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4862), 1, - sym__dot_custom, - STATE(1842), 1, - aux_sym_user_type_repeat1, - STATE(4505), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 39, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2678), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30496] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - sym__dot_custom, - STATE(1823), 1, - aux_sym_user_type_repeat1, - STATE(4501), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2680), 39, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30566] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1532), 1, - sym_lambda_literal, - STATE(2018), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4868), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30636] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - sym__dot_custom, - STATE(1846), 1, - aux_sym_user_type_repeat1, - STATE(4501), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 39, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30706] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4874), 1, - anon_sym_COLON, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30782] = 6, - ACTIONS(4851), 1, - sym__dot_custom, - STATE(1821), 1, - aux_sym_identifier_repeat1, - STATE(4774), 1, - sym__dot, - ACTIONS(4878), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4876), 46, - anon_sym_actor, - sym_integer_literal, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [30850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2762), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2760), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2750), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2748), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [30978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31042] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4880), 1, - anon_sym_AMP, - STATE(1852), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 41, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31110] = 5, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(2832), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 47, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [31176] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - anon_sym_self, - STATE(1856), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_self, - STATE(1857), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31312] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_self, - STATE(1857), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2920), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2918), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31380] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4893), 2, - sym_bang, - anon_sym_self, - STATE(1857), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2910), 8, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2905), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2853), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2851), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2818), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2816), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31642] = 3, - ACTIONS(4898), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4896), 48, - sym__eq_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [31703] = 3, - ACTIONS(4902), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4900), 48, - sym__eq_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [31764] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2750), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2748), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31827] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4906), 1, - anon_sym_SEMI, - STATE(1902), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4908), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4904), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [31894] = 3, - ACTIONS(4830), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 48, - sym__eq_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [31955] = 3, - ACTIONS(4912), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4910), 48, - sym__eq_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [32016] = 3, - ACTIONS(4916), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4914), 48, - sym__eq_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [32077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2762), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2760), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32140] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4918), 1, - anon_sym_LT, - STATE(2011), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32270] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32333] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 11, - sym__dot_custom, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2857), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [32394] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2891), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2889), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32457] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1874), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6298), 1, - sym_simple_identifier, - ACTIONS(2647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2650), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2655), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2653), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32591] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2814), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2812), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32654] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2774), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2772), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32717] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 48, - sym__eq_custom, - sym_where_keyword, - anon_sym_actor, - anon_sym_COLON, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [32778] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32841] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [32904] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 11, - sym__dot_custom, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2899), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [32965] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2678), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33028] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 11, - sym__dot_custom, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2875), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [33089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2770), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2768), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33152] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 1, - anon_sym_self, - STATE(1940), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33219] = 3, - ACTIONS(2781), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 47, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [33280] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - sym__immediate_quest, - STATE(1887), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2801), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2799), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2879), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2877), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33410] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4925), 1, - anon_sym_AMP, - STATE(1889), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2793), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2791), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2903), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2901), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2678), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33729] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4930), 1, - anon_sym_SEMI, - STATE(1932), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4932), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4928), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [33796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2814), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2812), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33859] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2770), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2768), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2766), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2764), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [33985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2774), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2772), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34048] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4936), 1, - anon_sym_SEMI, - STATE(1902), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4938), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4934), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [34115] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4942), 1, - anon_sym_SEMI, - STATE(1902), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4944), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4940), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [34182] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4948), 1, - anon_sym_SEMI, - STATE(1864), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4950), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4946), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [34249] = 5, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(1902), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4957), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4952), 46, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [34314] = 12, - ACTIONS(3174), 1, - aux_sym_simple_identifier_token1, - ACTIONS(4659), 1, - anon_sym_actor, - ACTIONS(4664), 1, - anon_sym_func, - ACTIONS(4667), 1, - anon_sym_init, - STATE(4636), 1, - sym_simple_identifier, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(6426), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4670), 4, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(4662), 35, - anon_sym_async, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_extension, - anon_sym_indirect, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [34393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2754), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2752), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34519] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4959), 1, - sym__dot_custom, - STATE(1906), 1, - aux_sym_user_type_repeat1, - STATE(4550), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 38, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2758), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2756), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34651] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1887), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2738), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2736), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34716] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1889), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2789), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2787), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34781] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34844] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1874), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6298), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2620), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2618), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [34915] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4964), 1, - anon_sym_SEMI, - STATE(1902), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4966), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4962), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [34982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35045] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - sym__dot_custom, - STATE(1906), 1, - aux_sym_user_type_repeat1, - STATE(4550), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2669), 38, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2762), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2760), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35177] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 1, - anon_sym_LT, - ACTIONS(2723), 1, - anon_sym_EQ, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2713), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2716), 9, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2711), 29, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35250] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 11, - sym__dot_custom, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2731), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [35311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2838), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2836), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35441] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4609), 1, - sym__immediate_quest, - STATE(1908), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2871), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2869), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35571] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4971), 1, - sym__dot_custom, - STATE(1914), 1, - aux_sym_user_type_repeat1, - STATE(4550), 1, - sym__dot, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2680), 38, - sym__arrow_operator_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35766] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2838), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2836), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35833] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35963] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36030] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1568), 1, - sym_lambda_literal, - STATE(1953), 1, - sym__fn_call_lambda_arguments, - ACTIONS(4974), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36099] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 1, - anon_sym_self, - STATE(1941), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2750), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2748), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36229] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(4981), 1, - anon_sym_SEMI, - STATE(1902), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(4983), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4979), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [36296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2818), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2816), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36359] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2746), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2744), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2742), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2740), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2785), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2783), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36548] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(4985), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 32, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36617] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4988), 1, - sym__immediate_quest, - STATE(1938), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2801), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2799), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36684] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_AMP, - STATE(1939), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36751] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 1, - anon_sym_self, - STATE(1941), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2920), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2918), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36818] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 1, - anon_sym_LBRACK, - ACTIONS(4997), 1, - anon_sym_QMARK, - ACTIONS(5000), 2, - sym_bang, - anon_sym_self, - STATE(1941), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2910), 8, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2905), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36889] = 6, - ACTIONS(5005), 1, - anon_sym_COLON, - ACTIONS(5007), 1, - anon_sym_LBRACE, - STATE(2285), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5009), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5003), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [36956] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2797), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2795), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37019] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2809), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2806), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37086] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2793), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2791), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37149] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2823), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2820), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37216] = 3, - ACTIONS(5013), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5011), 48, - sym__eq_custom, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [37277] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37340] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4620), 1, - sym__immediate_quest, - STATE(1959), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2766), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2764), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37470] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2823), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2820), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37537] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1939), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2789), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2787), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37602] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2754), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2752), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2883), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2881), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2758), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2756), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37791] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(1911), 1, - aux_sym__fn_call_lambda_arguments_repeat1, - STATE(6298), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(2645), 9, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2643), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37862] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2809), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2806), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [37992] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1938), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2738), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2736), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38057] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2746), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2744), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5015), 1, - anon_sym_LT, - STATE(2063), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38187] = 7, - ACTIONS(5017), 1, - anon_sym_AT, - ACTIONS(5020), 1, - anon_sym_final, - ACTIONS(5026), 1, - anon_sym_unowned, - ACTIONS(5023), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1972), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(4418), 39, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [38256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2742), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2740), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2785), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2783), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38382] = 11, - ACTIONS(5029), 1, - sym__immediate_quest, - ACTIONS(5031), 1, - sym__arrow_operator_custom, - ACTIONS(5033), 1, - sym__async_keyword_custom, - STATE(2223), 1, - aux_sym_optional_type_repeat1, - STATE(3221), 1, - sym__arrow_operator, - STATE(4958), 1, - sym__async_keyword, - STATE(6025), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [38459] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(1568), 1, - sym_lambda_literal, - STATE(1953), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5035), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 30, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2895), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2893), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 42, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 40, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2797), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2795), 39, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [38784] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(5041), 1, - anon_sym_SEMI, - STATE(1902), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5043), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5039), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [38851] = 7, - ACTIONS(5047), 1, - anon_sym_AT, - ACTIONS(5050), 1, - anon_sym_final, - ACTIONS(5056), 1, - anon_sym_unowned, - ACTIONS(5053), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1972), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5045), 39, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [38920] = 6, - ACTIONS(4464), 1, - anon_sym_COMMA, - ACTIONS(5061), 1, - anon_sym_SEMI, - STATE(1912), 1, - aux_sym_enum_entry_repeat1, - ACTIONS(5063), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5059), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [38987] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2818), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2816), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39049] = 3, - ACTIONS(5067), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5065), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [39109] = 3, - ACTIONS(5071), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5069), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [39169] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5073), 1, - anon_sym_self, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - STATE(1978), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(2920), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2918), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39235] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5078), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(5081), 2, - sym_bang, - anon_sym_self, - STATE(1978), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(2910), 8, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2905), 36, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39305] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5084), 1, - anon_sym_AMP, - STATE(1979), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2585), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2581), 38, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39371] = 3, - ACTIONS(5089), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5087), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [39431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_DOT, - STATE(1982), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2940), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2938), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5091), 1, - anon_sym_DOT, - STATE(1982), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39563] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1990), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2738), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2736), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39627] = 3, - ACTIONS(5096), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5094), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [39687] = 3, - ACTIONS(5100), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5098), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [39747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5073), 1, - anon_sym_self, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - STATE(1978), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5102), 1, - anon_sym_LT, - STATE(2135), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [39879] = 12, - ACTIONS(5031), 1, - sym__arrow_operator_custom, - ACTIONS(5033), 1, - sym__async_keyword_custom, - ACTIONS(5104), 1, - anon_sym_DOT, - ACTIONS(5106), 1, - anon_sym_AMP, - STATE(2410), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3221), 1, - sym__arrow_operator, - STATE(4958), 1, - sym__async_keyword, - STATE(6025), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2609), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [39957] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1979), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2789), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2787), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40021] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5108), 1, - sym__immediate_quest, - STATE(1990), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2801), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2799), 38, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40087] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5111), 1, - anon_sym_self, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - STATE(1977), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40153] = 3, - ACTIONS(5115), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5113), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [40213] = 5, - ACTIONS(5119), 1, - anon_sym_COMMA, - STATE(2033), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5117), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [40277] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2823), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2820), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2903), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2901), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40405] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4744), 1, - sym__immediate_quest, - STATE(1983), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2628), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2626), 38, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40471] = 3, - ACTIONS(2857), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 47, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [40531] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2809), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2806), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40597] = 3, - ACTIONS(2875), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [40657] = 3, - ACTIONS(2899), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [40717] = 3, - ACTIONS(5125), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5123), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [40777] = 3, - ACTIONS(5129), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5127), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [40837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2678), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40899] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2871), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2869), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [40961] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2883), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2881), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2895), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2893), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41147] = 5, - ACTIONS(5135), 1, - sym__eq_custom, - STATE(3378), 1, - sym__equal_sign, - ACTIONS(5133), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5131), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [41211] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2797), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2795), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41273] = 5, - ACTIONS(4748), 1, - sym__immediate_quest, - STATE(2019), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2628), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [41337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41399] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2879), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2877), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41461] = 3, - ACTIONS(2857), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [41521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2758), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2756), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41645] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(656), 1, - sym__fn_call_lambda_arguments, - STATE(1595), 1, - sym_lambda_literal, - ACTIONS(5137), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2842), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2840), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41713] = 3, - ACTIONS(5142), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5140), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [41773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2754), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2752), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41835] = 5, - ACTIONS(5144), 1, - sym__immediate_quest, - STATE(2036), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2738), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [41899] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2785), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2783), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [41961] = 3, - ACTIONS(5148), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5146), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [42021] = 6, - ACTIONS(5150), 1, - sym__dot_custom, - STATE(1805), 1, - aux_sym_user_type_repeat1, - STATE(4632), 1, - sym__dot, - ACTIONS(2671), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 44, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [42087] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2742), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2740), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42149] = 12, - ACTIONS(5031), 1, - sym__arrow_operator_custom, - ACTIONS(5033), 1, - sym__async_keyword_custom, - ACTIONS(5104), 1, - anon_sym_DOT, - ACTIONS(5106), 1, - anon_sym_AMP, - STATE(2410), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3221), 1, - sym__arrow_operator, - STATE(4958), 1, - sym__async_keyword, - STATE(6025), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2634), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [42227] = 12, - ACTIONS(5031), 1, - sym__arrow_operator_custom, - ACTIONS(5033), 1, - sym__async_keyword_custom, - ACTIONS(5104), 1, - anon_sym_DOT, - ACTIONS(5106), 1, - anon_sym_AMP, - STATE(2410), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3221), 1, - sym__arrow_operator, - STATE(4958), 1, - sym__async_keyword, - STATE(6025), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2638), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [42305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2766), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2764), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42367] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42429] = 12, - ACTIONS(5031), 1, - sym__arrow_operator_custom, - ACTIONS(5033), 1, - sym__async_keyword_custom, - ACTIONS(5104), 1, - anon_sym_DOT, - ACTIONS(5106), 1, - anon_sym_AMP, - STATE(2410), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3221), 1, - sym__arrow_operator, - STATE(4958), 1, - sym__async_keyword, - STATE(6025), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2624), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [42507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2746), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2744), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42569] = 3, - ACTIONS(5154), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5152), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [42629] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2853), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2851), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42691] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1578), 1, - sym_lambda_literal, - STATE(2344), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5156), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3161), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3159), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42759] = 5, - ACTIONS(5119), 1, - anon_sym_COMMA, - STATE(2098), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5159), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [42823] = 4, - ACTIONS(5163), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3495), 9, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3493), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [42885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2891), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2889), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42947] = 5, - ACTIONS(5166), 1, - sym__immediate_quest, - STATE(2036), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2801), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [43011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43073] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43135] = 6, - ACTIONS(5150), 1, - sym__dot_custom, - STATE(2022), 1, - aux_sym_user_type_repeat1, - STATE(4632), 1, - sym__dot, - ACTIONS(2682), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 44, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [43201] = 3, - ACTIONS(2731), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [43261] = 3, - ACTIONS(5171), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5169), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [43321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43383] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43445] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_EQ, - STATE(656), 1, - sym__fn_call_lambda_arguments, - STATE(1595), 1, - sym_lambda_literal, - ACTIONS(5173), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2840), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2862), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2859), 29, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2678), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43579] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2774), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2772), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2793), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2791), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2932), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2930), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43827] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2903), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2901), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43951] = 6, - ACTIONS(5177), 1, - sym__dot_custom, - STATE(2074), 1, - aux_sym_user_type_repeat1, - STATE(4540), 1, - sym__dot, - ACTIONS(2671), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [44017] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2871), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2869), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44203] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5179), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 31, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_DOT, - STATE(1982), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44337] = 12, - ACTIONS(5031), 1, - sym__arrow_operator_custom, - ACTIONS(5033), 1, - sym__async_keyword_custom, - ACTIONS(5104), 1, - anon_sym_DOT, - ACTIONS(5106), 1, - anon_sym_AMP, - STATE(2410), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3221), 1, - sym__arrow_operator, - STATE(4958), 1, - sym__async_keyword, - STATE(6025), 1, - sym_throws, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [44415] = 3, - ACTIONS(2899), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 47, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [44475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2779), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44537] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_DOT, - STATE(1981), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44603] = 6, - ACTIONS(5186), 2, - anon_sym_actor, - anon_sym_AT, - ACTIONS(5182), 3, - aux_sym_simple_identifier_token1, - anon_sym_in, - anon_sym_self, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5184), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(5191), 5, - sym_default_keyword, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5189), 34, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [44669] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44731] = 5, - ACTIONS(5197), 1, - sym__eq_custom, - STATE(3246), 1, - sym__equal_sign, - ACTIONS(5195), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5193), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [44795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2883), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2881), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [44981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45043] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2895), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2893), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2750), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2748), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45167] = 5, - ACTIONS(5199), 1, - anon_sym_LT, - STATE(2342), 1, - sym_type_arguments, - ACTIONS(2832), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [45231] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2828), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2826), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2879), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2877), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45359] = 6, - ACTIONS(5201), 1, - sym__dot_custom, - STATE(2074), 1, - aux_sym_user_type_repeat1, - STATE(4540), 1, - sym__dot, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [45425] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - anon_sym_EQ, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2721), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(2838), 10, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2836), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45491] = 3, - ACTIONS(4781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4779), 47, - sym__dot_custom, - anon_sym_actor, - sym_integer_literal, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [45551] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3491), 10, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3489), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [45611] = 3, - ACTIONS(5206), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5204), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [45671] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2762), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2760), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2853), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2851), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45857] = 11, - ACTIONS(5208), 1, - sym__immediate_quest, - ACTIONS(5210), 1, - sym__arrow_operator_custom, - ACTIONS(5212), 1, - sym__async_keyword_custom, - STATE(2413), 1, - aux_sym_optional_type_repeat1, - STATE(3414), 1, - sym__arrow_operator, - STATE(4952), 1, - sym__async_keyword, - STATE(6008), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [45933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2955), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2953), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45995] = 5, - ACTIONS(5218), 1, - sym__eq_custom, - STATE(3291), 1, - sym__equal_sign, - ACTIONS(5216), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5214), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46059] = 5, - ACTIONS(5007), 1, - anon_sym_LBRACE, - STATE(2187), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5222), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5220), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46185] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46247] = 3, - ACTIONS(2875), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 47, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46307] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5224), 1, - anon_sym_LT, - STATE(2133), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46373] = 3, - ACTIONS(5228), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5226), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46433] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2814), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2812), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46495] = 6, - ACTIONS(5177), 1, - sym__dot_custom, - STATE(2052), 1, - aux_sym_user_type_repeat1, - STATE(4540), 1, - sym__dot, - ACTIONS(2682), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46623] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3523), 10, - sym_default_keyword, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3521), 39, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [46683] = 3, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 47, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46743] = 3, - ACTIONS(5232), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5230), 47, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_SEMI, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2770), 11, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - ACTIONS(2768), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46865] = 5, - ACTIONS(5236), 1, - anon_sym_COMMA, - STATE(2098), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5239), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5234), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [46929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46991] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2951), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2949), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47053] = 5, - ACTIONS(5245), 1, - sym__eq_custom, - STATE(3315), 1, - sym__equal_sign, - ACTIONS(5243), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5241), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2891), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2889), 40, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 38, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2895), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2893), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47364] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 46, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47423] = 3, - ACTIONS(5249), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5247), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47543] = 3, - ACTIONS(5253), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47602] = 3, - ACTIONS(5253), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47722] = 12, - ACTIONS(5210), 1, - sym__arrow_operator_custom, - ACTIONS(5212), 1, - sym__async_keyword_custom, - ACTIONS(5255), 1, - anon_sym_DOT, - ACTIONS(5257), 1, - anon_sym_AMP, - STATE(2473), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3414), 1, - sym__arrow_operator, - STATE(4952), 1, - sym__async_keyword, - STATE(6008), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2609), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47799] = 12, - ACTIONS(5210), 1, - sym__arrow_operator_custom, - ACTIONS(5212), 1, - sym__async_keyword_custom, - ACTIONS(5255), 1, - anon_sym_DOT, - ACTIONS(5257), 1, - anon_sym_AMP, - STATE(2473), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3414), 1, - sym__arrow_operator, - STATE(4952), 1, - sym__async_keyword, - STATE(6008), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2634), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47876] = 5, - ACTIONS(5259), 1, - anon_sym_LT, - STATE(2428), 1, - sym_type_arguments, - ACTIONS(2832), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [47939] = 12, - ACTIONS(5210), 1, - sym__arrow_operator_custom, - ACTIONS(5212), 1, - sym__async_keyword_custom, - ACTIONS(5255), 1, - anon_sym_DOT, - ACTIONS(5257), 1, - anon_sym_AMP, - STATE(2473), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3414), 1, - sym__arrow_operator, - STATE(4952), 1, - sym__async_keyword, - STATE(6008), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2638), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [48016] = 12, - ACTIONS(5210), 1, - sym__arrow_operator_custom, - ACTIONS(5212), 1, - sym__async_keyword_custom, - ACTIONS(5255), 1, - anon_sym_DOT, - ACTIONS(5257), 1, - anon_sym_AMP, - STATE(2473), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3414), 1, - sym__arrow_operator, - STATE(4952), 1, - sym__async_keyword, - STATE(6008), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2624), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [48093] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1622), 1, - sym_lambda_literal, - STATE(2421), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5261), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3161), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3159), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48160] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5267), 1, - anon_sym_QMARK, - ACTIONS(5270), 2, - sym_bang, - anon_sym_self, - STATE(2118), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2910), 8, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2905), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48229] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5273), 1, - anon_sym_self, - STATE(2118), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2920), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2918), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48294] = 12, - ACTIONS(5210), 1, - sym__arrow_operator_custom, - ACTIONS(5212), 1, - sym__async_keyword_custom, - ACTIONS(5255), 1, - anon_sym_DOT, - ACTIONS(5257), 1, - anon_sym_AMP, - STATE(2473), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3414), 1, - sym__arrow_operator, - STATE(4952), 1, - sym__async_keyword, - STATE(6008), 1, - sym_throws, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [48371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48432] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48493] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4347), 1, - anon_sym_DOT, - STATE(2139), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48558] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4347), 1, - anon_sym_DOT, - STATE(2154), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48623] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5275), 1, - anon_sym_LT, - STATE(2338), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2903), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2901), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2871), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2869), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48810] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2883), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2881), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48993] = 6, - ACTIONS(5277), 1, - sym__dot_custom, - STATE(2150), 1, - aux_sym_user_type_repeat1, - STATE(4547), 1, - sym__dot, - ACTIONS(2682), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [49058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5273), 1, - anon_sym_self, - STATE(2118), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49184] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5279), 1, - anon_sym_self, - STATE(2119), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3539), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2879), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2877), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2853), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2851), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49495] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5281), 1, - anon_sym_DOT, - STATE(2139), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49560] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2891), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2889), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49621] = 3, - ACTIONS(5286), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5284), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [49680] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5288), 1, - anon_sym_self, - STATE(2174), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49745] = 3, - ACTIONS(2879), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [49804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5290), 1, - anon_sym_self, - STATE(2164), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49869] = 5, - ACTIONS(5292), 1, - anon_sym_AMP, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [49932] = 3, - ACTIONS(5297), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5295), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [49991] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2932), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2930), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50052] = 3, - ACTIONS(5301), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5299), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50111] = 3, - ACTIONS(2871), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50170] = 6, - ACTIONS(5277), 1, - sym__dot_custom, - STATE(2170), 1, - aux_sym_user_type_repeat1, - STATE(4547), 1, - sym__dot, - ACTIONS(2671), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50235] = 4, - STATE(2145), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2789), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50357] = 3, - ACTIONS(2903), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50416] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4347), 1, - anon_sym_DOT, - STATE(2139), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2940), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2938), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50481] = 3, - ACTIONS(5305), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5303), 46, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2729), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50601] = 3, - ACTIONS(5309), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5307), 46, - anon_sym_actor, - anon_sym_COMMA, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50782] = 3, - ACTIONS(2887), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50841] = 3, - ACTIONS(2849), 3, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [50900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50961] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 46, - anon_sym_actor, - anon_sym_async, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [51020] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5311), 1, - anon_sym_LBRACK, - ACTIONS(5314), 1, - anon_sym_QMARK, - ACTIONS(5317), 2, - sym_bang, - anon_sym_self, - STATE(2164), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2910), 8, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2905), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51211] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2955), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2953), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51333] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2676), 11, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2678), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51394] = 6, - ACTIONS(5320), 1, - sym__dot_custom, - STATE(2170), 1, - aux_sym_user_type_repeat1, - STATE(4547), 1, - sym__dot, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [51459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2951), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2949), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51581] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 39, - sym__arrow_operator_custom, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__throws_keyword, - sym__rethrows_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__async_keyword_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51642] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5290), 1, - anon_sym_self, - STATE(2164), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2920), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2918), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3056), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3053), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51767] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5323), 1, - anon_sym_LT, - STATE(2362), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51831] = 3, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [51889] = 3, - ACTIONS(5327), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5325), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [51947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 39, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3145), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3143), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2961), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2959), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52127] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3149), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3147), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52187] = 3, - ACTIONS(5331), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5329), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52245] = 3, - ACTIONS(5335), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5333), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52303] = 3, - ACTIONS(5339), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5337), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52361] = 3, - ACTIONS(5343), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5341), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52419] = 3, - ACTIONS(5347), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5345), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52477] = 3, - ACTIONS(5351), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5349), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52535] = 3, - ACTIONS(5355), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5353), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52593] = 3, - ACTIONS(5359), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5357), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52651] = 3, - ACTIONS(5363), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5361), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52709] = 3, - ACTIONS(5367), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5365), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52767] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3153), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3151), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52885] = 5, - ACTIONS(5029), 1, - sym__immediate_quest, - STATE(2223), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [52947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3157), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3155), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53007] = 3, - ACTIONS(5371), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5369), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53065] = 3, - ACTIONS(5375), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5373), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53123] = 3, - ACTIONS(5379), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5377), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53181] = 3, - ACTIONS(5383), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5381), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53239] = 3, - ACTIONS(5387), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5385), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53297] = 3, - ACTIONS(5391), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5389), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53355] = 3, - ACTIONS(5395), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5393), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53413] = 3, - ACTIONS(5399), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5397), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53471] = 3, - ACTIONS(5403), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5401), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53529] = 3, - ACTIONS(5407), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5405), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53587] = 3, - ACTIONS(5411), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5409), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53645] = 3, - ACTIONS(5415), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5413), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2955), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2953), 39, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3089), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3087), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53823] = 3, - ACTIONS(5419), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5417), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53881] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3045), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3043), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53941] = 3, - ACTIONS(5423), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5421), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [53999] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54059] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54119] = 3, - ACTIONS(5427), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5425), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54177] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3017), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3015), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54297] = 3, - ACTIONS(5431), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5429), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54355] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_LBRACK, - ACTIONS(5436), 1, - anon_sym_QMARK, - ACTIONS(5439), 2, - sym_bang, - anon_sym_self, - STATE(2220), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2910), 8, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2905), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54423] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5442), 1, - anon_sym_self, - STATE(2220), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2920), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2918), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54487] = 3, - ACTIONS(5446), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5444), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54545] = 5, - ACTIONS(5448), 1, - sym__immediate_quest, - STATE(2343), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54607] = 3, - ACTIONS(5452), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5450), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54665] = 3, - ACTIONS(5456), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5454), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54723] = 3, - ACTIONS(5427), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5425), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54781] = 3, - ACTIONS(5460), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5458), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54899] = 3, - ACTIONS(5464), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5462), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [54957] = 3, - ACTIONS(3192), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [55015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2965), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2963), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55075] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(768), 1, - sym__fn_call_lambda_arguments, - STATE(1682), 1, - sym_lambda_literal, - ACTIONS(5466), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3161), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3159), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55141] = 3, - ACTIONS(5471), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5469), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [55199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3029), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3027), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3041), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3039), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3025), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3023), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3065), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3063), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3021), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3019), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55499] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3001), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2999), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55619] = 3, - ACTIONS(5475), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5473), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [55677] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3033), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3031), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55797] = 3, - ACTIONS(5479), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5477), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [55855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2997), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2995), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2993), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2991), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3037), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3035), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56095] = 3, - ACTIONS(5483), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5481), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56153] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2977), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2975), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56213] = 3, - ACTIONS(5487), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5485), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56271] = 3, - ACTIONS(5491), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5489), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3050), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3047), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56389] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2985), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2983), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56449] = 3, - ACTIONS(5495), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5493), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3005), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3003), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56567] = 3, - ACTIONS(5499), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5497), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56625] = 3, - ACTIONS(5503), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5501), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56683] = 3, - ACTIONS(5507), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5505), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3009), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3007), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56801] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3013), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3011), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56861] = 3, - ACTIONS(5511), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5509), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56919] = 3, - ACTIONS(5515), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5513), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [56977] = 3, - ACTIONS(2883), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57035] = 3, - ACTIONS(5519), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5517), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57093] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3061), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3059), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57153] = 3, - ACTIONS(2895), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57211] = 3, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5521), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57269] = 3, - ACTIONS(5503), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5501), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57327] = 3, - ACTIONS(5527), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5525), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57385] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2981), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2979), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57445] = 3, - ACTIONS(5531), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5529), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57503] = 19, - ACTIONS(189), 1, - anon_sym_unowned, - ACTIONS(193), 1, - sym_default_keyword, - ACTIONS(5533), 1, - anon_sym_RBRACE, - ACTIONS(5535), 1, - anon_sym_case, - ACTIONS(5541), 1, - anon_sym_AT, - ACTIONS(5543), 1, - sym_property_behavior_modifier, - ACTIONS(5551), 1, - anon_sym_final, - STATE(5991), 1, - sym_modifiers, - ACTIONS(5549), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2323), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(187), 3, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(191), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5539), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5537), 4, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - ACTIONS(5545), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(5547), 5, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(2902), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - STATE(2747), 8, - sym__non_local_scope_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_parameter_modifier, - aux_sym_modifiers_repeat1, - [57593] = 3, - ACTIONS(5555), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5553), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57651] = 3, - ACTIONS(2853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57709] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2449), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2447), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57769] = 3, - ACTIONS(5559), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5557), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57827] = 3, - ACTIONS(5563), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5561), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57885] = 3, - ACTIONS(5567), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5565), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [57943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2989), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2987), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58003] = 3, - ACTIONS(5571), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5569), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58061] = 3, - ACTIONS(5575), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5573), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58119] = 3, - ACTIONS(2891), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58177] = 3, - ACTIONS(5579), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5577), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58235] = 3, - ACTIONS(5583), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5581), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2951), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2949), 39, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58353] = 3, - ACTIONS(5587), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5585), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58411] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DOT, - STATE(2314), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58475] = 3, - ACTIONS(5591), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5589), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58533] = 3, - ACTIONS(5595), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5593), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58591] = 3, - ACTIONS(5599), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5597), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58649] = 3, - ACTIONS(5603), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5601), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58707] = 3, - ACTIONS(5607), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5605), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58765] = 3, - ACTIONS(5611), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5609), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58823] = 3, - ACTIONS(5615), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5613), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [58881] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3069), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3067), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58941] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DOT, - STATE(2310), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59005] = 3, - ACTIONS(5619), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5617), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59063] = 19, - ACTIONS(189), 1, - anon_sym_unowned, - ACTIONS(193), 1, - sym_default_keyword, - ACTIONS(5535), 1, - anon_sym_case, - ACTIONS(5541), 1, - anon_sym_AT, - ACTIONS(5543), 1, - sym_property_behavior_modifier, - ACTIONS(5551), 1, - anon_sym_final, - ACTIONS(5621), 1, - anon_sym_RBRACE, - STATE(5991), 1, - sym_modifiers, - ACTIONS(5549), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2323), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(187), 3, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(191), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5539), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5537), 4, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - ACTIONS(5545), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(5547), 5, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(2902), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - STATE(2747), 8, - sym__non_local_scope_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_parameter_modifier, - aux_sym_modifiers_repeat1, - [59153] = 3, - ACTIONS(5625), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5623), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59211] = 3, - ACTIONS(5629), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5627), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59269] = 3, - ACTIONS(2875), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59327] = 3, - ACTIONS(5633), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5631), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59385] = 3, - ACTIONS(2899), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59443] = 3, - ACTIONS(5637), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5635), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59501] = 3, - ACTIONS(5641), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5639), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2932), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2930), 39, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59619] = 3, - ACTIONS(5645), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5643), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59677] = 3, - ACTIONS(5649), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5647), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59735] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5651), 1, - anon_sym_DOT, - STATE(2310), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59799] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3141), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3139), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59859] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5442), 1, - anon_sym_self, - STATE(2220), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59923] = 3, - ACTIONS(5656), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5654), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [59981] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_DOT, - STATE(2310), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2940), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2938), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60045] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5658), 1, - anon_sym_self, - STATE(2221), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2926), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2924), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60109] = 3, - ACTIONS(5662), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5660), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [60167] = 3, - ACTIONS(5666), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5664), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [60225] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60285] = 3, - ACTIONS(5670), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5668), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [60343] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1735), 1, - sym_lambda_literal, - STATE(2487), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(5672), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(3161), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3159), 36, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60409] = 3, - ACTIONS(5677), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5675), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [60467] = 3, - ACTIONS(5423), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5421), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [60525] = 19, - ACTIONS(5679), 1, - anon_sym_RBRACE, - ACTIONS(5681), 1, - anon_sym_case, - ACTIONS(5690), 1, - anon_sym_AT, - ACTIONS(5693), 1, - sym_property_behavior_modifier, - ACTIONS(5705), 1, - anon_sym_final, - ACTIONS(5714), 1, - anon_sym_unowned, - ACTIONS(5717), 1, - sym_default_keyword, - STATE(5991), 1, - sym_modifiers, - ACTIONS(5702), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(2323), 2, - sym_switch_entry, - aux_sym_switch_statement_repeat1, - ACTIONS(5687), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(5708), 3, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(5711), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5684), 4, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - ACTIONS(5696), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(5699), 5, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(2902), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - STATE(2747), 8, - sym__non_local_scope_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_parameter_modifier, - aux_sym_modifiers_repeat1, - [60615] = 3, - ACTIONS(5722), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5720), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [60673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3073), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3071), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3077), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3075), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60793] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3137), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3135), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3081), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3079), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60913] = 3, - ACTIONS(5726), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5724), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [60971] = 3, - ACTIONS(5730), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5728), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61029] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3133), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3131), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61149] = 3, - ACTIONS(5734), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5732), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3129), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3127), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3085), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3083), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61327] = 3, - ACTIONS(5738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5736), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61385] = 3, - ACTIONS(5742), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5740), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61503] = 3, - ACTIONS(3188), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3093), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3091), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61621] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61681] = 3, - ACTIONS(2857), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 45, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61739] = 5, - ACTIONS(5744), 1, - sym__immediate_quest, - STATE(2343), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2801), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61801] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3097), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3095), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61861] = 3, - ACTIONS(5749), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5747), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [61919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3101), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3099), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [61979] = 3, - ACTIONS(5730), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5728), 45, - anon_sym_actor, - anon_sym_async, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_precedencegroup, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [62037] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3105), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3103), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3109), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3107), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62157] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3125), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3123), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62217] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3121), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3119), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62277] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3117), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3115), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2973), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2971), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3113), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3111), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3113), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3111), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2961), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2959), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3149), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3147), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62693] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_DOT, - STATE(2409), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2932), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2930), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3021), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3019), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62874] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3029), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3027), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [62992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3017), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3015), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63051] = 4, - ACTIONS(5753), 1, - anon_sym_operator, - ACTIONS(5755), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5751), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [63110] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_DOT, - STATE(2402), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63173] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3013), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3011), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2985), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2983), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63409] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3037), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3035), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63468] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3009), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3007), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63527] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1770), 1, - sym_lambda_literal, - STATE(2569), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5757), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3161), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3159), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2981), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2979), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3001), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2999), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3005), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3003), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63828] = 7, - ACTIONS(5760), 1, - anon_sym_AT, - ACTIONS(5763), 1, - anon_sym_final, - ACTIONS(5769), 1, - anon_sym_unowned, - ACTIONS(5766), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2378), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5045), 35, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [63893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2993), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2991), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [63952] = 5, - ACTIONS(5208), 1, - sym__immediate_quest, - STATE(2413), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [64013] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64072] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5772), 1, - anon_sym_LT, - STATE(2522), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64135] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3105), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3103), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2973), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2971), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64253] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3077), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3075), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3153), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3151), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64371] = 3, - ACTIONS(2871), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [64428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3073), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3071), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64487] = 3, - ACTIONS(2849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [64544] = 3, - ACTIONS(2879), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [64601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3061), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3059), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3141), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3139), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64719] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 1, - anon_sym_DOT, - STATE(2393), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64782] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_DOT, - STATE(2393), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2940), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2938), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3069), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3067), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64904] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [64963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3157), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3155), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65022] = 4, - ACTIONS(5777), 1, - anon_sym_LPAREN, - ACTIONS(3493), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3495), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [65081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3041), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3039), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65140] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3089), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3087), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3081), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3079), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65258] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_DOT, - STATE(2409), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2940), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2938), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65321] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3145), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3143), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65380] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65439] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3033), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3031), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65498] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2965), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2963), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65557] = 3, - ACTIONS(2903), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [65614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3109), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3107), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65673] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5779), 1, - anon_sym_DOT, - STATE(2409), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65736] = 4, - STATE(2445), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2789), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [65795] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1804), 1, - sym_lambda_literal, - STATE(2683), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5782), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3161), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3159), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2951), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2949), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [65919] = 5, - ACTIONS(5785), 1, - sym__immediate_quest, - STATE(2442), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [65980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66039] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3137), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3135), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66098] = 3, - ACTIONS(2887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [66155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3093), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3091), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66214] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3117), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3115), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66273] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3056), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3053), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66391] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3097), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3095), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66450] = 4, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5787), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [66509] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3045), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3043), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2449), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2447), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3133), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3131), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66686] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3050), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3047), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66745] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2997), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2995), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66804] = 3, - ACTIONS(2857), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [66861] = 3, - ACTIONS(2899), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [66918] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_DOT, - STATE(2393), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [66981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2977), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2975), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67040] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_DOT, - STATE(2394), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67103] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5793), 1, - anon_sym_LT, - STATE(2463), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3129), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3127), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67225] = 3, - ACTIONS(2875), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [67282] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2955), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2953), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67341] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3085), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3083), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67400] = 3, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 44, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [67457] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3125), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3123), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2955), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2953), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3121), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3119), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67634] = 5, - ACTIONS(5795), 1, - sym__immediate_quest, - STATE(2442), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2801), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [67695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2989), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2987), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67813] = 5, - ACTIONS(5798), 1, - anon_sym_AMP, - STATE(2445), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [67874] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2932), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2930), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [67992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3065), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3063), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2951), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2949), 37, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3025), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3023), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68228] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3101), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3099), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3133), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3131), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2973), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2971), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68461] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3539), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68521] = 4, - ACTIONS(5801), 1, - anon_sym_operator, - ACTIONS(5755), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5751), 42, - anon_sym_actor, - anon_sym_async, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [68579] = 3, - ACTIONS(2849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [68635] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - anon_sym_DOT, - STATE(2479), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2989), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2987), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68755] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - anon_sym_DOT, - STATE(2480), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2936), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2934), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68817] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5803), 1, - anon_sym_COLON, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3017), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3015), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [68993] = 3, - ACTIONS(2871), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [69049] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3029), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3027), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69107] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1956), 1, - sym_lambda_literal, - STATE(2710), 1, - sym__fn_call_lambda_arguments, - ACTIONS(5805), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3161), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3159), 33, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3033), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3031), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69229] = 3, - ACTIONS(2903), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [69285] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3037), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3035), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69343] = 3, - ACTIONS(5810), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5808), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [69399] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69457] = 4, - STATE(2506), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2789), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [69515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69573] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3050), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3047), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69631] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2449), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2447), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3056), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3053), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69805] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - anon_sym_DOT, - STATE(2480), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2940), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2938), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69867] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5812), 1, - anon_sym_DOT, - STATE(2480), 1, - aux_sym_key_path_expression_repeat1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3073), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3071), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [69987] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3077), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3075), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3081), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3079), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3085), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3083), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3093), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3091), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70219] = 3, - ACTIONS(3489), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3491), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [70275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3097), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3095), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70333] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3101), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3099), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70391] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3105), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3103), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3109), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3107), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3113), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3111), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3117), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3115), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70623] = 3, - ACTIONS(5755), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5751), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [70679] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3121), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3119), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70737] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5815), 1, - anon_sym_COLON, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3125), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3123), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3129), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3127), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70913] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3137), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3135), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [70971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71029] = 3, - ACTIONS(2887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [71085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3141), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3139), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3145), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3143), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2961), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2959), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3149), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3147), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71375] = 5, - ACTIONS(5817), 1, - anon_sym_AMP, - STATE(2506), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [71435] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3153), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3151), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3157), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3155), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71551] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71609] = 3, - ACTIONS(2879), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [71665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3089), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3087), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71781] = 11, - ACTIONS(5820), 1, - sym__immediate_quest, - ACTIONS(5822), 1, - sym__arrow_operator_custom, - ACTIONS(5824), 1, - sym__async_keyword_custom, - STATE(2763), 1, - aux_sym_optional_type_repeat1, - STATE(3156), 1, - sym__arrow_operator, - STATE(4847), 1, - sym__async_keyword, - STATE(6029), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 34, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [71853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3045), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3043), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3069), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3067), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [71969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2965), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2963), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3041), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3039), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3025), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3023), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72201] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3065), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3063), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2981), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2979), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72433] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3021), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3019), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3061), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3059), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2932), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2930), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3001), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2999), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72781] = 3, - ACTIONS(2883), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [72837] = 3, - ACTIONS(2895), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [72893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2997), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2995), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [72951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73009] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2951), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2949), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73125] = 3, - ACTIONS(2853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73181] = 3, - ACTIONS(2891), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 43, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73237] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2993), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2991), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73295] = 3, - ACTIONS(5828), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5826), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73351] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73409] = 6, - ACTIONS(5830), 1, - sym__dot_custom, - STATE(2549), 1, - aux_sym_user_type_repeat1, - STATE(4510), 1, - sym__dot, - ACTIONS(2682), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 40, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73471] = 3, - ACTIONS(5834), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5832), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73527] = 3, - ACTIONS(5838), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5836), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2977), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2975), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(2985), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2983), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73699] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2955), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2953), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73757] = 6, - ACTIONS(5840), 1, - sym__dot_custom, - STATE(2547), 1, - aux_sym_user_type_repeat1, - STATE(4510), 1, - sym__dot, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 40, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73819] = 3, - ACTIONS(3521), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3523), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73875] = 6, - ACTIONS(5830), 1, - sym__dot_custom, - STATE(2547), 1, - aux_sym_user_type_repeat1, - STATE(4510), 1, - sym__dot, - ACTIONS(2671), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 40, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [73937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3005), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3003), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [73995] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5843), 1, - anon_sym_LT, - STATE(2688), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 8, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2830), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74057] = 5, - ACTIONS(5845), 1, - anon_sym_LT, - STATE(2736), 1, - sym_type_arguments, - ACTIONS(2832), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 41, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [74117] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5847), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5849), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(5998), 9, - sym_simple_identifier, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__eq_eq, - ACTIONS(5851), 20, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74183] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3009), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3007), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 2, - sym_directive, - sym_diagnostic, - ACTIONS(3013), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3011), 38, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74299] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2779), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_self, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74357] = 3, - ACTIONS(4662), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4670), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [74413] = 3, - ACTIONS(5855), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5853), 43, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [74469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3145), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3143), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74583] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3009), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3007), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3005), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3003), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3017), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3015), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2897), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74868] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2989), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2987), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [74925] = 12, - ACTIONS(5822), 1, - sym__arrow_operator_custom, - ACTIONS(5824), 1, - sym__async_keyword_custom, - ACTIONS(5857), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - anon_sym_AMP, - STATE(2790), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3156), 1, - sym__arrow_operator, - STATE(4847), 1, - sym__async_keyword, - STATE(6029), 1, - sym_throws, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [74998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3093), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3091), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3097), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3095), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2985), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2983), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3021), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3019), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2973), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2971), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3041), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3039), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75340] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3085), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3083), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3101), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3099), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3105), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3103), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75511] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2977), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2975), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3109), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3107), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75625] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3113), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3111), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3117), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3115), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3081), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3079), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75796] = 6, - ACTIONS(5861), 1, - sym__dot_custom, - STATE(2582), 1, - aux_sym_user_type_repeat1, - STATE(4539), 1, - sym__dot, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [75857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3121), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3119), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3109), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3107), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [75971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2873), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3129), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3127), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3133), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3131), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3137), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3135), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76199] = 12, - ACTIONS(5822), 1, - sym__arrow_operator_custom, - ACTIONS(5824), 1, - sym__async_keyword_custom, - ACTIONS(5857), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - anon_sym_AMP, - STATE(2790), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3156), 1, - sym__arrow_operator, - STATE(4847), 1, - sym__async_keyword, - STATE(6029), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2624), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [76272] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3029), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3027), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2997), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2995), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76386] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3037), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3035), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3077), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3075), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2993), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2991), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3025), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3023), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76671] = 12, - ACTIONS(5822), 1, - sym__arrow_operator_custom, - ACTIONS(5824), 1, - sym__async_keyword_custom, - ACTIONS(5857), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - anon_sym_AMP, - STATE(2790), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3156), 1, - sym__arrow_operator, - STATE(4847), 1, - sym__async_keyword, - STATE(6029), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2638), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [76744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3141), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3139), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76801] = 6, - ACTIONS(5864), 1, - sym__dot_custom, - STATE(2582), 1, - aux_sym_user_type_repeat1, - STATE(4539), 1, - sym__dot, - ACTIONS(2671), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [76862] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3073), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3071), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3001), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2999), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [76976] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 42, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LT, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [77031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2977), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2975), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77088] = 6, - ACTIONS(5864), 1, - sym__dot_custom, - STATE(2599), 1, - aux_sym_user_type_repeat1, - STATE(4539), 1, - sym__dot, - ACTIONS(2682), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [77149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3145), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3143), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2961), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2959), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77263] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3149), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3147), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3153), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3151), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77377] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3157), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3155), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77491] = 6, - ACTIONS(2830), 1, - sym__dot_custom, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(4353), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4349), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [77552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3069), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3067), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77609] = 12, - ACTIONS(5822), 1, - sym__arrow_operator_custom, - ACTIONS(5824), 1, - sym__async_keyword_custom, - ACTIONS(5857), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - anon_sym_AMP, - STATE(2790), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3156), 1, - sym__arrow_operator, - STATE(4847), 1, - sym__async_keyword, - STATE(6029), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2634), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [77682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3089), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3087), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2981), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2979), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3061), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3059), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3050), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3047), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [77967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2965), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2963), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2449), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2447), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3045), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3043), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3033), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3031), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78195] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3125), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3123), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3013), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3011), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78309] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3125), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3123), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2965), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2963), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2985), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2983), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78480] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2989), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2987), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3089), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3087), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78594] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3056), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3053), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78651] = 3, - ACTIONS(2883), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [78706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3157), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3155), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3041), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3039), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78820] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3025), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3023), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78877] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3065), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3063), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78934] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3056), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3053), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [78991] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3153), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3151), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79048] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2449), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2447), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79162] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2947), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2942), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3061), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3059), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79276] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3021), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3019), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79333] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3149), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3147), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79390] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2981), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2979), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79447] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3001), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2999), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2961), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2959), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3050), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3047), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79618] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3069), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3067), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79675] = 12, - ACTIONS(5822), 1, - sym__arrow_operator_custom, - ACTIONS(5824), 1, - sym__async_keyword_custom, - ACTIONS(5857), 1, - anon_sym_DOT, - ACTIONS(5859), 1, - anon_sym_AMP, - STATE(2790), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(3156), 1, - sym__arrow_operator, - STATE(4847), 1, - sym__async_keyword, - STATE(6029), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2609), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [79748] = 5, - ACTIONS(5866), 1, - anon_sym_LT, - STATE(2766), 1, - sym_type_arguments, - ACTIONS(2832), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [79807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3073), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3071), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79864] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3045), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3043), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2997), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2995), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [79978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3141), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3139), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2849), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2847), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3005), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3003), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80149] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3539), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 34, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2993), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2991), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3009), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3007), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80322] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3013), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3011), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3077), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3075), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3081), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3079), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3085), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3083), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80664] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3017), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3015), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80721] = 3, - ACTIONS(2895), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [80776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2887), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2885), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80833] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80890] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3137), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3135), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [80947] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3133), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3131), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3129), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3127), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81061] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2973), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2971), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81118] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81175] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3065), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3063), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3121), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3119), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81289] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3117), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3115), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81346] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3113), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3111), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81403] = 3, - ACTIONS(2891), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [81458] = 3, - ACTIONS(2853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 42, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [81513] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3093), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3091), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3037), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3035), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3097), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3095), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81684] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3033), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3031), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3101), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3099), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3029), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3027), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3105), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3103), 36, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_where_keyword, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81912] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 9, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2855), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [81969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2981), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2979), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3153), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3151), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2707), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2709), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2691), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2693), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3085), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3083), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82249] = 4, - ACTIONS(5868), 1, - anon_sym_operator, - ACTIONS(5755), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5751), 40, - anon_sym_actor, - anon_sym_async, - anon_sym_import, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [82305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2973), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2971), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82361] = 5, - ACTIONS(5870), 1, - anon_sym_LPAREN, - STATE(2780), 1, - sym__tuple_pattern, - ACTIONS(4392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [82419] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3081), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3079), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2985), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2983), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82531] = 3, - ACTIONS(2899), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 41, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [82585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2989), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2987), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3005), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3003), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2993), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2991), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82753] = 15, - ACTIONS(5878), 1, - anon_sym_AT, - ACTIONS(5881), 1, - sym_property_behavior_modifier, - ACTIONS(5893), 1, - anon_sym_final, - ACTIONS(5902), 1, - anon_sym_unowned, - ACTIONS(4283), 2, - sym_default_keyword, - anon_sym_case, - ACTIONS(5890), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(5875), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(5896), 3, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(5899), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5872), 4, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - ACTIONS(5884), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(5887), 5, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(2902), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - STATE(2703), 8, - sym__non_local_scope_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_parameter_modifier, - aux_sym_modifiers_repeat1, - [82831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3021), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3019), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3077), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3075), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [82943] = 3, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 41, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [82997] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [83051] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2997), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2995), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83107] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3093), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3091), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3097), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3095), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83219] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3101), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3099), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3105), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3103), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83331] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3109), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3107), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3073), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3071), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3069), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3067), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83499] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3113), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3111), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3117), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3115), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3125), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3123), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83667] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3009), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3007), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83723] = 5, - ACTIONS(5870), 1, - anon_sym_LPAREN, - STATE(2769), 1, - sym__tuple_pattern, - ACTIONS(4406), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [83781] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3013), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3011), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2969), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2967), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [83893] = 5, - ACTIONS(5870), 1, - anon_sym_LPAREN, - STATE(2768), 1, - sym__tuple_pattern, - ACTIONS(4400), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4398), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [83951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3017), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3015), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3129), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3127), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2687), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2689), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84119] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3133), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3131), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84175] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 41, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [84229] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3001), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2999), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84285] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3137), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3135), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84341] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3141), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3139), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3145), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3143), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2961), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2959), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84509] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3061), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3059), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3149), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3147), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84621] = 3, - ACTIONS(2857), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 41, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [84675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3121), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3119), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84731] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3056), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3053), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84787] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2449), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2447), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2977), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2975), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84899] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3065), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3063), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [84955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3157), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3155), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3025), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3023), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3050), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3047), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3041), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3039), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85179] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2725), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2727), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85235] = 15, - ACTIONS(189), 1, - anon_sym_unowned, - ACTIONS(5541), 1, - anon_sym_AT, - ACTIONS(5551), 1, - anon_sym_final, - ACTIONS(5905), 1, - sym_property_behavior_modifier, - ACTIONS(4264), 2, - sym_default_keyword, - anon_sym_case, - ACTIONS(5549), 2, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(187), 3, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(191), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5539), 3, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5537), 4, - anon_sym_class, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - ACTIONS(5545), 4, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - ACTIONS(5547), 5, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - STATE(2902), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - STATE(2703), 8, - sym__non_local_scope_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_mutation_modifier, - sym_property_modifier, - sym_parameter_modifier, - aux_sym_modifiers_repeat1, - [85313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3089), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3087), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85369] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3037), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3035), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85425] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3045), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3043), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85481] = 11, - ACTIONS(5907), 1, - anon_sym_COLON, - ACTIONS(5909), 1, - anon_sym_LBRACE, - ACTIONS(5911), 1, - sym__eq_custom, - ACTIONS(5913), 1, - sym_where_keyword, - STATE(565), 1, - sym__equal_sign, - STATE(2772), 1, - sym_type_annotation, - STATE(2810), 1, - sym_type_constraints, - STATE(2898), 1, - sym_computed_property, - ACTIONS(4382), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4376), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [85551] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3033), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3031), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2965), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(2963), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3029), 8, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_CARET, - ACTIONS(3027), 35, - sym__dot_custom, - sym__conjunction_operator_custom, - sym__disjunction_operator_custom, - sym__nil_coalescing_operator_custom, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - sym_else, - sym__as_custom, - sym__as_quest_custom, - sym__as_bang_custom, - sym__custom_operator, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym__immediate_quest, - anon_sym_AMP, - aux_sym_custom_operator_token1, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_LT, - anon_sym_is, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - [85719] = 3, - ACTIONS(2875), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 41, - sym__dot_custom, - sym_default_keyword, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [85773] = 6, - ACTIONS(4504), 1, - sym__as_custom, - ACTIONS(5915), 1, - anon_sym_QMARK, - STATE(2798), 1, - sym__quest, - ACTIONS(4502), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [85832] = 5, - ACTIONS(5820), 1, - sym__immediate_quest, - STATE(2763), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2628), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [85889] = 3, - ACTIONS(2899), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [85942] = 4, - ACTIONS(5917), 1, - anon_sym_LPAREN, - ACTIONS(3493), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3495), 39, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [85997] = 5, - ACTIONS(5919), 1, - sym__immediate_quest, - STATE(2760), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2801), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86054] = 3, - ACTIONS(2875), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86107] = 3, - ACTIONS(2731), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86160] = 5, - ACTIONS(5922), 1, - sym__immediate_quest, - STATE(2760), 1, - aux_sym_optional_type_repeat1, - ACTIONS(2738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86217] = 3, - ACTIONS(2781), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86270] = 6, - ACTIONS(4447), 1, - sym__as_custom, - ACTIONS(5924), 1, - anon_sym_QMARK, - STATE(2801), 1, - sym__quest, - ACTIONS(4445), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86329] = 3, - ACTIONS(2857), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 40, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86382] = 3, - ACTIONS(3521), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3523), 39, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86434] = 3, - ACTIONS(4392), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86486] = 3, - ACTIONS(4525), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4523), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86538] = 3, - ACTIONS(4584), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4582), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86590] = 3, - ACTIONS(3489), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3491), 39, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86642] = 9, - ACTIONS(5909), 1, - anon_sym_LBRACE, - ACTIONS(5913), 1, - sym_where_keyword, - ACTIONS(5926), 1, - sym__eq_custom, - STATE(559), 1, - sym__equal_sign, - STATE(2804), 1, - sym_type_constraints, - STATE(2895), 1, - sym_computed_property, - ACTIONS(4568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86706] = 3, - ACTIONS(4574), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4572), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86758] = 7, - ACTIONS(5907), 1, - anon_sym_COLON, - ACTIONS(5932), 1, - sym__as_custom, - STATE(2853), 1, - sym_type_annotation, - STATE(3413), 1, - sym__as, - ACTIONS(5930), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5928), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86818] = 3, - ACTIONS(4562), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4560), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86870] = 3, - ACTIONS(2849), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86922] = 3, - ACTIONS(5828), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5826), 39, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [86974] = 3, - ACTIONS(2903), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87026] = 6, - ACTIONS(5934), 1, - anon_sym_QMARK, - ACTIONS(5937), 1, - sym__as_custom, - STATE(2800), 1, - sym__quest, - ACTIONS(4445), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87084] = 3, - ACTIONS(4406), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87136] = 3, - ACTIONS(5838), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5836), 39, - sym_default_keyword, - anon_sym_actor, - anon_sym_async, - anon_sym_case, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87188] = 5, - ACTIONS(5942), 1, - anon_sym_QMARK, - STATE(2805), 1, - sym__quest, - ACTIONS(5944), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5940), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87244] = 3, - ACTIONS(2879), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87296] = 5, - ACTIONS(5946), 1, - anon_sym_QMARK, - STATE(2812), 1, - sym__quest, - ACTIONS(5948), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4447), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87352] = 5, - ACTIONS(5950), 1, - anon_sym_AMP, - STATE(2785), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2585), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87408] = 3, - ACTIONS(2887), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87460] = 5, - ACTIONS(5953), 1, - anon_sym_QMARK, - STATE(2813), 1, - sym__quest, - ACTIONS(5955), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4504), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87516] = 6, - ACTIONS(5957), 1, - anon_sym_QMARK, - ACTIONS(5960), 1, - sym__as_custom, - STATE(2802), 1, - sym__quest, - ACTIONS(4502), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87574] = 3, - ACTIONS(4521), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4519), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87626] = 4, - STATE(2785), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(2789), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87680] = 3, - ACTIONS(2871), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87732] = 3, - ACTIONS(4540), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4538), 39, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87784] = 3, - ACTIONS(2895), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87835] = 3, - ACTIONS(5965), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5963), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87886] = 3, - ACTIONS(2883), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87937] = 3, - ACTIONS(2891), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [87988] = 3, - ACTIONS(5969), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5967), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88039] = 4, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(4646), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88092] = 3, - ACTIONS(2853), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 38, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_default_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88143] = 4, - ACTIONS(5971), 1, - sym__as_custom, - ACTIONS(4640), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88196] = 4, - ACTIONS(4642), 1, - sym__as_custom, - ACTIONS(4640), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88249] = 4, - ACTIONS(5974), 1, - sym__as_custom, - ACTIONS(4646), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88302] = 8, - ACTIONS(5977), 1, - anon_sym_func, - ACTIONS(5980), 1, - anon_sym_init, - STATE(5133), 1, - sym__modifierless_function_declaration_no_body, - STATE(5233), 1, - sym__non_constructor_function_decl, - STATE(5234), 1, - sym__constructor_function_decl, - ACTIONS(4662), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4670), 33, - anon_sym_async, - anon_sym_typealias, - anon_sym_class, - anon_sym_let, - anon_sym_var, - anon_sym_deinit, - anon_sym_subscript, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_associatedtype, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88363] = 7, - ACTIONS(5909), 1, - anon_sym_LBRACE, - ACTIONS(5983), 1, - sym__eq_custom, - STATE(527), 1, - sym__equal_sign, - STATE(2890), 1, - sym_computed_property, - ACTIONS(4756), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4754), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88421] = 3, - ACTIONS(5987), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5985), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88471] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5989), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - STATE(4668), 8, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__eq_eq, - ACTIONS(5991), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5993), 20, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [88527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5847), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - STATE(1942), 8, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__eq_eq, - ACTIONS(5995), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5997), 20, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [88583] = 7, - ACTIONS(2539), 1, - sym_where_keyword, - ACTIONS(6003), 1, - sym__eq_custom, - STATE(466), 1, - sym__equal_sign, - STATE(2889), 1, - sym_where_clause, - ACTIONS(6001), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5999), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88641] = 5, - ACTIONS(5907), 1, - anon_sym_COLON, - STATE(2841), 1, - sym_type_annotation, - ACTIONS(6007), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6005), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88695] = 7, - ACTIONS(5909), 1, - anon_sym_LBRACE, - ACTIONS(6009), 1, - sym__eq_custom, - STATE(534), 1, - sym__equal_sign, - STATE(2897), 1, - sym_computed_property, - ACTIONS(4568), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88753] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6011), 2, - sym__custom_operator, - aux_sym_custom_operator_token1, - ACTIONS(5), 3, - sym_multiline_comment, - sym_directive, - sym_diagnostic, - STATE(4749), 8, - sym_custom_operator, - sym__assignment_and_operator, - sym__equality_operator, - sym__comparison_operator, - sym__additive_operator, - sym__multiplicative_operator, - sym__referenceable_operator, - sym__eq_eq, - ACTIONS(6013), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6015), 20, - sym__eq_eq_custom, - sym__plus_then_ws, - sym__minus_then_ws, - sym_bang, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - [88809] = 3, - ACTIONS(6017), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4642), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88859] = 3, - ACTIONS(6019), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4648), 37, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88909] = 4, - ACTIONS(6021), 1, - anon_sym_BANG, - ACTIONS(4626), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [88961] = 3, - ACTIONS(4792), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4790), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89010] = 5, - ACTIONS(6023), 1, - anon_sym_COMMA, - STATE(2817), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4858), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4856), 34, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89063] = 5, - ACTIONS(6023), 1, - anon_sym_COMMA, - STATE(2820), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4843), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4839), 34, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89116] = 3, - ACTIONS(4684), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89165] = 4, - ACTIONS(6025), 1, - anon_sym_BANG, - ACTIONS(4626), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89216] = 5, - ACTIONS(6027), 1, - anon_sym_COMMA, - STATE(2820), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4830), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 34, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89269] = 3, - ACTIONS(6032), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6030), 36, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89318] = 3, - ACTIONS(4830), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [89366] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6038), 1, - anon_sym_RPAREN, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5655), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [89456] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6044), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5337), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [89546] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6046), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5591), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [89636] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6048), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5875), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [89726] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6050), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5777), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [89816] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(637), 1, - anon_sym_RPAREN, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5557), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [89906] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6052), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5529), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [89996] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6054), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5465), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90086] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5717), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90176] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6058), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5508), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90266] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6060), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5860), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90356] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6062), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5797), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90446] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6064), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5837), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90536] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6066), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5410), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90626] = 5, - ACTIONS(6072), 1, - sym_catch_keyword, - ACTIONS(6070), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(2850), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6068), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [90678] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6074), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5848), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90768] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6076), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5817), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90858] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6078), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5592), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [90948] = 3, - ACTIONS(6082), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6080), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [90996] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6084), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5877), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [91086] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6086), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5487), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [91176] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6088), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5484), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [91266] = 3, - ACTIONS(4916), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4914), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91314] = 3, - ACTIONS(4912), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4910), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91362] = 3, - ACTIONS(5013), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5011), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91410] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6090), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5697), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [91500] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6092), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5737), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [91590] = 5, - ACTIONS(6098), 1, - sym_catch_keyword, - ACTIONS(6096), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(2850), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6094), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91642] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6101), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5634), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [91732] = 5, - ACTIONS(6072), 1, - sym_catch_keyword, - ACTIONS(6105), 2, - anon_sym_AT, - anon_sym_unowned, - STATE(2837), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6103), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91784] = 3, - ACTIONS(6109), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6107), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91832] = 3, - ACTIONS(4902), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4900), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91880] = 3, - ACTIONS(4898), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4896), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [91928] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6111), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5267), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92018] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6113), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5407), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92108] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5550), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92198] = 3, - ACTIONS(4684), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 35, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [92246] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6117), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5669), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92336] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6119), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5757), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92426] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6121), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5676), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92516] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6123), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5571), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92606] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6125), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5857), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92696] = 24, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - ACTIONS(6127), 1, - anon_sym_RPAREN, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(5613), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [92786] = 5, - ACTIONS(6129), 1, - anon_sym_COMMA, - STATE(2867), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5161), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5159), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [92837] = 5, - ACTIONS(6131), 1, - anon_sym_COMMA, - STATE(2867), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5239), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5234), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [92888] = 6, - STATE(102), 1, - sym__semi, - STATE(2868), 1, - aux_sym_statements_repeat1, - ACTIONS(6136), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6138), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6134), 30, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [92941] = 5, - ACTIONS(6141), 1, - anon_sym_COMMA, - STATE(2876), 1, - aux_sym_if_statement_repeat1, - ACTIONS(6145), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6143), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [92992] = 5, - ACTIONS(6141), 1, - anon_sym_COMMA, - STATE(2874), 1, - aux_sym_if_statement_repeat1, - ACTIONS(6149), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6147), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93043] = 6, - STATE(9), 1, - sym__semi, - STATE(2868), 1, - aux_sym_statements_repeat1, - ACTIONS(303), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6151), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(301), 30, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93096] = 6, - STATE(4636), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4670), 5, - sym_default_keyword, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(4662), 25, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - anon_sym_AT, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_weak, - anon_sym_unowned, - [93149] = 23, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(641), 1, - sym_wildcard_pattern, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(2974), 1, - sym__tuple_type_item_identifier, - STATE(3155), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4076), 1, - sym_simple_identifier, - STATE(6113), 1, - sym_tuple_type_item, - STATE(6146), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [93236] = 5, - ACTIONS(6153), 1, - anon_sym_COMMA, - STATE(2874), 1, - aux_sym_if_statement_repeat1, - ACTIONS(6158), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6156), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93287] = 5, - ACTIONS(6129), 1, - anon_sym_COMMA, - STATE(2866), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5121), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5117), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93338] = 5, - ACTIONS(6141), 1, - anon_sym_COMMA, - STATE(2874), 1, - aux_sym_if_statement_repeat1, - ACTIONS(6162), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6160), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93389] = 6, - STATE(10), 1, - sym__semi, - STATE(2871), 1, - aux_sym_statements_repeat1, - ACTIONS(6166), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(6168), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6164), 30, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93442] = 5, - ACTIONS(6141), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_if_statement_repeat1, - ACTIONS(6172), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6170), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93493] = 3, - ACTIONS(6176), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6174), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93539] = 3, - ACTIONS(5297), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5295), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93585] = 3, - ACTIONS(6180), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6178), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93631] = 3, - ACTIONS(3188), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_else, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93677] = 4, - ACTIONS(6186), 1, - sym_else, - ACTIONS(6184), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6182), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93725] = 3, - ACTIONS(6190), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6188), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93771] = 3, - ACTIONS(6194), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6192), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93817] = 3, - ACTIONS(6198), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6196), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93863] = 3, - ACTIONS(3188), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93909] = 3, - ACTIONS(6202), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6200), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [93955] = 3, - ACTIONS(6206), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6204), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94001] = 3, - ACTIONS(5301), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5299), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94047] = 3, - ACTIONS(6210), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6208), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94093] = 4, - ACTIONS(6216), 1, - sym_else, - ACTIONS(6214), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6212), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94141] = 3, - ACTIONS(5249), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5247), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94187] = 3, - ACTIONS(3192), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94233] = 3, - ACTIONS(5253), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94279] = 3, - ACTIONS(5286), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5284), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94325] = 3, - ACTIONS(5253), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94371] = 3, - ACTIONS(5309), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5307), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94417] = 3, - ACTIONS(3192), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_else, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94463] = 3, - ACTIONS(6220), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6218), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - sym_catch_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94509] = 3, - ACTIONS(6224), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6222), 33, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94555] = 7, - ACTIONS(4429), 1, - anon_sym_AT, - ACTIONS(4432), 1, - anon_sym_final, - ACTIONS(4438), 1, - anon_sym_unowned, - ACTIONS(4435), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2378), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(4418), 24, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [94609] = 3, - ACTIONS(6228), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6226), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94654] = 3, - ACTIONS(6232), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6230), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94699] = 3, - ACTIONS(5567), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5565), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94744] = 3, - ACTIONS(6236), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6234), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94789] = 3, - ACTIONS(5579), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5577), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94834] = 3, - ACTIONS(5523), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5521), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [94879] = 21, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3076), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4558), 1, - sym__type, - STATE(4718), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [94960] = 3, - ACTIONS(6240), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6238), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95005] = 3, - ACTIONS(6244), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6242), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95050] = 3, - ACTIONS(6248), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6246), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95095] = 3, - ACTIONS(6252), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6250), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95140] = 3, - ACTIONS(6256), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6254), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95185] = 3, - ACTIONS(6260), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6258), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95230] = 3, - ACTIONS(6264), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6262), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95275] = 3, - ACTIONS(6268), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6266), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95320] = 3, - ACTIONS(6272), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6270), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95365] = 21, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1641), 1, - sym__type, - STATE(3062), 1, - sym_parameter_modifiers, - STATE(3617), 1, - sym_type_modifiers, - STATE(4852), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [95446] = 3, - ACTIONS(551), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(549), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95491] = 3, - ACTIONS(6260), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6258), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95536] = 3, - ACTIONS(6288), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6286), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95581] = 3, - ACTIONS(6292), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6290), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95626] = 3, - ACTIONS(5446), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5444), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95671] = 3, - ACTIONS(5479), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5477), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95716] = 3, - ACTIONS(6268), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6266), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95761] = 3, - ACTIONS(6296), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6294), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95806] = 3, - ACTIONS(6300), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6298), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95851] = 3, - ACTIONS(5452), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5450), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95896] = 3, - ACTIONS(6304), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6302), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95941] = 3, - ACTIONS(6308), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6306), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [95986] = 3, - ACTIONS(5645), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5643), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96031] = 3, - ACTIONS(6256), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6254), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96076] = 3, - ACTIONS(6312), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6310), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96121] = 3, - ACTIONS(6316), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6314), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96166] = 3, - ACTIONS(6320), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6318), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96211] = 3, - ACTIONS(6248), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6246), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96256] = 3, - ACTIONS(6324), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6322), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96301] = 3, - ACTIONS(6328), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6326), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96346] = 3, - ACTIONS(6332), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6330), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96391] = 3, - ACTIONS(6336), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6334), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96436] = 3, - ACTIONS(6136), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6134), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96481] = 3, - ACTIONS(3192), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96526] = 3, - ACTIONS(6340), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6338), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96571] = 3, - ACTIONS(5666), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5664), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96616] = 3, - ACTIONS(5641), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5639), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96661] = 3, - ACTIONS(5625), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5623), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96706] = 3, - ACTIONS(5619), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5617), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96751] = 3, - ACTIONS(6344), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6342), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96796] = 3, - ACTIONS(6348), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6346), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96841] = 21, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3012), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4558), 1, - sym__type, - STATE(4844), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [96922] = 3, - ACTIONS(6352), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6350), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [96967] = 3, - ACTIONS(6356), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6354), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97012] = 3, - ACTIONS(5327), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5325), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97057] = 21, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3054), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(5989), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [97138] = 3, - ACTIONS(5527), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5525), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97183] = 3, - ACTIONS(5339), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5337), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97228] = 3, - ACTIONS(5343), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5341), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97273] = 21, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1641), 1, - sym__type, - STATE(3065), 1, - sym_parameter_modifiers, - STATE(3617), 1, - sym_type_modifiers, - STATE(4863), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [97354] = 3, - ACTIONS(3188), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97399] = 3, - ACTIONS(6360), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6358), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97444] = 3, - ACTIONS(5371), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5369), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97489] = 3, - ACTIONS(5379), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5377), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97534] = 3, - ACTIONS(5383), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5381), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97579] = 3, - ACTIONS(5407), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5405), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97624] = 3, - ACTIONS(5555), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5553), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97669] = 21, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3124), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(6251), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [97750] = 3, - ACTIONS(6364), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6362), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97795] = 3, - ACTIONS(5662), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5660), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97840] = 3, - ACTIONS(6368), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6366), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97885] = 3, - ACTIONS(5738), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5736), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97930] = 3, - ACTIONS(6372), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6370), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [97975] = 3, - ACTIONS(6376), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6374), 32, - sym__implicit_semi, - sym__explicit_semi, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_fallthrough, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [98020] = 20, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(639), 1, - anon_sym_AT, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3152), 1, - sym_parameter_modifiers, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5985), 1, - sym__type, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3896), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [98098] = 25, - ACTIONS(313), 1, - anon_sym_AT, - ACTIONS(317), 1, - anon_sym_unowned, - ACTIONS(3210), 1, - anon_sym_async, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3234), 1, - anon_sym_init, - ACTIONS(4085), 1, - anon_sym_typealias, - ACTIONS(4423), 1, - anon_sym_enum, - ACTIONS(4425), 1, - anon_sym_extension, - ACTIONS(4427), 1, - anon_sym_indirect, - ACTIONS(6378), 1, - anon_sym_final, - STATE(3470), 1, - sym__possibly_async_binding_pattern_kind, - STATE(4153), 1, - sym__binding_pattern_kind, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(5341), 1, - sym__async_modifier, - STATE(5443), 1, - sym__modifierless_function_declaration_no_body, - STATE(5587), 1, - sym__modifierless_property_declaration, - STATE(5588), 1, - sym__modifierless_typealias_declaration, - STATE(5589), 1, - sym__modifierless_function_declaration, - STATE(5590), 1, - sym__modifierless_class_declaration, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(319), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(4416), 3, - anon_sym_actor, - anon_sym_struct, - anon_sym_class, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3512), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - [98186] = 25, - ACTIONS(313), 1, - anon_sym_AT, - ACTIONS(317), 1, - anon_sym_unowned, - ACTIONS(3210), 1, - anon_sym_async, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3234), 1, - anon_sym_init, - ACTIONS(6378), 1, - anon_sym_final, - ACTIONS(6382), 1, - anon_sym_typealias, - ACTIONS(6384), 1, - anon_sym_enum, - ACTIONS(6386), 1, - anon_sym_extension, - ACTIONS(6388), 1, - anon_sym_indirect, - STATE(2918), 1, - sym__modifierless_class_declaration, - STATE(2931), 1, - sym__modifierless_property_declaration, - STATE(2939), 1, - sym__modifierless_typealias_declaration, - STATE(2940), 1, - sym__modifierless_function_declaration, - STATE(3466), 1, - sym__possibly_async_binding_pattern_kind, - STATE(4153), 1, - sym__binding_pattern_kind, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(5341), 1, - sym__async_modifier, - STATE(5471), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(319), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(6380), 3, - anon_sym_actor, - anon_sym_struct, - anon_sym_class, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3512), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - [98274] = 4, - ACTIONS(6392), 1, - anon_sym_fallthrough, - ACTIONS(6394), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6390), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [98319] = 17, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(6406), 1, - anon_sym_DQUOTE, - ACTIONS(6408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6410), 1, - sym__extended_regex_literal, - ACTIONS(6412), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(6414), 1, - sym__oneline_regex_literal, - ACTIONS(6416), 1, - anon_sym_RBRACE, - ACTIONS(6418), 1, - sym_raw_str_end_part, - STATE(3652), 1, - sym__multiline_regex_literal, - STATE(5453), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(6396), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6400), 2, - anon_sym_nil, - sym_integer_literal, - ACTIONS(6404), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6398), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6402), 4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - STATE(2986), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [98390] = 17, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(6406), 1, - anon_sym_DQUOTE, - ACTIONS(6408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6410), 1, - sym__extended_regex_literal, - ACTIONS(6412), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(6414), 1, - sym__oneline_regex_literal, - ACTIONS(6418), 1, - sym_raw_str_end_part, - ACTIONS(6424), 1, - anon_sym_RBRACE, - STATE(3652), 1, - sym__multiline_regex_literal, - STATE(5453), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(6396), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6404), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6420), 2, - anon_sym_nil, - sym_integer_literal, - ACTIONS(6398), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6422), 4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - STATE(2981), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [98461] = 17, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(6406), 1, - anon_sym_DQUOTE, - ACTIONS(6408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6410), 1, - sym__extended_regex_literal, - ACTIONS(6412), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(6414), 1, - sym__oneline_regex_literal, - ACTIONS(6418), 1, - sym_raw_str_end_part, - ACTIONS(6430), 1, - anon_sym_RBRACE, - STATE(3652), 1, - sym__multiline_regex_literal, - STATE(5453), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(6396), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6404), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6426), 2, - anon_sym_nil, - sym_integer_literal, - ACTIONS(6398), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6428), 4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - STATE(2988), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [98532] = 17, - ACTIONS(6447), 1, - anon_sym_DQUOTE, - ACTIONS(6450), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6453), 1, - sym__extended_regex_literal, - ACTIONS(6456), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(6459), 1, - sym__oneline_regex_literal, - ACTIONS(6462), 1, - anon_sym_RBRACE, - ACTIONS(6464), 1, - sym_raw_str_part, - ACTIONS(6467), 1, - sym_raw_str_end_part, - STATE(3652), 1, - sym__multiline_regex_literal, - STATE(5453), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(6432), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6438), 2, - anon_sym_nil, - sym_integer_literal, - ACTIONS(6444), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6435), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6441), 4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - STATE(2981), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [98603] = 4, - ACTIONS(6472), 1, - anon_sym_fallthrough, - ACTIONS(6474), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6470), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [98648] = 4, - ACTIONS(6478), 1, - anon_sym_fallthrough, - ACTIONS(6480), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6476), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [98693] = 4, - ACTIONS(6484), 1, - anon_sym_fallthrough, - ACTIONS(6486), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6482), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [98738] = 17, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(6406), 1, - anon_sym_DQUOTE, - ACTIONS(6408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6410), 1, - sym__extended_regex_literal, - ACTIONS(6412), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(6414), 1, - sym__oneline_regex_literal, - ACTIONS(6418), 1, - sym_raw_str_end_part, - ACTIONS(6492), 1, - anon_sym_RBRACE, - STATE(3652), 1, - sym__multiline_regex_literal, - STATE(5453), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(6396), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6404), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6488), 2, - anon_sym_nil, - sym_integer_literal, - ACTIONS(6398), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6490), 4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - STATE(2979), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [98809] = 17, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(6406), 1, - anon_sym_DQUOTE, - ACTIONS(6408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6410), 1, - sym__extended_regex_literal, - ACTIONS(6412), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(6414), 1, - sym__oneline_regex_literal, - ACTIONS(6418), 1, - sym_raw_str_end_part, - ACTIONS(6494), 1, - anon_sym_RBRACE, - STATE(3652), 1, - sym__multiline_regex_literal, - STATE(5453), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(6396), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6404), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6420), 2, - anon_sym_nil, - sym_integer_literal, - ACTIONS(6398), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6422), 4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - STATE(2981), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [98880] = 4, - ACTIONS(6498), 1, - anon_sym_fallthrough, - ACTIONS(6500), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6496), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [98925] = 17, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(6406), 1, - anon_sym_DQUOTE, - ACTIONS(6408), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6410), 1, - sym__extended_regex_literal, - ACTIONS(6412), 1, - aux_sym__multiline_regex_literal_token1, - ACTIONS(6414), 1, - sym__oneline_regex_literal, - ACTIONS(6418), 1, - sym_raw_str_end_part, - ACTIONS(6502), 1, - anon_sym_RBRACE, - STATE(3652), 1, - sym__multiline_regex_literal, - STATE(5453), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(6396), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6404), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(6420), 2, - anon_sym_nil, - sym_integer_literal, - ACTIONS(6398), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6422), 4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - STATE(2981), 9, - sym_simple_identifier, - sym__basic_literal, - sym_boolean_literal, - sym__string_literal, - sym_line_string_literal, - sym_multi_line_string_literal, - sym_raw_string_literal, - sym_regex_literal, - aux_sym_deprecated_operator_declaration_body_repeat1, - [98996] = 4, - ACTIONS(6506), 1, - anon_sym_fallthrough, - ACTIONS(6508), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6504), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99041] = 3, - ACTIONS(6486), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6482), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99083] = 3, - ACTIONS(6394), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6390), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99125] = 3, - ACTIONS(6512), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6510), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99167] = 4, - ACTIONS(6514), 1, - anon_sym_LPAREN, - ACTIONS(5791), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5787), 28, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99211] = 3, - ACTIONS(6480), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6476), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99253] = 3, - ACTIONS(6508), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6504), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99295] = 3, - ACTIONS(6500), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6496), 29, - sym_default_keyword, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99337] = 3, - ACTIONS(5810), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5808), 28, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99378] = 3, - ACTIONS(5755), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5751), 28, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99419] = 24, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6522), 1, - anon_sym_await, - ACTIONS(6524), 1, - anon_sym_try, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - STATE(3469), 1, - sym__try_operator, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(3505), 1, - sym__await_operator, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4890), 1, - sym__bound_identifier, - STATE(5001), 1, - sym__binding_pattern_no_expr, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6526), 2, - anon_sym_try_BANG, - anon_sym_try_QMARK, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [99502] = 3, - ACTIONS(5834), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5832), 28, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99543] = 3, - ACTIONS(4662), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4670), 28, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99584] = 3, - ACTIONS(5305), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5303), 28, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99625] = 3, - ACTIONS(5855), 2, - anon_sym_AT, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5853), 28, - sym_default_keyword, - anon_sym_case, - anon_sym_class, - anon_sym_prefix, - anon_sym_infix, - anon_sym_postfix, - sym_property_behavior_modifier, - anon_sym_override, - anon_sym_convenience, - anon_sym_required, - anon_sym_nonisolated, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_fileprivate, - anon_sym_open, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_static, - anon_sym_dynamic, - anon_sym_optional, - anon_sym_final, - anon_sym_inout, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [99666] = 24, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - ACTIONS(6532), 1, - anon_sym_await, - ACTIONS(6534), 1, - anon_sym_try, - STATE(3473), 1, - sym__try_operator, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(3508), 1, - sym__await_operator, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4871), 1, - sym__binding_pattern_no_expr, - STATE(4890), 1, - sym__bound_identifier, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6536), 2, - anon_sym_try_BANG, - anon_sym_try_QMARK, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [99749] = 5, - ACTIONS(6538), 1, - anon_sym_LT, - STATE(3283), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 9, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2832), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [99793] = 6, - ACTIONS(6540), 1, - sym__dot_custom, - STATE(3009), 1, - aux_sym_user_type_repeat1, - STATE(4533), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2671), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [99839] = 18, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - ACTIONS(6542), 1, - anon_sym_RPAREN, - ACTIONS(6544), 1, - sym_wildcard_pattern, - STATE(1367), 1, - sym_tuple_type, - STATE(1380), 1, - sym__simple_user_type, - STATE(3617), 1, - sym_type_modifiers, - STATE(4038), 1, - sym_simple_identifier, - STATE(4897), 1, - sym__type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [99909] = 6, - ACTIONS(6540), 1, - sym__dot_custom, - STATE(3006), 1, - aux_sym_user_type_repeat1, - STATE(4533), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2682), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [99955] = 6, - ACTIONS(6546), 1, - sym__dot_custom, - STATE(3009), 1, - aux_sym_user_type_repeat1, - STATE(4533), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2731), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [100001] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5144), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100068] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5161), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100137] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4558), 1, - sym__type, - STATE(4710), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100204] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5155), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100273] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5125), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100342] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5182), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100411] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(5432), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100478] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5184), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100547] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5098), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100616] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5130), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100683] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(6354), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100750] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5031), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100819] = 23, - ACTIONS(799), 1, - anon_sym_case, - ACTIONS(811), 1, - anon_sym_is, - ACTIONS(3871), 1, - sym_where_keyword, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6567), 1, - anon_sym_LBRACE, - ACTIONS(6569), 1, - sym_wildcard_pattern, - ACTIONS(6571), 1, - sym__dot_custom, - STATE(3491), 1, - sym__binding_pattern_kind, - STATE(4351), 1, - sym_simple_identifier, - STATE(4663), 1, - sym__type_casting_pattern, - STATE(4742), 1, - sym__simple_user_type, - STATE(4790), 1, - sym__dot, - STATE(4798), 1, - sym__binding_pattern_no_expr, - STATE(4860), 1, - sym__bound_identifier, - STATE(4862), 1, - sym__binding_pattern, - STATE(4896), 1, - sym__block, - STATE(5986), 1, - sym_where_clause, - STATE(6181), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6561), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6563), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4851), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [100898] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5197), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [100967] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(5397), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101034] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5404), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101101] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(6394), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101168] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3616), 1, - sym_type_modifiers, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - STATE(4478), 1, - sym__type, - STATE(4586), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101235] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5399), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101302] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5387), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101369] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5375), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101436] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5348), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101503] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4817), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101570] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5073), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101637] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5037), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101706] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5339), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101773] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5174), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101842] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5022), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101911] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3631), 1, - sym_type_modifiers, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - STATE(4568), 1, - sym__type, - STATE(4758), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3774), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [101978] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4834), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102045] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4842), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102112] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5075), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102179] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5076), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102246] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5078), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102313] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5080), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102382] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5082), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102451] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - STATE(2814), 1, - sym__type, - STATE(2815), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(3576), 1, - sym_type_modifiers, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1988), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102518] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5089), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102587] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5093), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102656] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4741), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102723] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4833), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102790] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5024), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102859] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(6515), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102926] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5176), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [102995] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(5957), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103062] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5779), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103129] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5097), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103198] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3550), 1, - sym_type_modifiers, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - STATE(4917), 1, - sym__type, - STATE(5186), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3941), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103265] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3616), 1, - sym_type_modifiers, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - STATE(4478), 1, - sym__type, - STATE(4490), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103332] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5131), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103401] = 23, - ACTIONS(799), 1, - anon_sym_case, - ACTIONS(811), 1, - anon_sym_is, - ACTIONS(3871), 1, - sym_where_keyword, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6569), 1, - sym_wildcard_pattern, - ACTIONS(6571), 1, - sym__dot_custom, - ACTIONS(6633), 1, - anon_sym_LBRACE, - STATE(2888), 1, - sym__block, - STATE(3491), 1, - sym__binding_pattern_kind, - STATE(4351), 1, - sym_simple_identifier, - STATE(4663), 1, - sym__type_casting_pattern, - STATE(4742), 1, - sym__simple_user_type, - STATE(4790), 1, - sym__dot, - STATE(4828), 1, - sym__binding_pattern_no_expr, - STATE(4860), 1, - sym__bound_identifier, - STATE(4862), 1, - sym__binding_pattern, - STATE(6141), 1, - sym_where_clause, - STATE(6181), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6561), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6563), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4851), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [103480] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5101), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103549] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1641), 1, - sym__type, - STATE(3617), 1, - sym_type_modifiers, - STATE(4934), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103616] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5767), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103683] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - STATE(2819), 1, - sym__type, - STATE(2854), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(3534), 1, - sym_type_modifiers, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2112), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103750] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1641), 1, - sym__type, - STATE(3617), 1, - sym_type_modifiers, - STATE(4931), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103817] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - STATE(2819), 1, - sym__type, - STATE(2845), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(3534), 1, - sym_type_modifiers, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2112), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103884] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 10, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2781), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [103923] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5679), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [103990] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(6323), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104057] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3517), 1, - sym_type_modifiers, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - STATE(4425), 1, - sym__type, - STATE(4629), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3734), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104124] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5103), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104193] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5434), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104260] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5141), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104327] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5710), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104394] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5165), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104463] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4558), 1, - sym__type, - STATE(4750), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104530] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5444), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104597] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5460), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104664] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - STATE(1732), 1, - sym__type, - STATE(1775), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(3582), 1, - sym_type_modifiers, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1401), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104731] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5115), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104800] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5038), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104867] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5461), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [104934] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(4785), 1, - sym__type, - STATE(4856), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105001] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3631), 1, - sym_type_modifiers, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - STATE(4568), 1, - sym__type, - STATE(4838), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3774), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105068] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5043), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105135] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4706), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105202] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(4785), 1, - sym__type, - STATE(4893), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105269] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(6474), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105336] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5066), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105405] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4728), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105472] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4708), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105539] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4794), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105606] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5467), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105673] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5886), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105740] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4652), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4675), 1, - sym__type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105807] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4661), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4675), 1, - sym__type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105874] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5252), 1, - sym__type, - STATE(5478), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [105941] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5163), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106010] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5171), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106079] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5118), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106148] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4651), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4675), 1, - sym__type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106215] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5243), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106284] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5095), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106353] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1641), 1, - sym__type, - STATE(1862), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(3617), 1, - sym_type_modifiers, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106420] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1641), 1, - sym__type, - STATE(1867), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(3617), 1, - sym_type_modifiers, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106487] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4735), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106554] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5162), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106623] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5157), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106692] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4843), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106759] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5069), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106826] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3632), 1, - sym_type_modifiers, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - STATE(4362), 1, - sym__type, - STATE(4409), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3687), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106893] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4666), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(4675), 1, - sym__type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [106960] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5025), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107029] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5026), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107098] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(6504), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107165] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5124), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107234] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5104), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107303] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5028), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107372] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5029), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107441] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5052), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107510] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5039), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107579] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5106), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107648] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - ACTIONS(6695), 1, - sym_wildcard_pattern, - STATE(1367), 1, - sym_tuple_type, - STATE(1380), 1, - sym__simple_user_type, - STATE(3617), 1, - sym_type_modifiers, - STATE(4018), 1, - sym_simple_identifier, - STATE(5077), 1, - sym__type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107715] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4683), 1, - sym__type, - STATE(5992), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107782] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5107), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107851] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5057), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107920] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5150), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [107989] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5143), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108056] = 18, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5147), 1, - sym__inheritance_specifiers, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4853), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108125] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5146), 1, - sym__possibly_implicitly_unwrapped_type, - STATE(5252), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108192] = 17, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4675), 1, - sym__type, - STATE(4807), 1, - sym__possibly_implicitly_unwrapped_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108259] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5503), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108323] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5845), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108387] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(4387), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108451] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5428), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108515] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(4357), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108579] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6256), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108643] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6315), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108707] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6294), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108771] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6441), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108835] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3647), 1, - sym_type_modifiers, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - STATE(4173), 1, - sym__type, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3876), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108899] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5948), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [108963] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6057), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109027] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3551), 1, - sym_type_modifiers, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - STATE(4488), 1, - sym__type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3784), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109091] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5925), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109155] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5894), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109219] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6247), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109283] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3647), 1, - sym_type_modifiers, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - STATE(4185), 1, - sym__type, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3876), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109347] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6048), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109411] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6178), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109475] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6271), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109539] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6120), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109603] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4013), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109667] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6230), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109731] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6059), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109795] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - STATE(2793), 1, - sym__type, - STATE(3584), 1, - sym_type_modifiers, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2649), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109859] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2317), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109923] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6343), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [109987] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5839), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110051] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5702), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110115] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5458), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110179] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - STATE(2799), 1, - sym__type, - STATE(3584), 1, - sym_type_modifiers, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2649), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110243] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6357), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110307] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6038), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110371] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - STATE(2796), 1, - sym__type, - STATE(3584), 1, - sym_type_modifiers, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2649), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110435] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5722), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110499] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6495), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110563] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5926), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110627] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5534), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110691] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6158), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110755] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - STATE(2677), 1, - sym__type, - STATE(3580), 1, - sym_type_modifiers, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1642), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110819] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6372), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110883] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5041), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [110947] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6006), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111011] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - STATE(1780), 1, - sym__type, - STATE(3582), 1, - sym_type_modifiers, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1401), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111075] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5822), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111139] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4047), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111203] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(3617), 1, - sym_type_modifiers, - STATE(4901), 1, - sym__type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111267] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(3617), 1, - sym_type_modifiers, - STATE(4880), 1, - sym__type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111331] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - STATE(2676), 1, - sym__type, - STATE(3580), 1, - sym_type_modifiers, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1642), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111395] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - STATE(1614), 1, - sym__type, - STATE(3609), 1, - sym_type_modifiers, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1370), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111459] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5325), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111523] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4028), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111587] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5742), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111651] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5660), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111715] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5338), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111779] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - STATE(1822), 1, - sym__type, - STATE(3539), 1, - sym_type_modifiers, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1571), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111843] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6382), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111907] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5433), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [111971] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6358), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112035] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6341), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112099] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5953), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112163] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - STATE(939), 1, - sym__type, - STATE(3524), 1, - sym_type_modifiers, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(842), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112227] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5576), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112291] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6319), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112355] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6092), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112419] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1442), 1, - sym__type, - STATE(3617), 1, - sym_type_modifiers, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112483] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5981), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112547] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - STATE(2007), 1, - sym__type, - STATE(3580), 1, - sym_type_modifiers, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1642), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112611] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5280), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112675] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5831), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112739] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3631), 1, - sym_type_modifiers, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - STATE(4123), 1, - sym__type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3774), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112803] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6261), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112867] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - STATE(1967), 1, - sym__type, - STATE(3640), 1, - sym_type_modifiers, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1598), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112931] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6488), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [112995] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3536), 1, - sym_type_modifiers, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - STATE(4665), 1, - sym__type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3824), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113059] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3551), 1, - sym_type_modifiers, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - STATE(4554), 1, - sym__type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3784), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113123] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5958), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113187] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5829), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113251] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6485), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113315] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3476), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(5180), 2, - sym_inheritance_specifier, - sym__annotated_inheritance_specifier, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113381] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5116), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113445] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - STATE(2908), 1, - sym__type, - STATE(3584), 1, - sym_type_modifiers, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2649), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113509] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6533), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113573] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6361), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113637] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5789), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113701] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3536), 1, - sym_type_modifiers, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - STATE(4147), 1, - sym__type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3824), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113765] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5062), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113829] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - STATE(1809), 1, - sym__type, - STATE(3539), 1, - sym_type_modifiers, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1571), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113893] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3632), 1, - sym_type_modifiers, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - STATE(3907), 1, - sym__type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3687), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [113957] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - STATE(2531), 1, - sym__type, - STATE(3576), 1, - sym_type_modifiers, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1988), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114021] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3632), 1, - sym_type_modifiers, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - STATE(3906), 1, - sym__type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3687), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114085] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6311), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114149] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - STATE(2536), 1, - sym__type, - STATE(3576), 1, - sym_type_modifiers, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1988), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114213] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3631), 1, - sym_type_modifiers, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - STATE(4119), 1, - sym__type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3774), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114277] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - STATE(2945), 1, - sym__type, - STATE(3584), 1, - sym_type_modifiers, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2649), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114341] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3631), 1, - sym_type_modifiers, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - STATE(4115), 1, - sym__type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3774), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114405] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5973), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114469] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1866), 1, - sym__type, - STATE(3617), 1, - sym_type_modifiers, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114533] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - STATE(1795), 1, - sym__type, - STATE(3539), 1, - sym_type_modifiers, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1571), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114597] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6180), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114661] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5963), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114725] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1861), 1, - sym__type, - STATE(3617), 1, - sym_type_modifiers, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114789] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - STATE(1041), 1, - sym__type, - STATE(3524), 1, - sym_type_modifiers, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(842), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114853] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(4363), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114917] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5825), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [114981] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3517), 1, - sym_type_modifiers, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - STATE(3997), 1, - sym__type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3734), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115045] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6476), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115109] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5967), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115173] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5821), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115237] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - STATE(2846), 1, - sym__type, - STATE(3534), 1, - sym_type_modifiers, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2112), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115301] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6468), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115365] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - STATE(2537), 1, - sym__type, - STATE(3576), 1, - sym_type_modifiers, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1988), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115429] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5802), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115493] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3632), 1, - sym_type_modifiers, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - STATE(3926), 1, - sym__type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3687), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115557] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2208), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115621] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - STATE(1460), 1, - sym__type, - STATE(3582), 1, - sym_type_modifiers, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1401), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115685] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5818), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115749] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5597), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115813] = 26, - ACTIONS(3210), 1, - anon_sym_async, - ACTIONS(3218), 1, - anon_sym_typealias, - ACTIONS(3222), 1, - anon_sym_enum, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3230), 1, - anon_sym_extension, - ACTIONS(3234), 1, - anon_sym_init, - ACTIONS(6829), 1, - anon_sym_case, - ACTIONS(6831), 1, - anon_sym_import, - ACTIONS(6833), 1, - anon_sym_class, - ACTIONS(6835), 1, - anon_sym_protocol, - ACTIONS(6837), 1, - anon_sym_indirect, - ACTIONS(6839), 1, - anon_sym_deinit, - ACTIONS(6841), 1, - anon_sym_subscript, - ACTIONS(6843), 1, - anon_sym_associatedtype, - STATE(2292), 1, - sym__modifierless_typealias_declaration, - STATE(2321), 1, - sym__modifierless_class_declaration, - STATE(2324), 1, - sym__modifierless_property_declaration, - STATE(3468), 1, - sym__possibly_async_binding_pattern_kind, - STATE(4153), 1, - sym__binding_pattern_kind, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(5341), 1, - sym__async_modifier, - STATE(6355), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3208), 2, - anon_sym_actor, - anon_sym_struct, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [115897] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6455), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [115961] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6496), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116025] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5485), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116089] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5349), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116153] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5814), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116217] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6450), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116281] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5542), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116345] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5807), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116409] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3632), 1, - sym_type_modifiers, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - STATE(4406), 1, - sym__type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3687), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116473] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3631), 1, - sym_type_modifiers, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - STATE(4760), 1, - sym__type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3774), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116537] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5971), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116601] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3647), 1, - sym_type_modifiers, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - STATE(4709), 1, - sym__type, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3876), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116665] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6505), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116729] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(4091), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116793] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5782), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116857] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6428), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116921] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5947), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [116985] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5248), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117049] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3517), 1, - sym_type_modifiers, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - STATE(4507), 1, - sym__type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3734), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117113] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6142), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117177] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5237), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117241] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5904), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117305] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2203), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117369] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(4089), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117433] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5513), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117497] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6498), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117561] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5555), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117625] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - STATE(2275), 1, - sym__type, - STATE(3620), 1, - sym_type_modifiers, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1767), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117689] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - STATE(2580), 1, - sym__type, - STATE(3546), 1, - sym_type_modifiers, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1618), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117753] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - STATE(2583), 1, - sym__type, - STATE(3546), 1, - sym_type_modifiers, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1618), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117817] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3551), 1, - sym_type_modifiers, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - STATE(4110), 1, - sym__type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3784), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117881] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5618), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [117945] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 9, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2857), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [117983] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3625), 1, - sym_type_modifiers, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - STATE(3796), 1, - sym__type, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3661), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118047] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - STATE(2267), 1, - sym__type, - STATE(3620), 1, - sym_type_modifiers, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1767), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118111] = 6, - ACTIONS(2682), 1, - anon_sym_unowned, - ACTIONS(6881), 1, - sym__dot_custom, - STATE(3459), 1, - aux_sym_user_type_repeat1, - STATE(4570), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 23, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [118155] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5409), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118219] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5801), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118283] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6009), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118347] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3647), 1, - sym_type_modifiers, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - STATE(4719), 1, - sym__type, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3876), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118411] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2201), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118475] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - STATE(2031), 1, - sym__type, - STATE(3580), 1, - sym_type_modifiers, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1642), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118539] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5090), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118603] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3625), 1, - sym_type_modifiers, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - STATE(3789), 1, - sym__type, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3661), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118667] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5798), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118731] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5794), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118795] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5841), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118859] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(4078), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118923] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - STATE(2035), 1, - sym__type, - STATE(3580), 1, - sym_type_modifiers, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1642), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [118987] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - STATE(1718), 1, - sym__type, - STATE(3563), 1, - sym_type_modifiers, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1523), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119051] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1450), 1, - sym__type, - STATE(3617), 1, - sym_type_modifiers, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119115] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(4887), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119179] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5792), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119243] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2241), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119307] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6473), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119371] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5412), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119435] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3625), 1, - sym_type_modifiers, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - STATE(3788), 1, - sym__type, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3661), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119499] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3631), 1, - sym_type_modifiers, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - STATE(4787), 1, - sym__type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3774), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119563] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(4854), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119627] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5943), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119691] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5790), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119755] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - STATE(1714), 1, - sym__type, - STATE(3563), 1, - sym_type_modifiers, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1523), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119819] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(1631), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119883] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5784), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [119947] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2192), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120011] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6511), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120075] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 9, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2899), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [120113] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(4007), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120177] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2189), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120241] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5035), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120305] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 9, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2875), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [120343] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3625), 1, - sym_type_modifiers, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - STATE(4240), 1, - sym__type, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3661), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120407] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3647), 1, - sym_type_modifiers, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - STATE(4166), 1, - sym__type, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3876), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120471] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - STATE(1709), 1, - sym__type, - STATE(3563), 1, - sym_type_modifiers, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1523), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120535] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - STATE(979), 1, - sym__type, - STATE(3602), 1, - sym_type_modifiers, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(857), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120599] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3550), 1, - sym_type_modifiers, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - STATE(4245), 1, - sym__type, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3941), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120663] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3594), 1, - sym_type_modifiers, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - STATE(4300), 1, - sym__type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3678), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120727] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - STATE(1768), 1, - sym__type, - STATE(3582), 1, - sym_type_modifiers, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1401), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120791] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - STATE(981), 1, - sym__type, - STATE(3602), 1, - sym_type_modifiers, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(857), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120855] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - STATE(972), 1, - sym__type, - STATE(3602), 1, - sym_type_modifiers, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(857), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120919] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5938), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [120983] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - STATE(1091), 1, - sym__type, - STATE(3602), 1, - sym_type_modifiers, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(857), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121047] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - STATE(1092), 1, - sym__type, - STATE(3602), 1, - sym_type_modifiers, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(857), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121111] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - STATE(2069), 1, - sym__type, - STATE(3546), 1, - sym_type_modifiers, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1618), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121175] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5380), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121239] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - STATE(689), 1, - sym__type, - STATE(3634), 1, - sym_type_modifiers, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(621), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121303] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6514), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121367] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5849), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121431] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5933), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121495] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6518), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121559] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3517), 1, - sym_type_modifiers, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - STATE(4002), 1, - sym__type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3734), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121623] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5067), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121687] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3517), 1, - sym_type_modifiers, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - STATE(4008), 1, - sym__type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3734), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121751] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5681), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121815] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - STATE(1859), 1, - sym__type, - STATE(3640), 1, - sym_type_modifiers, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1598), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121879] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3594), 1, - sym_type_modifiers, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - STATE(4335), 1, - sym__type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3678), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [121943] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5853), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122007] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - STATE(679), 1, - sym__type, - STATE(3634), 1, - sym_type_modifiers, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(621), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122071] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3550), 1, - sym_type_modifiers, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - STATE(4281), 1, - sym__type, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3941), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122135] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6076), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122199] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(1444), 1, - sym__type, - STATE(3617), 1, - sym_type_modifiers, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122263] = 6, - ACTIONS(2731), 1, - anon_sym_unowned, - ACTIONS(6931), 1, - sym__dot_custom, - STATE(3352), 1, - aux_sym_user_type_repeat1, - STATE(4570), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 23, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [122307] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5928), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122371] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5048), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122435] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - STATE(687), 1, - sym__type, - STATE(3634), 1, - sym_type_modifiers, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(621), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122499] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6499), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122563] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6326), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122627] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3517), 1, - sym_type_modifiers, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - STATE(4556), 1, - sym__type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3734), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122691] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - STATE(2855), 1, - sym__type, - STATE(3534), 1, - sym_type_modifiers, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2112), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122755] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - STATE(2283), 1, - sym__type, - STATE(3620), 1, - sym_type_modifiers, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1767), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122819] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - STATE(2418), 1, - sym__type, - STATE(3539), 1, - sym_type_modifiers, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1571), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122883] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - STATE(2441), 1, - sym__type, - STATE(3539), 1, - sym_type_modifiers, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1571), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [122947] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5901), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123011] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4186), 1, - sym__type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123075] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - STATE(1462), 1, - sym__type, - STATE(3582), 1, - sym_type_modifiers, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1401), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123139] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5639), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123203] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5842), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123267] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6560), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123331] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5862), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123395] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - STATE(1461), 1, - sym__type, - STATE(3582), 1, - sym_type_modifiers, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1401), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123459] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6510), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123523] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5633), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123587] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3551), 1, - sym_type_modifiers, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - STATE(4102), 1, - sym__type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3784), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123651] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5952), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123715] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3550), 1, - sym_type_modifiers, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - STATE(4266), 1, - sym__type, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3941), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123779] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4205), 1, - sym__type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123843] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5422), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123907] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2290), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [123971] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3575), 1, - sym_type_modifiers, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - STATE(4164), 1, - sym__type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3867), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124035] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - STATE(2770), 1, - sym__type, - STATE(3620), 1, - sym_type_modifiers, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1767), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124099] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5888), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124163] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - STATE(2081), 1, - sym__type, - STATE(3546), 1, - sym_type_modifiers, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1618), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124227] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - STATE(1873), 1, - sym__type, - STATE(3640), 1, - sym_type_modifiers, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1598), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124291] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5403), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124355] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3536), 1, - sym_type_modifiers, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - STATE(4199), 1, - sym__type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3824), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124419] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(3617), 1, - sym_type_modifiers, - STATE(5114), 1, - sym__type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124483] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3616), 1, - sym_type_modifiers, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - STATE(4491), 1, - sym__type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124547] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5993), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124611] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4051), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124675] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2268), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124739] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - STATE(1596), 1, - sym__type, - STATE(3609), 1, - sym_type_modifiers, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1370), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124803] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5678), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124867] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 9, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(2731), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [124905] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5396), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [124969] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - STATE(2351), 1, - sym__type, - STATE(3563), 1, - sym_type_modifiers, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1523), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125033] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - STATE(2492), 1, - sym__type, - STATE(3640), 1, - sym_type_modifiers, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1598), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125097] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6107), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125161] = 5, - ACTIONS(2832), 1, - anon_sym_unowned, - ACTIONS(6934), 1, - anon_sym_LT, - STATE(3494), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [125203] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - STATE(2494), 1, - sym__type, - STATE(3640), 1, - sym_type_modifiers, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1598), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125267] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3616), 1, - sym_type_modifiers, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - STATE(3970), 1, - sym__type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125331] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3616), 1, - sym_type_modifiers, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - STATE(3971), 1, - sym__type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125395] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - STATE(1039), 1, - sym__type, - STATE(3524), 1, - sym_type_modifiers, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(842), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125459] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - STATE(1432), 1, - sym__type, - STATE(3609), 1, - sym_type_modifiers, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1370), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125523] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3616), 1, - sym_type_modifiers, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - STATE(3973), 1, - sym__type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125587] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(5314), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125651] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5321), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125715] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5045), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125779] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6536), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125843] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3614), 1, - sym_type_modifiers, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4062), 1, - sym__type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3779), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125907] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2140), 1, - sym__type, - STATE(3523), 1, - sym_type_modifiers, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1710), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [125971] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(1669), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126035] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5858), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126099] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - STATE(2775), 1, - sym__type, - STATE(3620), 1, - sym_type_modifiers, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1767), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126163] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - STATE(2667), 1, - sym__type, - STATE(3534), 1, - sym_type_modifiers, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2112), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126227] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5923), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126291] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3536), 1, - sym_type_modifiers, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - STATE(4193), 1, - sym__type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3824), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126355] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - STATE(2102), 1, - sym__type, - STATE(3546), 1, - sym_type_modifiers, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1618), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126419] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - STATE(775), 1, - sym__type, - STATE(3634), 1, - sym_type_modifiers, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(621), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126483] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6391), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126547] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - STATE(774), 1, - sym__type, - STATE(3634), 1, - sym_type_modifiers, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(621), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126611] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - STATE(3617), 1, - sym_type_modifiers, - STATE(5112), 1, - sym__type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1384), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126675] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6570), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126739] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5873), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126803] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - STATE(2680), 1, - sym__type, - STATE(3534), 1, - sym_type_modifiers, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2112), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126867] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5968), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126931] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - STATE(2679), 1, - sym__type, - STATE(3534), 1, - sym_type_modifiers, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2112), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [126995] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - STATE(1440), 1, - sym__type, - STATE(3609), 1, - sym_type_modifiers, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1370), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127059] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(1671), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127123] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - STATE(2352), 1, - sym__type, - STATE(3563), 1, - sym_type_modifiers, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1523), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127187] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2138), 1, - sym__type, - STATE(3523), 1, - sym_type_modifiers, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1710), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127251] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3594), 1, - sym_type_modifiers, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - STATE(3889), 1, - sym__type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3678), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127315] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5492), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127379] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3594), 1, - sym_type_modifiers, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - STATE(3866), 1, - sym__type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3678), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127443] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - STATE(1436), 1, - sym__type, - STATE(3609), 1, - sym_type_modifiers, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1370), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127507] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6393), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127571] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3594), 1, - sym_type_modifiers, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - STATE(3855), 1, - sym__type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3678), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127635] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2105), 1, - sym__type, - STATE(3523), 1, - sym_type_modifiers, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1710), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127699] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5918), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127763] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - STATE(936), 1, - sym__type, - STATE(3524), 1, - sym_type_modifiers, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(842), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127827] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6274), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127891] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5762), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [127955] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - STATE(934), 1, - sym__type, - STATE(3524), 1, - sym_type_modifiers, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(842), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128019] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3544), 1, - sym_type_modifiers, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - STATE(5377), 1, - sym__type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4055), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128083] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6419), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128147] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3625), 1, - sym_type_modifiers, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - STATE(4272), 1, - sym__type, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3661), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128211] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6081), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128275] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5887), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128339] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6418), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128403] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3536), 1, - sym_type_modifiers, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - STATE(4753), 1, - sym__type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3824), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128467] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3632), 1, - sym_type_modifiers, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - STATE(4477), 1, - sym__type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3687), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128531] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - STATE(2249), 1, - sym__type, - STATE(3543), 1, - sym_type_modifiers, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1500), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128595] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3569), 1, - sym_type_modifiers, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - STATE(5177), 1, - sym__type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128659] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3551), 1, - sym_type_modifiers, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - STATE(4096), 1, - sym__type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3784), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128723] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3616), 1, - sym_type_modifiers, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - STATE(4587), 1, - sym__type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128787] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5470), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128851] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(5515), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128915] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2737), 1, - sym__type, - STATE(3523), 1, - sym_type_modifiers, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1710), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [128979] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6047), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [129043] = 6, - ACTIONS(2671), 1, - anon_sym_unowned, - ACTIONS(6881), 1, - sym__dot_custom, - STATE(3352), 1, - aux_sym_user_type_repeat1, - STATE(4570), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 23, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [129087] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6453), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [129151] = 16, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_type_modifiers, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - STATE(6115), 1, - sym__type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3727), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [129215] = 16, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - STATE(2717), 1, - sym__type, - STATE(3523), 1, - sym_type_modifiers, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4208), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1710), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [129279] = 21, - ACTIONS(6952), 1, - anon_sym_LPAREN, - ACTIONS(6954), 1, - anon_sym_case, - ACTIONS(6956), 1, - anon_sym_is, - ACTIONS(6958), 1, - sym_wildcard_pattern, - ACTIONS(6960), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4003), 1, - sym_simple_identifier, - STATE(4054), 1, - sym__no_expr_pattern_already_bound, - STATE(4209), 1, - sym__bound_identifier, - STATE(4226), 1, - sym__type_casting_pattern, - STATE(4696), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(4990), 1, - sym__single_modifierless_property_declaration, - STATE(6002), 1, - sym_user_type, - STATE(6060), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6948), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6950), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4207), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129352] = 3, - ACTIONS(2781), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 25, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_LT, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [129389] = 25, - ACTIONS(3210), 1, - anon_sym_async, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3234), 1, - anon_sym_init, - ACTIONS(3397), 1, - anon_sym_typealias, - ACTIONS(3401), 1, - anon_sym_enum, - ACTIONS(3405), 1, - anon_sym_extension, - ACTIONS(3407), 1, - anon_sym_indirect, - ACTIONS(6962), 1, - anon_sym_import, - ACTIONS(6964), 1, - anon_sym_class, - ACTIONS(6966), 1, - anon_sym_protocol, - ACTIONS(6968), 1, - anon_sym_deinit, - ACTIONS(6970), 1, - anon_sym_subscript, - ACTIONS(6972), 1, - anon_sym_associatedtype, - STATE(3467), 1, - sym__possibly_async_binding_pattern_kind, - STATE(4153), 1, - sym__binding_pattern_kind, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(5341), 1, - sym__async_modifier, - STATE(5658), 1, - sym__modifierless_class_declaration, - STATE(5659), 1, - sym__modifierless_typealias_declaration, - STATE(5662), 1, - sym__modifierless_property_declaration, - STATE(6355), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(3391), 2, - anon_sym_actor, - anon_sym_struct, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129470] = 21, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_case, - ACTIONS(6980), 1, - anon_sym_is, - ACTIONS(6982), 1, - sym_wildcard_pattern, - ACTIONS(6984), 1, - sym__dot_custom, - STATE(2611), 1, - sym_simple_identifier, - STATE(2751), 1, - sym__no_expr_pattern_already_bound, - STATE(2765), 1, - sym__bound_identifier, - STATE(2792), 1, - sym__type_casting_pattern, - STATE(2875), 1, - sym__single_modifierless_property_declaration, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4643), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6225), 1, - sym_user_type, - STATE(6228), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6974), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6976), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2756), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129543] = 21, - ACTIONS(6990), 1, - anon_sym_LPAREN, - ACTIONS(6992), 1, - anon_sym_case, - ACTIONS(6994), 1, - anon_sym_is, - ACTIONS(6996), 1, - sym_wildcard_pattern, - ACTIONS(6998), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4053), 1, - sym_simple_identifier, - STATE(4204), 1, - sym__no_expr_pattern_already_bound, - STATE(4262), 1, - sym__bound_identifier, - STATE(4310), 1, - sym__type_casting_pattern, - STATE(4679), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(4940), 1, - sym__single_modifierless_property_declaration, - STATE(6184), 1, - sym__binding_pattern_no_expr, - STATE(6203), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6986), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6988), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4251), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129616] = 21, - ACTIONS(4390), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_case, - ACTIONS(7006), 1, - anon_sym_is, - ACTIONS(7008), 1, - sym_wildcard_pattern, - ACTIONS(7010), 1, - sym__dot_custom, - STATE(1490), 1, - sym_simple_identifier, - STATE(1506), 1, - sym__no_expr_pattern_already_bound, - STATE(1540), 1, - sym__bound_identifier, - STATE(1586), 1, - sym__type_casting_pattern, - STATE(1993), 1, - sym__single_modifierless_property_declaration, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4732), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6012), 1, - sym__binding_pattern_no_expr, - STATE(6095), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7000), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7002), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1567), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129689] = 21, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - ACTIONS(7012), 1, - anon_sym_await, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(3506), 1, - sym__await_operator, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4890), 1, - sym__bound_identifier, - STATE(4974), 1, - sym__binding_pattern_no_expr, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129762] = 21, - ACTIONS(6952), 1, - anon_sym_LPAREN, - ACTIONS(6954), 1, - anon_sym_case, - ACTIONS(6956), 1, - anon_sym_is, - ACTIONS(6958), 1, - sym_wildcard_pattern, - ACTIONS(6960), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4003), 1, - sym_simple_identifier, - STATE(4054), 1, - sym__no_expr_pattern_already_bound, - STATE(4209), 1, - sym__bound_identifier, - STATE(4226), 1, - sym__type_casting_pattern, - STATE(4673), 1, - sym__single_modifierless_property_declaration, - STATE(4696), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6002), 1, - sym_user_type, - STATE(6060), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6948), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6950), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4207), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129835] = 21, - ACTIONS(6990), 1, - anon_sym_LPAREN, - ACTIONS(6992), 1, - anon_sym_case, - ACTIONS(6994), 1, - anon_sym_is, - ACTIONS(6996), 1, - sym_wildcard_pattern, - ACTIONS(6998), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4053), 1, - sym_simple_identifier, - STATE(4204), 1, - sym__no_expr_pattern_already_bound, - STATE(4262), 1, - sym__bound_identifier, - STATE(4310), 1, - sym__type_casting_pattern, - STATE(4679), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(5220), 1, - sym__single_modifierless_property_declaration, - STATE(6184), 1, - sym__binding_pattern_no_expr, - STATE(6203), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6986), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6988), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4251), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [129908] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3491), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3489), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [129945] = 21, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - ACTIONS(7014), 1, - anon_sym_await, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(3509), 1, - sym__await_operator, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4890), 1, - sym__bound_identifier, - STATE(5020), 1, - sym__binding_pattern_no_expr, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130018] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3523), 8, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3521), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [130055] = 4, - ACTIONS(7016), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3495), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(3493), 18, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_async, - anon_sym_in, - anon_sym_self, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [130094] = 17, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(621), 1, - anon_sym_AT, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - STATE(4247), 1, - sym_user_type, - STATE(4278), 1, - sym_tuple_type, - STATE(4374), 1, - sym_function_type, - STATE(5023), 1, - sym_inheritance_specifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(3860), 2, - sym_array_type, - sym_dictionary_type, - STATE(4167), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4311), 6, - sym__unannotated_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [130159] = 21, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_case, - ACTIONS(6980), 1, - anon_sym_is, - ACTIONS(6982), 1, - sym_wildcard_pattern, - ACTIONS(6984), 1, - sym__dot_custom, - STATE(2611), 1, - sym_simple_identifier, - STATE(2751), 1, - sym__no_expr_pattern_already_bound, - STATE(2765), 1, - sym__bound_identifier, - STATE(2792), 1, - sym__type_casting_pattern, - STATE(2896), 1, - sym__single_modifierless_property_declaration, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4643), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6225), 1, - sym_user_type, - STATE(6228), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6974), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6976), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2756), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130232] = 7, - ACTIONS(5186), 1, - anon_sym_actor, - ACTIONS(7019), 1, - anon_sym_AT, - ACTIONS(5191), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5182), 3, - aux_sym_simple_identifier_token1, - anon_sym_in, - anon_sym_self, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5184), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(5189), 14, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned, - [130277] = 21, - ACTIONS(4390), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_case, - ACTIONS(7006), 1, - anon_sym_is, - ACTIONS(7008), 1, - sym_wildcard_pattern, - ACTIONS(7010), 1, - sym__dot_custom, - STATE(1490), 1, - sym_simple_identifier, - STATE(1506), 1, - sym__no_expr_pattern_already_bound, - STATE(1540), 1, - sym__bound_identifier, - STATE(1586), 1, - sym__type_casting_pattern, - STATE(2141), 1, - sym__single_modifierless_property_declaration, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4732), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6012), 1, - sym__binding_pattern_no_expr, - STATE(6095), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7000), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7002), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1567), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130350] = 20, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_case, - ACTIONS(6980), 1, - anon_sym_is, - ACTIONS(6984), 1, - sym__dot_custom, - ACTIONS(7022), 1, - sym_wildcard_pattern, - STATE(2611), 1, - sym_simple_identifier, - STATE(2779), 1, - sym__bound_identifier, - STATE(2792), 1, - sym__type_casting_pattern, - STATE(2797), 1, - sym__no_expr_pattern_already_bound, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4643), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6225), 1, - sym_user_type, - STATE(6228), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6974), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6976), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2788), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130420] = 20, - ACTIONS(7028), 1, - anon_sym_LPAREN, - ACTIONS(7030), 1, - anon_sym_case, - ACTIONS(7032), 1, - anon_sym_is, - ACTIONS(7034), 1, - sym_wildcard_pattern, - ACTIONS(7036), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4296), 1, - sym_simple_identifier, - STATE(4454), 1, - sym__bound_identifier, - STATE(4565), 1, - sym__type_casting_pattern, - STATE(4598), 1, - sym__no_expr_pattern_already_bound, - STATE(4742), 1, - sym__simple_user_type, - STATE(4744), 1, - sym__dot, - STATE(4865), 1, - sym__binding_pattern, - STATE(6102), 1, - sym__binding_pattern_no_expr, - STATE(6147), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7024), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7026), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4447), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130490] = 3, - ACTIONS(2731), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [130526] = 20, - ACTIONS(6952), 1, - anon_sym_LPAREN, - ACTIONS(6954), 1, - anon_sym_case, - ACTIONS(6956), 1, - anon_sym_is, - ACTIONS(6960), 1, - sym__dot_custom, - ACTIONS(7038), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4003), 1, - sym_simple_identifier, - STATE(4226), 1, - sym__type_casting_pattern, - STATE(4248), 1, - sym__bound_identifier, - STATE(4330), 1, - sym__no_expr_pattern_already_bound, - STATE(4696), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6002), 1, - sym_user_type, - STATE(6060), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6948), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6950), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4285), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130596] = 3, - ACTIONS(2875), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [130632] = 20, - ACTIONS(4390), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_case, - ACTIONS(7006), 1, - anon_sym_is, - ACTIONS(7010), 1, - sym__dot_custom, - ACTIONS(7040), 1, - sym_wildcard_pattern, - STATE(1490), 1, - sym_simple_identifier, - STATE(1586), 1, - sym__type_casting_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4396), 1, - sym__bound_identifier, - STATE(4543), 1, - sym__no_expr_pattern_already_bound, - STATE(4732), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6012), 1, - sym__binding_pattern_no_expr, - STATE(6095), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7000), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7002), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4398), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130702] = 20, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_case, - ACTIONS(6980), 1, - anon_sym_is, - ACTIONS(6982), 1, - sym_wildcard_pattern, - ACTIONS(6984), 1, - sym__dot_custom, - STATE(2611), 1, - sym_simple_identifier, - STATE(2765), 1, - sym__bound_identifier, - STATE(2792), 1, - sym__type_casting_pattern, - STATE(2821), 1, - sym__no_expr_pattern_already_bound, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4643), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6225), 1, - sym_user_type, - STATE(6228), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6974), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6976), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2756), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130772] = 20, - ACTIONS(7028), 1, - anon_sym_LPAREN, - ACTIONS(7030), 1, - anon_sym_case, - ACTIONS(7032), 1, - anon_sym_is, - ACTIONS(7036), 1, - sym__dot_custom, - ACTIONS(7042), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4296), 1, - sym_simple_identifier, - STATE(4440), 1, - sym__bound_identifier, - STATE(4565), 1, - sym__type_casting_pattern, - STATE(4742), 1, - sym__simple_user_type, - STATE(4744), 1, - sym__dot, - STATE(4865), 1, - sym__binding_pattern, - STATE(4978), 1, - sym__no_expr_pattern_already_bound, - STATE(6102), 1, - sym__binding_pattern_no_expr, - STATE(6147), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7024), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7026), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4444), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130842] = 20, - ACTIONS(4390), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_case, - ACTIONS(7006), 1, - anon_sym_is, - ACTIONS(7008), 1, - sym_wildcard_pattern, - ACTIONS(7010), 1, - sym__dot_custom, - STATE(1490), 1, - sym_simple_identifier, - STATE(1540), 1, - sym__bound_identifier, - STATE(1586), 1, - sym__type_casting_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4732), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(5012), 1, - sym__no_expr_pattern_already_bound, - STATE(6012), 1, - sym__binding_pattern_no_expr, - STATE(6095), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7000), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7002), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1567), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130912] = 20, - ACTIONS(6952), 1, - anon_sym_LPAREN, - ACTIONS(6954), 1, - anon_sym_case, - ACTIONS(6956), 1, - anon_sym_is, - ACTIONS(6958), 1, - sym_wildcard_pattern, - ACTIONS(6960), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4003), 1, - sym_simple_identifier, - STATE(4209), 1, - sym__bound_identifier, - STATE(4226), 1, - sym__type_casting_pattern, - STATE(4421), 1, - sym__no_expr_pattern_already_bound, - STATE(4696), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6002), 1, - sym_user_type, - STATE(6060), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6948), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6950), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4207), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [130982] = 20, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(6978), 1, - anon_sym_case, - ACTIONS(6980), 1, - anon_sym_is, - ACTIONS(6984), 1, - sym__dot_custom, - ACTIONS(7022), 1, - sym_wildcard_pattern, - STATE(2611), 1, - sym_simple_identifier, - STATE(2779), 1, - sym__bound_identifier, - STATE(2792), 1, - sym__type_casting_pattern, - STATE(2794), 1, - sym__no_expr_pattern_already_bound, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4643), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6225), 1, - sym_user_type, - STATE(6228), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6974), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6976), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2788), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131052] = 20, - ACTIONS(811), 1, - anon_sym_is, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - sym__dot_custom, - ACTIONS(7044), 1, - anon_sym_case, - ACTIONS(7046), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4351), 1, - sym_simple_identifier, - STATE(4601), 1, - sym__bound_identifier, - STATE(4663), 1, - sym__type_casting_pattern, - STATE(4742), 1, - sym__simple_user_type, - STATE(4790), 1, - sym__dot, - STATE(4840), 1, - sym__no_expr_pattern_already_bound, - STATE(4865), 1, - sym__binding_pattern, - STATE(6181), 1, - sym_user_type, - STATE(6206), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6561), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6563), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4561), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131122] = 20, - ACTIONS(811), 1, - anon_sym_is, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - sym__dot_custom, - ACTIONS(7044), 1, - anon_sym_case, - ACTIONS(7046), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4351), 1, - sym_simple_identifier, - STATE(4601), 1, - sym__bound_identifier, - STATE(4663), 1, - sym__type_casting_pattern, - STATE(4742), 1, - sym__simple_user_type, - STATE(4745), 1, - sym__no_expr_pattern_already_bound, - STATE(4790), 1, - sym__dot, - STATE(4865), 1, - sym__binding_pattern, - STATE(6181), 1, - sym_user_type, - STATE(6206), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6561), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6563), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4561), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131192] = 20, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6530), 1, - sym__dot_custom, - ACTIONS(7048), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4380), 1, - sym_simple_identifier, - STATE(4562), 1, - sym__bound_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4763), 1, - sym__no_expr_pattern_already_bound, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(5978), 1, - sym_user_type, - STATE(6152), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4564), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131262] = 3, - ACTIONS(2857), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [131298] = 20, - ACTIONS(7028), 1, - anon_sym_LPAREN, - ACTIONS(7030), 1, - anon_sym_case, - ACTIONS(7032), 1, - anon_sym_is, - ACTIONS(7034), 1, - sym_wildcard_pattern, - ACTIONS(7036), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4296), 1, - sym_simple_identifier, - STATE(4454), 1, - sym__bound_identifier, - STATE(4565), 1, - sym__type_casting_pattern, - STATE(4591), 1, - sym__no_expr_pattern_already_bound, - STATE(4742), 1, - sym__simple_user_type, - STATE(4744), 1, - sym__dot, - STATE(4865), 1, - sym__binding_pattern, - STATE(6102), 1, - sym__binding_pattern_no_expr, - STATE(6147), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7024), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7026), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4447), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131368] = 3, - ACTIONS(2899), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 24, - sym__dot_custom, - anon_sym_actor, - anon_sym_LPAREN, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [131404] = 20, - ACTIONS(811), 1, - anon_sym_is, - ACTIONS(6565), 1, - anon_sym_LPAREN, - ACTIONS(6571), 1, - sym__dot_custom, - ACTIONS(7044), 1, - anon_sym_case, - ACTIONS(7050), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4351), 1, - sym_simple_identifier, - STATE(4663), 1, - sym__type_casting_pattern, - STATE(4742), 1, - sym__simple_user_type, - STATE(4790), 1, - sym__dot, - STATE(4799), 1, - sym__bound_identifier, - STATE(4865), 1, - sym__binding_pattern, - STATE(5318), 1, - sym__no_expr_pattern_already_bound, - STATE(6181), 1, - sym_user_type, - STATE(6206), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6561), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6563), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4645), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131474] = 20, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6530), 1, - sym__dot_custom, - ACTIONS(7048), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4380), 1, - sym_simple_identifier, - STATE(4562), 1, - sym__bound_identifier, - STATE(4646), 1, - sym__no_expr_pattern_already_bound, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(5978), 1, - sym_user_type, - STATE(6152), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4564), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131544] = 20, - ACTIONS(4390), 1, - anon_sym_LPAREN, - ACTIONS(7004), 1, - anon_sym_case, - ACTIONS(7006), 1, - anon_sym_is, - ACTIONS(7010), 1, - sym__dot_custom, - ACTIONS(7040), 1, - sym_wildcard_pattern, - STATE(1490), 1, - sym_simple_identifier, - STATE(1586), 1, - sym__type_casting_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4396), 1, - sym__bound_identifier, - STATE(4617), 1, - sym__no_expr_pattern_already_bound, - STATE(4732), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6012), 1, - sym__binding_pattern_no_expr, - STATE(6095), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7000), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7002), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4398), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131614] = 20, - ACTIONS(6952), 1, - anon_sym_LPAREN, - ACTIONS(6954), 1, - anon_sym_case, - ACTIONS(6956), 1, - anon_sym_is, - ACTIONS(6960), 1, - sym__dot_custom, - ACTIONS(7038), 1, - sym_wildcard_pattern, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4003), 1, - sym_simple_identifier, - STATE(4226), 1, - sym__type_casting_pattern, - STATE(4248), 1, - sym__bound_identifier, - STATE(4319), 1, - sym__no_expr_pattern_already_bound, - STATE(4696), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(4865), 1, - sym__binding_pattern, - STATE(6002), 1, - sym_user_type, - STATE(6060), 1, - sym__binding_pattern_no_expr, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6948), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6950), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4285), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131684] = 19, - ACTIONS(7028), 1, - anon_sym_LPAREN, - ACTIONS(7032), 1, - anon_sym_is, - ACTIONS(7036), 1, - sym__dot_custom, - ACTIONS(7052), 1, - anon_sym_case, - ACTIONS(7054), 1, - sym_wildcard_pattern, - STATE(3481), 1, - sym__binding_pattern_kind, - STATE(4296), 1, - sym_simple_identifier, - STATE(4446), 1, - sym__binding_pattern, - STATE(4448), 1, - sym__binding_pattern_no_expr, - STATE(4451), 1, - sym__bound_identifier, - STATE(4565), 1, - sym__type_casting_pattern, - STATE(4742), 1, - sym__simple_user_type, - STATE(4744), 1, - sym__dot, - STATE(6147), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7024), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7026), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4452), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131751] = 23, - ACTIONS(3210), 1, - anon_sym_async, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3234), 1, - anon_sym_init, - ACTIONS(4085), 1, - anon_sym_typealias, - ACTIONS(4423), 1, - anon_sym_enum, - ACTIONS(4425), 1, - anon_sym_extension, - ACTIONS(4427), 1, - anon_sym_indirect, - ACTIONS(7056), 1, - anon_sym_import, - ACTIONS(7058), 1, - anon_sym_class, - ACTIONS(7060), 1, - anon_sym_protocol, - ACTIONS(7062), 1, - anon_sym_associatedtype, - STATE(3470), 1, - sym__possibly_async_binding_pattern_kind, - STATE(4153), 1, - sym__binding_pattern_kind, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(5202), 1, - sym__modifierless_typealias_declaration, - STATE(5341), 1, - sym__async_modifier, - STATE(5512), 1, - sym__modifierless_property_declaration, - STATE(5526), 1, - sym__modifierless_class_declaration, - STATE(6355), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(4416), 2, - anon_sym_actor, - anon_sym_struct, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131826] = 19, - ACTIONS(4390), 1, - anon_sym_LPAREN, - ACTIONS(7006), 1, - anon_sym_is, - ACTIONS(7010), 1, - sym__dot_custom, - ACTIONS(7064), 1, - anon_sym_case, - ACTIONS(7066), 1, - sym_wildcard_pattern, - STATE(1490), 1, - sym_simple_identifier, - STATE(1586), 1, - sym__type_casting_pattern, - STATE(3499), 1, - sym__binding_pattern_kind, - STATE(4430), 1, - sym__bound_identifier, - STATE(4431), 1, - sym__binding_pattern, - STATE(4473), 1, - sym__binding_pattern_no_expr, - STATE(4732), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6095), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7000), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7002), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4429), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131893] = 4, - ACTIONS(3493), 1, - anon_sym_unowned, - ACTIONS(7068), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3495), 22, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [131930] = 19, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4890), 1, - sym__bound_identifier, - STATE(4977), 1, - sym__binding_pattern_no_expr, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [131997] = 19, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4890), 1, - sym__bound_identifier, - STATE(4966), 1, - sym__binding_pattern_no_expr, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [132064] = 19, - ACTIONS(6952), 1, - anon_sym_LPAREN, - ACTIONS(6956), 1, - anon_sym_is, - ACTIONS(6960), 1, - sym__dot_custom, - ACTIONS(7070), 1, - anon_sym_case, - ACTIONS(7072), 1, - sym_wildcard_pattern, - STATE(3483), 1, - sym__binding_pattern_kind, - STATE(4003), 1, - sym_simple_identifier, - STATE(4213), 1, - sym__binding_pattern, - STATE(4226), 1, - sym__type_casting_pattern, - STATE(4249), 1, - sym__bound_identifier, - STATE(4257), 1, - sym__binding_pattern_no_expr, - STATE(4696), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6002), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6948), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6950), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4225), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [132131] = 19, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4890), 1, - sym__bound_identifier, - STATE(5019), 1, - sym__binding_pattern_no_expr, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [132198] = 19, - ACTIONS(743), 1, - anon_sym_case, - ACTIONS(745), 1, - anon_sym_is, - ACTIONS(6520), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_wildcard_pattern, - ACTIONS(6530), 1, - sym__dot_custom, - STATE(3498), 1, - sym__binding_pattern_kind, - STATE(4380), 1, - sym_simple_identifier, - STATE(4742), 1, - sym__simple_user_type, - STATE(4764), 1, - sym__dot, - STATE(4839), 1, - sym__type_casting_pattern, - STATE(4865), 1, - sym__binding_pattern, - STATE(4890), 1, - sym__bound_identifier, - STATE(4915), 1, - sym__binding_pattern_no_expr, - STATE(5978), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6516), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6518), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4910), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [132265] = 19, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(6980), 1, - anon_sym_is, - ACTIONS(6984), 1, - sym__dot_custom, - ACTIONS(7074), 1, - anon_sym_case, - ACTIONS(7076), 1, - sym_wildcard_pattern, - STATE(2611), 1, - sym_simple_identifier, - STATE(2774), 1, - sym__binding_pattern_no_expr, - STATE(2782), 1, - sym__binding_pattern, - STATE(2784), 1, - sym__bound_identifier, - STATE(2792), 1, - sym__type_casting_pattern, - STATE(3490), 1, - sym__binding_pattern_kind, - STATE(4643), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6225), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(6974), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6976), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2787), 3, - sym__universally_allowed_pattern, - sym__tuple_pattern, - sym__case_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [132332] = 3, - ACTIONS(3521), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3523), 22, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [132366] = 7, - ACTIONS(7078), 1, - anon_sym_AT, - ACTIONS(7081), 1, - anon_sym_final, - ACTIONS(7087), 1, - anon_sym_unowned, - ACTIONS(7084), 3, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3512), 5, - sym_attribute, - aux_sym__locally_permitted_modifiers, - sym__locally_permitted_modifier, - sym_inheritance_modifier, - sym_ownership_modifier, - ACTIONS(5045), 12, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - [132408] = 3, - ACTIONS(3489), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3491), 22, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [132442] = 5, - ACTIONS(5189), 1, - anon_sym_unowned, - ACTIONS(7019), 1, - anon_sym_AT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5184), 5, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_mutating, - anon_sym_nonmutating, - ACTIONS(5191), 16, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [132480] = 12, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3770), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132531] = 12, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3653), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132582] = 12, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3707), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132633] = 12, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(844), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132684] = 12, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3759), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132735] = 12, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3763), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132786] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3782), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132837] = 12, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3709), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132888] = 12, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1716), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132939] = 12, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(843), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [132990] = 12, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1481), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133041] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3814), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133092] = 12, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(838), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133143] = 12, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3772), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133194] = 12, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3711), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133245] = 12, - ACTIONS(6797), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_LBRACK, - ACTIONS(6801), 1, - anon_sym_some, - ACTIONS(6803), 1, - anon_sym_any, - STATE(841), 1, - sym_tuple_type, - STATE(867), 1, - sym__simple_user_type, - STATE(888), 1, - sym_simple_identifier, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(872), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(840), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133296] = 12, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3844), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133347] = 12, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4079), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133398] = 12, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2120), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133449] = 12, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2116), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133500] = 12, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2115), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133551] = 12, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3836), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133602] = 12, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1394), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133653] = 12, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2058), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133704] = 12, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1546), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133755] = 12, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1479), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133806] = 12, - ACTIONS(6639), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, - anon_sym_LBRACK, - ACTIONS(6643), 1, - anon_sym_some, - ACTIONS(6645), 1, - anon_sym_any, - STATE(2082), 1, - sym_tuple_type, - STATE(2114), 1, - sym_simple_identifier, - STATE(2131), 1, - sym__simple_user_type, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2380), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2113), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133857] = 12, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1652), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133908] = 12, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1488), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [133959] = 12, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4064), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134010] = 12, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4059), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134061] = 12, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1628), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134112] = 12, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1623), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134163] = 12, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1751), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134214] = 12, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1752), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134265] = 12, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3940), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134316] = 12, - ACTIONS(6725), 1, - anon_sym_LPAREN, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_some, - ACTIONS(6731), 1, - anon_sym_any, - STATE(3744), 1, - sym_tuple_type, - STATE(3768), 1, - sym_simple_identifier, - STATE(3785), 1, - sym__simple_user_type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3919), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3777), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134367] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3757), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134418] = 12, - ACTIONS(6701), 1, - anon_sym_LPAREN, - ACTIONS(6703), 1, - anon_sym_LBRACK, - ACTIONS(6705), 1, - anon_sym_some, - ACTIONS(6707), 1, - anon_sym_any, - STATE(3976), 1, - sym_tuple_type, - STATE(4109), 1, - sym_simple_identifier, - STATE(4136), 1, - sym__simple_user_type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4211), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4058), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134469] = 12, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3830), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134520] = 12, - ACTIONS(6821), 1, - anon_sym_LPAREN, - ACTIONS(6823), 1, - anon_sym_LBRACK, - ACTIONS(6825), 1, - anon_sym_some, - ACTIONS(6827), 1, - anon_sym_any, - STATE(3817), 1, - sym_tuple_type, - STATE(3837), 1, - sym_simple_identifier, - STATE(3859), 1, - sym__simple_user_type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3980), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3829), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134571] = 12, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_some, - ACTIONS(6946), 1, - anon_sym_any, - STATE(1741), 1, - sym_tuple_type, - STATE(1922), 1, - sym__simple_user_type, - STATE(2089), 1, - sym_simple_identifier, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1996), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1754), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134622] = 12, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1405), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134673] = 12, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1404), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134724] = 12, - ACTIONS(6749), 1, - anon_sym_LPAREN, - ACTIONS(6751), 1, - anon_sym_LBRACK, - ACTIONS(6753), 1, - anon_sym_some, - ACTIONS(6755), 1, - anon_sym_any, - STATE(1465), 1, - sym_tuple_type, - STATE(1501), 1, - sym_simple_identifier, - STATE(1503), 1, - sym__simple_user_type, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1573), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1477), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134775] = 12, - ACTIONS(6861), 1, - anon_sym_LPAREN, - ACTIONS(6863), 1, - anon_sym_LBRACK, - ACTIONS(6865), 1, - anon_sym_some, - ACTIONS(6867), 1, - anon_sym_any, - STATE(1620), 1, - sym_tuple_type, - STATE(1763), 1, - sym__simple_user_type, - STATE(1961), 1, - sym_simple_identifier, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1920), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1621), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134826] = 12, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(849), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134877] = 12, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1527), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134928] = 12, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1522), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [134979] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3808), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135030] = 12, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1510), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135081] = 12, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3955), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135132] = 12, - ACTIONS(6887), 1, - anon_sym_LPAREN, - ACTIONS(6889), 1, - anon_sym_LBRACK, - ACTIONS(6891), 1, - anon_sym_some, - ACTIONS(6893), 1, - anon_sym_any, - STATE(1504), 1, - sym_tuple_type, - STATE(1587), 1, - sym__simple_user_type, - STATE(1658), 1, - sym_simple_identifier, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1638), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1524), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135183] = 12, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3954), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135234] = 12, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3766), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135285] = 12, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3874), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135336] = 12, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1373), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135387] = 12, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3875), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135438] = 12, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1627), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135489] = 12, - ACTIONS(6625), 1, - anon_sym_LPAREN, - ACTIONS(6627), 1, - anon_sym_LBRACK, - ACTIONS(6629), 1, - anon_sym_some, - ACTIONS(6631), 1, - anon_sym_any, - STATE(3832), 1, - sym_tuple_type, - STATE(3893), 1, - sym__simple_user_type, - STATE(3904), 1, - sym_simple_identifier, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4066), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3942), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135540] = 12, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3879), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135591] = 12, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2028), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135642] = 12, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACK, - ACTIONS(6593), 1, - anon_sym_some, - ACTIONS(6595), 1, - anon_sym_any, - STATE(3810), 1, - sym_tuple_type, - STATE(3833), 1, - sym_simple_identifier, - STATE(3854), 1, - sym__simple_user_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4023), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3886), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135693] = 12, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2025), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135744] = 12, - ACTIONS(6613), 1, - anon_sym_LPAREN, - ACTIONS(6615), 1, - anon_sym_LBRACK, - ACTIONS(6617), 1, - anon_sym_some, - ACTIONS(6619), 1, - anon_sym_any, - STATE(1965), 1, - sym_tuple_type, - STATE(2071), 1, - sym_simple_identifier, - STATE(2092), 1, - sym__simple_user_type, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2195), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2024), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135795] = 12, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1629), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135846] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3790), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135897] = 12, - ACTIONS(6663), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_LBRACK, - ACTIONS(6667), 1, - anon_sym_some, - ACTIONS(6669), 1, - anon_sym_any, - STATE(1376), 1, - sym_tuple_type, - STATE(1395), 1, - sym__simple_user_type, - STATE(1396), 1, - sym_simple_identifier, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1434), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1403), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135948] = 12, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1366), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [135999] = 12, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2589), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136050] = 12, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1368), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136101] = 12, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1617), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136152] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3822), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136203] = 12, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3746), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136254] = 12, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3748), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136305] = 12, - ACTIONS(6761), 1, - anon_sym_LPAREN, - ACTIONS(6763), 1, - anon_sym_LBRACK, - ACTIONS(6765), 1, - anon_sym_some, - ACTIONS(6767), 1, - anon_sym_any, - STATE(1639), 1, - sym_tuple_type, - STATE(1844), 1, - sym__simple_user_type, - STATE(1869), 1, - sym_simple_identifier, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1949), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1637), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136356] = 12, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3717), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136407] = 12, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2613), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136458] = 12, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3671), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136509] = 12, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3670), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136560] = 12, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3679), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136611] = 12, - ACTIONS(6911), 1, - anon_sym_LPAREN, - ACTIONS(6913), 1, - anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_some, - ACTIONS(6917), 1, - anon_sym_any, - STATE(3650), 1, - sym_tuple_type, - STATE(3676), 1, - sym_simple_identifier, - STATE(3680), 1, - sym__simple_user_type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3756), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3677), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136662] = 12, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2567), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136713] = 12, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1613), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136764] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3758), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136815] = 12, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3724), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136866] = 12, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(848), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136917] = 12, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(852), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [136968] = 12, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1388), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137019] = 12, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1561), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137070] = 12, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(617), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137121] = 12, - ACTIONS(6899), 1, - anon_sym_LPAREN, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(6903), 1, - anon_sym_some, - ACTIONS(6905), 1, - anon_sym_any, - STATE(853), 1, - sym_tuple_type, - STATE(897), 1, - sym__simple_user_type, - STATE(950), 1, - sym_simple_identifier, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(922), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(860), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137172] = 12, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1562), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137223] = 11, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - sym__immediate_quest, - ACTIONS(7092), 1, - sym__arrow_operator_custom, - ACTIONS(7094), 1, - sym__async_keyword_custom, - STATE(3284), 1, - sym__arrow_operator, - STATE(3688), 1, - aux_sym_optional_type_repeat1, - STATE(5011), 1, - sym__async_keyword, - STATE(6188), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [137272] = 12, - ACTIONS(6773), 1, - anon_sym_LPAREN, - ACTIONS(6775), 1, - anon_sym_LBRACK, - ACTIONS(6777), 1, - anon_sym_some, - ACTIONS(6779), 1, - anon_sym_any, - STATE(1364), 1, - sym_tuple_type, - STATE(1374), 1, - sym_simple_identifier, - STATE(1375), 1, - sym__simple_user_type, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1397), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1372), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137323] = 12, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(634), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137374] = 12, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3780), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137425] = 12, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(631), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137476] = 12, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3783), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137527] = 12, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_LBRACK, - ACTIONS(6557), 1, - anon_sym_some, - ACTIONS(6559), 1, - anon_sym_any, - STATE(3738), 1, - sym_tuple_type, - STATE(3816), 1, - sym__simple_user_type, - STATE(3862), 1, - sym_simple_identifier, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3921), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3786), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137578] = 12, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1761), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137629] = 12, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3712), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137680] = 12, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1377), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137731] = 12, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_some, - ACTIONS(6681), 1, - anon_sym_any, - STATE(3754), 1, - sym_tuple_type, - STATE(3795), 1, - sym__simple_user_type, - STATE(3812), 1, - sym_simple_identifier, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3929), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3787), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137782] = 12, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1760), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137833] = 12, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1757), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137884] = 12, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3720), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137935] = 12, - ACTIONS(6849), 1, - anon_sym_LPAREN, - ACTIONS(6851), 1, - anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_some, - ACTIONS(6855), 1, - anon_sym_any, - STATE(1749), 1, - sym_tuple_type, - STATE(1803), 1, - sym__simple_user_type, - STATE(1838), 1, - sym_simple_identifier, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1759), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [137986] = 12, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3656), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138037] = 12, - ACTIONS(6737), 1, - anon_sym_LPAREN, - ACTIONS(6739), 1, - anon_sym_LBRACK, - ACTIONS(6741), 1, - anon_sym_some, - ACTIONS(6743), 1, - anon_sym_any, - STATE(2513), 1, - sym_tuple_type, - STATE(2604), 1, - sym__simple_user_type, - STATE(2650), 1, - sym_simple_identifier, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(2757), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2597), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138088] = 12, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3664), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138139] = 12, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3767), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138190] = 12, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3692), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138241] = 12, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3702), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138292] = 12, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1383), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138343] = 12, - ACTIONS(6278), 1, - anon_sym_LPAREN, - ACTIONS(6280), 1, - anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_some, - ACTIONS(6284), 1, - anon_sym_any, - STATE(1367), 1, - sym_tuple_type, - STATE(1378), 1, - sym_simple_identifier, - STATE(1380), 1, - sym__simple_user_type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1407), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1381), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138394] = 12, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3764), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138445] = 12, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3701), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138496] = 12, - ACTIONS(6577), 1, - anon_sym_LPAREN, - ACTIONS(6579), 1, - anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_some, - ACTIONS(6583), 1, - anon_sym_any, - STATE(3696), 1, - sym_tuple_type, - STATE(3704), 1, - sym__simple_user_type, - STATE(3741), 1, - sym_simple_identifier, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3828), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3731), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138547] = 12, - ACTIONS(6923), 1, - anon_sym_LPAREN, - ACTIONS(6925), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_some, - ACTIONS(6929), 1, - anon_sym_any, - STATE(629), 1, - sym_tuple_type, - STATE(644), 1, - sym__simple_user_type, - STATE(675), 1, - sym_simple_identifier, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(669), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(626), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138598] = 12, - ACTIONS(6687), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_LBRACK, - ACTIONS(6691), 1, - anon_sym_some, - ACTIONS(6693), 1, - anon_sym_any, - STATE(3669), 1, - sym_tuple_type, - STATE(3689), 1, - sym_simple_identifier, - STATE(3690), 1, - sym__simple_user_type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3793), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3698), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138649] = 12, - ACTIONS(6651), 1, - anon_sym_LPAREN, - ACTIONS(6653), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_some, - ACTIONS(6657), 1, - anon_sym_any, - STATE(3683), 1, - sym_tuple_type, - STATE(3740), 1, - sym_simple_identifier, - STATE(3751), 1, - sym__simple_user_type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3840), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3710), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138700] = 12, - ACTIONS(6873), 1, - anon_sym_LPAREN, - ACTIONS(6875), 1, - anon_sym_LBRACK, - ACTIONS(6877), 1, - anon_sym_some, - ACTIONS(6879), 1, - anon_sym_any, - STATE(3608), 1, - sym_tuple_type, - STATE(3662), 1, - sym__simple_user_type, - STATE(3666), 1, - sym_simple_identifier, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3693), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3665), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138751] = 12, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1588), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138802] = 12, - ACTIONS(585), 1, - anon_sym_some, - ACTIONS(587), 1, - anon_sym_any, - ACTIONS(6040), 1, - anon_sym_LPAREN, - ACTIONS(6042), 1, - anon_sym_LBRACK, - STATE(3672), 1, - sym_simple_identifier, - STATE(3697), 1, - sym_tuple_type, - STATE(3750), 1, - sym__simple_user_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3860), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3718), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138853] = 12, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1602), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138904] = 12, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3841), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [138955] = 12, - ACTIONS(6601), 1, - anon_sym_LPAREN, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_some, - ACTIONS(6607), 1, - anon_sym_any, - STATE(3714), 1, - sym_tuple_type, - STATE(3800), 1, - sym_simple_identifier, - STATE(3821), 1, - sym__simple_user_type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(3937), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3773), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [139006] = 12, - ACTIONS(6809), 1, - anon_sym_LPAREN, - ACTIONS(6811), 1, - anon_sym_LBRACK, - ACTIONS(6813), 1, - anon_sym_some, - ACTIONS(6815), 1, - anon_sym_any, - STATE(1601), 1, - sym_tuple_type, - STATE(1690), 1, - sym__simple_user_type, - STATE(1798), 1, - sym_simple_identifier, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1835), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1609), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [139057] = 12, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3857), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [139108] = 12, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3853), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [139159] = 12, - ACTIONS(6785), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(6789), 1, - anon_sym_some, - ACTIONS(6791), 1, - anon_sym_any, - STATE(1572), 1, - sym_tuple_type, - STATE(1619), 1, - sym__simple_user_type, - STATE(1740), 1, - sym_simple_identifier, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(1689), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(1569), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [139210] = 12, - ACTIONS(6713), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_some, - ACTIONS(6719), 1, - anon_sym_any, - STATE(3806), 1, - sym_tuple_type, - STATE(3848), 1, - sym__simple_user_type, - STATE(3861), 1, - sym_simple_identifier, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - STATE(4010), 3, - sym_user_type, - sym_array_type, - sym_dictionary_type, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3839), 7, - sym__unannotated_type, - sym_function_type, - sym_optional_type, - sym_metatype, - sym_opaque_type, - sym_existential_type, - sym_protocol_composition_type, - [139261] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3013), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(3011), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139293] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2977), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(2975), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139325] = 11, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7096), 1, - sym__immediate_quest, - ACTIONS(7098), 1, - sym__arrow_operator_custom, - ACTIONS(7100), 1, - sym__async_keyword_custom, - STATE(3431), 1, - sym__arrow_operator, - STATE(3747), 1, - aux_sym_optional_type_repeat1, - STATE(4889), 1, - sym__async_keyword, - STATE(6137), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139373] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(2779), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139405] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2985), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(2983), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139437] = 11, - ACTIONS(7092), 1, - sym__arrow_operator_custom, - ACTIONS(7094), 1, - sym__async_keyword_custom, - ACTIONS(7102), 1, - anon_sym_DOT, - ACTIONS(7104), 1, - anon_sym_AMP, - STATE(3284), 1, - sym__arrow_operator, - STATE(3728), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(5011), 1, - sym__async_keyword, - STATE(6188), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139485] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3005), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(3003), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139517] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3009), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(3007), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139549] = 11, - ACTIONS(7092), 1, - sym__arrow_operator_custom, - ACTIONS(7094), 1, - sym__async_keyword_custom, - ACTIONS(7102), 1, - anon_sym_DOT, - ACTIONS(7104), 1, - anon_sym_AMP, - STATE(3284), 1, - sym__arrow_operator, - STATE(3728), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(5011), 1, - sym__async_keyword, - STATE(6188), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139597] = 6, - ACTIONS(2671), 1, - anon_sym_QMARK, - ACTIONS(7106), 1, - sym__dot_custom, - STATE(3667), 1, - aux_sym_user_type_repeat1, - STATE(4520), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139635] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3061), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(3059), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139667] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2981), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(2979), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139699] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2973), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(2971), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139731] = 11, - ACTIONS(7092), 1, - sym__arrow_operator_custom, - ACTIONS(7094), 1, - sym__async_keyword_custom, - ACTIONS(7102), 1, - anon_sym_DOT, - ACTIONS(7104), 1, - anon_sym_AMP, - STATE(3284), 1, - sym__arrow_operator, - STATE(3728), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(5011), 1, - sym__async_keyword, - STATE(6188), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139779] = 6, - ACTIONS(2682), 1, - anon_sym_QMARK, - ACTIONS(7106), 1, - sym__dot_custom, - STATE(3657), 1, - aux_sym_user_type_repeat1, - STATE(4520), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139817] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3069), 8, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_nil, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - anon_sym_DQUOTE, - sym__oneline_regex_literal, - ACTIONS(3067), 13, - sym_raw_str_part, - sym_raw_str_end_part, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_real_literal, - sym_hex_literal, - sym_oct_literal, - sym_bin_literal, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym__extended_regex_literal, - aux_sym__multiline_regex_literal_token1, - anon_sym_RBRACE, - [139849] = 11, - ACTIONS(7092), 1, - sym__arrow_operator_custom, - ACTIONS(7094), 1, - sym__async_keyword_custom, - ACTIONS(7102), 1, - anon_sym_DOT, - ACTIONS(7104), 1, - anon_sym_AMP, - STATE(3284), 1, - sym__arrow_operator, - STATE(3728), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(5011), 1, - sym__async_keyword, - STATE(6188), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139897] = 11, - ACTIONS(7092), 1, - sym__arrow_operator_custom, - ACTIONS(7094), 1, - sym__async_keyword_custom, - ACTIONS(7102), 1, - anon_sym_DOT, - ACTIONS(7104), 1, - anon_sym_AMP, - STATE(3284), 1, - sym__arrow_operator, - STATE(3728), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(5011), 1, - sym__async_keyword, - STATE(6188), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139945] = 5, - ACTIONS(2832), 1, - anon_sym_QMARK, - ACTIONS(7108), 1, - anon_sym_LT, - STATE(3699), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [139981] = 6, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(7110), 1, - sym__dot_custom, - STATE(3667), 1, - aux_sym_user_type_repeat1, - STATE(4520), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140019] = 11, - ACTIONS(7113), 1, - anon_sym_LPAREN, - ACTIONS(7115), 1, - sym__immediate_quest, - ACTIONS(7119), 1, - sym__dot_custom, - STATE(749), 1, - sym_constructor_suffix, - STATE(750), 1, - sym__fn_call_lambda_arguments, - STATE(1682), 1, - sym_lambda_literal, - STATE(2232), 1, - sym__constructor_value_arguments, - STATE(3890), 1, - aux_sym_optional_type_repeat1, - ACTIONS(7117), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - [140067] = 10, - ACTIONS(7121), 1, - sym__immediate_quest, - ACTIONS(7123), 1, - sym__arrow_operator_custom, - ACTIONS(7125), 1, - sym__async_keyword_custom, - STATE(3245), 1, - sym__arrow_operator, - STATE(3794), 1, - aux_sym_optional_type_repeat1, - STATE(4869), 1, - sym__async_keyword, - STATE(6196), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140112] = 11, - ACTIONS(7098), 1, - sym__arrow_operator_custom, - ACTIONS(7100), 1, - sym__async_keyword_custom, - ACTIONS(7127), 1, - anon_sym_DOT, - ACTIONS(7129), 1, - anon_sym_AMP, - STATE(3431), 1, - sym__arrow_operator, - STATE(3811), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4889), 1, - sym__async_keyword, - STATE(6137), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140159] = 11, - ACTIONS(7098), 1, - sym__arrow_operator_custom, - ACTIONS(7100), 1, - sym__async_keyword_custom, - ACTIONS(7127), 1, - anon_sym_DOT, - ACTIONS(7129), 1, - anon_sym_AMP, - STATE(3431), 1, - sym__arrow_operator, - STATE(3811), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4889), 1, - sym__async_keyword, - STATE(6137), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140206] = 4, - ACTIONS(7131), 1, - anon_sym_LT, - STATE(3723), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [140239] = 6, - ACTIONS(2671), 1, - anon_sym_QMARK, - ACTIONS(7133), 1, - sym__dot_custom, - STATE(3681), 1, - aux_sym_user_type_repeat1, - STATE(4500), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140276] = 5, - ACTIONS(7135), 1, - sym__dot_custom, - STATE(3674), 1, - aux_sym_user_type_repeat1, - STATE(4489), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 17, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [140311] = 3, - ACTIONS(2781), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 19, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140342] = 5, - ACTIONS(2832), 1, - anon_sym_QMARK, - ACTIONS(7138), 1, - anon_sym_LT, - STATE(3745), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140377] = 11, - ACTIONS(7098), 1, - sym__arrow_operator_custom, - ACTIONS(7100), 1, - sym__async_keyword_custom, - ACTIONS(7127), 1, - anon_sym_DOT, - ACTIONS(7129), 1, - anon_sym_AMP, - STATE(3431), 1, - sym__arrow_operator, - STATE(3811), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4889), 1, - sym__async_keyword, - STATE(6137), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140424] = 11, - ACTIONS(7098), 1, - sym__arrow_operator_custom, - ACTIONS(7100), 1, - sym__async_keyword_custom, - ACTIONS(7127), 1, - anon_sym_DOT, - ACTIONS(7129), 1, - anon_sym_AMP, - STATE(3431), 1, - sym__arrow_operator, - STATE(3811), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4889), 1, - sym__async_keyword, - STATE(6137), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140471] = 11, - ACTIONS(7098), 1, - sym__arrow_operator_custom, - ACTIONS(7100), 1, - sym__async_keyword_custom, - ACTIONS(7127), 1, - anon_sym_DOT, - ACTIONS(7129), 1, - anon_sym_AMP, - STATE(3431), 1, - sym__arrow_operator, - STATE(3811), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4889), 1, - sym__async_keyword, - STATE(6137), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140518] = 6, - ACTIONS(2682), 1, - anon_sym_QMARK, - ACTIONS(7133), 1, - sym__dot_custom, - STATE(3673), 1, - aux_sym_user_type_repeat1, - STATE(4500), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140555] = 6, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(7140), 1, - sym__dot_custom, - STATE(3681), 1, - aux_sym_user_type_repeat1, - STATE(4500), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140592] = 3, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140622] = 10, - ACTIONS(7143), 1, - sym__immediate_quest, - ACTIONS(7145), 1, - sym__arrow_operator_custom, - ACTIONS(7147), 1, - sym__async_keyword_custom, - STATE(3237), 1, - sym__arrow_operator, - STATE(3846), 1, - aux_sym_optional_type_repeat1, - STATE(4935), 1, - sym__async_keyword, - STATE(6084), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140666] = 5, - ACTIONS(7149), 1, - sym__dot_custom, - STATE(3684), 1, - aux_sym_user_type_repeat1, - STATE(4502), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140700] = 3, - ACTIONS(2875), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140730] = 3, - ACTIONS(2899), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140760] = 11, - ACTIONS(7123), 1, - sym__arrow_operator_custom, - ACTIONS(7125), 1, - sym__async_keyword_custom, - ACTIONS(7152), 1, - anon_sym_DOT, - ACTIONS(7154), 1, - anon_sym_AMP, - STATE(3245), 1, - sym__arrow_operator, - STATE(3884), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4869), 1, - sym__async_keyword, - STATE(6196), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140806] = 5, - ACTIONS(2738), 1, - anon_sym_QMARK, - ACTIONS(7156), 1, - sym__immediate_quest, - STATE(3695), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140840] = 4, - ACTIONS(7158), 1, - anon_sym_LT, - STATE(3765), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140872] = 5, - ACTIONS(7160), 1, - sym__dot_custom, - STATE(3691), 1, - aux_sym_user_type_repeat1, - STATE(4502), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140906] = 5, - ACTIONS(7160), 1, - sym__dot_custom, - STATE(3684), 1, - aux_sym_user_type_repeat1, - STATE(4502), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140940] = 11, - ACTIONS(7123), 1, - sym__arrow_operator_custom, - ACTIONS(7125), 1, - sym__async_keyword_custom, - ACTIONS(7152), 1, - anon_sym_DOT, - ACTIONS(7154), 1, - anon_sym_AMP, - STATE(3245), 1, - sym__arrow_operator, - STATE(3884), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4869), 1, - sym__async_keyword, - STATE(6196), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [140986] = 5, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - sym__immediate_quest, - STATE(3688), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141020] = 3, - ACTIONS(2781), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 19, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141050] = 5, - ACTIONS(2801), 1, - anon_sym_QMARK, - ACTIONS(7162), 1, - sym__immediate_quest, - STATE(3695), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141084] = 10, - ACTIONS(7165), 1, - sym__immediate_quest, - ACTIONS(7167), 1, - sym__arrow_operator_custom, - ACTIONS(7169), 1, - sym__async_keyword_custom, - STATE(3400), 1, - sym__arrow_operator, - STATE(3838), 1, - aux_sym_optional_type_repeat1, - STATE(4918), 1, - sym__async_keyword, - STATE(6100), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141128] = 10, - ACTIONS(7115), 1, - sym__immediate_quest, - ACTIONS(7171), 1, - sym__arrow_operator_custom, - ACTIONS(7173), 1, - sym__async_keyword_custom, - STATE(3153), 1, - sym__arrow_operator, - STATE(3890), 1, - aux_sym_optional_type_repeat1, - STATE(4872), 1, - sym__async_keyword, - STATE(6198), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 10, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [141172] = 11, - ACTIONS(7123), 1, - sym__arrow_operator_custom, - ACTIONS(7125), 1, - sym__async_keyword_custom, - ACTIONS(7152), 1, - anon_sym_DOT, - ACTIONS(7154), 1, - anon_sym_AMP, - STATE(3245), 1, - sym__arrow_operator, - STATE(3884), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4869), 1, - sym__async_keyword, - STATE(6196), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141218] = 3, - ACTIONS(2857), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141248] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 19, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [141276] = 11, - ACTIONS(7123), 1, - sym__arrow_operator_custom, - ACTIONS(7125), 1, - sym__async_keyword_custom, - ACTIONS(7152), 1, - anon_sym_DOT, - ACTIONS(7154), 1, - anon_sym_AMP, - STATE(3245), 1, - sym__arrow_operator, - STATE(3884), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4869), 1, - sym__async_keyword, - STATE(6196), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141322] = 11, - ACTIONS(7123), 1, - sym__arrow_operator_custom, - ACTIONS(7125), 1, - sym__async_keyword_custom, - ACTIONS(7152), 1, - anon_sym_DOT, - ACTIONS(7154), 1, - anon_sym_AMP, - STATE(3245), 1, - sym__arrow_operator, - STATE(3884), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4869), 1, - sym__async_keyword, - STATE(6196), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141368] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 18, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141395] = 5, - ACTIONS(7175), 1, - sym__dot_custom, - STATE(3737), 1, - aux_sym_user_type_repeat1, - STATE(4512), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141428] = 5, - ACTIONS(7177), 1, - sym__dot_custom, - STATE(3674), 1, - aux_sym_user_type_repeat1, - STATE(4489), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [141461] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [141488] = 11, - ACTIONS(7145), 1, - sym__arrow_operator_custom, - ACTIONS(7147), 1, - sym__async_keyword_custom, - ACTIONS(7179), 1, - anon_sym_DOT, - ACTIONS(7181), 1, - anon_sym_AMP, - STATE(3237), 1, - sym__arrow_operator, - STATE(3936), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4935), 1, - sym__async_keyword, - STATE(6084), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141533] = 3, - ACTIONS(2879), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141562] = 11, - ACTIONS(7145), 1, - sym__arrow_operator_custom, - ACTIONS(7147), 1, - sym__async_keyword_custom, - ACTIONS(7179), 1, - anon_sym_DOT, - ACTIONS(7181), 1, - anon_sym_AMP, - STATE(3237), 1, - sym__arrow_operator, - STATE(3936), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4935), 1, - sym__async_keyword, - STATE(6084), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141607] = 11, - ACTIONS(7145), 1, - sym__arrow_operator_custom, - ACTIONS(7147), 1, - sym__async_keyword_custom, - ACTIONS(7179), 1, - anon_sym_DOT, - ACTIONS(7181), 1, - anon_sym_AMP, - STATE(3237), 1, - sym__arrow_operator, - STATE(3936), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4935), 1, - sym__async_keyword, - STATE(6084), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141652] = 11, - ACTIONS(7145), 1, - sym__arrow_operator_custom, - ACTIONS(7147), 1, - sym__async_keyword_custom, - ACTIONS(7179), 1, - anon_sym_DOT, - ACTIONS(7181), 1, - anon_sym_AMP, - STATE(3237), 1, - sym__arrow_operator, - STATE(3936), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4935), 1, - sym__async_keyword, - STATE(6084), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141697] = 11, - ACTIONS(7167), 1, - sym__arrow_operator_custom, - ACTIONS(7169), 1, - sym__async_keyword_custom, - ACTIONS(7183), 1, - anon_sym_DOT, - ACTIONS(7185), 1, - anon_sym_AMP, - STATE(3400), 1, - sym__arrow_operator, - STATE(3948), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4918), 1, - sym__async_keyword, - STATE(6100), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141742] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [141769] = 10, - ACTIONS(7187), 1, - sym__immediate_quest, - ACTIONS(7189), 1, - sym__arrow_operator_custom, - ACTIONS(7191), 1, - sym__async_keyword_custom, - STATE(3227), 1, - sym__arrow_operator, - STATE(3956), 1, - aux_sym_optional_type_repeat1, - STATE(4891), 1, - sym__async_keyword, - STATE(6044), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141812] = 4, - ACTIONS(7193), 1, - anon_sym_AMP, - STATE(3715), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141843] = 3, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141872] = 11, - ACTIONS(7167), 1, - sym__arrow_operator_custom, - ACTIONS(7169), 1, - sym__async_keyword_custom, - ACTIONS(7183), 1, - anon_sym_DOT, - ACTIONS(7185), 1, - anon_sym_AMP, - STATE(3400), 1, - sym__arrow_operator, - STATE(3948), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4918), 1, - sym__async_keyword, - STATE(6100), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [141917] = 11, - ACTIONS(7171), 1, - sym__arrow_operator_custom, - ACTIONS(7173), 1, - sym__async_keyword_custom, - ACTIONS(7196), 1, - anon_sym_DOT, - ACTIONS(7198), 1, - anon_sym_AMP, - STATE(3153), 1, - sym__arrow_operator, - STATE(3927), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4872), 1, - sym__async_keyword, - STATE(6198), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [141962] = 3, - ACTIONS(5838), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5836), 17, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_AT, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [141991] = 11, - ACTIONS(7167), 1, - sym__arrow_operator_custom, - ACTIONS(7169), 1, - sym__async_keyword_custom, - ACTIONS(7183), 1, - anon_sym_DOT, - ACTIONS(7185), 1, - anon_sym_AMP, - STATE(3400), 1, - sym__arrow_operator, - STATE(3948), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4918), 1, - sym__async_keyword, - STATE(6100), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142036] = 18, - ACTIONS(3210), 1, - anon_sym_async, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3234), 1, - anon_sym_init, - ACTIONS(4085), 1, - anon_sym_typealias, - ACTIONS(7062), 1, - anon_sym_associatedtype, - ACTIONS(7200), 1, - anon_sym_class, - ACTIONS(7202), 1, - anon_sym_deinit, - ACTIONS(7204), 1, - anon_sym_subscript, - STATE(3497), 1, - sym__possibly_async_binding_pattern_kind, - STATE(4153), 1, - sym__binding_pattern_kind, - STATE(4845), 1, - sym__binding_kind_and_pattern, - STATE(5135), 1, - sym__modifierless_function_declaration_no_body, - STATE(5202), 1, - sym__modifierless_typealias_declaration, - STATE(5233), 1, - sym__non_constructor_function_decl, - STATE(5234), 1, - sym__constructor_function_decl, - STATE(5341), 1, - sym__async_modifier, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [142095] = 3, - ACTIONS(5828), 1, - anon_sym_unowned, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5826), 17, - anon_sym_actor, - anon_sym_async, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_let, - anon_sym_var, - anon_sym_func, - anon_sym_extension, - anon_sym_indirect, - anon_sym_init, - anon_sym_AT, - anon_sym_final, - anon_sym_weak, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - [142124] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [142151] = 11, - ACTIONS(7171), 1, - sym__arrow_operator_custom, - ACTIONS(7173), 1, - sym__async_keyword_custom, - ACTIONS(7196), 1, - anon_sym_DOT, - ACTIONS(7198), 1, - anon_sym_AMP, - STATE(3153), 1, - sym__arrow_operator, - STATE(3927), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4872), 1, - sym__async_keyword, - STATE(6198), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [142196] = 5, - ACTIONS(7206), 1, - sym__dot_custom, - STATE(3753), 1, - aux_sym_user_type_repeat1, - STATE(4489), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [142229] = 3, - ACTIONS(2871), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142258] = 11, - ACTIONS(7171), 1, - sym__arrow_operator_custom, - ACTIONS(7173), 1, - sym__async_keyword_custom, - ACTIONS(7196), 1, - anon_sym_DOT, - ACTIONS(7198), 1, - anon_sym_AMP, - STATE(3153), 1, - sym__arrow_operator, - STATE(3927), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4872), 1, - sym__async_keyword, - STATE(6198), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [142303] = 3, - STATE(3715), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142332] = 5, - ACTIONS(7209), 1, - sym__dot_custom, - STATE(3743), 1, - aux_sym_user_type_repeat1, - STATE(4522), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142365] = 3, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142394] = 11, - ACTIONS(7167), 1, - sym__arrow_operator_custom, - ACTIONS(7169), 1, - sym__async_keyword_custom, - ACTIONS(7183), 1, - anon_sym_DOT, - ACTIONS(7185), 1, - anon_sym_AMP, - STATE(3400), 1, - sym__arrow_operator, - STATE(3948), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4918), 1, - sym__async_keyword, - STATE(6100), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142439] = 3, - ACTIONS(2887), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142468] = 3, - ACTIONS(2875), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142497] = 11, - ACTIONS(7145), 1, - sym__arrow_operator_custom, - ACTIONS(7147), 1, - sym__async_keyword_custom, - ACTIONS(7179), 1, - anon_sym_DOT, - ACTIONS(7181), 1, - anon_sym_AMP, - STATE(3237), 1, - sym__arrow_operator, - STATE(3936), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4935), 1, - sym__async_keyword, - STATE(6084), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142542] = 3, - ACTIONS(2903), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142571] = 3, - ACTIONS(2899), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142600] = 5, - ACTIONS(7175), 1, - sym__dot_custom, - STATE(3755), 1, - aux_sym_user_type_repeat1, - STATE(4512), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142633] = 10, - ACTIONS(7211), 1, - sym__immediate_quest, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - STATE(3409), 1, - sym__arrow_operator, - STATE(3952), 1, - aux_sym_optional_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 9, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [142676] = 5, - ACTIONS(2801), 1, - anon_sym_QMARK, - ACTIONS(7217), 1, - sym__immediate_quest, - STATE(3739), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142709] = 4, - ACTIONS(7220), 1, - anon_sym_LT, - STATE(3887), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142740] = 4, - ACTIONS(7222), 1, - anon_sym_LT, - STATE(3864), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142771] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 18, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - anon_sym_in, - [142798] = 5, - ACTIONS(7224), 1, - sym__dot_custom, - STATE(3743), 1, - aux_sym_user_type_repeat1, - STATE(4522), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142831] = 11, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7227), 1, - sym__immediate_quest, - ACTIONS(7229), 1, - sym__arrow_operator_custom, - ACTIONS(7231), 1, - sym__async_keyword_custom, - STATE(3281), 1, - sym__arrow_operator, - STATE(3953), 1, - aux_sym_optional_type_repeat1, - STATE(4902), 1, - sym__async_keyword, - STATE(6243), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 8, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [142876] = 3, - ACTIONS(2857), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142905] = 11, - ACTIONS(7171), 1, - sym__arrow_operator_custom, - ACTIONS(7173), 1, - sym__async_keyword_custom, - ACTIONS(7196), 1, - anon_sym_DOT, - ACTIONS(7198), 1, - anon_sym_AMP, - STATE(3153), 1, - sym__arrow_operator, - STATE(3927), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4872), 1, - sym__async_keyword, - STATE(6198), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [142950] = 5, - ACTIONS(2738), 1, - anon_sym_QMARK, - ACTIONS(7233), 1, - sym__immediate_quest, - STATE(3739), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [142983] = 11, - ACTIONS(7171), 1, - sym__arrow_operator_custom, - ACTIONS(7173), 1, - sym__async_keyword_custom, - ACTIONS(7196), 1, - anon_sym_DOT, - ACTIONS(7198), 1, - anon_sym_AMP, - STATE(3153), 1, - sym__arrow_operator, - STATE(3927), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4872), 1, - sym__async_keyword, - STATE(6198), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [143028] = 15, - ACTIONS(7239), 1, - anon_sym_LPAREN, - ACTIONS(7241), 1, - anon_sym_LBRACK, - ACTIONS(7243), 1, - anon_sym_in, - ACTIONS(7245), 1, - anon_sym_self, - ACTIONS(7247), 1, - anon_sym_AT, - STATE(4040), 1, - sym_capture_list, - STATE(4060), 1, - sym_simple_identifier, - STATE(4483), 1, - sym_lambda_function_type_parameters, - STATE(4509), 1, - sym_lambda_parameter, - STATE(4784), 1, - sym_self_expression, - STATE(6260), 1, - sym_lambda_function_type, - ACTIONS(7235), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4176), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7237), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [143081] = 5, - ACTIONS(7177), 1, - sym__dot_custom, - STATE(3705), 1, - aux_sym_user_type_repeat1, - STATE(4489), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [143114] = 5, - ACTIONS(7209), 1, - sym__dot_custom, - STATE(3729), 1, - aux_sym_user_type_repeat1, - STATE(4522), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143147] = 11, - ACTIONS(7167), 1, - sym__arrow_operator_custom, - ACTIONS(7169), 1, - sym__async_keyword_custom, - ACTIONS(7183), 1, - anon_sym_DOT, - ACTIONS(7185), 1, - anon_sym_AMP, - STATE(3400), 1, - sym__arrow_operator, - STATE(3948), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4918), 1, - sym__async_keyword, - STATE(6100), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143192] = 5, - ACTIONS(7249), 1, - sym__dot_custom, - STATE(3674), 1, - aux_sym_user_type_repeat1, - STATE(4489), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [143225] = 10, - ACTIONS(7252), 1, - sym__immediate_quest, - ACTIONS(7254), 1, - sym__arrow_operator_custom, - ACTIONS(7256), 1, - sym__async_keyword_custom, - STATE(3298), 1, - sym__arrow_operator, - STATE(3923), 1, - aux_sym_optional_type_repeat1, - STATE(4846), 1, - sym__async_keyword, - STATE(6205), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 9, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143268] = 5, - ACTIONS(7258), 1, - sym__dot_custom, - STATE(3755), 1, - aux_sym_user_type_repeat1, - STATE(4512), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143301] = 5, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7096), 1, - sym__immediate_quest, - STATE(3747), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143334] = 17, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7261), 1, - anon_sym_COLON, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2966), 1, - sym_class_body, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(4975), 1, - sym_type_parameters, - STATE(5979), 1, - sym_type_constraints, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [143390] = 17, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7273), 1, - anon_sym_COLON, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2274), 1, - sym_class_body, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(4903), 1, - sym_type_parameters, - STATE(6018), 1, - sym_throws, - STATE(6101), 1, - sym_type_constraints, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [143446] = 11, - ACTIONS(7229), 1, - sym__arrow_operator_custom, - ACTIONS(7231), 1, - sym__async_keyword_custom, - ACTIONS(7277), 1, - anon_sym_DOT, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(3281), 1, - sym__arrow_operator, - STATE(4004), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4902), 1, - sym__async_keyword, - STATE(6243), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [143490] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143516] = 11, - ACTIONS(7254), 1, - sym__arrow_operator_custom, - ACTIONS(7256), 1, - sym__async_keyword_custom, - ACTIONS(7281), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_AMP, - STATE(3298), 1, - sym__arrow_operator, - STATE(4025), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4846), 1, - sym__async_keyword, - STATE(6205), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143560] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143586] = 11, - ACTIONS(7229), 1, - sym__arrow_operator_custom, - ACTIONS(7231), 1, - sym__async_keyword_custom, - ACTIONS(7277), 1, - anon_sym_DOT, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(3281), 1, - sym__arrow_operator, - STATE(4004), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4902), 1, - sym__async_keyword, - STATE(6243), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [143630] = 11, - ACTIONS(7189), 1, - sym__arrow_operator_custom, - ACTIONS(7191), 1, - sym__async_keyword_custom, - ACTIONS(7285), 1, - anon_sym_DOT, - ACTIONS(7287), 1, - anon_sym_AMP, - STATE(3227), 1, - sym__arrow_operator, - STATE(3989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4891), 1, - sym__async_keyword, - STATE(6044), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143674] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143700] = 11, - ACTIONS(7254), 1, - sym__arrow_operator_custom, - ACTIONS(7256), 1, - sym__async_keyword_custom, - ACTIONS(7281), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_AMP, - STATE(3298), 1, - sym__arrow_operator, - STATE(4025), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4846), 1, - sym__async_keyword, - STATE(6205), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143744] = 11, - ACTIONS(7189), 1, - sym__arrow_operator_custom, - ACTIONS(7191), 1, - sym__async_keyword_custom, - ACTIONS(7285), 1, - anon_sym_DOT, - ACTIONS(7287), 1, - anon_sym_AMP, - STATE(3227), 1, - sym__arrow_operator, - STATE(3989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4891), 1, - sym__async_keyword, - STATE(6044), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143788] = 5, - ACTIONS(2832), 1, - anon_sym_QMARK, - ACTIONS(7289), 1, - anon_sym_LT, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [143820] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 18, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143846] = 11, - ACTIONS(7189), 1, - sym__arrow_operator_custom, - ACTIONS(7191), 1, - sym__async_keyword_custom, - ACTIONS(7285), 1, - anon_sym_DOT, - ACTIONS(7287), 1, - anon_sym_AMP, - STATE(3227), 1, - sym__arrow_operator, - STATE(3989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4891), 1, - sym__async_keyword, - STATE(6044), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [143890] = 6, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(7291), 1, - sym__dot_custom, - STATE(3771), 1, - aux_sym_user_type_repeat1, - STATE(4552), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [143924] = 11, - ACTIONS(7229), 1, - sym__arrow_operator_custom, - ACTIONS(7231), 1, - sym__async_keyword_custom, - ACTIONS(7277), 1, - anon_sym_DOT, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(3281), 1, - sym__arrow_operator, - STATE(4004), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4902), 1, - sym__async_keyword, - STATE(6243), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [143968] = 11, - ACTIONS(7189), 1, - sym__arrow_operator_custom, - ACTIONS(7191), 1, - sym__async_keyword_custom, - ACTIONS(7285), 1, - anon_sym_DOT, - ACTIONS(7287), 1, - anon_sym_AMP, - STATE(3227), 1, - sym__arrow_operator, - STATE(3989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4891), 1, - sym__async_keyword, - STATE(6044), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144012] = 11, - ACTIONS(7189), 1, - sym__arrow_operator_custom, - ACTIONS(7191), 1, - sym__async_keyword_custom, - ACTIONS(7285), 1, - anon_sym_DOT, - ACTIONS(7287), 1, - anon_sym_AMP, - STATE(3227), 1, - sym__arrow_operator, - STATE(3989), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4891), 1, - sym__async_keyword, - STATE(6044), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144056] = 13, - ACTIONS(7294), 1, - anon_sym_RBRACE, - ACTIONS(7296), 1, - anon_sym_get, - ACTIONS(7299), 1, - anon_sym_set, - ACTIONS(7302), 1, - anon_sym__modify, - ACTIONS(7305), 1, - anon_sym_AT, - STATE(4339), 1, - sym_setter_specifier, - STATE(4340), 1, - sym_getter_specifier, - STATE(4342), 1, - sym_modify_specifier, - STATE(5735), 1, - sym_mutation_modifier, - ACTIONS(7308), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4203), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3775), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [144104] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144130] = 11, - ACTIONS(7229), 1, - sym__arrow_operator_custom, - ACTIONS(7231), 1, - sym__async_keyword_custom, - ACTIONS(7277), 1, - anon_sym_DOT, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(3281), 1, - sym__arrow_operator, - STATE(4004), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4902), 1, - sym__async_keyword, - STATE(6243), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [144174] = 6, - ACTIONS(2671), 1, - anon_sym_QMARK, - ACTIONS(7311), 1, - sym__dot_custom, - STATE(3771), 1, - aux_sym_user_type_repeat1, - STATE(4552), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [144208] = 11, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [144252] = 11, - ACTIONS(7254), 1, - sym__arrow_operator_custom, - ACTIONS(7256), 1, - sym__async_keyword_custom, - ACTIONS(7281), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_AMP, - STATE(3298), 1, - sym__arrow_operator, - STATE(4025), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4846), 1, - sym__async_keyword, - STATE(6205), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144296] = 3, - ACTIONS(2887), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144324] = 17, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7313), 1, - anon_sym_COLON, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(4997), 1, - sym_type_parameters, - STATE(5148), 1, - sym_class_body, - STATE(6018), 1, - sym_throws, - STATE(6171), 1, - sym_type_constraints, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [144380] = 11, - ACTIONS(7254), 1, - sym__arrow_operator_custom, - ACTIONS(7256), 1, - sym__async_keyword_custom, - ACTIONS(7281), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_AMP, - STATE(3298), 1, - sym__arrow_operator, - STATE(4025), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4846), 1, - sym__async_keyword, - STATE(6205), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144424] = 11, - ACTIONS(7229), 1, - sym__arrow_operator_custom, - ACTIONS(7231), 1, - sym__async_keyword_custom, - ACTIONS(7277), 1, - anon_sym_DOT, - ACTIONS(7279), 1, - anon_sym_AMP, - STATE(3281), 1, - sym__arrow_operator, - STATE(4004), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4902), 1, - sym__async_keyword, - STATE(6243), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [144468] = 6, - ACTIONS(2682), 1, - anon_sym_QMARK, - ACTIONS(7311), 1, - sym__dot_custom, - STATE(3778), 1, - aux_sym_user_type_repeat1, - STATE(4552), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [144502] = 11, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [144546] = 11, - ACTIONS(7254), 1, - sym__arrow_operator_custom, - ACTIONS(7256), 1, - sym__async_keyword_custom, - ACTIONS(7281), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_AMP, - STATE(3298), 1, - sym__arrow_operator, - STATE(4025), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4846), 1, - sym__async_keyword, - STATE(6205), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 7, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144590] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144616] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144642] = 17, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7317), 1, - anon_sym_COLON, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(4956), 1, - sym_type_parameters, - STATE(5627), 1, - sym_class_body, - STATE(6018), 1, - sym_throws, - STATE(6070), 1, - sym_type_constraints, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [144698] = 3, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144726] = 3, - ACTIONS(2879), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144754] = 4, - ACTIONS(7121), 1, - sym__immediate_quest, - STATE(3794), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144784] = 4, - ACTIONS(7321), 1, - sym__immediate_quest, - STATE(3804), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144814] = 5, - ACTIONS(7323), 1, - sym__dot_custom, - STATE(3803), 1, - aux_sym_user_type_repeat1, - STATE(4521), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144846] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144872] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144898] = 13, - ACTIONS(313), 1, - anon_sym_AT, - ACTIONS(7325), 1, - anon_sym_RBRACE, - ACTIONS(7327), 1, - anon_sym_get, - ACTIONS(7329), 1, - anon_sym_set, - ACTIONS(7331), 1, - anon_sym__modify, - STATE(4339), 1, - sym_setter_specifier, - STATE(4340), 1, - sym_getter_specifier, - STATE(4342), 1, - sym_modify_specifier, - STATE(5735), 1, - sym_mutation_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4203), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3775), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [144946] = 4, - ACTIONS(7333), 1, - anon_sym_AMP, - STATE(3799), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [144976] = 4, - ACTIONS(7336), 1, - anon_sym_LT, - STATE(3960), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145006] = 13, - ACTIONS(313), 1, - anon_sym_AT, - ACTIONS(7327), 1, - anon_sym_get, - ACTIONS(7329), 1, - anon_sym_set, - ACTIONS(7331), 1, - anon_sym__modify, - ACTIONS(7338), 1, - anon_sym_RBRACE, - STATE(4339), 1, - sym_setter_specifier, - STATE(4340), 1, - sym_getter_specifier, - STATE(4342), 1, - sym_modify_specifier, - STATE(5735), 1, - sym_mutation_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4203), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3775), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [145054] = 5, - ACTIONS(7340), 1, - sym__dot_custom, - STATE(3802), 1, - aux_sym_user_type_repeat1, - STATE(4536), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145086] = 5, - ACTIONS(7323), 1, - sym__dot_custom, - STATE(3823), 1, - aux_sym_user_type_repeat1, - STATE(4521), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145118] = 4, - ACTIONS(7343), 1, - sym__immediate_quest, - STATE(3804), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145148] = 13, - ACTIONS(313), 1, - anon_sym_AT, - ACTIONS(7327), 1, - anon_sym_get, - ACTIONS(7329), 1, - anon_sym_set, - ACTIONS(7331), 1, - anon_sym__modify, - ACTIONS(7346), 1, - anon_sym_RBRACE, - STATE(4339), 1, - sym_setter_specifier, - STATE(4340), 1, - sym_getter_specifier, - STATE(4342), 1, - sym_modify_specifier, - STATE(5735), 1, - sym_mutation_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4203), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3775), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [145196] = 11, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7348), 1, - sym__immediate_quest, - ACTIONS(7350), 1, - sym__arrow_operator_custom, - ACTIONS(7352), 1, - sym__async_keyword_custom, - STATE(3148), 1, - sym__arrow_operator, - STATE(3992), 1, - aux_sym_optional_type_repeat1, - STATE(4874), 1, - sym__async_keyword, - STATE(6165), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 7, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [145240] = 3, - ACTIONS(2871), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145268] = 11, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [145312] = 13, - ACTIONS(313), 1, - anon_sym_AT, - ACTIONS(7327), 1, - anon_sym_get, - ACTIONS(7329), 1, - anon_sym_set, - ACTIONS(7331), 1, - anon_sym__modify, - ACTIONS(7354), 1, - anon_sym_RBRACE, - STATE(4339), 1, - sym_setter_specifier, - STATE(4340), 1, - sym_getter_specifier, - STATE(4342), 1, - sym_modify_specifier, - STATE(5735), 1, - sym_mutation_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4203), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(3775), 4, - sym_computed_getter, - sym_computed_modify, - sym_computed_setter, - aux_sym_computed_property_repeat1, - [145360] = 10, - ACTIONS(7356), 1, - sym__immediate_quest, - ACTIONS(7358), 1, - sym__arrow_operator_custom, - ACTIONS(7360), 1, - sym__async_keyword_custom, - STATE(3379), 1, - sym__arrow_operator, - STATE(4036), 1, - aux_sym_optional_type_repeat1, - STATE(4950), 1, - sym__async_keyword, - STATE(6073), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 8, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145402] = 3, - STATE(3799), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145430] = 4, - ACTIONS(7362), 1, - anon_sym_LT, - STATE(3905), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145460] = 3, - ACTIONS(2903), 1, - anon_sym_QMARK, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145488] = 11, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [145532] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 17, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145558] = 5, - ACTIONS(7364), 1, - sym__dot_custom, - STATE(3819), 1, - aux_sym_user_type_repeat1, - STATE(4592), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [145590] = 11, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7366), 1, - sym__immediate_quest, - ACTIONS(7368), 1, - sym__arrow_operator_custom, - ACTIONS(7370), 1, - sym__async_keyword_custom, - STATE(3416), 1, - sym__arrow_operator, - STATE(3982), 1, - aux_sym_optional_type_repeat1, - STATE(4914), 1, - sym__async_keyword, - STATE(6108), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 7, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [145634] = 5, - ACTIONS(7372), 1, - sym__dot_custom, - STATE(3818), 1, - aux_sym_user_type_repeat1, - STATE(4592), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [145666] = 5, - ACTIONS(7364), 1, - sym__dot_custom, - STATE(3818), 1, - aux_sym_user_type_repeat1, - STATE(4592), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [145698] = 5, - ACTIONS(7375), 1, - sym__dot_custom, - STATE(3802), 1, - aux_sym_user_type_repeat1, - STATE(4536), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145730] = 5, - ACTIONS(7375), 1, - sym__dot_custom, - STATE(3820), 1, - aux_sym_user_type_repeat1, - STATE(4536), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145762] = 11, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - ACTIONS(7263), 1, - anon_sym_DOT, - ACTIONS(7265), 1, - anon_sym_AMP, - STATE(3409), 1, - sym__arrow_operator, - STATE(3987), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 7, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [145806] = 5, - ACTIONS(7377), 1, - sym__dot_custom, - STATE(3823), 1, - aux_sym_user_type_repeat1, - STATE(4521), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145838] = 11, - ACTIONS(7368), 1, - sym__arrow_operator_custom, - ACTIONS(7370), 1, - sym__async_keyword_custom, - ACTIONS(7380), 1, - anon_sym_DOT, - ACTIONS(7382), 1, - anon_sym_AMP, - STATE(3416), 1, - sym__arrow_operator, - STATE(4090), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4914), 1, - sym__async_keyword, - STATE(6108), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [145881] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145906] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145931] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145956] = 4, - ACTIONS(7165), 1, - sym__immediate_quest, - STATE(3838), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [145985] = 11, - ACTIONS(7368), 1, - sym__arrow_operator_custom, - ACTIONS(7370), 1, - sym__async_keyword_custom, - ACTIONS(7380), 1, - anon_sym_DOT, - ACTIONS(7382), 1, - anon_sym_AMP, - STATE(3416), 1, - sym__arrow_operator, - STATE(4090), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4914), 1, - sym__async_keyword, - STATE(6108), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [146028] = 11, - ACTIONS(7368), 1, - sym__arrow_operator_custom, - ACTIONS(7370), 1, - sym__async_keyword_custom, - ACTIONS(7380), 1, - anon_sym_DOT, - ACTIONS(7382), 1, - anon_sym_AMP, - STATE(3416), 1, - sym__arrow_operator, - STATE(4090), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4914), 1, - sym__async_keyword, - STATE(6108), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [146071] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 16, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [146096] = 10, - ACTIONS(7384), 1, - sym__immediate_quest, - ACTIONS(7386), 1, - sym__arrow_operator_custom, - ACTIONS(7388), 1, - sym__async_keyword_custom, - STATE(3375), 1, - sym__arrow_operator, - STATE(4129), 1, - aux_sym_optional_type_repeat1, - STATE(4850), 1, - sym__async_keyword, - STATE(6227), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [146137] = 4, - ACTIONS(7390), 1, - anon_sym_LT, - STATE(4006), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146166] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146191] = 7, - STATE(1848), 1, - sym_simple_identifier, - STATE(2319), 1, - sym_identifier, - STATE(4596), 1, - sym__import_kind, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7396), 8, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - [146226] = 11, - ACTIONS(7368), 1, - sym__arrow_operator_custom, - ACTIONS(7370), 1, - sym__async_keyword_custom, - ACTIONS(7380), 1, - anon_sym_DOT, - ACTIONS(7382), 1, - anon_sym_AMP, - STATE(3416), 1, - sym__arrow_operator, - STATE(4090), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4914), 1, - sym__async_keyword, - STATE(6108), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [146269] = 5, - ACTIONS(2832), 1, - anon_sym_QMARK, - ACTIONS(7398), 1, - anon_sym_LT, - STATE(3965), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [146300] = 4, - ACTIONS(7400), 1, - sym__immediate_quest, - STATE(3851), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146329] = 11, - ACTIONS(7350), 1, - sym__arrow_operator_custom, - ACTIONS(7352), 1, - sym__async_keyword_custom, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7404), 1, - anon_sym_AMP, - STATE(3148), 1, - sym__arrow_operator, - STATE(4113), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4874), 1, - sym__async_keyword, - STATE(6165), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [146372] = 4, - ACTIONS(7143), 1, - sym__immediate_quest, - STATE(3846), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146401] = 11, - ACTIONS(7350), 1, - sym__arrow_operator_custom, - ACTIONS(7352), 1, - sym__async_keyword_custom, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7404), 1, - anon_sym_AMP, - STATE(3148), 1, - sym__arrow_operator, - STATE(4113), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4874), 1, - sym__async_keyword, - STATE(6165), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [146444] = 6, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(7406), 1, - sym__dot_custom, - STATE(3842), 1, - aux_sym_user_type_repeat1, - STATE(4495), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [146477] = 6, - ACTIONS(2671), 1, - anon_sym_QMARK, - ACTIONS(7409), 1, - sym__dot_custom, - STATE(3842), 1, - aux_sym_user_type_repeat1, - STATE(4495), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [146510] = 11, - ACTIONS(7368), 1, - sym__arrow_operator_custom, - ACTIONS(7370), 1, - sym__async_keyword_custom, - ACTIONS(7380), 1, - anon_sym_DOT, - ACTIONS(7382), 1, - anon_sym_AMP, - STATE(3416), 1, - sym__arrow_operator, - STATE(4090), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4914), 1, - sym__async_keyword, - STATE(6108), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [146553] = 5, - ACTIONS(7411), 1, - sym__dot_custom, - STATE(3845), 1, - aux_sym_user_type_repeat1, - STATE(4530), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146584] = 4, - ACTIONS(7414), 1, - sym__immediate_quest, - STATE(3856), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146613] = 7, - STATE(4609), 1, - sym__import_kind, - STATE(4830), 1, - sym_simple_identifier, - STATE(5673), 1, - sym_identifier, - ACTIONS(7416), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7418), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7420), 8, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - [146648] = 6, - ACTIONS(2682), 1, - anon_sym_QMARK, - ACTIONS(7409), 1, - sym__dot_custom, - STATE(3843), 1, - aux_sym_user_type_repeat1, - STATE(4495), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [146681] = 6, - ACTIONS(2671), 1, - anon_sym_QMARK, - ACTIONS(7422), 1, - sym__dot_custom, - STATE(3881), 1, - aux_sym_user_type_repeat1, - STATE(4619), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [146714] = 5, - ACTIONS(7424), 1, - sym__dot_custom, - STATE(3845), 1, - aux_sym_user_type_repeat1, - STATE(4530), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146745] = 4, - ACTIONS(7426), 1, - sym__immediate_quest, - STATE(3851), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146774] = 7, - STATE(1848), 1, - sym_simple_identifier, - STATE(2282), 1, - sym_identifier, - STATE(4573), 1, - sym__import_kind, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7429), 8, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - [146809] = 11, - ACTIONS(7350), 1, - sym__arrow_operator_custom, - ACTIONS(7352), 1, - sym__async_keyword_custom, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7404), 1, - anon_sym_AMP, - STATE(3148), 1, - sym__arrow_operator, - STATE(4113), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4874), 1, - sym__async_keyword, - STATE(6165), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [146852] = 5, - ACTIONS(7424), 1, - sym__dot_custom, - STATE(3850), 1, - aux_sym_user_type_repeat1, - STATE(4530), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146883] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146908] = 4, - ACTIONS(7431), 1, - sym__immediate_quest, - STATE(3856), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [146937] = 11, - ACTIONS(7350), 1, - sym__arrow_operator_custom, - ACTIONS(7352), 1, - sym__async_keyword_custom, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7404), 1, - anon_sym_AMP, - STATE(3148), 1, - sym__arrow_operator, - STATE(4113), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4874), 1, - sym__async_keyword, - STATE(6165), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [146980] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 16, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [147005] = 6, - ACTIONS(2682), 1, - anon_sym_QMARK, - ACTIONS(7422), 1, - sym__dot_custom, - STATE(3849), 1, - aux_sym_user_type_repeat1, - STATE(4619), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [147038] = 4, - ACTIONS(7115), 1, - sym__immediate_quest, - STATE(3890), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [147067] = 5, - ACTIONS(2832), 1, - anon_sym_QMARK, - ACTIONS(7434), 1, - anon_sym_LT, - STATE(4012), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [147098] = 4, - ACTIONS(7436), 1, - anon_sym_LT, - STATE(3912), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - [147127] = 7, - STATE(4579), 1, - sym__import_kind, - STATE(4773), 1, - sym_simple_identifier, - STATE(5468), 1, - sym_identifier, - ACTIONS(7438), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7442), 8, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - [147162] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147187] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147212] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147237] = 11, - ACTIONS(7358), 1, - sym__arrow_operator_custom, - ACTIONS(7360), 1, - sym__async_keyword_custom, - ACTIONS(7444), 1, - anon_sym_DOT, - ACTIONS(7446), 1, - anon_sym_AMP, - STATE(3379), 1, - sym__arrow_operator, - STATE(4133), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4950), 1, - sym__async_keyword, - STATE(6073), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147280] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147305] = 7, - STATE(4531), 1, - sym__import_kind, - STATE(4830), 1, - sym_simple_identifier, - STATE(5631), 1, - sym_identifier, - ACTIONS(7416), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7418), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7448), 8, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - [147340] = 3, - ACTIONS(2781), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - [147367] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147392] = 4, - ACTIONS(7450), 1, - sym__immediate_quest, - STATE(3872), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [147421] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147446] = 11, - ACTIONS(7358), 1, - sym__arrow_operator_custom, - ACTIONS(7360), 1, - sym__async_keyword_custom, - ACTIONS(7444), 1, - anon_sym_DOT, - ACTIONS(7446), 1, - anon_sym_AMP, - STATE(3379), 1, - sym__arrow_operator, - STATE(4133), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4950), 1, - sym__async_keyword, - STATE(6073), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147489] = 11, - ACTIONS(7358), 1, - sym__arrow_operator_custom, - ACTIONS(7360), 1, - sym__async_keyword_custom, - ACTIONS(7444), 1, - anon_sym_DOT, - ACTIONS(7446), 1, - anon_sym_AMP, - STATE(3379), 1, - sym__arrow_operator, - STATE(4133), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4950), 1, - sym__async_keyword, - STATE(6073), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147532] = 11, - ACTIONS(7350), 1, - sym__arrow_operator_custom, - ACTIONS(7352), 1, - sym__async_keyword_custom, - ACTIONS(7402), 1, - anon_sym_DOT, - ACTIONS(7404), 1, - anon_sym_AMP, - STATE(3148), 1, - sym__arrow_operator, - STATE(4113), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4874), 1, - sym__async_keyword, - STATE(6165), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [147575] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147600] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147625] = 11, - ACTIONS(7358), 1, - sym__arrow_operator_custom, - ACTIONS(7360), 1, - sym__async_keyword_custom, - ACTIONS(7444), 1, - anon_sym_DOT, - ACTIONS(7446), 1, - anon_sym_AMP, - STATE(3379), 1, - sym__arrow_operator, - STATE(4133), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4950), 1, - sym__async_keyword, - STATE(6073), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147668] = 7, - STATE(4580), 1, - sym__import_kind, - STATE(4773), 1, - sym_simple_identifier, - STATE(5621), 1, - sym_identifier, - ACTIONS(7438), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7453), 8, - anon_sym_typealias, - anon_sym_struct, - anon_sym_class, - anon_sym_enum, - anon_sym_protocol, - anon_sym_let, - anon_sym_var, - anon_sym_func, - [147703] = 6, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(7455), 1, - sym__dot_custom, - STATE(3881), 1, - aux_sym_user_type_repeat1, - STATE(4619), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [147736] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147761] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147786] = 3, - STATE(3891), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147813] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147838] = 11, - ACTIONS(7358), 1, - sym__arrow_operator_custom, - ACTIONS(7360), 1, - sym__async_keyword_custom, - ACTIONS(7444), 1, - anon_sym_DOT, - ACTIONS(7446), 1, - anon_sym_AMP, - STATE(3379), 1, - sym__arrow_operator, - STATE(4133), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4950), 1, - sym__async_keyword, - STATE(6073), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 6, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147881] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147906] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 16, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147931] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 17, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [147956] = 4, - ACTIONS(7458), 1, - sym__immediate_quest, - STATE(3872), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [147985] = 4, - ACTIONS(7460), 1, - anon_sym_AMP, - STATE(3891), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148014] = 12, - ACTIONS(7463), 1, - anon_sym_LPAREN, - ACTIONS(7467), 1, - sym__arrow_operator_custom, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7473), 1, - sym__async_keyword_custom, - STATE(3101), 1, - sym__arrow_operator, - STATE(4239), 1, - aux_sym__function_value_parameters, - STATE(4276), 1, - sym__async_keyword, - STATE(4460), 1, - sym_throws, - STATE(5156), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7465), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148058] = 5, - ACTIONS(7475), 1, - sym__dot_custom, - STATE(3957), 1, - aux_sym_user_type_repeat1, - STATE(4523), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [148088] = 12, - ACTIONS(7463), 1, - anon_sym_LPAREN, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7479), 1, - sym__arrow_operator_custom, - ACTIONS(7481), 1, - sym__async_keyword_custom, - STATE(3091), 1, - sym__arrow_operator, - STATE(4229), 1, - sym__async_keyword, - STATE(4239), 1, - aux_sym__function_value_parameters, - STATE(4481), 1, - sym_throws, - STATE(5213), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7477), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148132] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [148156] = 6, - ACTIONS(643), 1, - anon_sym_inout, - ACTIONS(645), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - STATE(3915), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7483), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - ACTIONS(7485), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - [148188] = 4, - ACTIONS(7487), 1, - anon_sym_AMP, - STATE(3897), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148216] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148240] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [148264] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [148288] = 5, - ACTIONS(7490), 1, - sym__dot_custom, - STATE(3901), 1, - aux_sym_user_type_repeat1, - STATE(4523), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [148318] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148342] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [148366] = 4, - ACTIONS(7493), 1, - anon_sym_LT, - STATE(4070), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [148394] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148418] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148442] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148466] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148490] = 4, - ACTIONS(7495), 1, - sym__immediate_quest, - STATE(3909), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [148518] = 4, - ACTIONS(7498), 1, - anon_sym_AMP, - STATE(3910), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [148546] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [148570] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [148594] = 3, - ACTIONS(2857), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [148620] = 4, - ACTIONS(7501), 1, - sym__immediate_quest, - STATE(3914), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148648] = 6, - ACTIONS(7508), 1, - anon_sym_inout, - ACTIONS(7511), 2, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - STATE(3915), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7504), 5, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - ACTIONS(7506), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - [148680] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148704] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [148728] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148752] = 5, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7227), 1, - sym__immediate_quest, - STATE(3953), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [148782] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148806] = 4, - ACTIONS(7211), 1, - sym__immediate_quest, - STATE(3952), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [148834] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148858] = 4, - ACTIONS(7514), 1, - sym__immediate_quest, - STATE(3914), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148886] = 4, - ACTIONS(7516), 1, - anon_sym_AMP, - STATE(3924), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148914] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148938] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [148962] = 3, - STATE(3910), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [148988] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 15, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [149012] = 4, - ACTIONS(7252), 1, - sym__immediate_quest, - STATE(3923), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149040] = 3, - ACTIONS(2781), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - [149066] = 12, - ACTIONS(7463), 1, - anon_sym_LPAREN, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7519), 1, - sym__arrow_operator_custom, - ACTIONS(7521), 1, - sym__async_keyword_custom, - STATE(3109), 1, - sym__arrow_operator, - STATE(4239), 1, - aux_sym__function_value_parameters, - STATE(4279), 1, - sym__async_keyword, - STATE(4463), 1, - sym_throws, - STATE(5159), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7465), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149110] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [149134] = 4, - ACTIONS(7523), 1, - sym__immediate_quest, - STATE(3933), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149162] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149186] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149210] = 3, - STATE(3924), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149236] = 4, - ACTIONS(7187), 1, - sym__immediate_quest, - STATE(3956), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149264] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149288] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149312] = 11, - ACTIONS(7386), 1, - sym__arrow_operator_custom, - ACTIONS(7388), 1, - sym__async_keyword_custom, - ACTIONS(7526), 1, - anon_sym_DOT, - ACTIONS(7528), 1, - anon_sym_AMP, - STATE(3375), 1, - sym__arrow_operator, - STATE(4197), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4850), 1, - sym__async_keyword, - STATE(6227), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG, - [149354] = 11, - ACTIONS(7386), 1, - sym__arrow_operator_custom, - ACTIONS(7388), 1, - sym__async_keyword_custom, - ACTIONS(7526), 1, - anon_sym_DOT, - ACTIONS(7528), 1, - anon_sym_AMP, - STATE(3375), 1, - sym__arrow_operator, - STATE(4197), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4850), 1, - sym__async_keyword, - STATE(6227), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG, - [149396] = 11, - ACTIONS(7386), 1, - sym__arrow_operator_custom, - ACTIONS(7388), 1, - sym__async_keyword_custom, - ACTIONS(7526), 1, - anon_sym_DOT, - ACTIONS(7528), 1, - anon_sym_AMP, - STATE(3375), 1, - sym__arrow_operator, - STATE(4197), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4850), 1, - sym__async_keyword, - STATE(6227), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG, - [149438] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149462] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149486] = 3, - ACTIONS(2781), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_in, - [149512] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 15, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [149536] = 3, - ACTIONS(2899), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [149562] = 3, - STATE(3897), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149588] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149612] = 3, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [149638] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 15, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149662] = 4, - ACTIONS(7530), 1, - sym__immediate_quest, - STATE(3909), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [149690] = 5, - ACTIONS(2738), 1, - anon_sym_QMARK, - ACTIONS(7532), 1, - sym__immediate_quest, - STATE(3958), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [149720] = 11, - ACTIONS(7386), 1, - sym__arrow_operator_custom, - ACTIONS(7388), 1, - sym__async_keyword_custom, - ACTIONS(7526), 1, - anon_sym_DOT, - ACTIONS(7528), 1, - anon_sym_AMP, - STATE(3375), 1, - sym__arrow_operator, - STATE(4197), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4850), 1, - sym__async_keyword, - STATE(6227), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG, - [149762] = 11, - ACTIONS(7386), 1, - sym__arrow_operator_custom, - ACTIONS(7388), 1, - sym__async_keyword_custom, - ACTIONS(7526), 1, - anon_sym_DOT, - ACTIONS(7528), 1, - anon_sym_AMP, - STATE(3375), 1, - sym__arrow_operator, - STATE(4197), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4850), 1, - sym__async_keyword, - STATE(6227), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_BANG, - [149804] = 4, - ACTIONS(7534), 1, - sym__immediate_quest, - STATE(3933), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149832] = 5, - ACTIONS(7475), 1, - sym__dot_custom, - STATE(3901), 1, - aux_sym_user_type_repeat1, - STATE(4523), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [149862] = 5, - ACTIONS(2801), 1, - anon_sym_QMARK, - ACTIONS(7536), 1, - sym__immediate_quest, - STATE(3958), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - [149892] = 3, - ACTIONS(2875), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [149918] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149942] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149966] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 16, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [149990] = 12, - ACTIONS(7463), 1, - anon_sym_LPAREN, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7539), 1, - sym__arrow_operator_custom, - ACTIONS(7541), 1, - sym__async_keyword_custom, - STATE(3096), 1, - sym__arrow_operator, - STATE(4224), 1, - sym__async_keyword, - STATE(4239), 1, - aux_sym__function_value_parameters, - STATE(4391), 1, - sym_throws, - STATE(5205), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7477), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150034] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [150057] = 3, - ACTIONS(2857), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [150082] = 3, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [150107] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150130] = 9, - ACTIONS(7543), 1, - anon_sym_if, - ACTIONS(7545), 1, - anon_sym_guard, - ACTIONS(7547), 1, - anon_sym_switch, - ACTIONS(7549), 1, - anon_sym_do, - ACTIONS(7551), 1, - anon_sym_for, - ACTIONS(7553), 1, - anon_sym_while, - ACTIONS(7555), 1, - anon_sym_repeat, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(2961), 7, - sym_if_statement, - sym_guard_statement, - sym_switch_statement, - sym_do_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_while_statement, - [150167] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150190] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150213] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150236] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [150259] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150282] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 14, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - [150305] = 3, - ACTIONS(2879), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [150330] = 10, - ACTIONS(7557), 1, - sym__immediate_quest, - ACTIONS(7559), 1, - sym__arrow_operator_custom, - ACTIONS(7561), 1, - sym__async_keyword_custom, - STATE(3235), 1, - sym__arrow_operator, - STATE(4286), 1, - aux_sym_optional_type_repeat1, - STATE(4932), 1, - sym__async_keyword, - STATE(6090), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [150369] = 4, - ACTIONS(7563), 1, - anon_sym_AMP, - STATE(3977), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [150396] = 10, - ACTIONS(7570), 1, - anon_sym_self, - STATE(4797), 1, - sym_ownership_modifier, - STATE(5102), 1, - sym_simple_identifier, - STATE(5569), 1, - sym_capture_list_item, - STATE(6016), 1, - sym_self_expression, - ACTIONS(623), 2, - anon_sym_weak, - anon_sym_unowned, - ACTIONS(625), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [150435] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [150458] = 5, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7366), 1, - sym__immediate_quest, - STATE(3982), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [150487] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150510] = 5, - ACTIONS(2738), 1, - anon_sym_QMARK, - ACTIONS(7572), 1, - sym__immediate_quest, - STATE(3990), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [150539] = 3, - ACTIONS(2887), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [150564] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150587] = 5, - ACTIONS(2801), 1, - anon_sym_QMARK, - ACTIONS(7574), 1, - sym__immediate_quest, - STATE(3985), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [150616] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150639] = 3, - STATE(3977), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [150664] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150687] = 3, - STATE(3996), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150712] = 5, - ACTIONS(2801), 1, - anon_sym_QMARK, - ACTIONS(7577), 1, - sym__immediate_quest, - STATE(3990), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_in, - [150741] = 4, - ACTIONS(7580), 1, - anon_sym_AMP, - STATE(3991), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - [150768] = 5, - ACTIONS(2738), 1, - anon_sym_QMARK, - ACTIONS(7583), 1, - sym__immediate_quest, - STATE(3985), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [150797] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150820] = 3, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [150845] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150868] = 4, - ACTIONS(7585), 1, - anon_sym_AMP, - STATE(3996), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150895] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150918] = 3, - ACTIONS(2871), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [150943] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150966] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [150989] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151012] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151035] = 5, - ACTIONS(2830), 1, - sym__dot_custom, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4349), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151064] = 3, - STATE(3991), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [151089] = 3, - ACTIONS(2903), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [151114] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151137] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [151160] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 15, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151183] = 9, - ACTIONS(7588), 1, - anon_sym_if, - ACTIONS(7590), 1, - anon_sym_guard, - ACTIONS(7592), 1, - anon_sym_switch, - ACTIONS(7594), 1, - anon_sym_do, - ACTIONS(7596), 1, - anon_sym_for, - ACTIONS(7598), 1, - anon_sym_while, - ACTIONS(7600), 1, - anon_sym_repeat, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(5236), 7, - sym_if_statement, - sym_guard_statement, - sym_switch_statement, - sym_do_statement, - sym_for_statement, - sym_while_statement, - sym_repeat_while_statement, - [151220] = 5, - ACTIONS(2628), 1, - anon_sym_QMARK, - ACTIONS(7348), 1, - sym__immediate_quest, - STATE(3992), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - [151249] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [151272] = 3, - ACTIONS(2857), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [151297] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [151320] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151343] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [151366] = 10, - ACTIONS(7570), 1, - anon_sym_self, - STATE(4797), 1, - sym_ownership_modifier, - STATE(5102), 1, - sym_simple_identifier, - STATE(6016), 1, - sym_self_expression, - STATE(6138), 1, - sym_capture_list_item, - ACTIONS(623), 2, - anon_sym_weak, - anon_sym_unowned, - ACTIONS(625), 2, - anon_sym_unowned_LPARENsafe_RPAREN, - anon_sym_unowned_LPARENunsafe_RPAREN, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [151405] = 3, - ACTIONS(2731), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [151430] = 5, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(7602), 1, - anon_sym_COLON, - STATE(1409), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [151459] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [151482] = 3, - ACTIONS(2899), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [151507] = 3, - ACTIONS(2875), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [151532] = 5, - ACTIONS(7608), 1, - sym__async_keyword_custom, - ACTIONS(7606), 2, - sym__throws_keyword, - sym__rethrows_keyword, - STATE(4035), 3, - sym__async_keyword, - sym_throws, - aux_sym__getter_effects, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7604), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [151561] = 4, - ACTIONS(7356), 1, - sym__immediate_quest, - STATE(4036), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151588] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151611] = 3, - STATE(4033), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151636] = 4, - ACTIONS(7610), 1, - sym__immediate_quest, - STATE(4026), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151663] = 5, - ACTIONS(7618), 1, - sym__async_keyword_custom, - ACTIONS(7615), 2, - sym__throws_keyword, - sym__rethrows_keyword, - STATE(4027), 3, - sym__async_keyword, - sym_throws, - aux_sym__getter_effects, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7613), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [151692] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 14, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [151715] = 5, - ACTIONS(7623), 1, - sym__async_keyword_custom, - ACTIONS(7606), 2, - sym__throws_keyword, - sym__rethrows_keyword, - STATE(4030), 3, - sym__async_keyword, - sym_throws, - aux_sym__getter_effects, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7621), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [151744] = 5, - ACTIONS(7627), 1, - sym__async_keyword_custom, - ACTIONS(7606), 2, - sym__throws_keyword, - sym__rethrows_keyword, - STATE(4027), 3, - sym__async_keyword, - sym_throws, - aux_sym__getter_effects, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7625), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [151773] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151796] = 3, - ACTIONS(2875), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [151821] = 4, - ACTIONS(7629), 1, - anon_sym_AMP, - STATE(4033), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151848] = 3, - ACTIONS(2899), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [151873] = 5, - ACTIONS(7627), 1, - sym__async_keyword_custom, - ACTIONS(7606), 2, - sym__throws_keyword, - sym__rethrows_keyword, - STATE(4027), 3, - sym__async_keyword, - sym_throws, - aux_sym__getter_effects, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7621), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [151902] = 4, - ACTIONS(7632), 1, - sym__immediate_quest, - STATE(4026), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151929] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 14, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [151952] = 5, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(7634), 1, - anon_sym_COLON, - STATE(1409), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 11, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [151981] = 10, - ACTIONS(7636), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3493), 1, - sym__binding_pattern_kind, - STATE(4742), 1, - sym__simple_user_type, - STATE(4816), 1, - sym__dot, - STATE(6212), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152019] = 11, - ACTIONS(7239), 1, - anon_sym_LPAREN, - ACTIONS(7245), 1, - anon_sym_self, - ACTIONS(7638), 1, - anon_sym_in, - STATE(4060), 1, - sym_simple_identifier, - STATE(4483), 1, - sym_lambda_function_type_parameters, - STATE(4509), 1, - sym_lambda_parameter, - STATE(4784), 1, - sym_self_expression, - STATE(6406), 1, - sym_lambda_function_type, - ACTIONS(7235), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7237), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152059] = 10, - ACTIONS(7640), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3480), 1, - sym__binding_pattern_kind, - STATE(4680), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(5884), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152097] = 4, - ACTIONS(6952), 1, - anon_sym_LPAREN, - STATE(4216), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [152123] = 10, - ACTIONS(7642), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3493), 1, - sym__binding_pattern_kind, - STATE(4669), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6217), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152161] = 11, - ACTIONS(7239), 1, - anon_sym_LPAREN, - ACTIONS(7245), 1, - anon_sym_self, - ACTIONS(7644), 1, - anon_sym_in, - STATE(4060), 1, - sym_simple_identifier, - STATE(4483), 1, - sym_lambda_function_type_parameters, - STATE(4509), 1, - sym_lambda_parameter, - STATE(4784), 1, - sym_self_expression, - STATE(6264), 1, - sym_lambda_function_type, - ACTIONS(7235), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7237), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152201] = 9, - ACTIONS(7646), 1, - anon_sym_LBRACK, - ACTIONS(7650), 1, - anon_sym_self, - STATE(696), 1, - sym_simple_identifier, - STATE(723), 1, - sym__key_path_component, - ACTIONS(2695), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7648), 2, - sym_bang, - anon_sym_QMARK, - STATE(695), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(2697), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152237] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [152259] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [152281] = 10, - ACTIONS(7652), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3485), 1, - sym__binding_pattern_kind, - STATE(4742), 1, - sym__simple_user_type, - STATE(4772), 1, - sym__dot, - STATE(6111), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152319] = 5, - ACTIONS(7654), 1, - sym__dot_custom, - STATE(4049), 1, - aux_sym_user_type_repeat1, - STATE(4514), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [152347] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4470), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4870), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4336), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4607), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152383] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [152405] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [152427] = 5, - ACTIONS(2830), 1, - sym__dot_custom, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4349), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [152455] = 10, - ACTIONS(7663), 1, - anon_sym_COLON, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(7667), 1, - sym__eq_custom, - ACTIONS(7669), 1, - sym_where_keyword, - STATE(511), 1, - sym__equal_sign, - STATE(4223), 1, - sym_type_annotation, - STATE(4350), 1, - sym_type_constraints, - STATE(4911), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4376), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [152493] = 11, - ACTIONS(7559), 1, - sym__arrow_operator_custom, - ACTIONS(7561), 1, - sym__async_keyword_custom, - ACTIONS(7671), 1, - anon_sym_DOT, - ACTIONS(7673), 1, - anon_sym_AMP, - STATE(3235), 1, - sym__arrow_operator, - STATE(4308), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4932), 1, - sym__async_keyword, - STATE(6090), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2607), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [152533] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(4848), 1, - sym_identifier, - STATE(5129), 1, - sym_type_constraint, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4312), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5701), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152569] = 4, - ACTIONS(6952), 1, - anon_sym_LPAREN, - STATE(4275), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [152595] = 11, - ACTIONS(7559), 1, - sym__arrow_operator_custom, - ACTIONS(7561), 1, - sym__async_keyword_custom, - ACTIONS(7671), 1, - anon_sym_DOT, - ACTIONS(7673), 1, - anon_sym_AMP, - STATE(3235), 1, - sym__arrow_operator, - STATE(4308), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4932), 1, - sym__async_keyword, - STATE(6090), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2632), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [152635] = 11, - ACTIONS(7559), 1, - sym__arrow_operator_custom, - ACTIONS(7561), 1, - sym__async_keyword_custom, - ACTIONS(7671), 1, - anon_sym_DOT, - ACTIONS(7673), 1, - anon_sym_AMP, - STATE(3235), 1, - sym__arrow_operator, - STATE(4308), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4932), 1, - sym__async_keyword, - STATE(6090), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2636), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [152675] = 7, - ACTIONS(4185), 1, - anon_sym_COLON, - ACTIONS(4187), 1, - anon_sym_in, - STATE(6270), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4183), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - [152707] = 9, - ACTIONS(7675), 1, - anon_sym_LBRACK, - ACTIONS(7679), 1, - anon_sym_self, - STATE(1885), 1, - sym_simple_identifier, - STATE(2228), 1, - sym__key_path_component, - ACTIONS(4341), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7677), 2, - sym_bang, - anon_sym_QMARK, - STATE(1930), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(4343), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152743] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [152765] = 9, - ACTIONS(7681), 1, - anon_sym_LBRACK, - ACTIONS(7685), 1, - anon_sym_self, - STATE(990), 1, - sym_simple_identifier, - STATE(1042), 1, - sym__key_path_component, - ACTIONS(3178), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7683), 2, - sym_bang, - anon_sym_QMARK, - STATE(995), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(3180), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152801] = 11, - ACTIONS(7559), 1, - sym__arrow_operator_custom, - ACTIONS(7561), 1, - sym__async_keyword_custom, - ACTIONS(7671), 1, - anon_sym_DOT, - ACTIONS(7673), 1, - anon_sym_AMP, - STATE(3235), 1, - sym__arrow_operator, - STATE(4308), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4932), 1, - sym__async_keyword, - STATE(6090), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2622), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [152841] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 13, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [152863] = 4, - ACTIONS(7384), 1, - sym__immediate_quest, - STATE(4129), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [152889] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4497), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4870), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4336), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4607), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152925] = 10, - ACTIONS(7640), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3493), 1, - sym__binding_pattern_kind, - STATE(4680), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(5884), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [152963] = 6, - ACTIONS(7687), 1, - sym__dot_custom, - STATE(4094), 1, - aux_sym_user_type_repeat1, - STATE(4516), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2669), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [152993] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [153015] = 6, - ACTIONS(7689), 1, - sym__dot_custom, - STATE(4071), 1, - aux_sym_user_type_repeat1, - STATE(4566), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2729), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [153045] = 10, - ACTIONS(7692), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3493), 1, - sym__binding_pattern_kind, - STATE(4742), 1, - sym__simple_user_type, - STATE(4823), 1, - sym__dot, - STATE(6190), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153083] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [153105] = 5, - ACTIONS(7694), 1, - anon_sym_LT, - STATE(4214), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2830), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [153133] = 6, - ACTIONS(7687), 1, - sym__dot_custom, - STATE(4069), 1, - aux_sym_user_type_repeat1, - STATE(4516), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2680), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [153163] = 5, - ACTIONS(7131), 1, - anon_sym_LT, - ACTIONS(7696), 1, - anon_sym_COLON, - STATE(3723), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 10, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [153191] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(4877), 1, - sym_type_constraint, - STATE(5013), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4301), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4994), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153227] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [153249] = 11, - ACTIONS(7559), 1, - sym__arrow_operator_custom, - ACTIONS(7561), 1, - sym__async_keyword_custom, - ACTIONS(7671), 1, - anon_sym_DOT, - ACTIONS(7673), 1, - anon_sym_AMP, - STATE(3235), 1, - sym__arrow_operator, - STATE(4308), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4932), 1, - sym__async_keyword, - STATE(6090), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [153289] = 10, - ACTIONS(7698), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3493), 1, - sym__binding_pattern_kind, - STATE(4698), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6160), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153327] = 4, - ACTIONS(6952), 1, - anon_sym_LPAREN, - STATE(4243), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4398), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [153353] = 3, - ACTIONS(2781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 11, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - sym_integer_literal, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [153377] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4649), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(5013), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4301), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4994), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153413] = 3, - ACTIONS(2903), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [153437] = 10, - ACTIONS(7700), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3500), 1, - sym__binding_pattern_kind, - STATE(4682), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6024), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153475] = 5, - ACTIONS(7702), 1, - anon_sym_LT, - STATE(4233), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2832), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2830), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [153503] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [153525] = 9, - ACTIONS(7704), 1, - anon_sym_LBRACK, - ACTIONS(7708), 1, - anon_sym_self, - STATE(2142), 1, - sym_simple_identifier, - STATE(2540), 1, - sym__key_path_component, - ACTIONS(4506), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7706), 2, - sym_bang, - anon_sym_QMARK, - STATE(2144), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(4508), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153561] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [153583] = 3, - STATE(4108), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [153607] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [153629] = 4, - ACTIONS(7710), 1, - sym__immediate_quest, - STATE(4092), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [153655] = 9, - ACTIONS(7713), 1, - anon_sym_LBRACK, - ACTIONS(7717), 1, - anon_sym_self, - STATE(1991), 1, - sym_simple_identifier, - STATE(2381), 1, - sym__key_path_component, - ACTIONS(4408), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7715), 2, - sym_bang, - anon_sym_QMARK, - STATE(1986), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(4410), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153691] = 6, - ACTIONS(7719), 1, - sym__dot_custom, - STATE(4094), 1, - aux_sym_user_type_repeat1, - STATE(4516), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2729), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [153721] = 9, - ACTIONS(7722), 1, - anon_sym_LBRACK, - ACTIONS(7726), 1, - anon_sym_self, - STATE(2315), 1, - sym_simple_identifier, - STATE(2640), 1, - sym__key_path_component, - ACTIONS(4527), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7724), 2, - sym_bang, - anon_sym_QMARK, - STATE(2312), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(4529), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153757] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [153779] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(2816), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4984), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(2847), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4297), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153815] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7728), 6, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - ACTIONS(7730), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [153839] = 3, - ACTIONS(2879), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [153863] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 13, - sym__arrow_operator_custom, - sym__dot_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [153885] = 4, - ACTIONS(7732), 1, - anon_sym_AMP, - STATE(4101), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LBRACE, - [153911] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [153933] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(1865), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4996), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(1947), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4306), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [153969] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(4848), 1, - sym_identifier, - STATE(5394), 1, - sym_type_constraint, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4312), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(5701), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154005] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(2822), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4984), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(2847), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4297), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154041] = 3, - ACTIONS(2871), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [154065] = 3, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [154089] = 4, - ACTIONS(7735), 1, - anon_sym_AMP, - STATE(4108), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 11, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_in, - [154115] = 4, - ACTIONS(7738), 1, - anon_sym_LT, - STATE(4242), 1, - sym_type_arguments, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [154141] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [154163] = 10, - ACTIONS(7698), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3495), 1, - sym__binding_pattern_kind, - STATE(4698), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6160), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154201] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154223] = 3, - STATE(4101), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [154247] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154269] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154291] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 13, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - [154313] = 3, - ACTIONS(2903), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [154337] = 3, - ACTIONS(2879), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [154361] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154383] = 3, - ACTIONS(2887), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - [154407] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4597), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4926), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4309), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4727), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154443] = 9, - ACTIONS(7740), 1, - anon_sym_LBRACK, - ACTIONS(7744), 1, - anon_sym_self, - STATE(1854), 1, - sym_simple_identifier, - STATE(2129), 1, - sym__key_path_component, - ACTIONS(4324), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7742), 2, - sym_bang, - anon_sym_QMARK, - STATE(1855), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(4326), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154479] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 14, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154501] = 3, - ACTIONS(2871), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [154525] = 3, - ACTIONS(2887), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [154549] = 10, - ACTIONS(7652), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3493), 1, - sym__binding_pattern_kind, - STATE(4742), 1, - sym__simple_user_type, - STATE(4772), 1, - sym__dot, - STATE(6111), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154587] = 6, - ACTIONS(7746), 1, - sym__dot_custom, - STATE(4071), 1, - aux_sym_user_type_repeat1, - STATE(4566), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2671), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2669), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [154617] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5834), 6, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - ACTIONS(5832), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [154641] = 4, - ACTIONS(7748), 1, - sym__immediate_quest, - STATE(4092), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [154667] = 9, - ACTIONS(7750), 1, - anon_sym_LBRACK, - ACTIONS(7754), 1, - anon_sym_self, - STATE(964), 1, - sym_simple_identifier, - STATE(1023), 1, - sym__key_path_component, - ACTIONS(3166), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7752), 2, - sym_bang, - anon_sym_QMARK, - STATE(973), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(3168), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154703] = 4, - ACTIONS(7756), 1, - anon_sym_AMP, - STATE(4131), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154729] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154751] = 3, - STATE(4131), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154775] = 5, - ACTIONS(7759), 1, - sym__dot_custom, - STATE(4049), 1, - aux_sym_user_type_repeat1, - STATE(4514), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [154803] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4761), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4926), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4309), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - STATE(4727), 2, - sym_inheritance_constraint, - sym_equality_constraint, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154839] = 5, - ACTIONS(7759), 1, - sym__dot_custom, - STATE(4134), 1, - aux_sym_user_type_repeat1, - STATE(4514), 1, - sym__dot, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [154867] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(1005), 6, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - anon_sym_AT, - anon_sym_inout, - ACTIONS(1007), 7, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_ATescaping, - anon_sym_ATautoclosure, - [154891] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(1829), 1, - sym_type_constraint, - STATE(4766), 1, - sym_simple_identifier, - STATE(4996), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(1947), 2, - sym_inheritance_constraint, - sym_equality_constraint, - STATE(4306), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154927] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [154949] = 10, - ACTIONS(7700), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3493), 1, - sym__binding_pattern_kind, - STATE(4682), 1, - sym__dot, - STATE(4742), 1, - sym__simple_user_type, - STATE(6024), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [154987] = 10, - ACTIONS(7692), 1, - sym__dot_custom, - STATE(1853), 1, - sym_simple_identifier, - STATE(3492), 1, - sym__binding_pattern_kind, - STATE(4742), 1, - sym__simple_user_type, - STATE(4823), 1, - sym__dot, - STATE(6190), 1, - sym_user_type, - ACTIONS(101), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [155025] = 6, - ACTIONS(7746), 1, - sym__dot_custom, - STATE(4127), 1, - aux_sym_user_type_repeat1, - STATE(4566), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2682), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2680), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [155055] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [155077] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 13, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [155099] = 9, - ACTIONS(7761), 1, - anon_sym_LBRACK, - ACTIONS(7765), 1, - anon_sym_self, - STATE(2134), 1, - sym_simple_identifier, - STATE(2526), 1, - sym__key_path_component, - ACTIONS(4490), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7763), 2, - sym_bang, - anon_sym_QMARK, - STATE(2132), 2, - sym__key_path_postfixes, - aux_sym__key_path_component_repeat1, - ACTIONS(4492), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [155135] = 3, - ACTIONS(2849), 1, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_in, - [155159] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [155180] = 4, - ACTIONS(6990), 1, - anon_sym_LPAREN, - STATE(4334), 1, - sym__tuple_pattern, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4398), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [155205] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7773), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155246] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7779), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155287] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7781), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155328] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [155349] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7785), 5, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(7783), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_case, - anon_sym_is, - anon_sym_let, - anon_sym_var, - sym_wildcard_pattern, - [155372] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7787), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4159), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155413] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [155434] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7789), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4181), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155475] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7791), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4150), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155516] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2779), 8, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AT, - [155539] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7793), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155580] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7795), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4196), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155621] = 4, - ACTIONS(7797), 1, - anon_sym_AMP, - STATE(4161), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 10, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - [155646] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_LT, - anon_sym_RBRACE, - [155667] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7800), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4151), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155708] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [155729] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7802), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155770] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [155791] = 5, - ACTIONS(7804), 1, - anon_sym_AT, - STATE(4167), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3462), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(3464), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - [155818] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [155839] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7807), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4149), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155880] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7809), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4178), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155921] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7811), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [155962] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7813), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4165), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156003] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [156024] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [156045] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [156066] = 5, - ACTIONS(7815), 1, - anon_sym_AT, - STATE(4176), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3462), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(3464), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - [156093] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [156114] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7818), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156155] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7820), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4171), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156196] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 13, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - [156217] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7822), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156258] = 3, - ACTIONS(2781), 3, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 9, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_COMMA, - anon_sym_COLON, - [156281] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7824), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4198), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156322] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 12, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - [156343] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [156364] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [156385] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2781), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2779), 8, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AT, - [156408] = 12, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(7828), 1, - sym__arrow_operator_custom, - ACTIONS(7832), 1, - sym__async_keyword_custom, - STATE(3097), 1, - sym__arrow_operator, - STATE(4401), 1, - sym__async_keyword, - STATE(4438), 1, - aux_sym__function_value_parameters, - STATE(4980), 1, - sym_throws, - STATE(6432), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [156449] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_LBRACE, - [156470] = 12, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(7834), 1, - sym__arrow_operator_custom, - ACTIONS(7836), 1, - sym__async_keyword_custom, - STATE(3063), 1, - sym__arrow_operator, - STATE(4435), 1, - sym__async_keyword, - STATE(4438), 1, - aux_sym__function_value_parameters, - STATE(4938), 1, - sym_throws, - STATE(6330), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [156511] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7838), 1, - anon_sym_DQUOTE, - ACTIONS(7841), 1, - aux_sym_line_str_text_token1, - ACTIONS(7844), 1, - anon_sym_BSLASH, - ACTIONS(7847), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7849), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7852), 1, - sym__escaped_identifier, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156552] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [156573] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [156594] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7857), 5, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(7855), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_case, - anon_sym_is, - anon_sym_let, - anon_sym_var, - sym_wildcard_pattern, - [156617] = 4, - ACTIONS(6990), 1, - anon_sym_LPAREN, - STATE(4317), 1, - sym__tuple_pattern, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [156642] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7859), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156683] = 3, - STATE(4161), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [156706] = 12, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7767), 1, - anon_sym_DQUOTE, - ACTIONS(7769), 1, - aux_sym_line_str_text_token1, - ACTIONS(7771), 1, - anon_sym_BSLASH, - ACTIONS(7775), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7777), 1, - sym__escaped_identifier, - ACTIONS(7861), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(4191), 1, - aux_sym_multi_line_string_literal_repeat1, - STATE(4726), 1, - sym__interpolation, - STATE(4796), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4747), 3, - sym_str_escaped_char, - sym__multi_line_string_content, - sym_multi_line_str_text, - [156747] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 12, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__as_custom, - sym__async_keyword_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_in, - [156768] = 12, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - sym__arrow_operator_custom, - ACTIONS(7865), 1, - sym__async_keyword_custom, - STATE(3078), 1, - sym__arrow_operator, - STATE(4400), 1, - sym__async_keyword, - STATE(4438), 1, - aux_sym__function_value_parameters, - STATE(4986), 1, - sym_throws, - STATE(6411), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [156809] = 12, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(7867), 1, - sym__arrow_operator_custom, - ACTIONS(7869), 1, - sym__async_keyword_custom, - STATE(3055), 1, - sym__arrow_operator, - STATE(4436), 1, - sym__async_keyword, - STATE(4438), 1, - aux_sym__function_value_parameters, - STATE(4945), 1, - sym_throws, - STATE(6321), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [156850] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7873), 5, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - ACTIONS(7871), 7, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_case, - anon_sym_is, - anon_sym_let, - anon_sym_var, - sym_wildcard_pattern, - [156873] = 11, - ACTIONS(313), 1, - anon_sym_AT, - ACTIONS(7327), 1, - anon_sym_get, - ACTIONS(7329), 1, - anon_sym_set, - ACTIONS(7331), 1, - anon_sym__modify, - STATE(4321), 1, - sym_setter_specifier, - STATE(4370), 1, - sym_getter_specifier, - STATE(4383), 1, - sym_modify_specifier, - STATE(5735), 1, - sym_mutation_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4395), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [156912] = 10, - ACTIONS(7875), 1, - anon_sym_COLON, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(7879), 1, - sym__eq_custom, - ACTIONS(7881), 1, - sym_where_keyword, - STATE(541), 1, - sym__equal_sign, - STATE(4293), 1, - sym_type_annotation, - STATE(4464), 1, - sym_type_constraints, - STATE(5166), 1, - sym_computed_property, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4376), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [156949] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 12, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_LBRACE, - anon_sym_RBRACE, - [156970] = 4, - ACTIONS(6990), 1, - anon_sym_LPAREN, - STATE(4288), 1, - sym__tuple_pattern, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [156995] = 5, - ACTIONS(4504), 1, - sym__as_custom, - ACTIONS(7883), 1, - anon_sym_QMARK, - STATE(4333), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157022] = 5, - ACTIONS(621), 1, - anon_sym_AT, - STATE(4167), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3442), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(3444), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - [157049] = 5, - ACTIONS(4447), 1, - sym__as_custom, - ACTIONS(7885), 1, - anon_sym_QMARK, - STATE(4331), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157076] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [157096] = 4, - ACTIONS(7557), 1, - sym__immediate_quest, - STATE(4286), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2626), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [157120] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2897), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [157142] = 4, - ACTIONS(7887), 1, - anon_sym_QMARK, - STATE(4353), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5940), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [157166] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2855), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [157188] = 9, - ACTIONS(103), 1, - anon_sym_func, - ACTIONS(109), 1, - anon_sym_init, - STATE(4600), 1, - sym_simple_identifier, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(6373), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157222] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4523), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157242] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7889), 1, - anon_sym_DQUOTE, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [157280] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - ACTIONS(7899), 1, - anon_sym_RPAREN, - STATE(4604), 1, - sym_attribute, - STATE(4608), 1, - sym_simple_identifier, - STATE(5138), 1, - sym_parameter, - STATE(5691), 1, - sym__function_value_parameter, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157314] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7901), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [157352] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7903), 1, - anon_sym_DQUOTE, - STATE(4284), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [157390] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [157410] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2873), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [157432] = 8, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(7669), 1, - sym_where_keyword, - ACTIONS(7905), 1, - sym__eq_custom, - STATE(533), 1, - sym__equal_sign, - STATE(4356), 1, - sym_type_constraints, - STATE(5006), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [157464] = 8, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7909), 1, - sym__arrow_operator_custom, - STATE(3050), 1, - sym__arrow_operator, - STATE(4397), 1, - sym_throws, - STATE(5242), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7907), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157496] = 4, - ACTIONS(7911), 1, - anon_sym_QMARK, - STATE(4345), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4504), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [157520] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4538), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157540] = 8, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4717), 1, - sym_type_parameter_modifiers, - STATE(4899), 1, - sym_type_parameter, - STATE(5137), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4441), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157572] = 9, - ACTIONS(103), 1, - anon_sym_func, - ACTIONS(109), 1, - anon_sym_init, - STATE(4636), 1, - sym_simple_identifier, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(6373), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157606] = 8, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7913), 1, - sym__arrow_operator_custom, - STATE(3040), 1, - sym__arrow_operator, - STATE(4428), 1, - sym_throws, - STATE(5235), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7907), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157638] = 8, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4717), 1, - sym_type_parameter_modifiers, - STATE(4955), 1, - sym_type_parameter, - STATE(5137), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4441), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157670] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7915), 1, - anon_sym_DQUOTE, - ACTIONS(7917), 1, - aux_sym_line_str_text_token1, - ACTIONS(7920), 1, - anon_sym_BSLASH, - ACTIONS(7923), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7926), 1, - sym__escaped_identifier, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [157708] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - ACTIONS(7929), 1, - anon_sym_RPAREN, - STATE(4604), 1, - sym_attribute, - STATE(4608), 1, - sym_simple_identifier, - STATE(5138), 1, - sym_parameter, - STATE(5642), 1, - sym__function_value_parameter, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157742] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2857), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2855), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [157764] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [157784] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2899), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2897), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [157806] = 8, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4717), 1, - sym_type_parameter_modifiers, - STATE(5137), 1, - sym_simple_identifier, - STATE(5483), 1, - sym_type_parameter, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4441), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157838] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2875), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2873), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [157860] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7931), 1, - anon_sym_DQUOTE, - STATE(4258), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [157898] = 4, - ACTIONS(7933), 1, - anon_sym_LPAREN, - STATE(4239), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7936), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157922] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4560), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [157942] = 9, - ACTIONS(103), 1, - anon_sym_func, - ACTIONS(109), 1, - anon_sym_init, - STATE(4563), 1, - sym_simple_identifier, - STATE(5149), 1, - sym__constructor_function_decl, - STATE(5154), 1, - sym__non_constructor_function_decl, - STATE(6373), 1, - sym__modifierless_function_declaration_no_body, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [157976] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__dot_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [157996] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158016] = 9, - ACTIONS(7661), 1, - anon_sym_AT, - ACTIONS(7938), 1, - anon_sym_RPAREN, - STATE(4604), 1, - sym_attribute, - STATE(4608), 1, - sym_simple_identifier, - STATE(5138), 1, - sym_parameter, - STATE(5536), 1, - sym__function_value_parameter, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [158050] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [158070] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4519), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158090] = 5, - ACTIONS(7115), 1, - sym__immediate_quest, - STATE(3890), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7940), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - ACTIONS(2626), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - [158116] = 5, - ACTIONS(5937), 1, - sym__as_custom, - ACTIONS(7942), 1, - anon_sym_QMARK, - STATE(4298), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [158142] = 4, - ACTIONS(7945), 1, - anon_sym_QMARK, - STATE(4346), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4447), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [158166] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7947), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158204] = 5, - ACTIONS(4504), 1, - sym__as_custom, - ACTIONS(7949), 1, - anon_sym_QMARK, - STATE(4343), 1, - sym__quest, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158230] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7951), 1, - anon_sym_DQUOTE, - STATE(4219), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158268] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7953), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158306] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(2729), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [158328] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7955), 1, - anon_sym_DQUOTE, - STATE(4259), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158366] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7957), 1, - anon_sym_DQUOTE, - STATE(4282), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158404] = 6, - ACTIONS(7663), 1, - anon_sym_COLON, - ACTIONS(7959), 1, - sym__as_custom, - STATE(3322), 1, - sym__as, - STATE(4593), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5928), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [158432] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7961), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158470] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7963), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158508] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7965), 11, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [158528] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [158548] = 5, - ACTIONS(4447), 1, - sym__as_custom, - ACTIONS(7967), 1, - anon_sym_QMARK, - STATE(4388), 1, - sym__quest, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158574] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 12, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158594] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4572), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158614] = 9, - ACTIONS(1043), 1, - anon_sym_RPAREN, - ACTIONS(7570), 1, - anon_sym_self, - STATE(4358), 1, - sym_simple_identifier, - STATE(5677), 1, - sym_lambda_parameter, - STATE(6140), 1, - sym_self_expression, - STATE(6277), 1, - sym_lambda_function_type_parameters, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [158648] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [158668] = 4, - ACTIONS(7969), 1, - sym__immediate_quest, - STATE(4267), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2799), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [158692] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7972), 1, - anon_sym_DQUOTE, - STATE(4269), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158730] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7974), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158768] = 8, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4717), 1, - sym_type_parameter_modifiers, - STATE(4920), 1, - sym_type_parameter, - STATE(5137), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4441), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [158800] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7976), 1, - anon_sym_DQUOTE, - STATE(4250), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158838] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4582), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158858] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7978), 1, - anon_sym_DQUOTE, - STATE(4283), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158896] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7980), 1, - anon_sym_DQUOTE, - STATE(4217), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [158934] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 11, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158954] = 8, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7984), 1, - sym__arrow_operator_custom, - STATE(3095), 1, - sym__arrow_operator, - STATE(4405), 1, - sym_throws, - STATE(5208), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7982), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [158986] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2731), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(2729), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [159008] = 10, - ACTIONS(7115), 1, - sym__immediate_quest, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - STATE(3409), 1, - sym__arrow_operator, - STATE(3890), 1, - aux_sym_optional_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(2626), 2, - anon_sym_DOT, - anon_sym_AMP, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159044] = 8, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(7986), 1, - sym__arrow_operator_custom, - STATE(3090), 1, - sym__arrow_operator, - STATE(4474), 1, - sym_throws, - STATE(5214), 1, - sym_type_constraints, - ACTIONS(7469), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7982), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [159076] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7988), 1, - anon_sym_DQUOTE, - STATE(4253), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [159114] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 11, - sym__arrow_operator_custom, - sym__eq_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym_else, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - [159134] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7990), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [159172] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7992), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [159210] = 11, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(7891), 1, - aux_sym_line_str_text_token1, - ACTIONS(7893), 1, - anon_sym_BSLASH, - ACTIONS(7895), 1, - anon_sym_BSLASH_LPAREN, - ACTIONS(7897), 1, - sym__escaped_identifier, - ACTIONS(7994), 1, - anon_sym_DQUOTE, - STATE(4231), 1, - aux_sym_line_string_literal_repeat1, - STATE(4923), 1, - sym__interpolation, - STATE(4933), 1, - sym__uni_character_literal, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - STATE(4930), 3, - sym__line_string_content, - sym_line_str_text, - sym_str_escaped_char, - [159248] = 5, - ACTIONS(5960), 1, - sym__as_custom, - ACTIONS(7996), 1, - anon_sym_QMARK, - STATE(4304), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [159274] = 4, - ACTIONS(7999), 1, - sym__immediate_quest, - STATE(4267), 1, - aux_sym_optional_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2736), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [159298] = 4, - ACTIONS(8001), 1, - anon_sym_AMP, - STATE(4287), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2581), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_RBRACE, - [159321] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4523), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [159340] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3521), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(3523), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [159361] = 4, - ACTIONS(8004), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3493), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(3495), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LBRACK, - anon_sym_AT, - [159384] = 6, - ACTIONS(8007), 1, - sym__dot_custom, - STATE(4299), 1, - aux_sym_user_type_repeat1, - STATE(4551), 1, - sym__dot, - ACTIONS(2671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2669), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [159411] = 8, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4604), 1, - sym_attribute, - STATE(4608), 1, - sym_simple_identifier, - STATE(5138), 1, - sym_parameter, - STATE(6040), 1, - sym__function_value_parameter, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159442] = 8, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(7881), 1, - sym_where_keyword, - ACTIONS(8009), 1, - sym__eq_custom, - STATE(488), 1, - sym__equal_sign, - STATE(4458), 1, - sym_type_constraints, - STATE(5222), 1, - sym_computed_property, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [159473] = 6, - ACTIONS(8007), 1, - sym__dot_custom, - STATE(4291), 1, - aux_sym_user_type_repeat1, - STATE(4551), 1, - sym__dot, - ACTIONS(2682), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2680), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [159500] = 7, - ACTIONS(8011), 1, - anon_sym_RBRACE, - STATE(6483), 1, - sym_precedence_group_attributes, - STATE(6486), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4384), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159529] = 5, - ACTIONS(2830), 1, - sym__dot_custom, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4349), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [159554] = 7, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(5018), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159583] = 3, - ACTIONS(5971), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [159604] = 6, - ACTIONS(8013), 1, - sym__dot_custom, - STATE(4299), 1, - aux_sym_user_type_repeat1, - STATE(4551), 1, - sym__dot, - ACTIONS(2731), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [159631] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4582), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [159650] = 7, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(5017), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159679] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2869), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [159698] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [159717] = 3, - ACTIONS(5974), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [159738] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [159757] = 7, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(4998), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159786] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3489), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(3491), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [159807] = 3, - STATE(4287), 1, - aux_sym_protocol_composition_type_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2787), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [159828] = 7, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(4947), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159857] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4538), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [159876] = 10, - ACTIONS(7196), 1, - anon_sym_DOT, - ACTIONS(7198), 1, - anon_sym_AMP, - ACTIONS(7213), 1, - sym__arrow_operator_custom, - ACTIONS(7215), 1, - sym__async_keyword_custom, - STATE(3409), 1, - sym__arrow_operator, - STATE(3927), 1, - aux_sym_protocol_composition_type_repeat1, - STATE(4876), 1, - sym__async_keyword, - STATE(6018), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159911] = 7, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(5015), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [159940] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3521), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(3523), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [159961] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2877), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [159980] = 6, - STATE(4315), 1, - aux_sym_value_argument_repeat1, - STATE(6344), 1, - sym_simple_identifier, - ACTIONS(8016), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8019), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8022), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160007] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2901), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - sym__immediate_quest, - anon_sym_AMP, - anon_sym_RBRACE, - [160026] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160045] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8024), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(8026), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [160066] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5967), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [160085] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4519), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160104] = 5, - ACTIONS(8028), 1, - anon_sym_LPAREN, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(4621), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8032), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [160129] = 5, - ACTIONS(8034), 1, - anon_sym_LT, - STATE(4414), 1, - sym_type_arguments, - ACTIONS(2832), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2830), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [160154] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8036), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160173] = 6, - STATE(4315), 1, - aux_sym_value_argument_repeat1, - STATE(6344), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8038), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160200] = 7, - ACTIONS(8040), 1, - anon_sym_RBRACE, - STATE(6368), 1, - sym_precedence_group_attributes, - STATE(6486), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4384), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160229] = 4, - ACTIONS(8042), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3493), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(3495), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LBRACK, - anon_sym_AT, - [160252] = 6, - STATE(4315), 1, - aux_sym_value_argument_repeat1, - STATE(6344), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(8045), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160279] = 7, - ACTIONS(8047), 1, - anon_sym_RBRACE, - STATE(6278), 1, - sym_precedence_group_attributes, - STATE(6486), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4384), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160308] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3489), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_some, - anon_sym_any, - ACTIONS(3491), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AT, - [160329] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5963), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_RBRACE, - [160348] = 3, - ACTIONS(4642), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160369] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8049), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160388] = 3, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160409] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160428] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4560), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160447] = 7, - ACTIONS(7661), 1, - anon_sym_AT, - STATE(4766), 1, - sym_simple_identifier, - STATE(4864), 1, - sym_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160476] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4572), 11, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160495] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8051), 10, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160514] = 5, - ACTIONS(8030), 1, - anon_sym_LBRACE, - ACTIONS(8053), 1, - anon_sym_LPAREN, - STATE(4633), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8055), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [160539] = 4, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(4631), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8057), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [160561] = 4, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(4517), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8059), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [160583] = 4, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(4538), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8061), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [160605] = 3, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [160625] = 9, - ACTIONS(8063), 1, - anon_sym_LPAREN, - ACTIONS(8067), 1, - sym__dot_custom, - STATE(1804), 1, - sym_lambda_literal, - STATE(2411), 1, - sym__constructor_value_arguments, - STATE(2590), 1, - sym_constructor_suffix, - STATE(2622), 1, - sym__fn_call_lambda_arguments, - STATE(4823), 1, - sym__dot, - ACTIONS(8065), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160657] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4648), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [160675] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4642), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [160693] = 7, - ACTIONS(7327), 1, - anon_sym_get, - ACTIONS(7329), 1, - anon_sym_set, - ACTIONS(8070), 1, - anon_sym_RBRACE, - STATE(5912), 1, - sym_mutation_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4361), 3, - sym_getter_specifier, - sym_setter_specifier, - aux_sym_protocol_property_requirements_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160721] = 7, - ACTIONS(7570), 1, - anon_sym_self, - STATE(4358), 1, - sym_simple_identifier, - STATE(6140), 1, - sym_self_expression, - STATE(6236), 1, - sym_lambda_parameter, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160749] = 7, - ACTIONS(8072), 1, - anon_sym_STAR, - STATE(1848), 1, - sym_simple_identifier, - STATE(5714), 1, - sym__availability_argument, - STATE(6408), 1, - sym_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160777] = 6, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(8074), 1, - sym__eq_custom, - STATE(531), 1, - sym__equal_sign, - STATE(5007), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [160803] = 5, - ACTIONS(2830), 1, - sym__dot_custom, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4349), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [160827] = 3, - ACTIONS(2781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 7, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_AT, - [160847] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5985), 9, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [160865] = 7, - ACTIONS(7669), 1, - sym_where_keyword, - ACTIONS(8076), 1, - anon_sym_COLON, - ACTIONS(8078), 1, - sym__eq_custom, - STATE(3452), 1, - sym__equal_sign, - STATE(4653), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4727), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [160893] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8080), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [160911] = 6, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(8082), 1, - sym__eq_custom, - STATE(439), 1, - sym__equal_sign, - STATE(4900), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4754), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [160937] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2889), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [160955] = 6, - ACTIONS(8084), 1, - anon_sym_COLON, - STATE(6405), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [160981] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 9, - sym__dot_custom, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - [160999] = 7, - ACTIONS(8086), 1, - anon_sym_STAR, - STATE(1848), 1, - sym_simple_identifier, - STATE(5935), 1, - sym__availability_argument, - STATE(6408), 1, - sym_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161027] = 7, - ACTIONS(8088), 1, - anon_sym_RBRACE, - ACTIONS(8090), 1, - anon_sym_get, - ACTIONS(8093), 1, - anon_sym_set, - STATE(5912), 1, - sym_mutation_modifier, - ACTIONS(8096), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4361), 3, - sym_getter_specifier, - sym_setter_specifier, - aux_sym_protocol_property_requirements_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161055] = 3, - ACTIONS(8099), 1, - anon_sym_BANG, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [161075] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2893), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [161093] = 7, - ACTIONS(7669), 1, - sym_where_keyword, - ACTIONS(8101), 1, - anon_sym_COLON, - ACTIONS(8103), 1, - sym__eq_custom, - STATE(3407), 1, - sym__equal_sign, - STATE(4672), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4674), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [161121] = 7, - ACTIONS(7245), 1, - anon_sym_self, - STATE(4060), 1, - sym_simple_identifier, - STATE(4784), 1, - sym_self_expression, - STATE(4810), 1, - sym_lambda_parameter, - ACTIONS(7235), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7237), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161149] = 4, - ACTIONS(7028), 1, - anon_sym_LPAREN, - STATE(4504), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [161171] = 6, - ACTIONS(3587), 1, - sym_where_keyword, - ACTIONS(8105), 1, - sym__eq_custom, - STATE(538), 1, - sym__equal_sign, - STATE(4960), 1, - sym_where_clause, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5999), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [161197] = 4, - ACTIONS(7663), 1, - anon_sym_COLON, - STATE(4599), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6005), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [161219] = 6, - ACTIONS(8113), 1, - anon_sym_RBRACE, - STATE(6486), 1, - sym_simple_identifier, - ACTIONS(8107), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4369), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(8110), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161245] = 4, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(4616), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8115), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [161267] = 5, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8117), 2, - anon_sym_true, - anon_sym_false, - STATE(4688), 2, - sym_simple_identifier, - sym_boolean_literal, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161291] = 7, - ACTIONS(7327), 1, - anon_sym_get, - ACTIONS(7329), 1, - anon_sym_set, - ACTIONS(8119), 1, - anon_sym_RBRACE, - STATE(5912), 1, - sym_mutation_modifier, - ACTIONS(3252), 2, - anon_sym_mutating, - anon_sym_nonmutating, - STATE(4347), 3, - sym_getter_specifier, - sym_setter_specifier, - aux_sym_protocol_property_requirements_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161319] = 7, - ACTIONS(8121), 1, - anon_sym_STAR, - STATE(1848), 1, - sym_simple_identifier, - STATE(5769), 1, - sym__availability_argument, - STATE(6408), 1, - sym_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161347] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7940), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - ACTIONS(2626), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - [161367] = 9, - ACTIONS(7113), 1, - anon_sym_LPAREN, - ACTIONS(8123), 1, - sym__dot_custom, - STATE(749), 1, - sym_constructor_suffix, - STATE(750), 1, - sym__fn_call_lambda_arguments, - STATE(1682), 1, - sym_lambda_literal, - STATE(2232), 1, - sym__constructor_value_arguments, - STATE(4669), 1, - sym__dot, - ACTIONS(7117), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161399] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2881), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [161417] = 4, - ACTIONS(7028), 1, - anon_sym_LPAREN, - STATE(4496), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [161439] = 6, - STATE(4378), 1, - aux_sym__attribute_argument_repeat1, - STATE(6364), 1, - sym_simple_identifier, - ACTIONS(1463), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(8126), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8129), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161465] = 7, - ACTIONS(8132), 1, - anon_sym_STAR, - STATE(1848), 1, - sym_simple_identifier, - STATE(5749), 1, - sym__availability_argument, - STATE(6408), 1, - sym_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161493] = 5, - ACTIONS(2830), 1, - sym__dot_custom, - ACTIONS(4351), 1, - anon_sym_LT, - STATE(1997), 1, - sym_type_arguments, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4349), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [161517] = 6, - STATE(4378), 1, - aux_sym__attribute_argument_repeat1, - STATE(6364), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(4037), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161543] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8134), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [161561] = 4, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(4623), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8136), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [161583] = 6, - ACTIONS(8138), 1, - anon_sym_RBRACE, - STATE(6486), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4369), 2, - sym_precedence_group_attribute, - aux_sym_precedence_group_attributes_repeat1, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161609] = 7, - ACTIONS(8140), 1, - anon_sym_STAR, - STATE(1848), 1, - sym_simple_identifier, - STATE(5554), 1, - sym__availability_argument, - STATE(6408), 1, - sym_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161637] = 4, - ACTIONS(7028), 1, - anon_sym_LPAREN, - STATE(4519), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4398), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [161659] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2851), 10, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_RBRACE, - [161677] = 3, - ACTIONS(4642), 1, - sym__as_custom, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 9, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [161697] = 4, - ACTIONS(8030), 1, - anon_sym_LBRACE, - STATE(4542), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8142), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [161719] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8146), 1, - sym__arrow_operator_custom, - STATE(3041), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5303), 1, - sym_computed_property, - STATE(5934), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161750] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8148), 1, - sym__arrow_operator_custom, - STATE(3049), 1, - sym__arrow_operator, - STATE(5246), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7907), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [161775] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8150), 1, - sym__arrow_operator_custom, - STATE(3019), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5370), 1, - sym_computed_property, - STATE(5941), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161806] = 3, - ACTIONS(8152), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(1027), 6, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [161825] = 4, - ACTIONS(6565), 1, - anon_sym_LPAREN, - STATE(4703), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4398), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [161846] = 4, - ACTIONS(8154), 1, - anon_sym_AT, - STATE(4395), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3464), 5, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_mutating, - anon_sym_nonmutating, - [161867] = 5, - ACTIONS(5937), 1, - sym__as_custom, - ACTIONS(8157), 1, - anon_sym_QMARK, - STATE(4493), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [161890] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8162), 1, - sym__arrow_operator_custom, - STATE(3106), 1, - sym__arrow_operator, - STATE(5195), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8160), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [161915] = 5, - ACTIONS(5960), 1, - sym__as_custom, - ACTIONS(8164), 1, - anon_sym_QMARK, - STATE(4494), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [161938] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8167), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [161955] = 8, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7907), 1, - anon_sym_LBRACE, - ACTIONS(8169), 1, - sym__arrow_operator_custom, - STATE(3029), 1, - sym__arrow_operator, - STATE(4949), 1, - sym_throws, - STATE(6442), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [161984] = 8, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7907), 1, - anon_sym_LBRACE, - ACTIONS(8171), 1, - sym__arrow_operator_custom, - STATE(3035), 1, - sym__arrow_operator, - STATE(4849), 1, - sym_throws, - STATE(6417), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162013] = 5, - ACTIONS(8173), 1, - sym_integer_literal, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4426), 2, - sym_simple_identifier, - aux_sym__attribute_argument_repeat2, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162036] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8175), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(8177), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - [162055] = 4, - ACTIONS(6565), 1, - anon_sym_LPAREN, - STATE(4770), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [162076] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8181), 1, - sym__arrow_operator_custom, - STATE(3131), 1, - sym__arrow_operator, - STATE(5200), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8179), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162101] = 6, - ACTIONS(7669), 1, - sym_where_keyword, - ACTIONS(8183), 1, - sym__eq_custom, - STATE(3271), 1, - sym__equal_sign, - STATE(4820), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4773), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [162126] = 6, - STATE(3286), 1, - sym__simple_user_type, - STATE(3398), 1, - sym_simple_identifier, - STATE(3504), 1, - sym_user_type, - ACTIONS(8185), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8187), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162151] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8189), 1, - anon_sym_LPAREN, - STATE(1770), 1, - sym_lambda_literal, - STATE(2373), 1, - sym__constructor_value_arguments, - STATE(2684), 1, - sym__fn_call_lambda_arguments, - STATE(2686), 1, - sym_constructor_suffix, - ACTIONS(8191), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162180] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4790), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162197] = 4, - ACTIONS(6520), 1, - anon_sym_LPAREN, - STATE(4800), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [162218] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8063), 1, - anon_sym_LPAREN, - STATE(1804), 1, - sym_lambda_literal, - STATE(2411), 1, - sym__constructor_value_arguments, - STATE(2590), 1, - sym_constructor_suffix, - STATE(2622), 1, - sym__fn_call_lambda_arguments, - ACTIONS(8065), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162247] = 6, - STATE(946), 1, - sym__simple_user_type, - STATE(959), 1, - sym_simple_identifier, - STATE(988), 1, - sym_user_type, - ACTIONS(8193), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8195), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162272] = 4, - ACTIONS(6565), 1, - anon_sym_LPAREN, - STATE(4826), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [162293] = 3, - ACTIONS(2857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2855), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [162312] = 4, - ACTIONS(6520), 1, - anon_sym_LPAREN, - STATE(4650), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [162333] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8197), 1, - sym__arrow_operator_custom, - STATE(3033), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5287), 1, - sym_computed_property, - STATE(5883), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162364] = 6, - STATE(4074), 1, - sym_simple_identifier, - STATE(4075), 1, - sym__simple_user_type, - STATE(4326), 1, - sym_user_type, - ACTIONS(8199), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8201), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162389] = 8, - ACTIONS(7113), 1, - anon_sym_LPAREN, - ACTIONS(7119), 1, - sym__dot_custom, - STATE(749), 1, - sym_constructor_suffix, - STATE(750), 1, - sym__fn_call_lambda_arguments, - STATE(1682), 1, - sym_lambda_literal, - STATE(2232), 1, - sym__constructor_value_arguments, - ACTIONS(7117), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162418] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8203), 1, - sym__arrow_operator_custom, - STATE(3042), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5306), 1, - sym_computed_property, - STATE(5897), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162449] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8205), 1, - sym__arrow_operator_custom, - STATE(3043), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5316), 1, - sym_computed_property, - STATE(5995), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162480] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6030), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACE, - [162497] = 3, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8207), 4, - aux_sym_simple_identifier_token1, - anon_sym_actor, - anon_sym_in, - anon_sym_self, - ACTIONS(8209), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - [162516] = 5, - ACTIONS(8211), 1, - anon_sym_AT, - ACTIONS(3462), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(3464), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162539] = 8, - ACTIONS(8214), 1, - anon_sym_in, - ACTIONS(8216), 1, - sym__arrow_operator_custom, - ACTIONS(8218), 1, - sym__async_keyword_custom, - STATE(3115), 1, - sym__arrow_operator, - STATE(4694), 1, - sym__async_keyword, - STATE(5657), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162568] = 3, - ACTIONS(8220), 1, - anon_sym_BANG, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162587] = 5, - ACTIONS(8228), 1, - sym_integer_literal, - ACTIONS(8222), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4426), 2, - sym_simple_identifier, - aux_sym__attribute_argument_repeat2, - ACTIONS(8225), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162610] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8230), 1, - sym__arrow_operator_custom, - STATE(3110), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5805), 1, - sym_computed_property, - STATE(5975), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162641] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8232), 1, - sym__arrow_operator_custom, - STATE(3112), 1, - sym__arrow_operator, - STATE(5187), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8160), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162666] = 4, - ACTIONS(8234), 1, - anon_sym_QMARK, - STATE(4686), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4504), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [162687] = 4, - ACTIONS(8236), 1, - anon_sym_QMARK, - STATE(4685), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4447), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [162708] = 4, - ACTIONS(8238), 1, - anon_sym_QMARK, - STATE(4658), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5940), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [162729] = 7, - ACTIONS(7881), 1, - sym_where_keyword, - ACTIONS(8240), 1, - anon_sym_COLON, - ACTIONS(8242), 1, - sym__eq_custom, - STATE(3132), 1, - sym__equal_sign, - STATE(5014), 1, - sym_type_constraints, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4674), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [162756] = 6, - STATE(1853), 1, - sym_simple_identifier, - STATE(2039), 1, - sym__simple_user_type, - STATE(2398), 1, - sym_user_type, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162781] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8244), 1, - anon_sym_LPAREN, - STATE(1622), 1, - sym_lambda_literal, - STATE(2117), 1, - sym__constructor_value_arguments, - STATE(2363), 1, - sym_constructor_suffix, - STATE(2405), 1, - sym__fn_call_lambda_arguments, - ACTIONS(8246), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162810] = 8, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7982), 1, - anon_sym_LBRACE, - ACTIONS(8248), 1, - sym__arrow_operator_custom, - STATE(3077), 1, - sym__arrow_operator, - STATE(4987), 1, - sym_throws, - STATE(6404), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162839] = 8, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7982), 1, - anon_sym_LBRACE, - ACTIONS(8250), 1, - sym__arrow_operator_custom, - STATE(3093), 1, - sym__arrow_operator, - STATE(4982), 1, - sym_throws, - STATE(6423), 1, - sym_type_constraints, - ACTIONS(7830), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162868] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8252), 1, - anon_sym_LPAREN, - STATE(1735), 1, - sym_lambda_literal, - STATE(2320), 1, - sym__constructor_value_arguments, - STATE(2466), 1, - sym_constructor_suffix, - STATE(2468), 1, - sym__fn_call_lambda_arguments, - ACTIONS(8254), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162897] = 4, - ACTIONS(8256), 1, - anon_sym_LPAREN, - STATE(4438), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7936), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LBRACE, - [162918] = 6, - STATE(4294), 1, - sym__simple_user_type, - STATE(4322), 1, - sym_simple_identifier, - STATE(4634), 1, - sym_user_type, - ACTIONS(8259), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8261), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162943] = 5, - ACTIONS(4447), 1, - sym__as_custom, - ACTIONS(8263), 1, - anon_sym_QMARK, - STATE(4725), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [162966] = 5, - ACTIONS(7661), 1, - anon_sym_AT, - ACTIONS(8265), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - STATE(4423), 2, - sym_attribute, - aux_sym__lambda_type_declaration_repeat1, - ACTIONS(8267), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [162989] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8269), 1, - anon_sym_LPAREN, - STATE(1956), 1, - sym_lambda_literal, - STATE(2467), 1, - sym__constructor_value_arguments, - STATE(2752), 1, - sym__fn_call_lambda_arguments, - STATE(2754), 1, - sym_constructor_suffix, - ACTIONS(8271), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163018] = 6, - STATE(3005), 1, - sym_simple_identifier, - STATE(3008), 1, - sym__simple_user_type, - STATE(3475), 1, - sym_user_type, - ACTIONS(8273), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8275), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163043] = 5, - ACTIONS(4504), 1, - sym__as_custom, - ACTIONS(8277), 1, - anon_sym_QMARK, - STATE(4721), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [163066] = 4, - ACTIONS(8279), 1, - anon_sym_COMMA, - STATE(4487), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4839), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163087] = 4, - ACTIONS(8281), 1, - anon_sym_QMARK, - STATE(4720), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5940), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [163108] = 5, - ACTIONS(5960), 1, - sym__as_custom, - ACTIONS(8283), 1, - anon_sym_QMARK, - STATE(4627), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [163131] = 6, - ACTIONS(8286), 1, - anon_sym_COLON, - ACTIONS(8288), 1, - sym__as_custom, - STATE(3207), 1, - sym__as, - STATE(5183), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5928), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [163156] = 6, - STATE(4086), 1, - sym_simple_identifier, - STATE(4142), 1, - sym__simple_user_type, - STATE(4290), 1, - sym_user_type, - ACTIONS(8290), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8292), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163181] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8294), 1, - anon_sym_LPAREN, - STATE(879), 1, - sym_lambda_literal, - STATE(1011), 1, - sym__constructor_value_arguments, - STATE(1105), 1, - sym__fn_call_lambda_arguments, - STATE(1116), 1, - sym_constructor_suffix, - ACTIONS(8296), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163210] = 4, - ACTIONS(8298), 1, - anon_sym_QMARK, - STATE(4716), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4447), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [163231] = 4, - ACTIONS(8300), 1, - anon_sym_QMARK, - STATE(4715), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4504), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [163252] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8302), 1, - anon_sym_LPAREN, - STATE(868), 1, - sym_lambda_literal, - STATE(998), 1, - sym__constructor_value_arguments, - STATE(1040), 1, - sym_constructor_suffix, - STATE(1069), 1, - sym__fn_call_lambda_arguments, - ACTIONS(8304), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163281] = 5, - ACTIONS(5937), 1, - sym__as_custom, - ACTIONS(8306), 1, - anon_sym_QMARK, - STATE(4628), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [163304] = 9, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8309), 1, - sym__arrow_operator_custom, - STATE(2337), 1, - sym_computed_property, - STATE(3073), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(6156), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163335] = 4, - ACTIONS(6520), 1, - anon_sym_LPAREN, - STATE(4755), 1, - sym__tuple_pattern, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4398), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [163356] = 9, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8311), 1, - sym__arrow_operator_custom, - STATE(2269), 1, - sym_computed_property, - STATE(3128), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(6172), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163387] = 6, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(8313), 1, - sym__eq_custom, - STATE(468), 1, - sym__equal_sign, - STATE(5224), 1, - sym_computed_property, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4754), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [163412] = 9, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8315), 1, - sym__arrow_operator_custom, - STATE(2258), 1, - sym_computed_property, - STATE(3010), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(6173), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163443] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8317), 1, - sym__arrow_operator_custom, - STATE(3092), 1, - sym__arrow_operator, - STATE(5212), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7982), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163468] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 8, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163485] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8319), 8, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [163502] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8321), 1, - sym__arrow_operator_custom, - STATE(3086), 1, - sym__arrow_operator, - STATE(5219), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7982), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163527] = 6, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - sym__eq_custom, - STATE(486), 1, - sym__equal_sign, - STATE(5223), 1, - sym_computed_property, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4566), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [163552] = 3, - ACTIONS(2875), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2873), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [163571] = 3, - ACTIONS(2899), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2897), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [163590] = 7, - ACTIONS(7881), 1, - sym_where_keyword, - ACTIONS(8325), 1, - anon_sym_COLON, - ACTIONS(8327), 1, - sym__eq_custom, - STATE(3384), 1, - sym__equal_sign, - STATE(4964), 1, - sym_type_constraints, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4727), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [163617] = 3, - ACTIONS(2731), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2729), 6, - sym__dot_custom, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_LPAREN, - anon_sym_AT, - [163636] = 6, - STATE(1677), 1, - sym_simple_identifier, - STATE(1726), 1, - sym__simple_user_type, - STATE(2034), 1, - sym_user_type, - ACTIONS(8329), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8331), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163661] = 4, - ACTIONS(8279), 1, - anon_sym_COMMA, - STATE(4445), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4856), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163682] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 8, - sym__dot_custom, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_in, - [163699] = 9, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8333), 1, - sym__arrow_operator_custom, - STATE(2329), 1, - sym_computed_property, - STATE(3130), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(6208), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163730] = 6, - ACTIONS(4378), 1, - anon_sym_COLON, - ACTIONS(8335), 1, - sym__as_custom, - STATE(3391), 1, - sym__as, - STATE(5099), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5928), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [163755] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8337), 1, - sym__arrow_operator_custom, - STATE(3032), 1, - sym__arrow_operator, - STATE(5227), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8179), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163780] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 8, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - [163797] = 8, - ACTIONS(8339), 1, - anon_sym_in, - ACTIONS(8341), 1, - sym__arrow_operator_custom, - ACTIONS(8343), 1, - sym__async_keyword_custom, - STATE(3069), 1, - sym__arrow_operator, - STATE(4835), 1, - sym__async_keyword, - STATE(5744), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163826] = 6, - ACTIONS(7669), 1, - sym_where_keyword, - ACTIONS(8345), 1, - sym__eq_custom, - STATE(3320), 1, - sym__equal_sign, - STATE(4640), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4802), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [163851] = 3, - ACTIONS(8347), 1, - anon_sym_BANG, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163870] = 8, - ACTIONS(7119), 1, - sym__dot_custom, - ACTIONS(8349), 1, - anon_sym_LPAREN, - STATE(1578), 1, - sym_lambda_literal, - STATE(2032), 1, - sym__constructor_value_arguments, - STATE(2234), 1, - sym_constructor_suffix, - STATE(2243), 1, - sym__fn_call_lambda_arguments, - ACTIONS(8351), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163899] = 8, - ACTIONS(7113), 1, - anon_sym_LPAREN, - ACTIONS(7119), 1, - sym__dot_custom, - STATE(698), 1, - sym_lambda_literal, - STATE(749), 1, - sym_constructor_suffix, - STATE(750), 1, - sym__fn_call_lambda_arguments, - STATE(789), 1, - sym__constructor_value_arguments, - ACTIONS(8353), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163928] = 6, - ACTIONS(7471), 1, - sym_where_keyword, - ACTIONS(8355), 1, - sym__arrow_operator_custom, - STATE(3039), 1, - sym__arrow_operator, - STATE(5230), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7907), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163953] = 6, - STATE(2541), 1, - sym__simple_user_type, - STATE(2552), 1, - sym_simple_identifier, - STATE(2759), 1, - sym_user_type, - ACTIONS(8357), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8359), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [163978] = 8, - ACTIONS(8361), 1, - anon_sym_in, - ACTIONS(8363), 1, - sym__arrow_operator_custom, - ACTIONS(8365), 1, - sym__async_keyword_custom, - STATE(3026), 1, - sym__arrow_operator, - STATE(4783), 1, - sym__async_keyword, - STATE(5583), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164007] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8367), 1, - sym__arrow_operator_custom, - STATE(3081), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5456), 1, - sym_computed_property, - STATE(5972), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164038] = 9, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(8369), 1, - sym__arrow_operator_custom, - STATE(3085), 1, - sym__arrow_operator, - STATE(4861), 1, - aux_sym__function_value_parameters, - STATE(5490), 1, - sym_computed_property, - STATE(6026), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164069] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 8, - sym__dot_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_LBRACE, - [164086] = 4, - ACTIONS(8371), 1, - anon_sym_COMMA, - STATE(4487), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164107] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4582), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [164123] = 5, - STATE(3672), 1, - sym_simple_identifier, - STATE(3706), 1, - sym__simple_user_type, - ACTIONS(6034), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6036), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164145] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4914), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164161] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4910), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164177] = 5, - STATE(1677), 1, - sym_simple_identifier, - STATE(1917), 1, - sym__simple_user_type, - ACTIONS(8329), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8331), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164199] = 3, - ACTIONS(5971), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 6, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [164217] = 3, - ACTIONS(5974), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 6, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [164235] = 5, - STATE(3861), 1, - sym_simple_identifier, - STATE(3966), 1, - sym__simple_user_type, - ACTIONS(6709), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6711), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164257] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4523), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [164273] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164289] = 5, - STATE(1378), 1, - sym_simple_identifier, - STATE(1419), 1, - sym__simple_user_type, - ACTIONS(6274), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6276), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164311] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8051), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [164327] = 5, - STATE(3676), 1, - sym_simple_identifier, - STATE(3716), 1, - sym__simple_user_type, - ACTIONS(6907), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6909), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164349] = 5, - STATE(1869), 1, - sym_simple_identifier, - STATE(2067), 1, - sym__simple_user_type, - ACTIONS(6757), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6759), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164371] = 5, - STATE(3689), 1, - sym_simple_identifier, - STATE(3815), 1, - sym__simple_user_type, - ACTIONS(6683), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6685), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164393] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8374), 1, - anon_sym_COLON, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2907), 1, - sym_enum_class_body, - STATE(5003), 1, - sym_type_parameters, - STATE(6055), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164421] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [164437] = 5, - STATE(1961), 1, - sym_simple_identifier, - STATE(2087), 1, - sym__simple_user_type, - ACTIONS(6857), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6859), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164459] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4572), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [164475] = 6, - ACTIONS(7881), 1, - sym_where_keyword, - ACTIONS(8378), 1, - sym__eq_custom, - STATE(3406), 1, - sym__equal_sign, - STATE(4963), 1, - sym_type_constraints, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4773), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [164499] = 4, - ACTIONS(8380), 1, - sym_catch_keyword, - STATE(4508), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6094), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [164519] = 4, - ACTIONS(8383), 1, - anon_sym_COMMA, - STATE(4581), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8385), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_in, - [164539] = 5, - STATE(2552), 1, - sym_simple_identifier, - STATE(2706), 1, - sym__simple_user_type, - ACTIONS(8357), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8359), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164561] = 5, - ACTIONS(8387), 1, - sym_integer_literal, - STATE(1897), 1, - sym_simple_identifier, - ACTIONS(1363), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(1365), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164583] = 5, - STATE(3741), 1, - sym_simple_identifier, - STATE(3865), 1, - sym__simple_user_type, - ACTIONS(6573), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6575), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164605] = 3, - STATE(524), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8389), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [164623] = 5, - STATE(4109), 1, - sym_simple_identifier, - STATE(4210), 1, - sym__simple_user_type, - ACTIONS(6697), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6699), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164645] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8391), 1, - anon_sym_COLON, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(4855), 1, - sym_type_parameters, - STATE(5509), 1, - sym_enum_class_body, - STATE(6214), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164673] = 5, - STATE(4074), 1, - sym_simple_identifier, - STATE(4254), 1, - sym__simple_user_type, - ACTIONS(8199), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8201), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164695] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8142), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [164711] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8376), 1, - anon_sym_LBRACE, - ACTIONS(8395), 1, - anon_sym_COLON, - STATE(2969), 1, - sym_enum_class_body, - STATE(4973), 1, - sym_type_parameters, - STATE(5977), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164739] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [164755] = 5, - STATE(3666), 1, - sym_simple_identifier, - STATE(3682), 1, - sym__simple_user_type, - ACTIONS(6869), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6871), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164777] = 5, - STATE(3812), 1, - sym_simple_identifier, - STATE(3935), 1, - sym__simple_user_type, - ACTIONS(6671), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6673), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164799] = 5, - STATE(3740), 1, - sym_simple_identifier, - STATE(3827), 1, - sym__simple_user_type, - ACTIONS(6647), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6649), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164821] = 5, - STATE(3904), 1, - sym_simple_identifier, - STATE(4100), 1, - sym__simple_user_type, - ACTIONS(6621), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6623), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164843] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4519), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [164859] = 5, - STATE(1501), 1, - sym_simple_identifier, - STATE(1544), 1, - sym__simple_user_type, - ACTIONS(6745), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6747), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164881] = 4, - ACTIONS(8397), 1, - sym_catch_keyword, - STATE(4610), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6103), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [164901] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8399), 1, - anon_sym_COLON, - STATE(2969), 1, - sym_class_body, - STATE(4948), 1, - sym_type_parameters, - STATE(5917), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164929] = 3, - STATE(368), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8401), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [164947] = 5, - ACTIONS(8403), 1, - sym_integer_literal, - STATE(1950), 1, - sym_simple_identifier, - ACTIONS(755), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(757), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164969] = 5, - STATE(3833), 1, - sym_simple_identifier, - STATE(4014), 1, - sym__simple_user_type, - ACTIONS(6585), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6587), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [164991] = 5, - STATE(4830), 1, - sym_simple_identifier, - STATE(5481), 1, - sym_identifier, - ACTIONS(7416), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7418), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165013] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8405), 1, - anon_sym_COLON, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(4936), 1, - sym_type_parameters, - STATE(5480), 1, - sym_protocol_body, - STATE(6246), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165041] = 5, - STATE(3005), 1, - sym_simple_identifier, - STATE(3393), 1, - sym__simple_user_type, - ACTIONS(8273), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8275), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165063] = 5, - STATE(950), 1, - sym_simple_identifier, - STATE(974), 1, - sym__simple_user_type, - ACTIONS(6895), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6897), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165085] = 5, - STATE(1838), 1, - sym_simple_identifier, - STATE(2040), 1, - sym__simple_user_type, - ACTIONS(6845), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6847), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165107] = 5, - STATE(3800), 1, - sym_simple_identifier, - STATE(3902), 1, - sym__simple_user_type, - ACTIONS(6597), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6599), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165129] = 5, - STATE(1798), 1, - sym_simple_identifier, - STATE(1910), 1, - sym__simple_user_type, - ACTIONS(6805), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6807), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165151] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8136), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [165167] = 5, - STATE(2650), 1, - sym_simple_identifier, - STATE(2762), 1, - sym__simple_user_type, - ACTIONS(6733), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6735), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165189] = 5, - STATE(2071), 1, - sym_simple_identifier, - STATE(2177), 1, - sym__simple_user_type, - ACTIONS(6609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165211] = 5, - ACTIONS(8409), 1, - sym_integer_literal, - STATE(902), 1, - sym_simple_identifier, - ACTIONS(1187), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(1189), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165233] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8411), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [165249] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5967), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [165265] = 5, - STATE(1658), 1, - sym_simple_identifier, - STATE(1739), 1, - sym__simple_user_type, - ACTIONS(6883), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6885), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165287] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [165303] = 3, - STATE(474), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8413), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [165321] = 5, - STATE(2114), 1, - sym_simple_identifier, - STATE(2438), 1, - sym__simple_user_type, - ACTIONS(6635), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6637), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165343] = 5, - STATE(888), 1, - sym_simple_identifier, - STATE(931), 1, - sym__simple_user_type, - ACTIONS(6793), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6795), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165365] = 3, - STATE(408), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8415), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [165383] = 5, - STATE(2089), 1, - sym_simple_identifier, - STATE(2156), 1, - sym__simple_user_type, - ACTIONS(6936), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6938), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165405] = 5, - STATE(4322), 1, - sym_simple_identifier, - STATE(4468), 1, - sym__simple_user_type, - ACTIONS(8259), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8261), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165427] = 5, - STATE(3768), 1, - sym_simple_identifier, - STATE(3950), 1, - sym__simple_user_type, - ACTIONS(6721), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6723), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165449] = 5, - STATE(1396), 1, - sym_simple_identifier, - STATE(1422), 1, - sym__simple_user_type, - ACTIONS(6659), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6661), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165471] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4560), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [165487] = 4, - ACTIONS(8417), 1, - anon_sym_COMMA, - STATE(4555), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8420), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_in, - [165507] = 6, - ACTIONS(7881), 1, - sym_where_keyword, - ACTIONS(8422), 1, - sym__eq_custom, - STATE(3186), 1, - sym__equal_sign, - STATE(4908), 1, - sym_type_constraints, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4802), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [165531] = 3, - STATE(398), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8424), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [165549] = 3, - ACTIONS(8426), 1, - anon_sym_BANG, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [165567] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_RBRACE, - [165583] = 5, - STATE(1374), 1, - sym_simple_identifier, - STATE(1391), 1, - sym__simple_user_type, - ACTIONS(6769), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6771), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165605] = 5, - ACTIONS(5960), 1, - sym__as_custom, - ACTIONS(8428), 1, - anon_sym_QMARK, - STATE(4736), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [165627] = 5, - ACTIONS(5937), 1, - sym__as_custom, - ACTIONS(8431), 1, - anon_sym_QMARK, - STATE(4775), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - [165649] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7319), 1, - anon_sym_LBRACE, - ACTIONS(8434), 1, - anon_sym_COLON, - STATE(4979), 1, - sym_type_parameters, - STATE(5656), 1, - sym_class_body, - STATE(6022), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165677] = 5, - ACTIONS(5960), 1, - sym__as_custom, - ACTIONS(8436), 1, - anon_sym_QMARK, - STATE(4777), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4498), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - [165699] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4538), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [165715] = 5, - STATE(4086), 1, - sym_simple_identifier, - STATE(4277), 1, - sym__simple_user_type, - ACTIONS(8290), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8292), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165737] = 5, - STATE(959), 1, - sym_simple_identifier, - STATE(985), 1, - sym__simple_user_type, - ACTIONS(8193), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8195), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165759] = 3, - ACTIONS(8439), 1, - anon_sym_BANG, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [165777] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8049), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [165793] = 5, - STATE(3398), 1, - sym_simple_identifier, - STATE(3482), 1, - sym__simple_user_type, - ACTIONS(8185), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8187), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165815] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 7, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LBRACE, - [165831] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8441), 1, - anon_sym_COLON, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2233), 1, - sym_protocol_body, - STATE(4867), 1, - sym_type_parameters, - STATE(6041), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165859] = 5, - STATE(1848), 1, - sym_simple_identifier, - STATE(2205), 1, - sym_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165881] = 3, - STATE(523), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8445), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [165899] = 5, - STATE(675), 1, - sym_simple_identifier, - STATE(690), 1, - sym__simple_user_type, - ACTIONS(6919), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6921), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165921] = 3, - STATE(479), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8447), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [165939] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8449), 1, - anon_sym_COLON, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2284), 1, - sym_enum_class_body, - STATE(4858), 1, - sym_type_parameters, - STATE(5939), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165967] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8453), 1, - anon_sym_COLON, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5008), 1, - sym_type_parameters, - STATE(5719), 1, - sym_protocol_body, - STATE(6064), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [165995] = 5, - STATE(4773), 1, - sym_simple_identifier, - STATE(5621), 1, - sym_identifier, - ACTIONS(7438), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166017] = 5, - STATE(4773), 1, - sym_simple_identifier, - STATE(5727), 1, - sym_identifier, - ACTIONS(7438), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166039] = 4, - ACTIONS(8383), 1, - anon_sym_COMMA, - STATE(4555), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8457), 5, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_in, - [166059] = 4, - ACTIONS(8459), 1, - anon_sym_COMMA, - STATE(4582), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166079] = 5, - ACTIONS(8462), 1, - sym_integer_literal, - STATE(957), 1, - sym_simple_identifier, - ACTIONS(205), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(207), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166101] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8464), 1, - anon_sym_COLON, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5010), 1, - sym_type_parameters, - STATE(5198), 1, - sym_enum_class_body, - STATE(6179), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166129] = 5, - ACTIONS(8468), 1, - sym_integer_literal, - STATE(659), 1, - sym_simple_identifier, - ACTIONS(731), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(733), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166151] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4900), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166167] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4896), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166183] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8455), 1, - anon_sym_LBRACE, - ACTIONS(8470), 1, - anon_sym_COLON, - STATE(5002), 1, - sym_type_parameters, - STATE(5630), 1, - sym_protocol_body, - STATE(6177), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166211] = 4, - ACTIONS(8472), 1, - anon_sym_COMMA, - STATE(4582), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4839), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166231] = 3, - STATE(366), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8474), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [166249] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5967), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [166265] = 5, - STATE(3862), 1, - sym_simple_identifier, - STATE(3946), 1, - sym__simple_user_type, - ACTIONS(6549), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6551), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166287] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6107), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [166303] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8443), 1, - anon_sym_LBRACE, - ACTIONS(8476), 1, - anon_sym_COLON, - STATE(2278), 1, - sym_protocol_body, - STATE(4905), 1, - sym_type_parameters, - STATE(6103), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166331] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8451), 1, - anon_sym_LBRACE, - ACTIONS(8478), 1, - anon_sym_COLON, - STATE(2316), 1, - sym_enum_class_body, - STATE(4906), 1, - sym_type_parameters, - STATE(6104), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166359] = 5, - STATE(1848), 1, - sym_simple_identifier, - STATE(2282), 1, - sym_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166381] = 4, - ACTIONS(8472), 1, - anon_sym_COMMA, - STATE(4589), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4856), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166401] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5963), 7, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [166417] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6080), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [166433] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7275), 1, - anon_sym_LBRACE, - ACTIONS(8480), 1, - anon_sym_COLON, - STATE(2316), 1, - sym_class_body, - STATE(4927), 1, - sym_type_parameters, - STATE(6119), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166461] = 5, - ACTIONS(5937), 1, - sym__as_custom, - ACTIONS(8482), 1, - anon_sym_QMARK, - STATE(4832), 1, - sym__quest, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4441), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [166483] = 3, - STATE(545), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8485), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [166501] = 3, - STATE(425), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8487), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [166519] = 5, - STATE(4608), 1, - sym_simple_identifier, - STATE(5042), 1, - sym_parameter, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166541] = 5, - ACTIONS(8489), 1, - sym_integer_literal, - STATE(1670), 1, - sym_simple_identifier, - ACTIONS(1061), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(1063), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166563] = 3, - ACTIONS(8491), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(1463), 5, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RPAREN, - anon_sym_COMMA, - [166581] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5011), 7, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166597] = 5, - ACTIONS(8493), 1, - anon_sym_COLON, - STATE(6443), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166619] = 5, - STATE(4830), 1, - sym_simple_identifier, - STATE(5631), 1, - sym_identifier, - ACTIONS(7416), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7418), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166641] = 4, - ACTIONS(8397), 1, - sym_catch_keyword, - STATE(4508), 2, - sym_catch_block, - aux_sym_do_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6068), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [166661] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 7, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_in, - [166677] = 5, - ACTIONS(8495), 1, - sym_integer_literal, - STATE(1698), 1, - sym_simple_identifier, - ACTIONS(11), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(13), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166699] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8393), 1, - anon_sym_LBRACE, - ACTIONS(8497), 1, - anon_sym_COLON, - STATE(4967), 1, - sym_type_parameters, - STATE(5656), 1, - sym_enum_class_body, - STATE(6063), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166727] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8407), 1, - anon_sym_LBRACE, - ACTIONS(8499), 1, - anon_sym_COLON, - STATE(4965), 1, - sym_type_parameters, - STATE(5628), 1, - sym_protocol_body, - STATE(6066), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166755] = 5, - ACTIONS(8501), 1, - sym_integer_literal, - STATE(2026), 1, - sym_simple_identifier, - ACTIONS(855), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(857), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166777] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8503), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [166793] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5963), 7, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [166809] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8036), 7, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym_where_keyword, - sym__async_keyword_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - [166825] = 5, - STATE(3837), 1, - sym_simple_identifier, - STATE(4017), 1, - sym__simple_user_type, - ACTIONS(6817), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6819), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166847] = 3, - STATE(543), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8505), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [166865] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8507), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [166881] = 3, - STATE(510), 1, - sym__assignment_and_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8509), 6, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_EQ, - [166899] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8511), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [166915] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [166931] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8466), 1, - anon_sym_LBRACE, - ACTIONS(8513), 1, - anon_sym_COLON, - STATE(4953), 1, - sym_type_parameters, - STATE(5050), 1, - sym_enum_class_body, - STATE(5892), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [166959] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166975] = 3, - ACTIONS(5974), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [166993] = 3, - ACTIONS(5971), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [167011] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4790), 8, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167027] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [167043] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8115), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [167059] = 5, - STATE(1853), 1, - sym_simple_identifier, - STATE(2095), 1, - sym__simple_user_type, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167081] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8032), 7, - anon_sym_RBRACE, - anon_sym_get, - anon_sym_set, - anon_sym__modify, - anon_sym_AT, - anon_sym_mutating, - anon_sym_nonmutating, - [167097] = 4, - ACTIONS(8515), 1, - anon_sym_LPAREN, - ACTIONS(3493), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3495), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_AT, - [167117] = 5, - STATE(1740), 1, - sym_simple_identifier, - STATE(1788), 1, - sym__simple_user_type, - ACTIONS(6781), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(6783), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167139] = 8, - ACTIONS(7267), 1, - anon_sym_LT, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7315), 1, - anon_sym_LBRACE, - ACTIONS(8517), 1, - anon_sym_COLON, - STATE(4913), 1, - sym_type_parameters, - STATE(5198), 1, - sym_class_body, - STATE(6116), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167167] = 5, - ACTIONS(8519), 1, - sym_integer_literal, - STATE(1834), 1, - sym_simple_identifier, - ACTIONS(1127), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(1129), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167189] = 4, - STATE(6532), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167208] = 4, - STATE(1565), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167227] = 4, - ACTIONS(8521), 1, - sym__eq_custom, - STATE(3218), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5193), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [167246] = 4, - ACTIONS(8523), 1, - anon_sym_COMMA, - STATE(4641), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167265] = 5, - ACTIONS(3451), 1, - anon_sym_RBRACE, - STATE(4762), 1, - aux_sym__class_member_declarations_repeat1, - STATE(914), 2, - sym__semi, - sym__class_member_separator, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8526), 3, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - [167286] = 4, - STATE(2723), 1, - sym_simple_identifier, - ACTIONS(8528), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8530), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167305] = 4, - STATE(6565), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167324] = 5, - ACTIONS(4504), 1, - sym__as_custom, - ACTIONS(8532), 1, - anon_sym_QMARK, - STATE(5210), 1, - sym__quest, - ACTIONS(4498), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167345] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5963), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [167360] = 4, - STATE(6387), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167379] = 4, - STATE(6460), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167398] = 4, - ACTIONS(8534), 1, - anon_sym_COMMA, - STATE(4729), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4856), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167417] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4523), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [167432] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5247), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8536), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167451] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5193), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8538), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167470] = 4, - ACTIONS(8540), 1, - sym__eq_custom, - STATE(3173), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5241), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [167489] = 5, - ACTIONS(8542), 1, - sym__dot_custom, - STATE(4751), 1, - aux_sym_identifier_repeat1, - STATE(4771), 1, - sym__dot, - ACTIONS(4847), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167510] = 4, - ACTIONS(4378), 1, - anon_sym_COLON, - STATE(5170), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6005), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [167529] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - sym_where_keyword, - anon_sym_COLON, - anon_sym_RBRACE, - [167544] = 4, - STATE(1550), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167563] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5985), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [167578] = 4, - ACTIONS(8544), 1, - anon_sym_COMMA, - STATE(4739), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6147), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [167597] = 5, - ACTIONS(8546), 1, - sym__dot_custom, - STATE(1805), 1, - aux_sym_user_type_repeat1, - STATE(4632), 1, - sym__dot, - ACTIONS(2669), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167618] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5151), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8549), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167637] = 4, - STATE(4377), 1, - sym_simple_identifier, - ACTIONS(8551), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8553), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167656] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4538), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [167671] = 4, - STATE(5091), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167690] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4582), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [167705] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5132), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8555), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167724] = 4, - STATE(4467), 1, - sym_simple_identifier, - ACTIONS(8557), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8559), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167743] = 5, - ACTIONS(8561), 1, - anon_sym_COLON, - ACTIONS(8563), 1, - anon_sym_LBRACE, - STATE(5833), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5003), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167764] = 4, - STATE(4410), 1, - sym_simple_identifier, - ACTIONS(3515), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3517), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167783] = 5, - ACTIONS(8565), 1, - sym__dot_custom, - STATE(4695), 1, - sym__dot, - STATE(4781), 1, - aux_sym_identifier_repeat1, - ACTIONS(4847), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167804] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2772), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [167819] = 4, - ACTIONS(8567), 1, - sym__eq_custom, - STATE(3212), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5131), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [167838] = 4, - ACTIONS(8569), 1, - anon_sym_COMMA, - STATE(4754), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5117), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [167857] = 4, - ACTIONS(8571), 1, - anon_sym_COMMA, - STATE(4674), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5234), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [167876] = 3, - ACTIONS(8574), 1, - anon_sym_BANG, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [167893] = 4, - STATE(6547), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167912] = 4, - STATE(4503), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167931] = 4, - STATE(6552), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167950] = 4, - STATE(4148), 1, - sym_simple_identifier, - ACTIONS(8576), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167969] = 4, - STATE(2696), 1, - sym_simple_identifier, - ACTIONS(8528), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8530), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [167988] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4519), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [168003] = 4, - STATE(4057), 1, - sym_simple_identifier, - ACTIONS(8580), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8582), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168022] = 3, - ACTIONS(8584), 1, - anon_sym_BANG, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [168039] = 5, - ACTIONS(5940), 1, - sym__as_custom, - ACTIONS(8588), 1, - anon_sym_QMARK, - STATE(5034), 1, - sym__quest, - ACTIONS(8586), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168060] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4642), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [168075] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4648), 6, - sym__eq_custom, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [168090] = 5, - ACTIONS(4504), 1, - sym__as_custom, - ACTIONS(8592), 1, - anon_sym_QMARK, - STATE(5074), 1, - sym__quest, - ACTIONS(8590), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168111] = 3, - ACTIONS(8594), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8596), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RBRACE, - [168128] = 3, - ACTIONS(3521), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3523), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_AT, - [168145] = 5, - ACTIONS(5940), 1, - sym__as_custom, - ACTIONS(8598), 1, - anon_sym_QMARK, - STATE(5191), 1, - sym__quest, - ACTIONS(8586), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168166] = 5, - ACTIONS(4504), 1, - sym__as_custom, - ACTIONS(8600), 1, - anon_sym_QMARK, - STATE(5189), 1, - sym__quest, - ACTIONS(8590), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168187] = 3, - ACTIONS(3489), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3491), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_AT, - [168204] = 4, - STATE(4206), 1, - sym_simple_identifier, - ACTIONS(8576), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168223] = 6, - ACTIONS(8602), 1, - anon_sym_in, - ACTIONS(8604), 1, - sym__arrow_operator_custom, - STATE(3020), 1, - sym__arrow_operator, - STATE(5340), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168246] = 4, - STATE(5194), 1, - sym_simple_identifier, - ACTIONS(7657), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7659), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168265] = 4, - STATE(4081), 1, - sym_simple_identifier, - ACTIONS(8580), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8582), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168284] = 4, - STATE(5055), 1, - sym_simple_identifier, - ACTIONS(7416), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7418), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168303] = 4, - STATE(4366), 1, - sym_simple_identifier, - ACTIONS(8551), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8553), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168322] = 4, - STATE(6279), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168341] = 4, - STATE(4518), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168360] = 4, - STATE(4527), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168379] = 5, - ACTIONS(8606), 1, - sym__dot_custom, - STATE(4697), 1, - sym__dot, - STATE(4702), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4779), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [168400] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [168415] = 4, - STATE(1679), 1, - sym_simple_identifier, - ACTIONS(8609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168434] = 4, - STATE(4868), 1, - sym_simple_identifier, - ACTIONS(8613), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8615), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168453] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5175), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8538), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168472] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [168487] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5190), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8549), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168506] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4582), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [168521] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8617), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [168536] = 4, - ACTIONS(8544), 1, - anon_sym_COMMA, - STATE(4811), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6143), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [168555] = 3, - ACTIONS(2973), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2971), 4, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - anon_sym_RBRACE, - [168572] = 4, - STATE(6414), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168591] = 6, - ACTIONS(3899), 1, - sym_where_keyword, - ACTIONS(8619), 1, - sym__eq_custom, - STATE(385), 1, - sym__equal_sign, - STATE(6239), 1, - sym_where_clause, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168614] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4648), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [168629] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4642), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [168644] = 4, - STATE(5040), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168663] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8621), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [168678] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4560), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [168693] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5985), 6, - sym__eq_custom, - sym_where_keyword, - sym_else, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - [168708] = 3, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [168725] = 7, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8623), 1, - anon_sym_COLON, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5100), 1, - sym_type_annotation, - STATE(5552), 1, - sym_protocol_property_requirements, - STATE(5965), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168750] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7965), 6, - sym__implicit_semi, - sym__explicit_semi, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168765] = 4, - STATE(4625), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168784] = 3, - ACTIONS(4642), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [168801] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8629), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8627), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [168820] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5011), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168835] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5181), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8538), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168854] = 4, - ACTIONS(8534), 1, - anon_sym_COMMA, - STATE(4641), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4839), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168873] = 4, - STATE(6471), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168892] = 4, - STATE(6561), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168911] = 4, - STATE(1516), 1, - sym_simple_identifier, - ACTIONS(8631), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8633), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [168930] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8637), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8635), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [168949] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8641), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8639), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [168968] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5153), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8555), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168987] = 3, - ACTIONS(5974), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 5, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [169004] = 5, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5216), 1, - sym__block, - STATE(5563), 1, - sym_function_body, - ACTIONS(8645), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169025] = 4, - STATE(4578), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169044] = 4, - ACTIONS(8647), 1, - anon_sym_COMMA, - STATE(4739), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6156), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [169063] = 4, - STATE(6557), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169082] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5172), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8650), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169101] = 5, - ACTIONS(8652), 1, - sym__dot_custom, - STATE(4632), 1, - sym__dot, - STATE(4660), 1, - aux_sym_user_type_repeat1, - ACTIONS(2680), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169122] = 4, - STATE(4354), 1, - sym_simple_identifier, - ACTIONS(8655), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8657), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169141] = 4, - STATE(4386), 1, - sym_simple_identifier, - ACTIONS(8551), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8553), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169160] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5967), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [169175] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4572), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [169190] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8661), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8659), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [169209] = 4, - STATE(1725), 1, - sym_simple_identifier, - ACTIONS(8609), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8611), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169228] = 5, - ACTIONS(8663), 1, - anon_sym_COLON, - ACTIONS(8665), 1, - anon_sym_LBRACE, - STATE(5505), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5003), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [169249] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8667), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [169264] = 5, - ACTIONS(8669), 1, - sym__dot_custom, - STATE(4751), 1, - aux_sym_identifier_repeat1, - STATE(4771), 1, - sym__dot, - ACTIONS(4779), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169285] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4572), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [169300] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4560), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [169315] = 4, - ACTIONS(8569), 1, - anon_sym_COMMA, - STATE(4674), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5159), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [169334] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4388), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [169349] = 4, - STATE(6542), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169368] = 4, - STATE(4364), 1, - sym_simple_identifier, - ACTIONS(8655), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8657), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169387] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4914), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169402] = 4, - STATE(6376), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169421] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4910), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169436] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169451] = 5, - ACTIONS(8672), 1, - anon_sym_RBRACE, - STATE(4762), 1, - aux_sym__class_member_declarations_repeat1, - STATE(971), 2, - sym__semi, - sym__class_member_separator, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8674), 3, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - [169472] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5967), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [169487] = 4, - STATE(4456), 1, - sym_simple_identifier, - ACTIONS(3515), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3517), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169506] = 4, - STATE(1594), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169525] = 5, - ACTIONS(8565), 1, - sym__dot_custom, - STATE(4670), 1, - aux_sym_identifier_repeat1, - STATE(4695), 1, - sym__dot, - ACTIONS(4876), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169546] = 4, - STATE(4432), 1, - sym_simple_identifier, - ACTIONS(8557), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8559), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169565] = 4, - STATE(6415), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169584] = 4, - STATE(4415), 1, - sym_simple_identifier, - ACTIONS(3515), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3517), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169603] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [169618] = 4, - STATE(5068), 1, - sym_simple_identifier, - ACTIONS(7438), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7440), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169637] = 4, - STATE(1509), 1, - sym_simple_identifier, - ACTIONS(8631), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8633), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169656] = 5, - ACTIONS(8542), 1, - sym__dot_custom, - STATE(4654), 1, - aux_sym_identifier_repeat1, - STATE(4771), 1, - sym__dot, - ACTIONS(4876), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169677] = 4, - STATE(2076), 1, - sym_simple_identifier, - ACTIONS(7392), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7394), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169696] = 3, - ACTIONS(5971), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [169713] = 4, - ACTIONS(8286), 1, - anon_sym_COLON, - STATE(5139), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6005), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [169732] = 3, - ACTIONS(5974), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4644), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [169749] = 4, - STATE(4572), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169768] = 6, - ACTIONS(3827), 1, - sym_where_keyword, - ACTIONS(8677), 1, - sym__eq_custom, - STATE(496), 1, - sym__equal_sign, - STATE(6144), 1, - sym_where_clause, - ACTIONS(5999), 2, - sym_else, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169791] = 4, - STATE(6395), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169810] = 5, - ACTIONS(8679), 1, - sym__dot_custom, - STATE(4695), 1, - sym__dot, - STATE(4781), 1, - aux_sym_identifier_repeat1, - ACTIONS(4779), 3, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169831] = 5, - ACTIONS(8682), 1, - sym__dot_custom, - STATE(4697), 1, - sym__dot, - STATE(4702), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4847), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [169852] = 6, - ACTIONS(8339), 1, - anon_sym_in, - ACTIONS(8341), 1, - sym__arrow_operator_custom, - STATE(3069), 1, - sym__arrow_operator, - STATE(5744), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169875] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4402), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [169890] = 3, - ACTIONS(8684), 1, - anon_sym_BANG, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169907] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4519), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [169922] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4896), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [169937] = 4, - STATE(4577), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169956] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8688), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8686), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [169975] = 4, - STATE(4394), 1, - sym_simple_identifier, - ACTIONS(3502), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3504), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [169994] = 4, - STATE(4588), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170013] = 4, - STATE(4584), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170032] = 4, - STATE(4636), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170051] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5192), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8538), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170070] = 4, - STATE(5120), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170089] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8692), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8690), 5, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [170108] = 4, - STATE(5111), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170127] = 7, - ACTIONS(3871), 1, - sym_where_keyword, - ACTIONS(6567), 1, - anon_sym_LBRACE, - ACTIONS(8694), 1, - sym__as_custom, - STATE(3290), 1, - sym__as, - STATE(4924), 1, - sym__block, - STATE(6220), 1, - sym_where_clause, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170152] = 5, - ACTIONS(4447), 1, - sym__as_custom, - ACTIONS(8696), 1, - anon_sym_QMARK, - STATE(5211), 1, - sym__quest, - ACTIONS(4441), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170173] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4404), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [170188] = 4, - STATE(4594), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170207] = 4, - STATE(4595), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170226] = 4, - STATE(4600), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170245] = 4, - STATE(6535), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170264] = 4, - STATE(6340), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170283] = 4, - STATE(4961), 1, - sym_simple_identifier, - ACTIONS(8698), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8700), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170302] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5169), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8702), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170321] = 4, - STATE(5231), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170340] = 4, - STATE(5142), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170359] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8420), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [170374] = 4, - ACTIONS(8544), 1, - anon_sym_COMMA, - STATE(4739), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6160), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [170393] = 4, - STATE(2720), 1, - sym_simple_identifier, - ACTIONS(8528), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8530), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170412] = 4, - STATE(1528), 1, - sym_simple_identifier, - ACTIONS(8631), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8633), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170431] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 6, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_LBRACE, - [170446] = 4, - STATE(4042), 1, - sym_simple_identifier, - ACTIONS(8580), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8582), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170465] = 4, - STATE(4195), 1, - sym_simple_identifier, - ACTIONS(8576), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8578), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170484] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5158), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8702), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170503] = 4, - STATE(4614), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170522] = 5, - ACTIONS(8704), 1, - anon_sym_RBRACE, - STATE(4642), 1, - aux_sym__class_member_declarations_repeat1, - STATE(920), 2, - sym__semi, - sym__class_member_separator, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8706), 3, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - [170543] = 4, - ACTIONS(8708), 1, - sym__eq_custom, - STATE(3354), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5214), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [170562] = 4, - STATE(4413), 1, - sym_simple_identifier, - ACTIONS(3502), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3504), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170581] = 4, - STATE(4613), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170600] = 4, - STATE(4404), 1, - sym_simple_identifier, - ACTIONS(3502), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3504), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170619] = 4, - STATE(4563), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170638] = 4, - STATE(2085), 1, - sym_simple_identifier, - ACTIONS(8710), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(8712), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170657] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4523), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [170672] = 4, - STATE(4532), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170691] = 7, - ACTIONS(3871), 1, - sym_where_keyword, - ACTIONS(6633), 1, - anon_sym_LBRACE, - ACTIONS(8694), 1, - sym__as_custom, - STATE(2879), 1, - sym__block, - STATE(3290), 1, - sym__as, - STATE(6226), 1, - sym_where_clause, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170716] = 4, - STATE(1560), 1, - sym_simple_identifier, - ACTIONS(7566), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(7568), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170735] = 5, - ACTIONS(8682), 1, - sym__dot_custom, - STATE(4697), 1, - sym__dot, - STATE(4782), 1, - aux_sym_identifier_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4876), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [170756] = 4, - STATE(6370), 1, - sym_simple_identifier, - ACTIONS(2611), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(2613), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170775] = 3, - ACTIONS(5971), 1, - sym__as_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4638), 5, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [170792] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5173), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8650), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170811] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5160), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8650), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170830] = 6, - ACTIONS(8214), 1, - anon_sym_in, - ACTIONS(8216), 1, - sym__arrow_operator_custom, - STATE(3115), 1, - sym__arrow_operator, - STATE(5657), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170853] = 4, - STATE(4515), 1, - sym_simple_identifier, - ACTIONS(3174), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(3176), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [170872] = 4, - ACTIONS(8544), 1, - anon_sym_COMMA, - STATE(4659), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6170), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [170891] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4900), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170906] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4538), 6, - sym__as_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_in, - [170921] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5963), 6, - sym_where_keyword, - sym__as_custom, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACE, - [170936] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 7, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__eq_custom, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170951] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5167), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8650), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170970] = 4, - ACTIONS(7471), 1, - sym_where_keyword, - STATE(5229), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8536), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [170989] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8714), 6, - sym__arrow_operator_custom, - sym__throws_keyword, - sym__rethrows_keyword, - sym__async_keyword_custom, - anon_sym_COMMA, - anon_sym_in, - [171004] = 7, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8623), 1, - anon_sym_COLON, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5239), 1, - sym_type_annotation, - STATE(5263), 1, - sym_protocol_property_requirements, - STATE(5900), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171029] = 5, - ACTIONS(8716), 1, - sym__arrow_operator_custom, - STATE(3274), 1, - sym__arrow_operator, - STATE(6201), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171049] = 5, - ACTIONS(8718), 1, - sym__arrow_operator_custom, - STATE(3162), 1, - sym__arrow_operator, - STATE(6027), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171069] = 4, - ACTIONS(8720), 1, - anon_sym_COLON, - ACTIONS(8722), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3394), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171087] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8160), 1, - anon_sym_LBRACE, - ACTIONS(8724), 1, - sym__arrow_operator_custom, - STATE(3068), 1, - sym__arrow_operator, - STATE(6503), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171109] = 5, - ACTIONS(8726), 1, - sym__arrow_operator_custom, - STATE(3349), 1, - sym__arrow_operator, - STATE(6223), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171129] = 4, - ACTIONS(8728), 1, - anon_sym_QMARK, - STATE(5259), 1, - sym__quest, - ACTIONS(4504), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171147] = 4, - ACTIONS(8732), 1, - anon_sym_DOT_DOT_DOT, - STATE(5307), 1, - sym__three_dot_operator, - ACTIONS(8730), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171165] = 4, - STATE(5016), 1, - aux_sym__inheritance_specifiers_repeat1, - ACTIONS(8734), 2, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(8736), 2, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171183] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4896), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [171197] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8393), 1, - anon_sym_LBRACE, - ACTIONS(8738), 1, - anon_sym_COLON, - STATE(5464), 1, - sym_enum_class_body, - STATE(6215), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171219] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4900), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [171233] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8637), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8635), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [171251] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8451), 1, - anon_sym_LBRACE, - ACTIONS(8740), 1, - anon_sym_COLON, - STATE(2298), 1, - sym_enum_class_body, - STATE(6013), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171273] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8641), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8639), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [171291] = 4, - ACTIONS(8742), 1, - anon_sym_QMARK, - STATE(5258), 1, - sym__quest, - ACTIONS(4447), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171309] = 4, - ACTIONS(8744), 1, - anon_sym_LPAREN, - STATE(4861), 1, - aux_sym__function_value_parameters, - ACTIONS(7936), 3, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171327] = 4, - ACTIONS(8747), 1, - anon_sym_QMARK, - STATE(5254), 1, - sym__quest, - ACTIONS(5940), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171345] = 4, - ACTIONS(8732), 1, - anon_sym_DOT_DOT_DOT, - STATE(5653), 1, - sym__three_dot_operator, - ACTIONS(8749), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171363] = 4, - ACTIONS(8751), 1, - anon_sym_COLON, - ACTIONS(8753), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3454), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171381] = 4, - ACTIONS(8755), 1, - anon_sym_QMARK, - STATE(5615), 1, - sym__quest, - ACTIONS(5940), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171399] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8757), 1, - anon_sym_COMMA, - ACTIONS(8759), 1, - anon_sym_GT, - STATE(5127), 1, - aux_sym_type_parameters_repeat1, - STATE(6416), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171421] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8443), 1, - anon_sym_LBRACE, - ACTIONS(8761), 1, - anon_sym_COLON, - STATE(2257), 1, - sym_protocol_body, - STATE(6001), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171443] = 4, - ACTIONS(8563), 1, - anon_sym_LBRACE, - STATE(5257), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5220), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171461] = 5, - ACTIONS(8763), 1, - sym__arrow_operator_custom, - STATE(3222), 1, - sym__arrow_operator, - STATE(6195), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171481] = 4, - ACTIONS(8765), 1, - anon_sym_COLON, - ACTIONS(8767), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3387), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171499] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8771), 1, - anon_sym_in, - ACTIONS(8773), 1, - sym__as_custom, - STATE(3449), 1, - sym__as, - STATE(6291), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171521] = 5, - ACTIONS(8775), 1, - sym__arrow_operator_custom, - STATE(3183), 1, - sym__arrow_operator, - STATE(6053), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171541] = 6, - ACTIONS(3228), 1, - anon_sym_func, - ACTIONS(3234), 1, - anon_sym_init, - STATE(5168), 1, - sym__modifierless_function_declaration_no_body, - STATE(5233), 1, - sym__non_constructor_function_decl, - STATE(5234), 1, - sym__constructor_function_decl, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171563] = 5, - ACTIONS(8777), 1, - sym__arrow_operator_custom, - STATE(3141), 1, - sym__arrow_operator, - STATE(6163), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171583] = 5, - ACTIONS(6134), 1, - anon_sym_RBRACE, - STATE(103), 1, - sym__semi, - STATE(4875), 1, - aux_sym_statements_repeat1, - ACTIONS(8779), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171603] = 5, - ACTIONS(8782), 1, - sym__arrow_operator_custom, - STATE(3177), 1, - sym__arrow_operator, - STATE(6037), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171623] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4825), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [171637] = 5, - ACTIONS(8784), 1, - anon_sym_RBRACE, - STATE(1362), 1, - sym__semi, - STATE(5005), 1, - aux_sym__protocol_member_declarations_repeat1, - ACTIONS(8786), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171657] = 5, - ACTIONS(8788), 1, - sym__arrow_operator_custom, - STATE(3301), 1, - sym__arrow_operator, - STATE(6150), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171677] = 6, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(8790), 1, - anon_sym_RPAREN, - ACTIONS(8792), 1, - sym__eq_custom, - STATE(465), 1, - sym__equal_sign, - STATE(5745), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171699] = 5, - ACTIONS(8794), 1, - sym__arrow_operator_custom, - STATE(3345), 1, - sym__arrow_operator, - STATE(6033), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171719] = 4, - ACTIONS(7588), 1, - anon_sym_if, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5059), 3, - sym__else_options, - sym_if_statement, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171737] = 3, - ACTIONS(8796), 1, - sym_else, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6212), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [171753] = 4, - STATE(4884), 1, - aux_sym__inheritance_specifiers_repeat1, - ACTIONS(8798), 2, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(8801), 2, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171771] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [171785] = 4, - ACTIONS(7543), 1, - anon_sym_if, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2938), 3, - sym__else_options, - sym_if_statement, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171803] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4910), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [171817] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2321), 6, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - [171831] = 5, - ACTIONS(8805), 1, - sym__arrow_operator_custom, - STATE(3433), 1, - sym__arrow_operator, - STATE(6136), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171851] = 4, - ACTIONS(8807), 1, - anon_sym_QMARK, - STATE(5614), 1, - sym__quest, - ACTIONS(4447), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171869] = 5, - ACTIONS(8809), 1, - sym__arrow_operator_custom, - STATE(3225), 1, - sym__arrow_operator, - STATE(6043), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171889] = 5, - ACTIONS(8811), 1, - sym__arrow_operator_custom, - STATE(3292), 1, - sym__arrow_operator, - STATE(6126), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171909] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4914), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [171923] = 5, - ACTIONS(8813), 1, - sym__arrow_operator_custom, - STATE(3382), 1, - sym__arrow_operator, - STATE(6117), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171943] = 5, - ACTIONS(301), 1, - anon_sym_RBRACE, - STATE(100), 1, - sym__semi, - STATE(4875), 1, - aux_sym_statements_repeat1, - ACTIONS(8815), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171963] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6200), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [171977] = 6, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(8817), 1, - anon_sym_RPAREN, - ACTIONS(8819), 1, - sym__eq_custom, - STATE(397), 1, - sym__equal_sign, - STATE(5859), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [171999] = 5, - ACTIONS(8821), 1, - sym__arrow_operator_custom, - STATE(3430), 1, - sym__arrow_operator, - STATE(6229), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172019] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8757), 1, - anon_sym_COMMA, - ACTIONS(8823), 1, - anon_sym_GT, - STATE(4866), 1, - aux_sym_type_parameters_repeat1, - STATE(6383), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172041] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5299), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [172055] = 6, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(8825), 1, - anon_sym_RPAREN, - ACTIONS(8827), 1, - sym__eq_custom, - STATE(462), 1, - sym__equal_sign, - STATE(5761), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172077] = 5, - ACTIONS(8829), 1, - sym__arrow_operator_custom, - STATE(3373), 1, - sym__arrow_operator, - STATE(6242), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172097] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7275), 1, - anon_sym_LBRACE, - ACTIONS(8831), 1, - anon_sym_COLON, - STATE(2279), 1, - sym_class_body, - STATE(6069), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172119] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6178), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [172133] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8443), 1, - anon_sym_LBRACE, - ACTIONS(8833), 1, - anon_sym_COLON, - STATE(2277), 1, - sym_protocol_body, - STATE(6071), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172155] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8451), 1, - anon_sym_LBRACE, - ACTIONS(8835), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_enum_class_body, - STATE(6074), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172177] = 4, - STATE(6005), 1, - sym__quest, - ACTIONS(8837), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(8839), 2, - sym_bang, - anon_sym_QMARK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172195] = 4, - ACTIONS(8841), 1, - sym__eq_custom, - STATE(3182), 1, - sym__equal_sign, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5193), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [172213] = 4, - ACTIONS(8843), 1, - anon_sym_COMMA, - STATE(4909), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5234), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [172231] = 4, - ACTIONS(8846), 1, - anon_sym_QMARK, - STATE(5612), 1, - sym__quest, - ACTIONS(4504), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172249] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5307), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [172263] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [172277] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7315), 1, - anon_sym_LBRACE, - ACTIONS(8848), 1, - anon_sym_COLON, - STATE(5117), 1, - sym_class_body, - STATE(6068), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172299] = 5, - ACTIONS(8850), 1, - sym__arrow_operator_custom, - STATE(3217), 1, - sym__arrow_operator, - STATE(6121), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172319] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8773), 1, - sym__as_custom, - ACTIONS(8852), 1, - anon_sym_in, - STATE(3449), 1, - sym__as, - STATE(6263), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172341] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8757), 1, - anon_sym_COMMA, - ACTIONS(8854), 1, - anon_sym_GT, - STATE(5127), 1, - aux_sym_type_parameters_repeat1, - STATE(6287), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172363] = 3, - ACTIONS(8856), 1, - anon_sym_BANG, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4622), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [172379] = 5, - ACTIONS(8858), 1, - sym__arrow_operator_custom, - STATE(3401), 1, - sym__arrow_operator, - STATE(6099), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172399] = 5, - ACTIONS(8860), 1, - sym__arrow_operator_custom, - STATE(3247), 1, - sym__arrow_operator, - STATE(6252), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172419] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8757), 1, - anon_sym_COMMA, - ACTIONS(8862), 1, - anon_sym_GT, - STATE(4916), 1, - aux_sym_type_parameters_repeat1, - STATE(6257), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172441] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6222), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [172455] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6196), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [172469] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8866), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8864), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [172487] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6174), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [172501] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6218), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [172515] = 4, - ACTIONS(8868), 1, - anon_sym_COLON, - ACTIONS(8870), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3260), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172533] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7275), 1, - anon_sym_LBRACE, - ACTIONS(8872), 1, - anon_sym_COLON, - STATE(2222), 1, - sym_class_body, - STATE(6087), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172555] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2321), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_LBRACE, - [172569] = 4, - ACTIONS(7588), 1, - anon_sym_if, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5201), 3, - sym__else_options, - sym_if_statement, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172587] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8876), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8874), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [172605] = 4, - ACTIONS(8732), 1, - anon_sym_DOT_DOT_DOT, - STATE(5868), 1, - sym__three_dot_operator, - ACTIONS(8878), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172623] = 5, - ACTIONS(8880), 1, - sym__arrow_operator_custom, - STATE(3134), 1, - sym__arrow_operator, - STATE(6089), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172643] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8692), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8690), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [172661] = 4, - ACTIONS(8732), 1, - anon_sym_DOT_DOT_DOT, - STATE(5647), 1, - sym__three_dot_operator, - ACTIONS(8882), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172679] = 5, - ACTIONS(8884), 1, - sym__arrow_operator_custom, - STATE(3341), 1, - sym__arrow_operator, - STATE(6082), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172699] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8407), 1, - anon_sym_LBRACE, - ACTIONS(8886), 1, - anon_sym_COLON, - STATE(5405), 1, - sym_protocol_body, - STATE(6209), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172721] = 5, - ACTIONS(8888), 1, - sym__arrow_operator_custom, - STATE(3428), 1, - sym__arrow_operator, - STATE(6078), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172741] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7982), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - sym__arrow_operator_custom, - STATE(3072), 1, - sym__arrow_operator, - STATE(6397), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172763] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_else, - ts_builtin_sym_end, - anon_sym_RBRACE, - [172777] = 4, - ACTIONS(8892), 1, - anon_sym_COMMA, - STATE(5000), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5117), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [172795] = 4, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(8896), 1, - aux_sym_line_str_text_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8894), 4, - anon_sym_DQUOTE, - anon_sym_BSLASH, - anon_sym_BSLASH_LPAREN, - sym__escaped_identifier, - [172813] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_in, - [172827] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6192), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [172841] = 5, - ACTIONS(8898), 1, - anon_sym_RBRACE, - STATE(1355), 1, - sym__semi, - STATE(4878), 1, - aux_sym__protocol_member_declarations_repeat1, - ACTIONS(8900), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172861] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7982), 1, - anon_sym_LBRACE, - ACTIONS(8902), 1, - sym__arrow_operator_custom, - STATE(3082), 1, - sym__arrow_operator, - STATE(6342), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172883] = 5, - ACTIONS(8904), 1, - sym__arrow_operator_custom, - STATE(3439), 1, - sym__arrow_operator, - STATE(6000), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172903] = 4, - ACTIONS(8906), 1, - anon_sym_COLON, - ACTIONS(8908), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3308), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172921] = 6, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8910), 1, - anon_sym_COLON, - STATE(2924), 1, - sym_class_body, - STATE(6021), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172943] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8160), 1, - anon_sym_LBRACE, - ACTIONS(8912), 1, - sym__arrow_operator_custom, - STATE(3074), 1, - sym__arrow_operator, - STATE(6484), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172965] = 5, - ACTIONS(8914), 1, - sym__arrow_operator_custom, - STATE(3376), 1, - sym__arrow_operator, - STATE(6072), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [172985] = 5, - ACTIONS(203), 1, - ts_builtin_sym_end, - STATE(5), 1, - sym__semi, - STATE(4983), 1, - aux_sym_source_file_repeat1, - ACTIONS(8916), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173005] = 5, - ACTIONS(8918), 1, - sym__arrow_operator_custom, - STATE(3424), 1, - sym__arrow_operator, - STATE(6007), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173025] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8466), 1, - anon_sym_LBRACE, - ACTIONS(8920), 1, - anon_sym_COLON, - STATE(5108), 1, - sym_enum_class_body, - STATE(6088), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173047] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_else, - ts_builtin_sym_end, - anon_sym_RBRACE, - [173061] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8757), 1, - anon_sym_COMMA, - ACTIONS(8922), 1, - anon_sym_GT, - STATE(4976), 1, - aux_sym_type_parameters_repeat1, - STATE(6434), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173083] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7319), 1, - anon_sym_LBRACE, - ACTIONS(8924), 1, - anon_sym_COLON, - STATE(5511), 1, - sym_class_body, - STATE(6211), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173105] = 3, - ACTIONS(8926), 1, - sym_else, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6182), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [173121] = 5, - ACTIONS(8928), 1, - sym__arrow_operator_custom, - STATE(3224), 1, - sym__arrow_operator, - STATE(6023), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173141] = 5, - ACTIONS(8930), 1, - sym__arrow_operator_custom, - STATE(3427), 1, - sym__arrow_operator, - STATE(6237), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173161] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6204), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [173175] = 4, - ACTIONS(8665), 1, - anon_sym_LBRACE, - STATE(5389), 1, - sym_deprecated_operator_declaration_body, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5220), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [173193] = 5, - ACTIONS(6164), 1, - anon_sym_RBRACE, - STATE(95), 1, - sym__semi, - STATE(4895), 1, - aux_sym_statements_repeat1, - ACTIONS(8932), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173213] = 4, - ACTIONS(8934), 1, - sym__eq_custom, - STATE(3306), 1, - sym__equal_sign, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5214), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [173231] = 4, - ACTIONS(8936), 1, - sym__eq_custom, - STATE(3443), 1, - sym__equal_sign, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5241), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [173249] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8407), 1, - anon_sym_LBRACE, - ACTIONS(8938), 1, - anon_sym_COLON, - STATE(5494), 1, - sym_protocol_body, - STATE(6200), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173271] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8773), 1, - sym__as_custom, - ACTIONS(8940), 1, - anon_sym_in, - STATE(3449), 1, - sym__as, - STATE(6481), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173293] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8393), 1, - anon_sym_LBRACE, - ACTIONS(8942), 1, - anon_sym_COLON, - STATE(5596), 1, - sym_enum_class_body, - STATE(6197), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173315] = 5, - ACTIONS(201), 1, - ts_builtin_sym_end, - STATE(7), 1, - sym__semi, - STATE(4951), 1, - aux_sym_source_file_repeat1, - ACTIONS(8944), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173335] = 5, - ACTIONS(8946), 1, - sym__arrow_operator_custom, - STATE(3329), 1, - sym__arrow_operator, - STATE(6061), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173355] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [173369] = 5, - ACTIONS(203), 1, - ts_builtin_sym_end, - STATE(5), 1, - sym__semi, - STATE(4995), 1, - aux_sym_source_file_repeat1, - ACTIONS(8916), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173389] = 4, - ACTIONS(7543), 1, - anon_sym_if, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2906), 3, - sym__else_options, - sym_if_statement, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173407] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8376), 1, - anon_sym_LBRACE, - ACTIONS(8948), 1, - anon_sym_COLON, - STATE(2924), 1, - sym_enum_class_body, - STATE(6049), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173429] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8773), 1, - sym__as_custom, - ACTIONS(8950), 1, - anon_sym_in, - STATE(3449), 1, - sym__as, - STATE(6479), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173451] = 6, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8952), 1, - anon_sym_COLON, - STATE(2905), 1, - sym_class_body, - STATE(6052), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173473] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8757), 1, - anon_sym_COMMA, - ACTIONS(8954), 1, - anon_sym_GT, - STATE(5127), 1, - aux_sym_type_parameters_repeat1, - STATE(6412), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173495] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8773), 1, - sym__as_custom, - ACTIONS(8956), 1, - anon_sym_in, - STATE(3449), 1, - sym__as, - STATE(6477), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173517] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6030), 5, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - anon_sym_COLON, - [173531] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7319), 1, - anon_sym_LBRACE, - ACTIONS(8958), 1, - anon_sym_COLON, - STATE(5596), 1, - sym_class_body, - STATE(6154), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173553] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7907), 1, - anon_sym_LBRACE, - ACTIONS(8960), 1, - sym__arrow_operator_custom, - STATE(3031), 1, - sym__arrow_operator, - STATE(6422), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173575] = 5, - ACTIONS(8962), 1, - sym__arrow_operator_custom, - STATE(3312), 1, - sym__arrow_operator, - STATE(6010), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173595] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8179), 1, - anon_sym_LBRACE, - ACTIONS(8964), 1, - sym__arrow_operator_custom, - STATE(3030), 1, - sym__arrow_operator, - STATE(6435), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173617] = 5, - ACTIONS(8966), 1, - ts_builtin_sym_end, - STATE(8), 1, - sym__semi, - STATE(4983), 1, - aux_sym_source_file_repeat1, - ACTIONS(8968), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173637] = 4, - ACTIONS(8971), 1, - anon_sym_COLON, - ACTIONS(8973), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3241), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173655] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6208), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [173669] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7907), 1, - anon_sym_LBRACE, - ACTIONS(8975), 1, - sym__arrow_operator_custom, - STATE(3028), 1, - sym__arrow_operator, - STATE(6444), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173691] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8179), 1, - anon_sym_LBRACE, - ACTIONS(8977), 1, - sym__arrow_operator_custom, - STATE(3025), 1, - sym__arrow_operator, - STATE(6369), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173713] = 5, - ACTIONS(8979), 1, - sym__arrow_operator_custom, - STATE(3278), 1, - sym__arrow_operator, - STATE(6054), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173733] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_where_keyword, - anon_sym_LBRACE, - anon_sym_RBRACE, - [173747] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5284), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [173761] = 5, - ACTIONS(8981), 1, - sym__arrow_operator_custom, - STATE(3219), 1, - sym__arrow_operator, - STATE(6168), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173781] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5247), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [173795] = 3, - ACTIONS(5828), 2, - aux_sym_simple_identifier_token1, - anon_sym_actor, - ACTIONS(5826), 3, - aux_sym_simple_identifier_token2, - aux_sym_simple_identifier_token3, - aux_sym_simple_identifier_token4, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173811] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5011), 5, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - [173825] = 5, - ACTIONS(199), 1, - ts_builtin_sym_end, - STATE(4), 1, - sym__semi, - STATE(4983), 1, - aux_sym_source_file_repeat1, - ACTIONS(8983), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173845] = 4, - ACTIONS(8985), 1, - anon_sym_COLON, - ACTIONS(8987), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3229), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173863] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7315), 1, - anon_sym_LBRACE, - ACTIONS(8989), 1, - anon_sym_COLON, - STATE(5051), 1, - sym_class_body, - STATE(5930), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173885] = 4, - ACTIONS(8991), 1, - anon_sym_COLON, - ACTIONS(8993), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3233), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173903] = 5, - ACTIONS(8995), 1, - sym__arrow_operator_custom, - STATE(3348), 1, - sym__arrow_operator, - STATE(6216), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173923] = 4, - ACTIONS(8892), 1, - anon_sym_COMMA, - STATE(4909), 1, - aux_sym__modifierless_property_declaration_repeat1, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5159), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [173941] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8773), 1, - sym__as_custom, - ACTIONS(8997), 1, - anon_sym_in, - STATE(3449), 1, - sym__as, - STATE(6475), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173963] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8455), 1, - anon_sym_LBRACE, - ACTIONS(8999), 1, - anon_sym_COLON, - STATE(5852), 1, - sym_protocol_body, - STATE(5922), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [173985] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8376), 1, - anon_sym_LBRACE, - ACTIONS(9001), 1, - anon_sym_COLON, - STATE(2948), 1, - sym_enum_class_body, - STATE(6096), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174007] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6188), 5, - sym__implicit_semi, - sym__explicit_semi, - sym_catch_keyword, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174021] = 5, - ACTIONS(9003), 1, - anon_sym_RBRACE, - STATE(1363), 1, - sym__semi, - STATE(5005), 1, - aux_sym__protocol_member_declarations_repeat1, - ACTIONS(9005), 2, - sym__implicit_semi, - sym__explicit_semi, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174041] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [174055] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [174069] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8455), 1, - anon_sym_LBRACE, - ACTIONS(9008), 1, - anon_sym_COLON, - STATE(5401), 1, - sym_protocol_body, - STATE(5960), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174091] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5295), 5, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - [174105] = 6, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8466), 1, - anon_sym_LBRACE, - ACTIONS(9010), 1, - anon_sym_COLON, - STATE(5117), 1, - sym_enum_class_body, - STATE(5903), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174127] = 5, - ACTIONS(9012), 1, - sym__arrow_operator_custom, - STATE(3294), 1, - sym__arrow_operator, - STATE(6194), 1, - sym_throws, - ACTIONS(2591), 2, - sym__throws_keyword, - sym__rethrows_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174147] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6030), 5, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACE, - [174161] = 4, - ACTIONS(9014), 1, - anon_sym_COLON, - ACTIONS(9016), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3302), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174179] = 4, - ACTIONS(9018), 1, - sym__eq_custom, - STATE(3287), 1, - sym__equal_sign, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5131), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [174197] = 4, - ACTIONS(9020), 1, - anon_sym_COLON, - ACTIONS(9022), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3189), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174215] = 4, - STATE(4884), 1, - aux_sym__inheritance_specifiers_repeat1, - ACTIONS(8734), 2, - anon_sym_COMMA, - anon_sym_AMP, - ACTIONS(9024), 2, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174233] = 4, - ACTIONS(9026), 1, - anon_sym_COLON, - ACTIONS(9028), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3309), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174251] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, - ACTIONS(9032), 2, - sym__eq_custom, - sym__eq_eq_custom, - STATE(3359), 2, - sym__equal_sign, - sym__eq_eq, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174269] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8773), 1, - sym__as_custom, - ACTIONS(9034), 1, - anon_sym_in, - STATE(3449), 1, - sym__as, - STATE(6569), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174291] = 6, - ACTIONS(8769), 1, - anon_sym_COLON, - ACTIONS(8773), 1, - sym__as_custom, - ACTIONS(9036), 1, - anon_sym_in, - STATE(3449), 1, - sym__as, - STATE(6574), 1, - sym_type_annotation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174313] = 5, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9040), 1, - anon_sym_LBRACE, - STATE(4883), 1, - sym__block, - STATE(5774), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174332] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_enum_class_body, - STATE(6093), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174351] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9042), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - [174364] = 5, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2947), 1, - sym_class_body, - STATE(6094), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174383] = 5, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2954), 1, - sym_class_body, - STATE(6109), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174402] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2954), 1, - sym_enum_class_body, - STATE(6118), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174421] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5643), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174434] = 5, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2957), 1, - sym_class_body, - STATE(6122), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174453] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2958), 1, - sym_enum_class_body, - STATE(6124), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174472] = 5, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4485), 1, - aux_sym__function_value_parameters, - STATE(5940), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174491] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5179), 1, - sym_class_body, - STATE(5937), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174510] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5477), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174523] = 4, - ACTIONS(9046), 1, - anon_sym_COMMA, - STATE(5178), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4839), 2, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174540] = 3, - ACTIONS(5985), 1, - sym__as_custom, - ACTIONS(9048), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174555] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5393), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174568] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2885), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [174581] = 5, - ACTIONS(7269), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2925), 1, - sym_class_body, - STATE(6079), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174600] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5878), 1, - sym_computed_property, - STATE(5905), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174619] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2964), 1, - sym_enum_class_body, - STATE(6132), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174638] = 3, - ACTIONS(9052), 1, - anon_sym_COLON, - ACTIONS(9050), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174653] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5365), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174666] = 4, - ACTIONS(9056), 1, - sym__eq_custom, - STATE(440), 1, - sym__equal_sign, - ACTIONS(9054), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174683] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5876), 1, - sym_computed_property, - STATE(5889), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174702] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4682), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [174715] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5473), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174728] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6258), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174741] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6238), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174754] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5385), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174767] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6226), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174780] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5577), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174793] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5565), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174806] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5105), 1, - sym_class_body, - STATE(6098), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174825] = 4, - ACTIONS(9060), 1, - anon_sym_DOT, - STATE(5199), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(9058), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174842] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6258), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174855] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4779), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - anon_sym_RBRACE, - [174868] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5405), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174881] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5564), 1, - sym_protocol_body, - STATE(6213), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174900] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5525), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174913] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6322), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174926] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5381), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174939] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5377), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174952] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5413), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174965] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6294), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [174978] = 5, - ACTIONS(3879), 1, - anon_sym_COMMA, - ACTIONS(9062), 1, - anon_sym_COLON, - ACTIONS(9064), 1, - sym_where_keyword, - STATE(5327), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [174997] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6290), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175010] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5032), 1, - sym_enum_class_body, - STATE(6128), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175029] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5521), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175042] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4779), 4, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - ts_builtin_sym_end, - [175055] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5772), 1, - sym_computed_property, - STATE(5999), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175074] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6342), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175087] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6250), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175100] = 5, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4392), 1, - aux_sym__function_value_parameters, - STATE(6091), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175119] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5266), 1, - sym_computed_property, - STATE(5910), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175138] = 3, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(9066), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175153] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5269), 1, - sym_computed_property, - STATE(5911), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175172] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5276), 1, - sym_computed_property, - STATE(5915), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175191] = 4, - ACTIONS(9070), 1, - sym__eq_custom, - STATE(464), 1, - sym__equal_sign, - ACTIONS(9068), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175208] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5298), 1, - sym_computed_property, - STATE(5919), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175227] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6286), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175240] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2202), 1, - sym_protocol_body, - STATE(5924), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175259] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6254), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175272] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_enum_class_body, - STATE(5929), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175291] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6346), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175304] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6334), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175317] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6366), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175330] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6362), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175343] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6246), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175356] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6242), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175369] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2190), 1, - sym_protocol_body, - STATE(5949), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175388] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5664), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175401] = 5, - ACTIONS(9072), 1, - anon_sym_LT, - ACTIONS(9074), 1, - sym__eq_custom, - STATE(3257), 1, - sym__equal_sign, - STATE(6028), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175420] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6254), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175433] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2186), 1, - sym_enum_class_body, - STATE(5954), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175452] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5639), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175465] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5179), 1, - sym_enum_class_body, - STATE(5914), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175484] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6246), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175497] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2185), 1, - sym_class_body, - STATE(5959), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175516] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2184), 1, - sym_protocol_body, - STATE(5987), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175535] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6107), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [175548] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5270), 1, - sym_protocol_property_requirements, - STATE(5908), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175567] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2178), 1, - sym_enum_class_body, - STATE(5988), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175586] = 4, - ACTIONS(4281), 1, - sym__eq_custom, - STATE(417), 1, - sym__equal_sign, - ACTIONS(9076), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175603] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2178), 1, - sym_class_body, - STATE(5990), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175622] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5279), 1, - sym_protocol_body, - STATE(5899), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175641] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5623), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175654] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5228), 1, - sym_class_body, - STATE(5898), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175673] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5245), 1, - sym_enum_class_body, - STATE(5895), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175692] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5617), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175705] = 4, - ACTIONS(9080), 1, - anon_sym_DOT, - STATE(5109), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(9078), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175722] = 5, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4472), 1, - aux_sym__function_value_parameters, - STATE(6050), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175741] = 4, - ACTIONS(9085), 1, - sym__eq_custom, - STATE(532), 1, - sym__equal_sign, - ACTIONS(9083), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175758] = 4, - ACTIONS(9089), 1, - sym__eq_custom, - STATE(470), 1, - sym__equal_sign, - ACTIONS(9087), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175775] = 5, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4457), 1, - aux_sym__function_value_parameters, - STATE(6058), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175794] = 4, - ACTIONS(9093), 1, - sym__eq_custom, - STATE(471), 1, - sym__equal_sign, - ACTIONS(9091), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175811] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2300), 1, - sym_class_body, - STATE(6014), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175830] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5593), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175843] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5444), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175856] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2305), 1, - sym_protocol_body, - STATE(6017), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175875] = 4, - ACTIONS(9060), 1, - anon_sym_DOT, - STATE(5218), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(9095), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175892] = 5, - ACTIONS(9072), 1, - anon_sym_LT, - ACTIONS(9097), 1, - sym__eq_custom, - STATE(3390), 1, - sym__equal_sign, - STATE(6112), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175911] = 4, - ACTIONS(9101), 1, - anon_sym_COMMA, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(9099), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175928] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5369), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175941] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5450), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [175954] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2244), 1, - sym_enum_class_body, - STATE(6019), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175973] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5032), 1, - sym_class_body, - STATE(6083), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [175992] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9104), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176005] = 4, - ACTIONS(9106), 1, - anon_sym_COMMA, - STATE(5127), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(9109), 2, - sym_where_keyword, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176022] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 4, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [176035] = 4, - ACTIONS(9046), 1, - anon_sym_COMMA, - STATE(5033), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4856), 2, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176052] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5796), 1, - sym_computed_property, - STATE(5997), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176071] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2244), 1, - sym_class_body, - STATE(6035), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176090] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9111), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176103] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9113), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176116] = 5, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4420), 1, - aux_sym__function_value_parameters, - STATE(6129), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176135] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9113), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176148] = 5, - ACTIONS(8144), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4390), 1, - aux_sym__function_value_parameters, - STATE(6134), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176167] = 3, - ACTIONS(9117), 1, - anon_sym_COLON, - ACTIONS(9115), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176182] = 4, - ACTIONS(9121), 1, - sym__eq_custom, - STATE(494), 1, - sym__equal_sign, - ACTIONS(9119), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176199] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6080), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [176212] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [176225] = 5, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2225), 1, - sym_computed_property, - STATE(6145), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176244] = 5, - ACTIONS(9072), 1, - anon_sym_LT, - ACTIONS(9123), 1, - sym__eq_custom, - STATE(3213), 1, - sym__equal_sign, - STATE(6161), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176263] = 5, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2213), 1, - sym_computed_property, - STATE(6077), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176282] = 5, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2322), 1, - sym_computed_property, - STATE(6148), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176301] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5505), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [176314] = 5, - ACTIONS(4380), 1, - anon_sym_LBRACE, - ACTIONS(7271), 1, - sym_where_keyword, - STATE(2345), 1, - sym_computed_property, - STATE(6159), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176333] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5345), 1, - sym_protocol_body, - STATE(6164), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176352] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5553), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [176365] = 5, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4201), 1, - aux_sym__function_value_parameters, - STATE(6039), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176384] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5355), 1, - sym_enum_class_body, - STATE(6166), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176403] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9125), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176416] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8036), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [176429] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9111), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176442] = 5, - ACTIONS(7826), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(4190), 1, - aux_sym__function_value_parameters, - STATE(6042), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176461] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5752), 1, - sym_protocol_body, - STATE(6036), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176480] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7982), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176493] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5381), 1, - sym_protocol_body, - STATE(6175), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176512] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9127), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176525] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7982), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176538] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9129), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176551] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5391), 1, - sym_enum_class_body, - STATE(6182), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176570] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5393), 1, - sym_class_body, - STATE(6186), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176589] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym_protocol_body, - STATE(6187), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176608] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6370), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [176621] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5402), 1, - sym_enum_class_body, - STATE(6189), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176640] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5307), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [176653] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9129), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176666] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9131), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176679] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9127), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176692] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6080), 4, - sym__eq_custom, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_LBRACE, - [176705] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5402), 1, - sym_class_body, - STATE(6207), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176724] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9129), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176737] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9129), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176750] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5418), 1, - sym_protocol_body, - STATE(5964), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176769] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9133), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176782] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5448), 1, - sym_class_body, - STATE(6218), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176801] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5481), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [176814] = 4, - ACTIONS(9135), 1, - anon_sym_COMMA, - STATE(5178), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(4825), 2, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176831] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5325), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [176844] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8801), 4, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_AMP, - anon_sym_LBRACE, - [176857] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9133), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176870] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5450), 1, - sym_protocol_body, - STATE(6219), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176889] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6107), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [176902] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5477), 1, - sym_enum_class_body, - STATE(6222), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176921] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2847), 4, - sym__dot_custom, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - [176934] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4790), 4, - sym__eq_custom, - sym_where_keyword, - sym_else, - anon_sym_COMMA, - [176947] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9138), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [176960] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [176973] = 3, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(9066), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [176988] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9125), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177001] = 3, - ACTIONS(5985), 1, - sym__as_custom, - ACTIONS(9048), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177016] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9133), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177029] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9133), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177042] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(4779), 4, - sym__dot_custom, - sym__eq_custom, - sym__eq_eq_custom, - anon_sym_COLON, - [177055] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9138), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177068] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 4, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - ts_builtin_sym_end, - [177081] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5477), 1, - sym_class_body, - STATE(6245), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177100] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5660), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177113] = 4, - ACTIONS(9060), 1, - anon_sym_DOT, - STATE(5109), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(9140), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177130] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9142), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177143] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6234), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177156] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5601), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177169] = 5, - ACTIONS(3879), 1, - anon_sym_COMMA, - ACTIONS(9144), 1, - anon_sym_COLON, - ACTIONS(9146), 1, - sym_where_keyword, - STATE(5561), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177188] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8051), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [177201] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7907), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177214] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6266), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177227] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6266), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177240] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8179), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177253] = 5, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9148), 1, - anon_sym_LBRACE, - STATE(2892), 1, - sym__block, - STATE(5774), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177272] = 3, - ACTIONS(4648), 1, - sym__as_custom, - ACTIONS(4644), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177287] = 3, - ACTIONS(4642), 1, - sym__as_custom, - ACTIONS(4638), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177302] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8179), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177315] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(7907), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177328] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8179), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177341] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - sym__dot_custom, - anon_sym_RBRACE, - [177354] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5736), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177367] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6318), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177380] = 4, - ACTIONS(9060), 1, - anon_sym_DOT, - STATE(5109), 1, - aux_sym__availability_argument_repeat1, - ACTIONS(4009), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177397] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8179), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177410] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5284), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [177423] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5247), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [177436] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [177449] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5251), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [177462] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5299), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [177475] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5295), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_COMMA, - anon_sym_RBRACE, - [177488] = 5, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9148), 1, - anon_sym_LBRACE, - STATE(2883), 1, - sym__block, - STATE(5209), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177507] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9142), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177520] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5337), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177533] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9150), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177546] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8160), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177559] = 5, - ACTIONS(9072), 1, - anon_sym_LT, - ACTIONS(9152), 1, - sym__eq_custom, - STATE(3342), 1, - sym__equal_sign, - STATE(6183), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177578] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_LBRACE, - [177591] = 5, - ACTIONS(7463), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(3931), 1, - aux_sym__function_value_parameters, - STATE(6020), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177610] = 5, - ACTIONS(7463), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - anon_sym_LT, - STATE(3892), 1, - aux_sym__function_value_parameters, - STATE(6015), 1, - sym_type_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177629] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8160), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177642] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6358), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177655] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5353), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177668] = 5, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9040), 1, - anon_sym_LBRACE, - STATE(4957), 1, - sym__block, - STATE(5021), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177687] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5611), 1, - sym_protocol_property_requirements, - STATE(6155), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177706] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8049), 4, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LPAREN, - anon_sym_LBRACE, - [177719] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(2779), 5, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177732] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8160), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177745] = 5, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5060), 1, - sym_enum_class_body, - STATE(6143), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177764] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(6374), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177777] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5341), 4, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - anon_sym_RBRACE, - [177790] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8160), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177803] = 2, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(9150), 4, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177816] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_GT, - STATE(5249), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177832] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9158), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177848] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9160), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177864] = 2, - ACTIONS(2772), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177876] = 3, - ACTIONS(9162), 1, - anon_sym_BANG, - ACTIONS(4622), 2, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177890] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3186), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [177902] = 2, - ACTIONS(5985), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177914] = 2, - ACTIONS(5349), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177926] = 4, - ACTIONS(9164), 1, - anon_sym_COMMA, - ACTIONS(9166), 1, - anon_sym_RBRACK, - STATE(5273), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177942] = 2, - ACTIONS(5345), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177954] = 2, - ACTIONS(4642), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177966] = 2, - ACTIONS(4648), 3, - sym_where_keyword, - sym__as_custom, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [177978] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(3190), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [177990] = 2, - ACTIONS(2357), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178002] = 2, - ACTIONS(5425), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178014] = 2, - ACTIONS(9168), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178026] = 2, - ACTIONS(9170), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178038] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9172), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178054] = 2, - ACTIONS(5454), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178066] = 4, - ACTIONS(9174), 1, - anon_sym_RPAREN, - ACTIONS(9176), 1, - anon_sym_COMMA, - STATE(5286), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178082] = 2, - ACTIONS(5425), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178094] = 2, - ACTIONS(5421), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178106] = 2, - ACTIONS(9170), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178118] = 4, - ACTIONS(9178), 1, - anon_sym_COMMA, - ACTIONS(9180), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178134] = 2, - ACTIONS(5361), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178146] = 4, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178162] = 2, - ACTIONS(9186), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178174] = 2, - ACTIONS(5329), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178186] = 2, - ACTIONS(5421), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178198] = 2, - ACTIONS(9188), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178210] = 4, - ACTIONS(9190), 1, - anon_sym_RPAREN, - ACTIONS(9192), 1, - anon_sym_COMMA, - STATE(5288), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178226] = 2, - ACTIONS(5333), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178238] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9194), 1, - anon_sym_GT, - STATE(5290), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178254] = 4, - ACTIONS(9196), 1, - anon_sym_RPAREN, - ACTIONS(9198), 1, - anon_sym_COMMA, - STATE(5291), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178270] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9200), 1, - anon_sym_RPAREN, - STATE(5293), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178286] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9200), 1, - anon_sym_RBRACK, - STATE(5294), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178302] = 2, - ACTIONS(5728), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178314] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9202), 1, - anon_sym_RBRACK, - STATE(5295), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178330] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9204), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178346] = 2, - ACTIONS(5740), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178358] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9206), 1, - anon_sym_RPAREN, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178374] = 4, - ACTIONS(9208), 1, - anon_sym_RPAREN, - ACTIONS(9210), 1, - anon_sym_COMMA, - STATE(5299), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178390] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9212), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178406] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9214), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178422] = 3, - STATE(2045), 1, - sym_lambda_literal, - ACTIONS(8065), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178436] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9216), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178452] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9216), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178468] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9218), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178484] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9220), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178500] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(8672), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [178512] = 2, - ACTIONS(5747), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178524] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9222), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178540] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9224), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178556] = 2, - ACTIONS(5728), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178568] = 4, - ACTIONS(9226), 1, - anon_sym_RPAREN, - ACTIONS(9228), 1, - anon_sym_COMMA, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178584] = 2, - ACTIONS(5501), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178596] = 2, - ACTIONS(5513), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178608] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9231), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178624] = 2, - ACTIONS(5501), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178636] = 2, - ACTIONS(9233), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178648] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9235), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178664] = 4, - ACTIONS(3577), 1, - sym__dot_custom, - STATE(1650), 1, - sym_navigation_suffix, - STATE(4605), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178680] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9237), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178696] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9239), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178712] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9241), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178728] = 2, - ACTIONS(5509), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178740] = 2, - ACTIONS(9243), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178752] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9245), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178768] = 2, - ACTIONS(5724), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178780] = 2, - ACTIONS(5485), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178792] = 2, - ACTIONS(6030), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178804] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9245), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178820] = 4, - ACTIONS(3619), 1, - sym__dot_custom, - STATE(1678), 1, - sym_navigation_suffix, - STATE(4612), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178836] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5353), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [178848] = 4, - ACTIONS(9247), 1, - anon_sym_COMMA, - ACTIONS(9249), 1, - anon_sym_RBRACK, - STATE(5344), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178864] = 3, - STATE(1593), 1, - sym_lambda_literal, - ACTIONS(4015), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178878] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9251), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178894] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5413), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [178906] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9253), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178922] = 4, - ACTIONS(3879), 1, - anon_sym_COMMA, - ACTIONS(9144), 1, - anon_sym_COLON, - STATE(5545), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178938] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9255), 1, - anon_sym_RPAREN, - STATE(5308), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178954] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9257), 1, - anon_sym_RPAREN, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178970] = 4, - ACTIONS(9259), 1, - anon_sym_RPAREN, - ACTIONS(9261), 1, - anon_sym_COMMA, - STATE(5330), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178986] = 2, - ACTIONS(5489), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [178998] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5409), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179010] = 4, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5216), 1, - sym__block, - STATE(5486), 1, - sym_function_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179026] = 2, - ACTIONS(5517), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179038] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9264), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179054] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5405), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179066] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9266), 1, - anon_sym_RPAREN, - STATE(5356), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179082] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5393), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179094] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8650), 1, - anon_sym_LBRACE, - STATE(6337), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179110] = 4, - ACTIONS(9268), 1, - anon_sym_in, - ACTIONS(9270), 1, - sym__arrow_operator_custom, - STATE(3088), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179126] = 3, - STATE(4202), 1, - sym__binding_pattern_kind, - ACTIONS(3226), 2, - anon_sym_let, - anon_sym_var, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179140] = 4, - ACTIONS(9272), 1, - anon_sym_COMMA, - ACTIONS(9274), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179156] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9276), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179172] = 4, - ACTIONS(9278), 1, - anon_sym_COMMA, - ACTIONS(9280), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179188] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5389), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179200] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9282), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179216] = 3, - ACTIONS(9286), 1, - sym_raw_str_continuing_indicator, - ACTIONS(9284), 2, - sym_raw_str_part, - sym_raw_str_end_part, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179230] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8650), 1, - anon_sym_LBRACE, - STATE(6350), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179246] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9288), 1, - anon_sym_GT, - STATE(5363), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179262] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9290), 1, - anon_sym_RPAREN, - STATE(5364), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179278] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9292), 1, - anon_sym_RPAREN, - STATE(5366), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179294] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9292), 1, - anon_sym_RBRACK, - STATE(5367), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179310] = 2, - ACTIONS(5458), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179322] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9294), 1, - anon_sym_RBRACK, - STATE(5368), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179338] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5381), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179350] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9296), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179366] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5377), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179378] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5373), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179390] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5509), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179402] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9298), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179418] = 4, - ACTIONS(9300), 1, - anon_sym_COMMA, - ACTIONS(9302), 1, - anon_sym_RBRACK, - STATE(5392), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179434] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9304), 1, - anon_sym_RPAREN, - STATE(5372), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179450] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9306), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179466] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9308), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179482] = 3, - STATE(1563), 1, - sym_lambda_literal, - ACTIONS(3897), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179496] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9310), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179512] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9310), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179528] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9312), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179544] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9314), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179560] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5724), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179572] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5369), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179584] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9316), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179600] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9318), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179616] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9320), 1, - anon_sym_RBRACK, - STATE(5312), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179632] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8702), 1, - anon_sym_LBRACE, - STATE(6351), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179648] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9322), 1, - anon_sym_RBRACK, - STATE(5315), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179664] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5365), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179676] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9322), 1, - anon_sym_RPAREN, - STATE(5319), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179692] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9324), 1, - anon_sym_RPAREN, - STATE(5324), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179708] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9326), 1, - anon_sym_GT, - STATE(5326), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179724] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5357), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179736] = 4, - ACTIONS(2521), 1, - sym__dot_custom, - STATE(871), 1, - sym_navigation_suffix, - STATE(4541), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179752] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9328), 1, - anon_sym_RPAREN, - STATE(5329), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179768] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9330), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179784] = 2, - ACTIONS(9332), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179796] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5605), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179808] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8650), 1, - anon_sym_LBRACE, - STATE(6360), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179824] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5349), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179836] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5345), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179848] = 4, - ACTIONS(9334), 1, - anon_sym_COMMA, - ACTIONS(9336), 1, - anon_sym_RBRACK, - STATE(5566), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179864] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5341), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179876] = 4, - ACTIONS(9338), 1, - anon_sym_COMMA, - ACTIONS(9340), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179892] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5337), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179904] = 2, - ACTIONS(4825), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179916] = 4, - ACTIONS(9342), 1, - anon_sym_COMMA, - ACTIONS(9344), 1, - anon_sym_RBRACK, - STATE(5417), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179932] = 2, - ACTIONS(4910), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179944] = 2, - ACTIONS(4914), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179956] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5333), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [179968] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8650), 1, - anon_sym_LBRACE, - STATE(6379), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [179984] = 4, - ACTIONS(9346), 1, - anon_sym_COMMA, - ACTIONS(9348), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180000] = 2, - ACTIONS(5497), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180012] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5325), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180024] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5481), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180036] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8702), 1, - anon_sym_LBRACE, - STATE(6384), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180052] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5497), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180064] = 2, - ACTIONS(9350), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180076] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9352), 1, - anon_sym_RPAREN, - STATE(5360), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180092] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9354), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180108] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5593), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180120] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9356), 1, - anon_sym_RPAREN, - STATE(5429), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180136] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5613), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180148] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5385), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180160] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9358), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180176] = 2, - ACTIONS(549), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180188] = 4, - ACTIONS(9360), 1, - anon_sym_COMMA, - ACTIONS(9362), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180204] = 2, - ACTIONS(6302), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180216] = 4, - ACTIONS(9364), 1, - anon_sym_COMMA, - ACTIONS(9366), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180232] = 2, - ACTIONS(5357), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180244] = 2, - ACTIONS(6310), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180256] = 2, - ACTIONS(6314), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180268] = 2, - ACTIONS(6338), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180280] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9368), 1, - anon_sym_GT, - STATE(5436), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180296] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9370), 1, - anon_sym_RPAREN, - STATE(5437), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180312] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9372), 1, - anon_sym_RPAREN, - STATE(5439), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180328] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9372), 1, - anon_sym_RBRACK, - STATE(5440), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180344] = 2, - ACTIONS(6350), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180356] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9374), 1, - anon_sym_RBRACK, - STATE(5441), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180372] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9376), 1, - anon_sym_GT, - STATE(5520), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180388] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9378), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180404] = 2, - ACTIONS(6354), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180416] = 2, - ACTIONS(6230), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180428] = 2, - ACTIONS(4900), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180440] = 2, - ACTIONS(4896), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180452] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8538), 1, - anon_sym_LBRACE, - STATE(6470), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180468] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9380), 1, - anon_sym_RPAREN, - STATE(5445), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180484] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9382), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180500] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9384), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180516] = 3, - STATE(2003), 1, - sym_lambda_literal, - ACTIONS(8191), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180530] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9386), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180546] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9386), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180562] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9388), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180578] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9390), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180594] = 4, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5216), 1, - sym__block, - STATE(5586), 1, - sym_function_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180610] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8538), 1, - anon_sym_LBRACE, - STATE(6478), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180626] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9392), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180642] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9394), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180658] = 2, - ACTIONS(6262), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180670] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5623), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180682] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5627), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180694] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5635), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180706] = 4, - ACTIONS(9396), 1, - anon_sym_COMMA, - ACTIONS(9398), 1, - sym_else, - STATE(5606), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180722] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5639), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180734] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9400), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180750] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9402), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180766] = 4, - ACTIONS(2571), 1, - sym__dot_custom, - STATE(916), 1, - sym_navigation_suffix, - STATE(4583), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180782] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5501), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180794] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5513), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180806] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5664), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180818] = 4, - ACTIONS(2403), 1, - sym__dot_custom, - STATE(654), 1, - sym_navigation_suffix, - STATE(4585), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180834] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(6492), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180850] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8538), 1, - anon_sym_LBRACE, - STATE(6451), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180866] = 4, - ACTIONS(9404), 1, - anon_sym_LBRACE, - STATE(5663), 1, - sym_function_body, - STATE(5666), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180882] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9406), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180898] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5617), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [180910] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9408), 1, - anon_sym_RPAREN, - STATE(5472), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180926] = 4, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9410), 1, - anon_sym_LBRACE, - STATE(5617), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180942] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8538), 1, - anon_sym_LBRACE, - STATE(6530), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180958] = 2, - ACTIONS(5668), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180970] = 4, - ACTIONS(9412), 1, - anon_sym_COMMA, - ACTIONS(9414), 1, - anon_sym_RBRACK, - STATE(5491), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [180986] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9416), 1, - anon_sym_GT, - STATE(5475), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181002] = 4, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2928), 1, - sym_function_body, - STATE(2971), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181018] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9418), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181034] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5643), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181046] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9420), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181062] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9422), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181078] = 3, - STATE(1558), 1, - sym_lambda_literal, - ACTIONS(3825), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181092] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5477), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181104] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(6509), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181120] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9424), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181136] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5469), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181148] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5401), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181160] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9426), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181176] = 2, - ACTIONS(9109), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181188] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9428), 1, - anon_sym_RPAREN, - STATE(5548), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181204] = 2, - ACTIONS(9430), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181216] = 2, - ACTIONS(5732), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181228] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9432), 1, - anon_sym_RPAREN, - STATE(5493), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181244] = 4, - ACTIONS(9434), 1, - anon_sym_COMMA, - ACTIONS(9436), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181260] = 4, - ACTIONS(9438), 1, - anon_sym_RPAREN, - ACTIONS(9440), 1, - anon_sym_COMMA, - STATE(5489), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181276] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5501), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181288] = 4, - ACTIONS(9443), 1, - anon_sym_COMMA, - ACTIONS(9445), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181304] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9447), 1, - anon_sym_GT, - STATE(5496), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181320] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9449), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181336] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5557), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181348] = 2, - ACTIONS(9451), 3, - sym_where_keyword, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181360] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9453), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181376] = 3, - STATE(977), 1, - sym_lambda_literal, - ACTIONS(8296), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181390] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9455), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181406] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9457), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181422] = 2, - ACTIONS(9099), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181434] = 4, - ACTIONS(9459), 1, - anon_sym_COMMA, - ACTIONS(9462), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181450] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9464), 1, - anon_sym_RPAREN, - STATE(5620), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181466] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5473), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181478] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5597), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181490] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5581), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181502] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9466), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181518] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9466), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181534] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9468), 1, - anon_sym_RPAREN, - STATE(5514), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181550] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5577), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181562] = 3, - STATE(2169), 1, - sym_lambda_literal, - ACTIONS(8271), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181576] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5565), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181588] = 2, - ACTIONS(5720), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181600] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9470), 1, - anon_sym_GT, - STATE(5517), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181616] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9472), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181632] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9474), 1, - anon_sym_GT, - STATE(5572), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181648] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9476), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181664] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9478), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181680] = 3, - STATE(836), 1, - sym_lambda_literal, - ACTIONS(2597), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181694] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9480), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181710] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9482), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181726] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9484), 1, - anon_sym_RPAREN, - STATE(5479), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181742] = 2, - ACTIONS(5605), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181754] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9486), 1, - anon_sym_RPAREN, - STATE(5573), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181770] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9488), 1, - anon_sym_RPAREN, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181786] = 2, - ACTIONS(5613), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181798] = 2, - ACTIONS(5675), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181810] = 4, - ACTIONS(9490), 1, - anon_sym_RPAREN, - ACTIONS(9492), 1, - anon_sym_COMMA, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181826] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9495), 1, - anon_sym_RPAREN, - STATE(5575), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181842] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9497), 1, - anon_sym_RPAREN, - STATE(5535), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181858] = 4, - ACTIONS(9499), 1, - sym_raw_str_part, - ACTIONS(9502), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181874] = 2, - ACTIONS(9078), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181886] = 4, - ACTIONS(9504), 1, - anon_sym_RPAREN, - ACTIONS(9506), 1, - anon_sym_COMMA, - STATE(5690), 1, - aux_sym__interpolation_contents_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181902] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9495), 1, - anon_sym_RBRACK, - STATE(5578), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181918] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9508), 1, - anon_sym_GT, - STATE(5538), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181934] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9510), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181950] = 4, - ACTIONS(9512), 1, - anon_sym_RPAREN, - ACTIONS(9514), 1, - anon_sym_COMMA, - STATE(5584), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181966] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5529), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [181978] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9516), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [181994] = 3, - STATE(1893), 1, - sym_lambda_literal, - ACTIONS(8254), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182008] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9518), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182024] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5525), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [182036] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5521), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [182048] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9520), 1, - anon_sym_RBRACK, - STATE(5499), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182064] = 4, - ACTIONS(9522), 1, - anon_sym_LBRACE, - STATE(2251), 1, - sym_function_body, - STATE(2336), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182080] = 4, - ACTIONS(9524), 1, - anon_sym_COMMA, - ACTIONS(9527), 1, - anon_sym_COLON, - STATE(5545), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182096] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9529), 1, - anon_sym_RBRACK, - STATE(5506), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182112] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9531), 1, - anon_sym_RBRACK, - STATE(5594), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182128] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9533), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182144] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9529), 1, - anon_sym_RPAREN, - STATE(5507), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182160] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9535), 1, - anon_sym_RPAREN, - STATE(5556), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182176] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9537), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182192] = 2, - ACTIONS(9539), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182204] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9541), 1, - anon_sym_RPAREN, - STATE(5519), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182220] = 4, - ACTIONS(9543), 1, - anon_sym_RPAREN, - ACTIONS(9545), 1, - anon_sym_COMMA, - STATE(5605), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182236] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9547), 1, - anon_sym_GT, - STATE(5559), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182252] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9549), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182268] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9551), 1, - anon_sym_RPAREN, - STATE(5721), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182284] = 4, - ACTIONS(6156), 1, - sym_else, - ACTIONS(9553), 1, - anon_sym_COMMA, - STATE(5558), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182300] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9556), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182316] = 3, - STATE(1519), 1, - sym_lambda_literal, - ACTIONS(3713), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182330] = 4, - ACTIONS(3879), 1, - anon_sym_COMMA, - ACTIONS(3881), 1, - anon_sym_COLON, - STATE(5545), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182346] = 2, - ACTIONS(5627), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182358] = 2, - ACTIONS(9558), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182370] = 2, - ACTIONS(5635), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182382] = 4, - ACTIONS(9560), 1, - anon_sym_COMMA, - ACTIONS(9562), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182398] = 4, - ACTIONS(9564), 1, - anon_sym_COMMA, - ACTIONS(9566), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182414] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9568), 1, - anon_sym_RPAREN, - STATE(5524), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182430] = 4, - ACTIONS(8420), 1, - anon_sym_RPAREN, - ACTIONS(9570), 1, - anon_sym_COMMA, - STATE(5568), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182446] = 4, - ACTIONS(9573), 1, - anon_sym_COMMA, - ACTIONS(9575), 1, - anon_sym_RBRACK, - STATE(5747), 1, - aux_sym_capture_list_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182462] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9577), 1, - anon_sym_RPAREN, - STATE(5609), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182478] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9579), 1, - anon_sym_RPAREN, - STATE(5577), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182494] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9581), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182510] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9583), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182526] = 3, - STATE(1494), 1, - sym_lambda_literal, - ACTIONS(3631), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182540] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9585), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182556] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9587), 1, - anon_sym_GT, - STATE(5580), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182572] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9589), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182588] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9585), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182604] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9591), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182620] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9593), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182636] = 3, - STATE(1737), 1, - sym_lambda_literal, - ACTIONS(8351), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182650] = 4, - ACTIONS(9595), 1, - anon_sym_COMMA, - ACTIONS(9597), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182666] = 4, - ACTIONS(8339), 1, - anon_sym_in, - ACTIONS(8341), 1, - sym__arrow_operator_custom, - STATE(3069), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182682] = 4, - ACTIONS(9514), 1, - anon_sym_COMMA, - ACTIONS(9599), 1, - anon_sym_RPAREN, - STATE(5489), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182698] = 4, - ACTIONS(9601), 1, - anon_sym_COMMA, - ACTIONS(9603), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182714] = 2, - ACTIONS(6298), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182726] = 2, - ACTIONS(6306), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182738] = 2, - ACTIONS(6326), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182750] = 2, - ACTIONS(6330), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182762] = 2, - ACTIONS(6270), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182774] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9605), 1, - anon_sym_RPAREN, - STATE(5540), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182790] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9607), 1, - anon_sym_RPAREN, - STATE(5598), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182806] = 4, - ACTIONS(9522), 1, - anon_sym_LBRACE, - STATE(2262), 1, - sym_function_body, - STATE(2336), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182822] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9609), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182838] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9611), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182854] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5444), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [182866] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9613), 1, - anon_sym_GT, - STATE(5601), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182882] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9615), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182898] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5450), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [182910] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9617), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182926] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9619), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182942] = 3, - STATE(1457), 1, - sym_lambda_literal, - ACTIONS(3555), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182956] = 4, - ACTIONS(9621), 1, - anon_sym_RPAREN, - ACTIONS(9623), 1, - anon_sym_COMMA, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182972] = 2, - ACTIONS(9626), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [182984] = 4, - ACTIONS(9545), 1, - anon_sym_COMMA, - ACTIONS(9628), 1, - anon_sym_RPAREN, - STATE(5330), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183000] = 4, - ACTIONS(9396), 1, - anon_sym_COMMA, - ACTIONS(9630), 1, - sym_else, - STATE(5558), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183016] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9632), 1, - anon_sym_RPAREN, - STATE(5861), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183032] = 2, - ACTIONS(9634), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183044] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9636), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183060] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9638), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183076] = 2, - ACTIONS(9640), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183088] = 2, - ACTIONS(4648), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183100] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9642), 1, - anon_sym_RPAREN, - STATE(5619), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183116] = 2, - ACTIONS(4642), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183128] = 2, - ACTIONS(5985), 3, - sym__as_custom, - anon_sym_COLON, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183140] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9644), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183156] = 4, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9646), 1, - anon_sym_LBRACE, - STATE(5774), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183172] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9648), 1, - anon_sym_GT, - STATE(5622), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183188] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9650), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183204] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9652), 1, - anon_sym_RPAREN, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183220] = 2, - ACTIONS(5573), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183232] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9654), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183248] = 3, - STATE(720), 1, - sym_lambda_literal, - ACTIONS(8353), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183262] = 2, - ACTIONS(9656), 3, - sym_where_keyword, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183274] = 2, - ACTIONS(9640), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183286] = 4, - ACTIONS(9658), 1, - anon_sym_COMMA, - ACTIONS(9660), 1, - anon_sym_RBRACK, - STATE(5582), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183302] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5553), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183314] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5561), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183326] = 2, - ACTIONS(5373), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183338] = 2, - ACTIONS(5561), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183350] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5573), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183362] = 4, - ACTIONS(9545), 1, - anon_sym_COMMA, - ACTIONS(9662), 1, - anon_sym_RPAREN, - STATE(5330), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183378] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9664), 1, - anon_sym_GT, - STATE(5813), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183394] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9666), 1, - anon_sym_RPAREN, - STATE(5640), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183410] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9668), 1, - anon_sym_RPAREN, - STATE(5812), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183426] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9670), 1, - anon_sym_RPAREN, - STATE(5809), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183442] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9670), 1, - anon_sym_RBRACK, - STATE(5808), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183458] = 2, - ACTIONS(8966), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183470] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9672), 1, - anon_sym_GT, - STATE(5643), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183486] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9674), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183502] = 4, - ACTIONS(8457), 1, - anon_sym_RPAREN, - ACTIONS(9676), 1, - anon_sym_COMMA, - STATE(5568), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183518] = 4, - ACTIONS(9514), 1, - anon_sym_COMMA, - ACTIONS(9678), 1, - anon_sym_RPAREN, - STATE(5799), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183534] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9680), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183550] = 3, - STATE(643), 1, - sym_lambda_literal, - ACTIONS(2419), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183564] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9682), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183580] = 4, - ACTIONS(3745), 1, - sym__dot_custom, - STATE(1960), 1, - sym_navigation_suffix, - STATE(4511), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183596] = 2, - ACTIONS(9684), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183608] = 4, - ACTIONS(9686), 1, - anon_sym_COMMA, - ACTIONS(9689), 1, - anon_sym_RBRACK, - STATE(5648), 1, - aux_sym_capture_list_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183624] = 4, - ACTIONS(3963), 1, - sym__dot_custom, - STATE(2029), 1, - sym_navigation_suffix, - STATE(4615), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183640] = 4, - ACTIONS(9522), 1, - anon_sym_LBRACE, - STATE(2333), 1, - sym_function_body, - STATE(2336), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183656] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(9691), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183672] = 2, - ACTIONS(7965), 3, - sym__arrow_operator_custom, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183684] = 2, - ACTIONS(9693), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183696] = 4, - ACTIONS(9695), 1, - anon_sym_COMMA, - ACTIONS(9697), 1, - anon_sym_RBRACK, - STATE(5671), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183712] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9699), 1, - anon_sym_RPAREN, - STATE(5661), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183728] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5660), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183740] = 4, - ACTIONS(8602), 1, - anon_sym_in, - ACTIONS(8604), 1, - sym__arrow_operator_custom, - STATE(3020), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183756] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5675), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183768] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5601), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183780] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9701), 1, - anon_sym_GT, - STATE(5664), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183796] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9703), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183812] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5720), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183824] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5732), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183836] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9705), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183852] = 3, - STATE(917), 1, - sym_lambda_literal, - ACTIONS(8304), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183866] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5736), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183878] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9707), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183894] = 4, - ACTIONS(9709), 1, - anon_sym_RPAREN, - ACTIONS(9711), 1, - anon_sym_COMMA, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183910] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9714), 1, - anon_sym_RPAREN, - STATE(5698), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183926] = 4, - ACTIONS(9716), 1, - anon_sym_COMMA, - ACTIONS(9718), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183942] = 4, - ACTIONS(9720), 1, - anon_sym_COMMA, - ACTIONS(9722), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183958] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9724), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [183974] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5668), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [183986] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9726), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184002] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9728), 1, - anon_sym_RPAREN, - STATE(5709), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184018] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9730), 1, - anon_sym_RPAREN, - STATE(5682), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184034] = 4, - ACTIONS(8385), 1, - anon_sym_RPAREN, - ACTIONS(9676), 1, - anon_sym_COMMA, - STATE(5641), 1, - aux_sym_lambda_function_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184050] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9732), 1, - anon_sym_GT, - STATE(5731), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184066] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8555), 1, - anon_sym_LBRACE, - STATE(6567), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184082] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9734), 1, - anon_sym_RPAREN, - STATE(5733), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184098] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9736), 1, - anon_sym_GT, - STATE(5685), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184114] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9738), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184130] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9740), 1, - anon_sym_RPAREN, - STATE(5736), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184146] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9742), 1, - anon_sym_RPAREN, - STATE(5748), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184162] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9744), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184178] = 3, - STATE(828), 1, - sym_lambda_literal, - ACTIONS(2535), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184192] = 4, - ACTIONS(9404), 1, - anon_sym_LBRACE, - STATE(5359), 1, - sym_function_body, - STATE(5666), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184208] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9740), 1, - anon_sym_RBRACK, - STATE(5738), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184224] = 2, - ACTIONS(9746), 3, - sym_raw_str_part, - sym_raw_str_continuing_indicator, - sym_raw_str_end_part, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184236] = 4, - ACTIONS(9506), 1, - anon_sym_COMMA, - ACTIONS(9748), 1, - anon_sym_RPAREN, - STATE(5712), 1, - aux_sym__interpolation_contents_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184252] = 4, - ACTIONS(9514), 1, - anon_sym_COMMA, - ACTIONS(9750), 1, - anon_sym_RPAREN, - STATE(5739), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184268] = 4, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5216), 1, - sym__block, - STATE(5317), 1, - sym_function_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184284] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5485), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [184296] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9752), 1, - anon_sym_RBRACK, - STATE(5754), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184312] = 4, - ACTIONS(9545), 1, - anon_sym_COMMA, - ACTIONS(9754), 1, - anon_sym_RPAREN, - STATE(5330), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184328] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5517), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [184340] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9756), 1, - anon_sym_RPAREN, - STATE(5703), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184356] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9758), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184372] = 3, - STATE(1563), 1, - sym_lambda_literal, - ACTIONS(3845), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184386] = 3, - STATE(1511), 1, - sym_lambda_literal, - ACTIONS(4167), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184400] = 2, - ACTIONS(5011), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184412] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9760), 1, - anon_sym_GT, - STATE(5706), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184428] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9762), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184444] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5505), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [184456] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9764), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184472] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9766), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184488] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9768), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184504] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5489), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [184516] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9770), 1, - anon_sym_RPAREN, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184532] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8555), 1, - anon_sym_LBRACE, - STATE(6452), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184548] = 4, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(9772), 1, - anon_sym_RPAREN, - STATE(5834), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184564] = 4, - ACTIONS(9774), 1, - anon_sym_RPAREN, - ACTIONS(9776), 1, - anon_sym_COMMA, - STATE(5712), 1, - aux_sym__interpolation_contents_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184580] = 4, - ACTIONS(9404), 1, - anon_sym_LBRACE, - STATE(5666), 1, - sym__block, - STATE(5693), 1, - sym_function_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184596] = 4, - ACTIONS(9545), 1, - anon_sym_COMMA, - ACTIONS(9779), 1, - anon_sym_RPAREN, - STATE(5765), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184612] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9781), 1, - anon_sym_RBRACK, - STATE(5579), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184628] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9783), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184644] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9785), 1, - anon_sym_RPAREN, - STATE(5723), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184660] = 4, - ACTIONS(9787), 1, - anon_sym_RPAREN, - ACTIONS(9789), 1, - anon_sym_COMMA, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184676] = 2, - ACTIONS(5469), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184688] = 4, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(9792), 1, - anon_sym_RPAREN, - STATE(5834), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184704] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9794), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184720] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9796), 1, - anon_sym_GT, - STATE(5726), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184736] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9798), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184752] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9800), 1, - anon_sym_RPAREN, - STATE(5770), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184768] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9783), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184784] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9802), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184800] = 2, - ACTIONS(5401), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184812] = 3, - STATE(1511), 1, - sym_lambda_literal, - ACTIONS(3709), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184826] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9804), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184842] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9806), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184858] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9808), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184874] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9810), 1, - anon_sym_RPAREN, - STATE(5616), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184890] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9812), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184906] = 3, - STATE(1882), 1, - sym_lambda_literal, - ACTIONS(7117), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184920] = 4, - ACTIONS(9814), 1, - anon_sym_get, - ACTIONS(9816), 1, - anon_sym_set, - ACTIONS(9818), 1, - anon_sym__modify, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184936] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9820), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184952] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9822), 1, - anon_sym_RPAREN, - STATE(5743), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184968] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9820), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [184984] = 4, - ACTIONS(9514), 1, - anon_sym_COMMA, - ACTIONS(9824), 1, - anon_sym_RPAREN, - STATE(5489), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185000] = 4, - ACTIONS(9826), 1, - anon_sym_COMMA, - ACTIONS(9829), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185016] = 4, - ACTIONS(9831), 1, - anon_sym_COMMA, - ACTIONS(9834), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185032] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9836), 1, - anon_sym_GT, - STATE(5746), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185048] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9838), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185064] = 4, - ACTIONS(8214), 1, - anon_sym_in, - ACTIONS(8216), 1, - sym__arrow_operator_custom, - STATE(3115), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185080] = 4, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(9840), 1, - anon_sym_RPAREN, - STATE(5834), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185096] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9842), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185112] = 4, - ACTIONS(9573), 1, - anon_sym_COMMA, - ACTIONS(9844), 1, - anon_sym_RBRACK, - STATE(5648), 1, - aux_sym_capture_list_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185128] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(9846), 1, - anon_sym_RPAREN, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185144] = 4, - ACTIONS(9545), 1, - anon_sym_COMMA, - ACTIONS(9848), 1, - anon_sym_RPAREN, - STATE(5695), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185160] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5458), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [185172] = 4, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(9850), 1, - anon_sym_RPAREN, - STATE(5834), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185188] = 2, - ACTIONS(5389), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185200] = 4, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5216), 1, - sym__block, - STATE(5313), 1, - sym_function_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185216] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9852), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185232] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(9854), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185248] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9856), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185264] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9858), 1, - anon_sym_RPAREN, - STATE(5763), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185280] = 4, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9860), 1, - anon_sym_LBRACE, - STATE(5774), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185296] = 2, - ACTIONS(6134), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185308] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9862), 1, - anon_sym_RBRACK, - STATE(5707), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185324] = 4, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(9864), 1, - anon_sym_RPAREN, - STATE(5834), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185340] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9866), 1, - anon_sym_GT, - STATE(5766), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185356] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9868), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185372] = 4, - ACTIONS(9396), 1, - anon_sym_COMMA, - ACTIONS(9870), 1, - sym_else, - STATE(5558), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185388] = 4, - ACTIONS(9545), 1, - anon_sym_COMMA, - ACTIONS(9872), 1, - anon_sym_RPAREN, - STATE(5330), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185404] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9874), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185420] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8536), 1, - anon_sym_LBRACE, - STATE(6445), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185436] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5425), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [185448] = 4, - ACTIONS(9545), 1, - anon_sym_COMMA, - ACTIONS(9876), 1, - anon_sym_RPAREN, - STATE(5632), 1, - aux_sym_availability_condition_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185464] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9878), 1, - anon_sym_RPAREN, - STATE(5302), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185480] = 4, - ACTIONS(9038), 1, - anon_sym_COMMA, - ACTIONS(9880), 1, - anon_sym_LBRACE, - STATE(5758), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185496] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5454), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [185508] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5728), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [185520] = 4, - ACTIONS(6156), 1, - anon_sym_LBRACE, - ACTIONS(9882), 1, - anon_sym_COMMA, - STATE(5774), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185536] = 4, - ACTIONS(9396), 1, - anon_sym_COMMA, - ACTIONS(9885), 1, - sym_else, - STATE(5764), 1, - aux_sym_if_statement_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185552] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5425), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [185564] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9887), 1, - anon_sym_RPAREN, - STATE(5783), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185580] = 4, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(9889), 1, - anon_sym_RPAREN, - STATE(5527), 1, - aux_sym__playground_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185596] = 4, - ACTIONS(7271), 1, - sym_where_keyword, - ACTIONS(8536), 1, - anon_sym_LBRACE, - STATE(6431), 1, - sym_type_constraints, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185612] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9891), 1, - anon_sym_RBRACK, - STATE(5716), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185628] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9893), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185644] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9895), 1, - anon_sym_GT, - STATE(5786), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185660] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9897), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185676] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9899), 1, - anon_sym_GT, - STATE(5781), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185692] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9891), 1, - anon_sym_RPAREN, - STATE(5725), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185708] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9901), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185724] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9903), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185740] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9905), 1, - anon_sym_RPAREN, - STATE(5729), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185756] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9907), 1, - anon_sym_GT, - STATE(5730), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185772] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9909), 1, - anon_sym_GT, - STATE(5787), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185788] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9911), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185804] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9913), 1, - anon_sym_GT, - STATE(5791), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185820] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9915), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185836] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9917), 1, - anon_sym_GT, - STATE(5793), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185852] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9919), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185868] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5747), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [185880] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9921), 1, - anon_sym_RPAREN, - STATE(5803), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185896] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9923), 1, - anon_sym_GT, - STATE(5795), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185912] = 4, - ACTIONS(9514), 1, - anon_sym_COMMA, - ACTIONS(9925), 1, - anon_sym_RPAREN, - STATE(5489), 1, - aux_sym__function_value_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185928] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9927), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185944] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9929), 1, - anon_sym_GT, - STATE(5800), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185960] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9931), 1, - anon_sym_GT, - STATE(5806), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185976] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9933), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [185992] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9935), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186008] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5740), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [186020] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9937), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186036] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9939), 1, - anon_sym_GT, - STATE(5804), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186052] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9941), 1, - anon_sym_RBRACK, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186068] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9941), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186084] = 3, - STATE(1843), 1, - sym_lambda_literal, - ACTIONS(8246), 2, - anon_sym_LBRACE, - anon_sym_CARET_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186098] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9943), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186114] = 4, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9945), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym__constructor_value_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186130] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9947), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186146] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9949), 1, - anon_sym_GT, - STATE(5811), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186162] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9951), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186178] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5728), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [186190] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9953), 1, - anon_sym_RPAREN, - STATE(5823), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186206] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9955), 1, - anon_sym_GT, - STATE(5815), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186222] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9957), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186238] = 4, - ACTIONS(9210), 1, - anon_sym_COMMA, - ACTIONS(9959), 1, - anon_sym_RPAREN, - STATE(5516), 1, - aux_sym_attribute_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186254] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9961), 1, - anon_sym_GT, - STATE(5819), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186270] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9963), 1, - anon_sym_GT, - STATE(5826), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186286] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9965), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186302] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9967), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186318] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9969), 1, - anon_sym_GT, - STATE(5824), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186334] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9971), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186350] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9973), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186366] = 4, - ACTIONS(3879), 1, - anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_COLON, - STATE(5545), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186382] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9975), 1, - anon_sym_GT, - STATE(5827), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186398] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9977), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186414] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9979), 1, - anon_sym_GT, - STATE(5830), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186430] = 2, - ACTIONS(5597), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186442] = 2, - ACTIONS(5581), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186454] = 4, - ACTIONS(9981), 1, - anon_sym_RPAREN, - ACTIONS(9983), 1, - anon_sym_COMMA, - STATE(5834), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186470] = 4, - ACTIONS(9986), 1, - anon_sym_COMMA, - ACTIONS(9988), 1, - anon_sym_RBRACK, - STATE(5741), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186486] = 4, - ACTIONS(9990), 1, - anon_sym_COMMA, - ACTIONS(9992), 1, - anon_sym_RBRACK, - STATE(5740), 1, - aux_sym_array_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186502] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(9994), 1, - anon_sym_RPAREN, - STATE(5843), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186518] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9996), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186534] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9998), 1, - anon_sym_GT, - STATE(5838), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186550] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10000), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186566] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10002), 1, - anon_sym_GT, - STATE(5840), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186582] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10004), 1, - anon_sym_GT, - STATE(5846), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186598] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10006), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186614] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10008), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186630] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10010), 1, - anon_sym_GT, - STATE(5844), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186646] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10012), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186662] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10014), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186678] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10016), 1, - anon_sym_RPAREN, - STATE(5756), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186694] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10018), 1, - anon_sym_GT, - STATE(5847), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186710] = 4, - ACTIONS(3875), 1, - anon_sym_COMMA, - ACTIONS(10020), 1, - anon_sym_RPAREN, - STATE(5718), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186726] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10022), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186742] = 2, - ACTIONS(5557), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186754] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10024), 1, - anon_sym_GT, - STATE(5851), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186770] = 4, - ACTIONS(3691), 1, - sym__dot_custom, - STATE(1806), 1, - sym_navigation_suffix, - STATE(4637), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186786] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10026), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186802] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10028), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186818] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10030), 1, - anon_sym_RPAREN, - STATE(5863), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186834] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10032), 1, - anon_sym_GT, - STATE(5855), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186850] = 4, - ACTIONS(3989), 1, - anon_sym_COMMA, - ACTIONS(10034), 1, - anon_sym_RPAREN, - STATE(5834), 1, - aux_sym_enum_type_parameters_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186866] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10036), 1, - anon_sym_RPAREN, - STATE(5856), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186882] = 4, - ACTIONS(9192), 1, - anon_sym_COMMA, - ACTIONS(10038), 1, - anon_sym_RPAREN, - STATE(5603), 1, - aux_sym__tuple_pattern_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186898] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10040), 1, - anon_sym_GT, - STATE(5866), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186914] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10042), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186930] = 4, - ACTIONS(3797), 1, - sym__dot_custom, - STATE(1934), 1, - sym_navigation_suffix, - STATE(4529), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186946] = 2, - ACTIONS(10044), 3, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186958] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10046), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186974] = 2, - ACTIONS(5529), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186986] = 2, - ACTIONS(10048), 3, - sym__eq_custom, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [186998] = 4, - ACTIONS(3879), 1, - anon_sym_COMMA, - ACTIONS(10050), 1, - anon_sym_COLON, - STATE(5545), 1, - aux_sym_switch_entry_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187014] = 4, - ACTIONS(139), 1, - sym_raw_str_part, - ACTIONS(10052), 1, - sym_raw_str_end_part, - STATE(5530), 1, - aux_sym_raw_string_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187030] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10054), 1, - anon_sym_GT, - STATE(5501), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187046] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10056), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187062] = 4, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(10058), 1, - anon_sym_GT, - STATE(5871), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187078] = 2, - ACTIONS(5409), 3, - sym__implicit_semi, - sym__explicit_semi, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187090] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10060), 1, - anon_sym_RPAREN, - STATE(5880), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187106] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5421), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [187118] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10062), 1, - anon_sym_RPAREN, - STATE(5872), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187134] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5421), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [187146] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5329), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [187158] = 4, - ACTIONS(9176), 1, - anon_sym_COMMA, - ACTIONS(10064), 1, - anon_sym_RPAREN, - STATE(5668), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187174] = 2, - ACTIONS(5), 3, - sym_comment, - sym_directive, - sym_diagnostic, - ACTIONS(5361), 4, - sym_multiline_comment, - sym__implicit_semi, - sym__explicit_semi, - anon_sym_RBRACE, - [187186] = 4, - ACTIONS(10066), 1, - anon_sym_COMMA, - ACTIONS(10068), 1, - anon_sym_RBRACK, - STATE(5835), 1, - aux_sym_dictionary_literal_repeat1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187202] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5272), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187215] = 3, - ACTIONS(10070), 1, - sym__dot_custom, - STATE(4812), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187228] = 2, - ACTIONS(4682), 2, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187239] = 2, - ACTIONS(4790), 2, - sym_where_keyword, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187250] = 3, - ACTIONS(10072), 1, - anon_sym_COLON, - ACTIONS(10074), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187263] = 3, - ACTIONS(10076), 1, - anon_sym_COLON, - ACTIONS(10078), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187276] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5768), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187289] = 3, - ACTIONS(10080), 1, - anon_sym_COMMA, - ACTIONS(10082), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187302] = 3, - ACTIONS(10084), 1, - anon_sym_COMMA, - ACTIONS(10086), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187315] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5108), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187328] = 2, - ACTIONS(10088), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187339] = 3, - ACTIONS(10090), 1, - anon_sym_COLON, - ACTIONS(10092), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187352] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5060), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187365] = 2, - ACTIONS(10094), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187376] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5301), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187389] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5061), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187402] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5629), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187415] = 3, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5625), 1, - sym_protocol_property_requirements, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187428] = 3, - ACTIONS(10096), 1, - anon_sym_COLON, - ACTIONS(10098), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187441] = 3, - ACTIONS(6829), 1, - anon_sym_case, - ACTIONS(10100), 1, - anon_sym_enum, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187454] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5032), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187467] = 3, - ACTIONS(10102), 1, - anon_sym_COLON, - ACTIONS(10104), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187480] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5776), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187493] = 3, - ACTIONS(6567), 1, - anon_sym_LBRACE, - STATE(4526), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187506] = 2, - ACTIONS(10106), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187517] = 3, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5608), 1, - sym_protocol_property_requirements, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187530] = 2, - ACTIONS(10108), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187541] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5353), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187554] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5262), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187567] = 3, - ACTIONS(9814), 1, - anon_sym_get, - ACTIONS(9816), 1, - anon_sym_set, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187580] = 2, - ACTIONS(10110), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187591] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5122), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187604] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5268), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187617] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5079), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187630] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2924), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187643] = 3, - ACTIONS(10112), 1, - anon_sym_COLON, - ACTIONS(10114), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187656] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5275), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187669] = 3, - ACTIONS(10116), 1, - anon_sym_COMMA, - ACTIONS(10118), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187682] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5087), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187695] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5564), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187708] = 3, - ACTIONS(10120), 1, - anon_sym_COLON, - ACTIONS(10122), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187721] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2207), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187734] = 3, - ACTIONS(10124), 1, - anon_sym_COLON, - ACTIONS(10126), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187747] = 3, - ACTIONS(10128), 1, - anon_sym_COLON, - ACTIONS(10130), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187760] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5096), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187773] = 3, - ACTIONS(10132), 1, - anon_sym_COLON, - ACTIONS(10134), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187786] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2206), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187799] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5105), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187812] = 2, - ACTIONS(6178), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187823] = 2, - ACTIONS(10136), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187834] = 3, - ACTIONS(10138), 1, - anon_sym_COLON, - ACTIONS(10140), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187847] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5284), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187860] = 2, - ACTIONS(9259), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187871] = 2, - ACTIONS(10142), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187882] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5122), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187895] = 3, - ACTIONS(10144), 1, - anon_sym_COLON, - ACTIONS(10146), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187908] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2298), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187921] = 3, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(4427), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187934] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5457), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187947] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5071), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187960] = 3, - ACTIONS(10148), 1, - anon_sym_COLON, - ACTIONS(10150), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187973] = 2, - ACTIONS(10152), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187984] = 2, - ACTIONS(9226), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [187995] = 3, - ACTIONS(10154), 1, - anon_sym_COMMA, - ACTIONS(10156), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188008] = 3, - ACTIONS(10158), 1, - anon_sym_COLON, - ACTIONS(10160), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188021] = 3, - ACTIONS(10162), 1, - anon_sym_COLON, - ACTIONS(10164), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188034] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2202), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188047] = 3, - ACTIONS(10166), 1, - anon_sym_COMMA, - ACTIONS(10168), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188060] = 3, - ACTIONS(10170), 1, - anon_sym_COLON, - ACTIONS(10172), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188073] = 3, - ACTIONS(10174), 1, - anon_sym_COLON, - ACTIONS(10176), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188086] = 3, - ACTIONS(10178), 1, - anon_sym_COLON, - ACTIONS(10180), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188099] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188112] = 3, - ACTIONS(10182), 1, - sym_raw_str_interpolation_start, - STATE(5347), 1, - sym_raw_str_interpolation, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188125] = 2, - ACTIONS(6178), 2, - sym_else, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188136] = 2, - ACTIONS(8667), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188147] = 3, - ACTIONS(10184), 1, - anon_sym_COLON, - ACTIONS(10186), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188160] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2199), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188173] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5418), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188186] = 2, - ACTIONS(10188), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188197] = 2, - ACTIONS(10190), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188208] = 3, - ACTIONS(10192), 1, - anon_sym_COLON, - ACTIONS(10194), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188221] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5752), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188234] = 3, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5264), 1, - sym_protocol_property_requirements, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188247] = 2, - ACTIONS(10196), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188258] = 3, - ACTIONS(10198), 1, - anon_sym_COLON, - ACTIONS(10200), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188271] = 3, - ACTIONS(10202), 1, - anon_sym_COLON, - ACTIONS(10204), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188284] = 3, - ACTIONS(10206), 1, - anon_sym_COMMA, - ACTIONS(10208), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188297] = 2, - ACTIONS(6208), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188308] = 3, - ACTIONS(10210), 1, - anon_sym_COLON, - ACTIONS(10212), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188321] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5773), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188334] = 3, - ACTIONS(10214), 1, - anon_sym_COLON, - ACTIONS(10216), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188347] = 2, - ACTIONS(9656), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188358] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5881), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188371] = 2, - ACTIONS(10218), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188382] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2924), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188395] = 3, - ACTIONS(7642), 1, - sym__dot_custom, - STATE(4669), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188408] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2905), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188421] = 3, - ACTIONS(6633), 1, - anon_sym_LBRACE, - STATE(2852), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188434] = 3, - ACTIONS(10220), 1, - anon_sym_COLON, - ACTIONS(10222), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188447] = 2, - ACTIONS(6222), 2, - sym_else, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188458] = 2, - ACTIONS(10224), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188469] = 3, - ACTIONS(10226), 1, - anon_sym_COMMA, - ACTIONS(10228), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188482] = 2, - ACTIONS(10230), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188493] = 3, - ACTIONS(6567), 1, - anon_sym_LBRACE, - STATE(4925), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188506] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2198), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188519] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2197), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188532] = 2, - ACTIONS(8621), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188543] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2197), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188556] = 3, - ACTIONS(10232), 1, - anon_sym_case, - ACTIONS(10234), 1, - sym_default_keyword, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188569] = 2, - ACTIONS(8617), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188580] = 3, - ACTIONS(10236), 1, - anon_sym_COLON, - ACTIONS(10238), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188593] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5063), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188606] = 3, - ACTIONS(7665), 1, - anon_sym_LBRACE, - STATE(5304), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188619] = 2, - ACTIONS(10240), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188630] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5879), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188643] = 2, - ACTIONS(10242), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188654] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5750), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188667] = 3, - ACTIONS(10244), 1, - sym__arrow_operator_custom, - STATE(3442), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188680] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2190), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188693] = 3, - ACTIONS(7700), 1, - sym__dot_custom, - STATE(4682), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188706] = 3, - ACTIONS(8904), 1, - sym__arrow_operator_custom, - STATE(3439), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188719] = 2, - ACTIONS(6192), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188730] = 2, - ACTIONS(10246), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188741] = 3, - ACTIONS(10248), 1, - anon_sym_COLON, - ACTIONS(10250), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188754] = 3, - ACTIONS(10252), 1, - sym__arrow_operator_custom, - STATE(3426), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188767] = 3, - ACTIONS(8918), 1, - sym__arrow_operator_custom, - STATE(3424), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188780] = 3, - ACTIONS(10254), 1, - anon_sym_COLON, - ACTIONS(10256), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188793] = 3, - ACTIONS(10258), 1, - sym__arrow_operator_custom, - STATE(3324), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188806] = 3, - ACTIONS(8962), 1, - sym__arrow_operator_custom, - STATE(3312), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188819] = 3, - ACTIONS(8335), 1, - sym__as_custom, - STATE(3391), 1, - sym__as, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188832] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2186), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188845] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2185), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188858] = 3, - ACTIONS(7463), 1, - anon_sym_LPAREN, - STATE(3963), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188871] = 2, - ACTIONS(9076), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188882] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2184), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188895] = 3, - ACTIONS(8782), 1, - sym__arrow_operator_custom, - STATE(3177), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188908] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2178), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188921] = 3, - ACTIONS(7463), 1, - anon_sym_LPAREN, - STATE(3894), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188934] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188947] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5596), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188960] = 3, - ACTIONS(10260), 1, - sym__arrow_operator_custom, - STATE(3243), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188973] = 3, - ACTIONS(10262), 1, - sym__dot_custom, - STATE(4815), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188986] = 3, - ACTIONS(8928), 1, - sym__arrow_operator_custom, - STATE(3224), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [188999] = 3, - ACTIONS(7877), 1, - anon_sym_LBRACE, - STATE(5816), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189012] = 3, - ACTIONS(10264), 1, - sym__arrow_operator_custom, - STATE(3165), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189025] = 3, - ACTIONS(10266), 1, - sym__eq_custom, - STATE(3161), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189038] = 3, - ACTIONS(8718), 1, - sym__arrow_operator_custom, - STATE(3162), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189051] = 2, - ACTIONS(10268), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189062] = 2, - ACTIONS(10270), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189073] = 2, - ACTIONS(10272), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189084] = 3, - ACTIONS(10274), 1, - sym__arrow_operator_custom, - STATE(3383), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189097] = 3, - ACTIONS(8794), 1, - sym__arrow_operator_custom, - STATE(3345), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189110] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2178), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189123] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5874), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189136] = 3, - ACTIONS(10276), 1, - sym__arrow_operator_custom, - STATE(3389), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189149] = 3, - ACTIONS(10278), 1, - anon_sym_COLON, - ACTIONS(10280), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189162] = 3, - ACTIONS(7826), 1, - anon_sym_LPAREN, - STATE(4188), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189175] = 2, - ACTIONS(10282), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189186] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2257), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189199] = 3, - ACTIONS(7826), 1, - anon_sym_LPAREN, - STATE(4200), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189212] = 3, - ACTIONS(10284), 1, - sym__arrow_operator_custom, - STATE(3202), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189225] = 3, - ACTIONS(8809), 1, - sym__arrow_operator_custom, - STATE(3225), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189238] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2950), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189251] = 2, - ACTIONS(10286), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189262] = 3, - ACTIONS(10288), 1, - anon_sym_COLON, - ACTIONS(10290), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189275] = 2, - ACTIONS(10292), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189286] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189299] = 3, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(4459), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189312] = 2, - ACTIONS(10294), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189323] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2947), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189336] = 3, - ACTIONS(10296), 1, - sym__arrow_operator_custom, - STATE(3318), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189349] = 3, - ACTIONS(10298), 1, - sym__arrow_operator_custom, - STATE(3360), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189362] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2948), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189375] = 3, - ACTIONS(8979), 1, - sym__arrow_operator_custom, - STATE(3278), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189388] = 3, - ACTIONS(10300), 1, - anon_sym_COLON, - ACTIONS(10302), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189401] = 3, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(4455), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189414] = 2, - ACTIONS(10304), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189425] = 3, - ACTIONS(7959), 1, - sym__as_custom, - STATE(3322), 1, - sym__as, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189438] = 3, - ACTIONS(10306), 1, - sym__arrow_operator_custom, - STATE(3325), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189451] = 3, - ACTIONS(8946), 1, - sym__arrow_operator_custom, - STATE(3329), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189464] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5596), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189477] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5401), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189490] = 2, - ACTIONS(10308), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189501] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5494), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189514] = 2, - ACTIONS(10310), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189525] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5032), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189538] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2300), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189551] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5511), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189564] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2305), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189577] = 3, - ACTIONS(10312), 1, - sym__arrow_operator_custom, - STATE(3364), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189590] = 3, - ACTIONS(8914), 1, - sym__arrow_operator_custom, - STATE(3376), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189603] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2244), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189616] = 2, - ACTIONS(10314), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189627] = 3, - ACTIONS(10316), 1, - anon_sym_COLON, - ACTIONS(10318), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189640] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2226), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189653] = 3, - ACTIONS(10320), 1, - sym__arrow_operator_custom, - STATE(3411), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189666] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2954), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189679] = 3, - ACTIONS(8888), 1, - sym__arrow_operator_custom, - STATE(3428), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189692] = 3, - ACTIONS(10322), 1, - anon_sym_COLON, - ACTIONS(10324), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189705] = 3, - ACTIONS(10326), 1, - sym__arrow_operator_custom, - STATE(3343), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189718] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5179), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189731] = 3, - ACTIONS(8884), 1, - sym__arrow_operator_custom, - STATE(3341), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189744] = 2, - ACTIONS(10328), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189755] = 2, - ACTIONS(10330), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189766] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2244), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189779] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5245), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189792] = 3, - ACTIONS(10332), 1, - sym__arrow_operator_custom, - STATE(3136), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189805] = 3, - ACTIONS(8880), 1, - sym__arrow_operator_custom, - STATE(3134), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189818] = 3, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(4484), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189831] = 3, - ACTIONS(10334), 1, - anon_sym_COLON, - ACTIONS(10336), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189844] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2954), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189857] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2957), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189870] = 3, - ACTIONS(7652), 1, - sym__dot_custom, - STATE(4772), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189883] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2958), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189896] = 2, - ACTIONS(10338), 2, - sym_raw_str_part, - sym_raw_str_end_part, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189907] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5228), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189920] = 3, - ACTIONS(10340), 1, - sym__arrow_operator_custom, - STATE(3404), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189933] = 3, - ACTIONS(8858), 1, - sym__arrow_operator_custom, - STATE(3401), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189946] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2279), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189959] = 3, - ACTIONS(8288), 1, - sym__as_custom, - STATE(3207), 1, - sym__as, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189972] = 3, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(2277), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189985] = 3, - ACTIONS(8451), 1, - anon_sym_LBRACE, - STATE(2222), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [189998] = 2, - ACTIONS(10342), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190009] = 2, - ACTIONS(9527), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190020] = 3, - ACTIONS(10344), 1, - anon_sym_COLON, - ACTIONS(10346), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190033] = 3, - ACTIONS(8850), 1, - sym__arrow_operator_custom, - STATE(3217), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190046] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2962), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190059] = 2, - ACTIONS(10348), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190070] = 3, - ACTIONS(10350), 1, - sym__dot_custom, - STATE(4813), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190083] = 3, - ACTIONS(10352), 1, - sym__eq_custom, - STATE(3157), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190096] = 2, - ACTIONS(10354), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190107] = 2, - ACTIONS(10356), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190118] = 3, - ACTIONS(10358), 1, - anon_sym_COLON, - ACTIONS(10360), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190131] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5117), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190144] = 3, - ACTIONS(10362), 1, - sym__arrow_operator_custom, - STATE(3417), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190157] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2962), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190170] = 3, - ACTIONS(7275), 1, - anon_sym_LBRACE, - STATE(2222), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190183] = 2, - ACTIONS(10364), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190194] = 3, - ACTIONS(10366), 1, - sym__arrow_operator_custom, - STATE(3385), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190207] = 3, - ACTIONS(7269), 1, - anon_sym_LBRACE, - STATE(2963), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190220] = 3, - ACTIONS(8813), 1, - sym__arrow_operator_custom, - STATE(3382), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190233] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2964), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190246] = 2, - ACTIONS(6196), 2, - sym_else, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190257] = 3, - ACTIONS(10368), 1, - sym__arrow_operator_custom, - STATE(3299), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190270] = 3, - ACTIONS(8811), 1, - sym__arrow_operator_custom, - STATE(3292), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190283] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5179), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190296] = 3, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(4419), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190309] = 2, - ACTIONS(10370), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190320] = 2, - ACTIONS(10372), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190331] = 3, - ACTIONS(8376), 1, - anon_sym_LBRACE, - STATE(2965), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190344] = 3, - ACTIONS(10374), 1, - anon_sym_COLON, - ACTIONS(10376), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190357] = 3, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(4416), 1, - aux_sym__function_value_parameters, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190370] = 3, - ACTIONS(10378), 1, - anon_sym_COMMA, - ACTIONS(10380), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190383] = 3, - ACTIONS(10382), 1, - sym__arrow_operator_custom, - STATE(3436), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190396] = 3, - ACTIONS(8805), 1, - sym__arrow_operator_custom, - STATE(3433), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190409] = 2, - ACTIONS(9689), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190420] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2927), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190433] = 2, - ACTIONS(4402), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190444] = 3, - ACTIONS(6633), 1, - anon_sym_LBRACE, - STATE(2900), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190457] = 3, - ACTIONS(10384), 1, - anon_sym_COLON, - ACTIONS(10386), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190470] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5056), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190483] = 2, - ACTIONS(6204), 2, - sym_else, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190494] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2227), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190507] = 2, - ACTIONS(10388), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190518] = 3, - ACTIONS(7698), 1, - sym__dot_custom, - STATE(4698), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190531] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2216), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190544] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2913), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190557] = 3, - ACTIONS(10390), 1, - sym__arrow_operator_custom, - STATE(3351), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190570] = 3, - ACTIONS(8788), 1, - sym__arrow_operator_custom, - STATE(3301), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190583] = 3, - ACTIONS(8773), 1, - sym__as_custom, - STATE(3449), 1, - sym__as, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190596] = 2, - ACTIONS(6196), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190607] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5477), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190620] = 3, - ACTIONS(8625), 1, - anon_sym_LBRACE, - STATE(5865), 1, - sym_protocol_property_requirements, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190633] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2191), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190646] = 3, - ACTIONS(8981), 1, - sym__arrow_operator_custom, - STATE(3219), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190659] = 3, - ACTIONS(10392), 1, - anon_sym_COLON, - ACTIONS(10394), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190672] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2183), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190685] = 3, - ACTIONS(10396), 1, - sym__dot_custom, - STATE(4662), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190698] = 3, - ACTIONS(10398), 1, - sym__eq_custom, - STATE(3226), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190711] = 2, - ACTIONS(6208), 2, - sym_else, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190722] = 3, - ACTIONS(10400), 1, - sym__arrow_operator_custom, - STATE(3323), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190735] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5332), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190748] = 3, - ACTIONS(8777), 1, - sym__arrow_operator_custom, - STATE(3141), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190761] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5336), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190774] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2915), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190787] = 3, - ACTIONS(10402), 1, - sym__arrow_operator_custom, - STATE(3230), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190800] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2910), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190813] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2921), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190826] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(5051), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190839] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2330), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190852] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2347), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190865] = 3, - ACTIONS(10404), 1, - anon_sym_COMMA, - ACTIONS(10406), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190878] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5345), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190891] = 2, - ACTIONS(7965), 2, - sym__arrow_operator_custom, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190902] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5852), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190915] = 3, - ACTIONS(10408), 1, - anon_sym_COLON, - ACTIONS(10410), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190928] = 3, - ACTIONS(8466), 1, - anon_sym_LBRACE, - STATE(5117), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190941] = 3, - ACTIONS(10412), 1, - anon_sym_COLON, - ACTIONS(10414), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190954] = 3, - ACTIONS(7692), 1, - sym__dot_custom, - STATE(4823), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190967] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5355), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190980] = 3, - ACTIONS(10416), 1, - sym__eq_custom, - STATE(3293), 1, - sym__equal_sign, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [190993] = 3, - ACTIONS(10418), 1, - sym__as_custom, - STATE(3346), 1, - sym__as, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191006] = 2, - ACTIONS(6222), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191017] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5357), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191030] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191043] = 3, - ACTIONS(9012), 1, - sym__arrow_operator_custom, - STATE(3294), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191056] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5371), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191069] = 3, - ACTIONS(10420), 1, - sym__dot_custom, - STATE(4821), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191082] = 2, - ACTIONS(10422), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191093] = 2, - ACTIONS(6192), 2, - sym_else, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191104] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2922), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191117] = 3, - ACTIONS(10424), 1, - sym__arrow_operator_custom, - STATE(3307), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191130] = 3, - ACTIONS(10426), 1, - sym__arrow_operator_custom, - STATE(3220), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191143] = 3, - ACTIONS(8763), 1, - sym__arrow_operator_custom, - STATE(3222), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191156] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5477), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191169] = 3, - ACTIONS(8775), 1, - sym__arrow_operator_custom, - STATE(3183), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191182] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2912), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191195] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5450), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191208] = 3, - ACTIONS(10428), 1, - sym__arrow_operator_custom, - STATE(3264), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191221] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2937), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191234] = 3, - ACTIONS(7636), 1, - sym__dot_custom, - STATE(4816), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191247] = 2, - ACTIONS(10430), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191258] = 3, - ACTIONS(8716), 1, - sym__arrow_operator_custom, - STATE(3274), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191271] = 3, - ACTIONS(8694), 1, - sym__as_custom, - STATE(3290), 1, - sym__as, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191284] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5371), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191297] = 3, - ACTIONS(4380), 1, - anon_sym_LBRACE, - STATE(2263), 1, - sym_computed_property, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191310] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5381), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191323] = 3, - ACTIONS(8995), 1, - sym__arrow_operator_custom, - STATE(3348), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191336] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5448), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191349] = 3, - ACTIONS(10432), 1, - sym__dot_custom, - STATE(4693), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191362] = 3, - ACTIONS(8455), 1, - anon_sym_LBRACE, - STATE(5279), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191375] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5464), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191388] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5391), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191401] = 3, - ACTIONS(10434), 1, - sym__arrow_operator_custom, - STATE(3355), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191414] = 3, - ACTIONS(10436), 1, - sym__dot_custom, - STATE(4769), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191427] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5393), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191440] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191453] = 3, - ACTIONS(6567), 1, - anon_sym_LBRACE, - STATE(5004), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191466] = 2, - ACTIONS(10438), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191477] = 3, - ACTIONS(8393), 1, - anon_sym_LBRACE, - STATE(5402), 1, - sym_enum_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191490] = 3, - ACTIONS(10440), 1, - sym__arrow_operator_custom, - STATE(3326), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191503] = 3, - ACTIONS(8803), 1, - anon_sym_LBRACE, - STATE(2936), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191516] = 3, - ACTIONS(7640), 1, - sym__dot_custom, - STATE(4680), 1, - sym__dot, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191529] = 3, - ACTIONS(6633), 1, - anon_sym_LBRACE, - STATE(2884), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191542] = 3, - ACTIONS(8726), 1, - sym__arrow_operator_custom, - STATE(3349), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191555] = 3, - ACTIONS(5932), 1, - sym__as_custom, - STATE(3413), 1, - sym__as, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191568] = 3, - ACTIONS(10442), 1, - sym__arrow_operator_custom, - STATE(3410), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191581] = 3, - ACTIONS(10444), 1, - anon_sym_COLON, - ACTIONS(10446), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191594] = 2, - ACTIONS(10448), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191605] = 3, - ACTIONS(8930), 1, - sym__arrow_operator_custom, - STATE(3427), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191618] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5083), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191631] = 3, - ACTIONS(8821), 1, - sym__arrow_operator_custom, - STATE(3430), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191644] = 2, - ACTIONS(9621), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191655] = 2, - ACTIONS(8420), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191666] = 3, - ACTIONS(10450), 1, - sym__arrow_operator_custom, - STATE(3434), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191679] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5046), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191692] = 2, - ACTIONS(6204), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191703] = 2, - ACTIONS(10452), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191714] = 3, - ACTIONS(10100), 1, - anon_sym_enum, - ACTIONS(10454), 1, - anon_sym_case, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191727] = 3, - ACTIONS(10456), 1, - sym__arrow_operator_custom, - STATE(3453), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191740] = 3, - ACTIONS(8829), 1, - sym__arrow_operator_custom, - STATE(3373), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191753] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5047), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191766] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(5402), 1, - sym_class_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191779] = 3, - ACTIONS(8407), 1, - anon_sym_LBRACE, - STATE(5405), 1, - sym_protocol_body, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191792] = 3, - ACTIONS(10458), 1, - anon_sym_COLON, - ACTIONS(10460), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191805] = 3, - ACTIONS(8860), 1, - sym__arrow_operator_custom, - STATE(3247), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191818] = 2, - ACTIONS(10462), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191829] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5217), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191842] = 2, - ACTIONS(8714), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191853] = 3, - ACTIONS(10464), 1, - sym__arrow_operator_custom, - STATE(3370), 1, - sym__arrow_operator, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191866] = 3, - ACTIONS(8643), 1, - anon_sym_LBRACE, - STATE(5054), 1, - sym__block, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191879] = 2, - ACTIONS(10466), 2, - anon_sym_Type, - anon_sym_Protocol, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191890] = 2, - ACTIONS(10468), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191900] = 2, - ACTIONS(10470), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191910] = 2, - ACTIONS(8854), 1, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191920] = 2, - ACTIONS(7354), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191930] = 2, - ACTIONS(10472), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191940] = 2, - ACTIONS(10474), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191950] = 2, - ACTIONS(10476), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191960] = 2, - ACTIONS(10478), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191970] = 2, - ACTIONS(10480), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191980] = 2, - ACTIONS(10482), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [191990] = 2, - ACTIONS(10484), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192000] = 2, - ACTIONS(10486), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192010] = 2, - ACTIONS(10488), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192020] = 2, - ACTIONS(10490), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192030] = 2, - ACTIONS(10492), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192040] = 2, - ACTIONS(10494), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192050] = 2, - ACTIONS(10496), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192060] = 2, - ACTIONS(10498), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192070] = 2, - ACTIONS(10500), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192080] = 2, - ACTIONS(10502), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192090] = 2, - ACTIONS(10504), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192100] = 2, - ACTIONS(10506), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192110] = 2, - ACTIONS(10508), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192120] = 2, - ACTIONS(10510), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192130] = 2, - ACTIONS(10512), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192140] = 2, - ACTIONS(10514), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192150] = 2, - ACTIONS(10516), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192160] = 2, - ACTIONS(10518), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192170] = 2, - ACTIONS(10520), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192180] = 2, - ACTIONS(10522), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192190] = 2, - ACTIONS(10524), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192200] = 2, - ACTIONS(10526), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192210] = 2, - ACTIONS(10528), 1, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192220] = 2, - ACTIONS(10530), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192230] = 2, - ACTIONS(10532), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192240] = 2, - ACTIONS(10534), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192250] = 2, - ACTIONS(10536), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192260] = 2, - ACTIONS(10538), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192270] = 2, - ACTIONS(10540), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192280] = 2, - ACTIONS(10542), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192290] = 2, - ACTIONS(10544), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192300] = 2, - ACTIONS(10546), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192310] = 2, - ACTIONS(10548), 1, - anon_sym_while, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192320] = 2, - ACTIONS(10550), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192330] = 2, - ACTIONS(10552), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192340] = 2, - ACTIONS(10554), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192350] = 2, - ACTIONS(10556), 1, - anon_sym_while, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192360] = 2, - ACTIONS(10558), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192370] = 2, - ACTIONS(10560), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192380] = 2, - ACTIONS(10562), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192390] = 2, - ACTIONS(9062), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192400] = 2, - ACTIONS(10564), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192410] = 2, - ACTIONS(10566), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192420] = 2, - ACTIONS(10568), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192430] = 2, - ACTIONS(10570), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192440] = 2, - ACTIONS(10572), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192450] = 2, - ACTIONS(10574), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192460] = 2, - ACTIONS(10576), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192470] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10578), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [192482] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10580), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [192494] = 2, - ACTIONS(10582), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192504] = 2, - ACTIONS(10584), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192514] = 2, - ACTIONS(10586), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192524] = 2, - ACTIONS(10588), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192534] = 2, - ACTIONS(10590), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192544] = 2, - ACTIONS(10592), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192554] = 2, - ACTIONS(7982), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192564] = 2, - ACTIONS(10594), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192574] = 2, - ACTIONS(10596), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192584] = 2, - ACTIONS(10598), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192594] = 2, - ACTIONS(10600), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192604] = 2, - ACTIONS(10602), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192614] = 2, - ACTIONS(10604), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192624] = 2, - ACTIONS(10606), 1, - aux_sym__uni_character_literal_token1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192634] = 2, - ACTIONS(10608), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192644] = 2, - ACTIONS(7982), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192654] = 2, - ACTIONS(10610), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192664] = 2, - ACTIONS(10612), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192674] = 2, - ACTIONS(10614), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192684] = 2, - ACTIONS(10616), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192694] = 2, - ACTIONS(10618), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192704] = 2, - ACTIONS(10620), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192714] = 2, - ACTIONS(9129), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192724] = 2, - ACTIONS(10622), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192734] = 2, - ACTIONS(10624), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192744] = 2, - ACTIONS(10626), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192754] = 2, - ACTIONS(10628), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192764] = 2, - ACTIONS(8179), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192774] = 2, - ACTIONS(10630), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192784] = 2, - ACTIONS(10632), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192794] = 2, - ACTIONS(10634), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192804] = 2, - ACTIONS(10636), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192814] = 2, - ACTIONS(10638), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192824] = 2, - ACTIONS(10640), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192834] = 2, - ACTIONS(10642), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192844] = 2, - ACTIONS(9129), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192854] = 2, - ACTIONS(9127), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192864] = 2, - ACTIONS(10644), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192874] = 2, - ACTIONS(10646), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192884] = 2, - ACTIONS(10648), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192894] = 2, - ACTIONS(9113), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192904] = 2, - ACTIONS(10650), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192914] = 2, - ACTIONS(10652), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192924] = 2, - ACTIONS(10654), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192934] = 2, - ACTIONS(10656), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192944] = 2, - ACTIONS(9129), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192954] = 2, - ACTIONS(10658), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192964] = 2, - ACTIONS(10660), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192974] = 2, - ACTIONS(10662), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192984] = 2, - ACTIONS(10664), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [192994] = 2, - ACTIONS(10666), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193004] = 2, - ACTIONS(10668), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193014] = 2, - ACTIONS(10670), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193024] = 2, - ACTIONS(10672), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193034] = 2, - ACTIONS(9142), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193044] = 2, - ACTIONS(10674), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193054] = 2, - ACTIONS(10676), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193064] = 2, - ACTIONS(10678), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193074] = 2, - ACTIONS(9131), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193084] = 2, - ACTIONS(10680), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193094] = 2, - ACTIONS(10682), 1, - anon_sym_while, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193104] = 2, - ACTIONS(10684), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193114] = 2, - ACTIONS(10686), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193124] = 2, - ACTIONS(10688), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193134] = 2, - ACTIONS(9129), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193144] = 2, - ACTIONS(10690), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193154] = 2, - ACTIONS(10692), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193164] = 2, - ACTIONS(10694), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193174] = 2, - ACTIONS(8759), 1, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193184] = 2, - ACTIONS(9127), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193194] = 2, - ACTIONS(7346), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193204] = 2, - ACTIONS(10696), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193214] = 2, - ACTIONS(10698), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193224] = 2, - ACTIONS(10700), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193234] = 2, - ACTIONS(10702), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193244] = 2, - ACTIONS(10704), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193254] = 2, - ACTIONS(10706), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193264] = 2, - ACTIONS(10708), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193274] = 2, - ACTIONS(10710), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193284] = 2, - ACTIONS(10712), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193294] = 2, - ACTIONS(10714), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193304] = 2, - ACTIONS(10716), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193314] = 2, - ACTIONS(8179), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193324] = 2, - ACTIONS(10718), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193334] = 2, - ACTIONS(10720), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193344] = 2, - ACTIONS(10722), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193354] = 2, - ACTIONS(10724), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193364] = 2, - ACTIONS(7325), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193374] = 2, - ACTIONS(10726), 1, - aux_sym__uni_character_literal_token1, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193384] = 2, - ACTIONS(8179), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193394] = 2, - ACTIONS(10728), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193404] = 2, - ACTIONS(10730), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193414] = 2, - ACTIONS(10732), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193424] = 2, - ACTIONS(10734), 1, - sym_integer_literal, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193434] = 2, - ACTIONS(9350), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193444] = 2, - ACTIONS(10736), 1, - anon_sym_set, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193454] = 2, - ACTIONS(7907), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193464] = 2, - ACTIONS(10738), 1, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193474] = 2, - ACTIONS(10740), 1, - anon_sym_set, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193484] = 2, - ACTIONS(10742), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193494] = 2, - ACTIONS(10744), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193504] = 2, - ACTIONS(10746), 1, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193514] = 2, - ACTIONS(8160), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193524] = 2, - ACTIONS(10748), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193534] = 2, - ACTIONS(10750), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193544] = 2, - ACTIONS(10752), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193554] = 2, - ACTIONS(7338), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193564] = 2, - ACTIONS(8160), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193574] = 2, - ACTIONS(8179), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193584] = 2, - ACTIONS(10754), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193594] = 2, - ACTIONS(10756), 1, - anon_sym_u, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193604] = 2, - ACTIONS(9113), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193614] = 2, - ACTIONS(10758), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193624] = 2, - ACTIONS(10760), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193634] = 2, - ACTIONS(10762), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193644] = 2, - ACTIONS(10764), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193654] = 2, - ACTIONS(9150), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193664] = 2, - ACTIONS(7907), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193674] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10766), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [193686] = 2, - ACTIONS(8954), 1, - anon_sym_GT, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193696] = 2, - ACTIONS(9142), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193706] = 2, - ACTIONS(10768), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193716] = 2, - ACTIONS(9451), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193726] = 2, - ACTIONS(10770), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193736] = 2, - ACTIONS(10772), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193746] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10774), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [193758] = 2, - ACTIONS(10776), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193768] = 2, - ACTIONS(8160), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193778] = 2, - ACTIONS(10778), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193788] = 2, - ACTIONS(8160), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193798] = 2, - ACTIONS(9150), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193808] = 2, - ACTIONS(10780), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193818] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10782), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [193830] = 2, - ACTIONS(10784), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193840] = 2, - ACTIONS(10786), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193850] = 2, - ACTIONS(10788), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193860] = 2, - ACTIONS(9133), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193870] = 2, - ACTIONS(9111), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193880] = 2, - ACTIONS(10790), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193890] = 2, - ACTIONS(10792), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193900] = 2, - ACTIONS(10794), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193910] = 2, - ACTIONS(10796), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193920] = 2, - ACTIONS(10798), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193930] = 2, - ACTIONS(10800), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193940] = 2, - ACTIONS(10802), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193950] = 2, - ACTIONS(10804), 1, - anon_sym_RPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193960] = 2, - ACTIONS(10806), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193970] = 2, - ACTIONS(10808), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193980] = 2, - ACTIONS(10810), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [193990] = 2, - ACTIONS(10812), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194000] = 2, - ACTIONS(10814), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194010] = 2, - ACTIONS(10816), 1, - anon_sym_enum, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194020] = 2, - ACTIONS(10818), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194030] = 2, - ACTIONS(10820), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194040] = 2, - ACTIONS(10822), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194050] = 2, - ACTIONS(9133), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194060] = 2, - ACTIONS(10824), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194070] = 2, - ACTIONS(10826), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194080] = 2, - ACTIONS(10828), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194090] = 2, - ACTIONS(10830), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194100] = 2, - ACTIONS(10832), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194110] = 2, - ACTIONS(10834), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194120] = 2, - ACTIONS(10836), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194130] = 2, - ACTIONS(9133), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194140] = 2, - ACTIONS(10838), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194150] = 2, - ACTIONS(10840), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194160] = 2, - ACTIONS(10842), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194170] = 2, - ACTIONS(10844), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194180] = 2, - ACTIONS(10846), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194190] = 2, - ACTIONS(9138), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194200] = 2, - ACTIONS(10848), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194210] = 2, - ACTIONS(10850), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194220] = 2, - ACTIONS(10852), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194230] = 2, - ACTIONS(10854), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194240] = 2, - ACTIONS(10856), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194250] = 2, - ACTIONS(10858), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194260] = 2, - ACTIONS(10860), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194270] = 2, - ACTIONS(9125), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194280] = 2, - ACTIONS(10862), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194290] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10864), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [194302] = 2, - ACTIONS(10866), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194312] = 2, - ACTIONS(10868), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194322] = 2, - ACTIONS(10870), 1, - anon_sym_u, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194332] = 2, - ACTIONS(10872), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194342] = 2, - ACTIONS(10874), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194352] = 2, - ACTIONS(10876), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194362] = 2, - ACTIONS(10878), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194372] = 2, - ACTIONS(10880), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194382] = 2, - ACTIONS(9138), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194392] = 2, - ACTIONS(10882), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194402] = 2, - ACTIONS(10884), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194412] = 2, - ACTIONS(10886), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194422] = 2, - ACTIONS(9104), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194432] = 2, - ACTIONS(10888), 1, - sym_integer_literal, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194442] = 2, - ACTIONS(9125), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194452] = 2, - ACTIONS(10890), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194462] = 2, - ACTIONS(10892), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194472] = 2, - ACTIONS(10894), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194482] = 2, - ACTIONS(10896), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194492] = 2, - ACTIONS(10898), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194502] = 2, - ACTIONS(4790), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194512] = 2, - ACTIONS(10900), 1, - ts_builtin_sym_end, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194522] = 2, - ACTIONS(9451), 1, - sym__eq_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194532] = 2, - ACTIONS(10902), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194542] = 2, - ACTIONS(9350), 1, - sym__eq_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194552] = 2, - ACTIONS(10904), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194562] = 2, - ACTIONS(10906), 1, - anon_sym_enum, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194572] = 2, - ACTIONS(10908), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194582] = 2, - ACTIONS(9332), 1, - sym__eq_custom, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194592] = 2, - ACTIONS(9332), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194602] = 2, - ACTIONS(10910), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194612] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10912), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [194624] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10914), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [194636] = 2, - ACTIONS(10916), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194646] = 2, - ACTIONS(10918), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194656] = 2, - ACTIONS(9133), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194666] = 2, - ACTIONS(10920), 1, - anon_sym_enum, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194676] = 2, - ACTIONS(10922), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194686] = 2, - ACTIONS(10924), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194696] = 2, - ACTIONS(10926), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194706] = 2, - ACTIONS(10928), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194716] = 2, - ACTIONS(10930), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194726] = 2, - ACTIONS(10932), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194736] = 2, - ACTIONS(10934), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194746] = 2, - ACTIONS(10936), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194756] = 2, - ACTIONS(10938), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194766] = 2, - ACTIONS(10940), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194776] = 2, - ACTIONS(10942), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194786] = 2, - ACTIONS(10944), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194796] = 2, - ACTIONS(10946), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194806] = 2, - ACTIONS(10948), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194816] = 2, - ACTIONS(10950), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194826] = 2, - ACTIONS(10952), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194836] = 2, - ACTIONS(10954), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194846] = 2, - ACTIONS(10956), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194856] = 2, - ACTIONS(10958), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194866] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10960), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [194878] = 2, - ACTIONS(10962), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194888] = 2, - ACTIONS(10964), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194898] = 2, - ACTIONS(10966), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194908] = 2, - ACTIONS(10968), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194918] = 2, - ACTIONS(10970), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194928] = 2, - ACTIONS(10972), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194938] = 2, - ACTIONS(10974), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194948] = 2, - ACTIONS(10976), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194958] = 2, - ACTIONS(10978), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194968] = 2, - ACTIONS(10980), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194978] = 2, - ACTIONS(10982), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194988] = 2, - ACTIONS(10984), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [194998] = 2, - ACTIONS(10986), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195008] = 2, - ACTIONS(10988), 1, - anon_sym_COLON, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195018] = 2, - ACTIONS(10990), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195028] = 2, - ACTIONS(9111), 1, - anon_sym_LBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195038] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10992), 1, - aux_sym__multiline_regex_literal_token2, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [195050] = 2, - ACTIONS(10994), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195060] = 2, - ACTIONS(10996), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195070] = 3, - ACTIONS(5), 1, - sym_multiline_comment, - ACTIONS(10998), 1, - aux_sym_shebang_line_token1, - ACTIONS(3), 3, - sym_comment, - sym_directive, - sym_diagnostic, - [195082] = 2, - ACTIONS(11000), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195092] = 2, - ACTIONS(11002), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195102] = 2, - ACTIONS(11004), 1, - anon_sym_in, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195112] = 2, - ACTIONS(11006), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195122] = 2, - ACTIONS(11008), 1, - anon_sym_RBRACE, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195132] = 2, - ACTIONS(11010), 1, - anon_sym_while, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195142] = 2, - ACTIONS(11012), 1, - anon_sym_RBRACK, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195152] = 2, - ACTIONS(11014), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195162] = 2, - ACTIONS(11016), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195172] = 2, - ACTIONS(11018), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195182] = 2, - ACTIONS(11020), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195192] = 2, - ACTIONS(11022), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195202] = 2, - ACTIONS(11024), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195212] = 2, - ACTIONS(11026), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, - [195222] = 2, - ACTIONS(11028), 1, - anon_sym_LPAREN, - ACTIONS(5), 4, - sym_multiline_comment, - sym_comment, - sym_directive, - sym_diagnostic, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1421)] = 0, - [SMALL_STATE(1422)] = 71, - [SMALL_STATE(1423)] = 142, - [SMALL_STATE(1424)] = 213, - [SMALL_STATE(1425)] = 288, - [SMALL_STATE(1426)] = 359, - [SMALL_STATE(1427)] = 434, - [SMALL_STATE(1428)] = 515, - [SMALL_STATE(1429)] = 596, - [SMALL_STATE(1430)] = 667, - [SMALL_STATE(1431)] = 738, - [SMALL_STATE(1432)] = 809, - [SMALL_STATE(1433)] = 880, - [SMALL_STATE(1434)] = 951, - [SMALL_STATE(1435)] = 1026, - [SMALL_STATE(1436)] = 1097, - [SMALL_STATE(1437)] = 1168, - [SMALL_STATE(1438)] = 1241, - [SMALL_STATE(1439)] = 1316, - [SMALL_STATE(1440)] = 1387, - [SMALL_STATE(1441)] = 1458, - [SMALL_STATE(1442)] = 1539, - [SMALL_STATE(1443)] = 1609, - [SMALL_STATE(1444)] = 1689, - [SMALL_STATE(1445)] = 1759, - [SMALL_STATE(1446)] = 1829, - [SMALL_STATE(1447)] = 1899, - [SMALL_STATE(1448)] = 1969, - [SMALL_STATE(1449)] = 2049, - [SMALL_STATE(1450)] = 2123, - [SMALL_STATE(1451)] = 2193, - [SMALL_STATE(1452)] = 2263, - [SMALL_STATE(1453)] = 2333, - [SMALL_STATE(1454)] = 2403, - [SMALL_STATE(1455)] = 2475, - [SMALL_STATE(1456)] = 2555, - [SMALL_STATE(1457)] = 2650, - [SMALL_STATE(1458)] = 2721, - [SMALL_STATE(1459)] = 2800, - [SMALL_STATE(1460)] = 2893, - [SMALL_STATE(1461)] = 2962, - [SMALL_STATE(1462)] = 3031, - [SMALL_STATE(1463)] = 3100, - [SMALL_STATE(1464)] = 3169, - [SMALL_STATE(1465)] = 3262, - [SMALL_STATE(1466)] = 3347, - [SMALL_STATE(1467)] = 3426, - [SMALL_STATE(1468)] = 3497, - [SMALL_STATE(1469)] = 3576, - [SMALL_STATE(1470)] = 3655, - [SMALL_STATE(1471)] = 3726, - [SMALL_STATE(1472)] = 3797, - [SMALL_STATE(1473)] = 3876, - [SMALL_STATE(1474)] = 3947, - [SMALL_STATE(1475)] = 4026, - [SMALL_STATE(1476)] = 4111, - [SMALL_STATE(1477)] = 4183, - [SMALL_STATE(1478)] = 4269, - [SMALL_STATE(1479)] = 4359, - [SMALL_STATE(1480)] = 4445, - [SMALL_STATE(1481)] = 4523, - [SMALL_STATE(1482)] = 4609, - [SMALL_STATE(1483)] = 4693, - [SMALL_STATE(1484)] = 4763, - [SMALL_STATE(1485)] = 4841, - [SMALL_STATE(1486)] = 4911, - [SMALL_STATE(1487)] = 4981, - [SMALL_STATE(1488)] = 5051, - [SMALL_STATE(1489)] = 5137, - [SMALL_STATE(1490)] = 5215, - [SMALL_STATE(1491)] = 5289, - [SMALL_STATE(1492)] = 5367, - [SMALL_STATE(1493)] = 5443, - [SMALL_STATE(1494)] = 5521, - [SMALL_STATE(1495)] = 5591, - [SMALL_STATE(1496)] = 5661, - [SMALL_STATE(1497)] = 5747, - [SMALL_STATE(1498)] = 5821, - [SMALL_STATE(1499)] = 5895, - [SMALL_STATE(1500)] = 5973, - [SMALL_STATE(1501)] = 6059, - [SMALL_STATE(1502)] = 6131, - [SMALL_STATE(1503)] = 6203, - [SMALL_STATE(1504)] = 6277, - [SMALL_STATE(1505)] = 6362, - [SMALL_STATE(1506)] = 6447, - [SMALL_STATE(1507)] = 6530, - [SMALL_STATE(1508)] = 6599, - [SMALL_STATE(1509)] = 6668, - [SMALL_STATE(1510)] = 6739, - [SMALL_STATE(1511)] = 6826, - [SMALL_STATE(1512)] = 6895, - [SMALL_STATE(1513)] = 6964, - [SMALL_STATE(1514)] = 7041, - [SMALL_STATE(1515)] = 7110, - [SMALL_STATE(1516)] = 7193, - [SMALL_STATE(1517)] = 7264, - [SMALL_STATE(1518)] = 7339, - [SMALL_STATE(1519)] = 7408, - [SMALL_STATE(1520)] = 7477, - [SMALL_STATE(1521)] = 7546, - [SMALL_STATE(1522)] = 7615, - [SMALL_STATE(1523)] = 7702, - [SMALL_STATE(1524)] = 7789, - [SMALL_STATE(1525)] = 7876, - [SMALL_STATE(1526)] = 7959, - [SMALL_STATE(1527)] = 8028, - [SMALL_STATE(1528)] = 8115, - [SMALL_STATE(1529)] = 8186, - [SMALL_STATE(1530)] = 8253, - [SMALL_STATE(1531)] = 8322, - [SMALL_STATE(1532)] = 8399, - [SMALL_STATE(1533)] = 8476, - [SMALL_STATE(1534)] = 8547, - [SMALL_STATE(1535)] = 8630, - [SMALL_STATE(1536)] = 8699, - [SMALL_STATE(1537)] = 8766, - [SMALL_STATE(1538)] = 8835, - [SMALL_STATE(1539)] = 8918, - [SMALL_STATE(1540)] = 9033, - [SMALL_STATE(1541)] = 9105, - [SMALL_STATE(1542)] = 9173, - [SMALL_STATE(1543)] = 9249, - [SMALL_STATE(1544)] = 9325, - [SMALL_STATE(1545)] = 9391, - [SMALL_STATE(1546)] = 9461, - [SMALL_STATE(1547)] = 9547, - [SMALL_STATE(1548)] = 9615, - [SMALL_STATE(1549)] = 9685, - [SMALL_STATE(1550)] = 9753, - [SMALL_STATE(1551)] = 9835, - [SMALL_STATE(1552)] = 9901, - [SMALL_STATE(1553)] = 9967, - [SMALL_STATE(1554)] = 10033, - [SMALL_STATE(1555)] = 10101, - [SMALL_STATE(1556)] = 10179, - [SMALL_STATE(1557)] = 10247, - [SMALL_STATE(1558)] = 10315, - [SMALL_STATE(1559)] = 10383, - [SMALL_STATE(1560)] = 10449, - [SMALL_STATE(1561)] = 10531, - [SMALL_STATE(1562)] = 10617, - [SMALL_STATE(1563)] = 10703, - [SMALL_STATE(1564)] = 10771, - [SMALL_STATE(1565)] = 10839, - [SMALL_STATE(1566)] = 10921, - [SMALL_STATE(1567)] = 11003, - [SMALL_STATE(1568)] = 11075, - [SMALL_STATE(1569)] = 11151, - [SMALL_STATE(1570)] = 11237, - [SMALL_STATE(1571)] = 11319, - [SMALL_STATE(1572)] = 11405, - [SMALL_STATE(1573)] = 11489, - [SMALL_STATE(1574)] = 11559, - [SMALL_STATE(1575)] = 11627, - [SMALL_STATE(1576)] = 11701, - [SMALL_STATE(1577)] = 11766, - [SMALL_STATE(1578)] = 11833, - [SMALL_STATE(1579)] = 11908, - [SMALL_STATE(1580)] = 11973, - [SMALL_STATE(1581)] = 12050, - [SMALL_STATE(1582)] = 12115, - [SMALL_STATE(1583)] = 12180, - [SMALL_STATE(1584)] = 12261, - [SMALL_STATE(1585)] = 12334, - [SMALL_STATE(1586)] = 12399, - [SMALL_STATE(1587)] = 12464, - [SMALL_STATE(1588)] = 12537, - [SMALL_STATE(1589)] = 12622, - [SMALL_STATE(1590)] = 12689, - [SMALL_STATE(1591)] = 12756, - [SMALL_STATE(1592)] = 12829, - [SMALL_STATE(1593)] = 12896, - [SMALL_STATE(1594)] = 12963, - [SMALL_STATE(1595)] = 13038, - [SMALL_STATE(1596)] = 13113, - [SMALL_STATE(1597)] = 13178, - [SMALL_STATE(1598)] = 13253, - [SMALL_STATE(1599)] = 13338, - [SMALL_STATE(1600)] = 13403, - [SMALL_STATE(1601)] = 13478, - [SMALL_STATE(1602)] = 13561, - [SMALL_STATE(1603)] = 13646, - [SMALL_STATE(1604)] = 13711, - [SMALL_STATE(1605)] = 13788, - [SMALL_STATE(1606)] = 13853, - [SMALL_STATE(1607)] = 13928, - [SMALL_STATE(1608)] = 13995, - [SMALL_STATE(1609)] = 14070, - [SMALL_STATE(1610)] = 14155, - [SMALL_STATE(1611)] = 14228, - [SMALL_STATE(1612)] = 14293, - [SMALL_STATE(1613)] = 14362, - [SMALL_STATE(1614)] = 14447, - [SMALL_STATE(1615)] = 14512, - [SMALL_STATE(1616)] = 14589, - [SMALL_STATE(1617)] = 14654, - [SMALL_STATE(1618)] = 14738, - [SMALL_STATE(1619)] = 14822, - [SMALL_STATE(1620)] = 14894, - [SMALL_STATE(1621)] = 14976, - [SMALL_STATE(1622)] = 15060, - [SMALL_STATE(1623)] = 15134, - [SMALL_STATE(1624)] = 15218, - [SMALL_STATE(1625)] = 15284, - [SMALL_STATE(1626)] = 15354, - [SMALL_STATE(1627)] = 15426, - [SMALL_STATE(1628)] = 15510, - [SMALL_STATE(1629)] = 15594, - [SMALL_STATE(1630)] = 15678, - [SMALL_STATE(1631)] = 15744, - [SMALL_STATE(1632)] = 15808, - [SMALL_STATE(1633)] = 15874, - [SMALL_STATE(1634)] = 15948, - [SMALL_STATE(1635)] = 16020, - [SMALL_STATE(1636)] = 16084, - [SMALL_STATE(1637)] = 16150, - [SMALL_STATE(1638)] = 16234, - [SMALL_STATE(1639)] = 16304, - [SMALL_STATE(1640)] = 16386, - [SMALL_STATE(1641)] = 16460, - [SMALL_STATE(1642)] = 16526, - [SMALL_STATE(1643)] = 16610, - [SMALL_STATE(1644)] = 16686, - [SMALL_STATE(1645)] = 16754, - [SMALL_STATE(1646)] = 16822, - [SMALL_STATE(1647)] = 16894, - [SMALL_STATE(1648)] = 16966, - [SMALL_STATE(1649)] = 17036, - [SMALL_STATE(1650)] = 17106, - [SMALL_STATE(1651)] = 17172, - [SMALL_STATE(1652)] = 17238, - [SMALL_STATE(1653)] = 17322, - [SMALL_STATE(1654)] = 17388, - [SMALL_STATE(1655)] = 17454, - [SMALL_STATE(1656)] = 17520, - [SMALL_STATE(1657)] = 17586, - [SMALL_STATE(1658)] = 17662, - [SMALL_STATE(1659)] = 17732, - [SMALL_STATE(1660)] = 17798, - [SMALL_STATE(1661)] = 17868, - [SMALL_STATE(1662)] = 17938, - [SMALL_STATE(1663)] = 18008, - [SMALL_STATE(1664)] = 18072, - [SMALL_STATE(1665)] = 18138, - [SMALL_STATE(1666)] = 18220, - [SMALL_STATE(1667)] = 18286, - [SMALL_STATE(1668)] = 18352, - [SMALL_STATE(1669)] = 18416, - [SMALL_STATE(1670)] = 18480, - [SMALL_STATE(1671)] = 18546, - [SMALL_STATE(1672)] = 18610, - [SMALL_STATE(1673)] = 18676, - [SMALL_STATE(1674)] = 18742, - [SMALL_STATE(1675)] = 18818, - [SMALL_STATE(1676)] = 18884, - [SMALL_STATE(1677)] = 18950, - [SMALL_STATE(1678)] = 19017, - [SMALL_STATE(1679)] = 19082, - [SMALL_STATE(1680)] = 19155, - [SMALL_STATE(1681)] = 19220, - [SMALL_STATE(1682)] = 19287, - [SMALL_STATE(1683)] = 19360, - [SMALL_STATE(1684)] = 19427, - [SMALL_STATE(1685)] = 19492, - [SMALL_STATE(1686)] = 19555, - [SMALL_STATE(1687)] = 19626, - [SMALL_STATE(1688)] = 19691, - [SMALL_STATE(1689)] = 19762, - [SMALL_STATE(1690)] = 19831, - [SMALL_STATE(1691)] = 19902, - [SMALL_STATE(1692)] = 19977, - [SMALL_STATE(1693)] = 20042, - [SMALL_STATE(1694)] = 20107, - [SMALL_STATE(1695)] = 20188, - [SMALL_STATE(1696)] = 20253, - [SMALL_STATE(1697)] = 20328, - [SMALL_STATE(1698)] = 20397, - [SMALL_STATE(1699)] = 20462, - [SMALL_STATE(1700)] = 20531, - [SMALL_STATE(1701)] = 20596, - [SMALL_STATE(1702)] = 20669, - [SMALL_STATE(1703)] = 20740, - [SMALL_STATE(1704)] = 20815, - [SMALL_STATE(1705)] = 20880, - [SMALL_STATE(1706)] = 20945, - [SMALL_STATE(1707)] = 21010, - [SMALL_STATE(1708)] = 21075, - [SMALL_STATE(1709)] = 21140, - [SMALL_STATE(1710)] = 21205, - [SMALL_STATE(1711)] = 21288, - [SMALL_STATE(1712)] = 21353, - [SMALL_STATE(1713)] = 21422, - [SMALL_STATE(1714)] = 21499, - [SMALL_STATE(1715)] = 21564, - [SMALL_STATE(1716)] = 21637, - [SMALL_STATE(1717)] = 21720, - [SMALL_STATE(1718)] = 21785, - [SMALL_STATE(1719)] = 21850, - [SMALL_STATE(1720)] = 21921, - [SMALL_STATE(1721)] = 21986, - [SMALL_STATE(1722)] = 22051, - [SMALL_STATE(1723)] = 22116, - [SMALL_STATE(1724)] = 22187, - [SMALL_STATE(1725)] = 22252, - [SMALL_STATE(1726)] = 22325, - [SMALL_STATE(1727)] = 22394, - [SMALL_STATE(1728)] = 22463, - [SMALL_STATE(1729)] = 22536, - [SMALL_STATE(1730)] = 22601, - [SMALL_STATE(1731)] = 22666, - [SMALL_STATE(1732)] = 22731, - [SMALL_STATE(1733)] = 22796, - [SMALL_STATE(1734)] = 22865, - [SMALL_STATE(1735)] = 22930, - [SMALL_STATE(1736)] = 23003, - [SMALL_STATE(1737)] = 23068, - [SMALL_STATE(1738)] = 23133, - [SMALL_STATE(1739)] = 23202, - [SMALL_STATE(1740)] = 23267, - [SMALL_STATE(1741)] = 23336, - [SMALL_STATE(1742)] = 23417, - [SMALL_STATE(1743)] = 23482, - [SMALL_STATE(1744)] = 23547, - [SMALL_STATE(1745)] = 23612, - [SMALL_STATE(1746)] = 23681, - [SMALL_STATE(1747)] = 23758, - [SMALL_STATE(1748)] = 23823, - [SMALL_STATE(1749)] = 23896, - [SMALL_STATE(1750)] = 23975, - [SMALL_STATE(1751)] = 24046, - [SMALL_STATE(1752)] = 24129, - [SMALL_STATE(1753)] = 24212, - [SMALL_STATE(1754)] = 24281, - [SMALL_STATE(1755)] = 24364, - [SMALL_STATE(1756)] = 24429, - [SMALL_STATE(1757)] = 24494, - [SMALL_STATE(1758)] = 24574, - [SMALL_STATE(1759)] = 24654, - [SMALL_STATE(1760)] = 24734, - [SMALL_STATE(1761)] = 24814, - [SMALL_STATE(1762)] = 24894, - [SMALL_STATE(1763)] = 24958, - [SMALL_STATE(1764)] = 25028, - [SMALL_STATE(1765)] = 25090, - [SMALL_STATE(1766)] = 25152, - [SMALL_STATE(1767)] = 25226, - [SMALL_STATE(1768)] = 25306, - [SMALL_STATE(1769)] = 25376, - [SMALL_STATE(1770)] = 25444, - [SMALL_STATE(1771)] = 25516, - [SMALL_STATE(1772)] = 25592, - [SMALL_STATE(1773)] = 25656, - [SMALL_STATE(1774)] = 25732, - [SMALL_STATE(1775)] = 25796, - [SMALL_STATE(1776)] = 25858, - [SMALL_STATE(1777)] = 25928, - [SMALL_STATE(1778)] = 26004, - [SMALL_STATE(1779)] = 26072, - [SMALL_STATE(1780)] = 26146, - [SMALL_STATE(1781)] = 26216, - [SMALL_STATE(1782)] = 26280, - [SMALL_STATE(1783)] = 26348, - [SMALL_STATE(1784)] = 26428, - [SMALL_STATE(1785)] = 26504, - [SMALL_STATE(1786)] = 26580, - [SMALL_STATE(1787)] = 26652, - [SMALL_STATE(1788)] = 26728, - [SMALL_STATE(1789)] = 26792, - [SMALL_STATE(1790)] = 26868, - [SMALL_STATE(1791)] = 26940, - [SMALL_STATE(1792)] = 27020, - [SMALL_STATE(1793)] = 27094, - [SMALL_STATE(1794)] = 27158, - [SMALL_STATE(1795)] = 27222, - [SMALL_STATE(1796)] = 27286, - [SMALL_STATE(1797)] = 27352, - [SMALL_STATE(1798)] = 27420, - [SMALL_STATE(1799)] = 27488, - [SMALL_STATE(1800)] = 27556, - [SMALL_STATE(1801)] = 27622, - [SMALL_STATE(1802)] = 27688, - [SMALL_STATE(1803)] = 27764, - [SMALL_STATE(1804)] = 27832, - [SMALL_STATE(1805)] = 27904, - [SMALL_STATE(1806)] = 27972, - [SMALL_STATE(1807)] = 28036, - [SMALL_STATE(1808)] = 28114, - [SMALL_STATE(1809)] = 28178, - [SMALL_STATE(1810)] = 28242, - [SMALL_STATE(1811)] = 28306, - [SMALL_STATE(1812)] = 28370, - [SMALL_STATE(1813)] = 28436, - [SMALL_STATE(1814)] = 28512, - [SMALL_STATE(1815)] = 28576, - [SMALL_STATE(1816)] = 28644, - [SMALL_STATE(1817)] = 28712, - [SMALL_STATE(1818)] = 28790, - [SMALL_STATE(1819)] = 28858, - [SMALL_STATE(1820)] = 28922, - [SMALL_STATE(1821)] = 28984, - [SMALL_STATE(1822)] = 29052, - [SMALL_STATE(1823)] = 29116, - [SMALL_STATE(1824)] = 29186, - [SMALL_STATE(1825)] = 29250, - [SMALL_STATE(1826)] = 29314, - [SMALL_STATE(1827)] = 29378, - [SMALL_STATE(1828)] = 29442, - [SMALL_STATE(1829)] = 29514, - [SMALL_STATE(1830)] = 29580, - [SMALL_STATE(1831)] = 29644, - [SMALL_STATE(1832)] = 29708, - [SMALL_STATE(1833)] = 29772, - [SMALL_STATE(1834)] = 29836, - [SMALL_STATE(1835)] = 29900, - [SMALL_STATE(1836)] = 29968, - [SMALL_STATE(1837)] = 30032, - [SMALL_STATE(1838)] = 30104, - [SMALL_STATE(1839)] = 30170, - [SMALL_STATE(1840)] = 30234, - [SMALL_STATE(1841)] = 30298, - [SMALL_STATE(1842)] = 30362, - [SMALL_STATE(1843)] = 30432, - [SMALL_STATE(1844)] = 30496, - [SMALL_STATE(1845)] = 30566, - [SMALL_STATE(1846)] = 30636, - [SMALL_STATE(1847)] = 30706, - [SMALL_STATE(1848)] = 30782, - [SMALL_STATE(1849)] = 30850, - [SMALL_STATE(1850)] = 30914, - [SMALL_STATE(1851)] = 30978, - [SMALL_STATE(1852)] = 31042, - [SMALL_STATE(1853)] = 31110, - [SMALL_STATE(1854)] = 31176, - [SMALL_STATE(1855)] = 31244, - [SMALL_STATE(1856)] = 31312, - [SMALL_STATE(1857)] = 31380, - [SMALL_STATE(1858)] = 31452, - [SMALL_STATE(1859)] = 31516, - [SMALL_STATE(1860)] = 31579, - [SMALL_STATE(1861)] = 31642, - [SMALL_STATE(1862)] = 31703, - [SMALL_STATE(1863)] = 31764, - [SMALL_STATE(1864)] = 31827, - [SMALL_STATE(1865)] = 31894, - [SMALL_STATE(1866)] = 31955, - [SMALL_STATE(1867)] = 32016, - [SMALL_STATE(1868)] = 32077, - [SMALL_STATE(1869)] = 32140, - [SMALL_STATE(1870)] = 32207, - [SMALL_STATE(1871)] = 32270, - [SMALL_STATE(1872)] = 32333, - [SMALL_STATE(1873)] = 32394, - [SMALL_STATE(1874)] = 32457, - [SMALL_STATE(1875)] = 32528, - [SMALL_STATE(1876)] = 32591, - [SMALL_STATE(1877)] = 32654, - [SMALL_STATE(1878)] = 32717, - [SMALL_STATE(1879)] = 32778, - [SMALL_STATE(1880)] = 32841, - [SMALL_STATE(1881)] = 32904, - [SMALL_STATE(1882)] = 32965, - [SMALL_STATE(1883)] = 33028, - [SMALL_STATE(1884)] = 33089, - [SMALL_STATE(1885)] = 33152, - [SMALL_STATE(1886)] = 33219, - [SMALL_STATE(1887)] = 33280, - [SMALL_STATE(1888)] = 33347, - [SMALL_STATE(1889)] = 33410, - [SMALL_STATE(1890)] = 33477, - [SMALL_STATE(1891)] = 33540, - [SMALL_STATE(1892)] = 33603, - [SMALL_STATE(1893)] = 33666, - [SMALL_STATE(1894)] = 33729, - [SMALL_STATE(1895)] = 33796, - [SMALL_STATE(1896)] = 33859, - [SMALL_STATE(1897)] = 33922, - [SMALL_STATE(1898)] = 33985, - [SMALL_STATE(1899)] = 34048, - [SMALL_STATE(1900)] = 34115, - [SMALL_STATE(1901)] = 34182, - [SMALL_STATE(1902)] = 34249, - [SMALL_STATE(1903)] = 34314, - [SMALL_STATE(1904)] = 34393, - [SMALL_STATE(1905)] = 34456, - [SMALL_STATE(1906)] = 34519, - [SMALL_STATE(1907)] = 34588, - [SMALL_STATE(1908)] = 34651, - [SMALL_STATE(1909)] = 34716, - [SMALL_STATE(1910)] = 34781, - [SMALL_STATE(1911)] = 34844, - [SMALL_STATE(1912)] = 34915, - [SMALL_STATE(1913)] = 34982, - [SMALL_STATE(1914)] = 35045, - [SMALL_STATE(1915)] = 35114, - [SMALL_STATE(1916)] = 35177, - [SMALL_STATE(1917)] = 35250, - [SMALL_STATE(1918)] = 35311, - [SMALL_STATE(1919)] = 35378, - [SMALL_STATE(1920)] = 35441, - [SMALL_STATE(1921)] = 35508, - [SMALL_STATE(1922)] = 35571, - [SMALL_STATE(1923)] = 35640, - [SMALL_STATE(1924)] = 35703, - [SMALL_STATE(1925)] = 35766, - [SMALL_STATE(1926)] = 35833, - [SMALL_STATE(1927)] = 35900, - [SMALL_STATE(1928)] = 35963, - [SMALL_STATE(1929)] = 36030, - [SMALL_STATE(1930)] = 36099, - [SMALL_STATE(1931)] = 36166, - [SMALL_STATE(1932)] = 36229, - [SMALL_STATE(1933)] = 36296, - [SMALL_STATE(1934)] = 36359, - [SMALL_STATE(1935)] = 36422, - [SMALL_STATE(1936)] = 36485, - [SMALL_STATE(1937)] = 36548, - [SMALL_STATE(1938)] = 36617, - [SMALL_STATE(1939)] = 36684, - [SMALL_STATE(1940)] = 36751, - [SMALL_STATE(1941)] = 36818, - [SMALL_STATE(1942)] = 36889, - [SMALL_STATE(1943)] = 36956, - [SMALL_STATE(1944)] = 37019, - [SMALL_STATE(1945)] = 37086, - [SMALL_STATE(1946)] = 37149, - [SMALL_STATE(1947)] = 37216, - [SMALL_STATE(1948)] = 37277, - [SMALL_STATE(1949)] = 37340, - [SMALL_STATE(1950)] = 37407, - [SMALL_STATE(1951)] = 37470, - [SMALL_STATE(1952)] = 37537, - [SMALL_STATE(1953)] = 37602, - [SMALL_STATE(1954)] = 37665, - [SMALL_STATE(1955)] = 37728, - [SMALL_STATE(1956)] = 37791, - [SMALL_STATE(1957)] = 37862, - [SMALL_STATE(1958)] = 37929, - [SMALL_STATE(1959)] = 37992, - [SMALL_STATE(1960)] = 38057, - [SMALL_STATE(1961)] = 38120, - [SMALL_STATE(1962)] = 38187, - [SMALL_STATE(1963)] = 38256, - [SMALL_STATE(1964)] = 38319, - [SMALL_STATE(1965)] = 38382, - [SMALL_STATE(1966)] = 38459, - [SMALL_STATE(1967)] = 38532, - [SMALL_STATE(1968)] = 38595, - [SMALL_STATE(1969)] = 38658, - [SMALL_STATE(1970)] = 38721, - [SMALL_STATE(1971)] = 38784, - [SMALL_STATE(1972)] = 38851, - [SMALL_STATE(1973)] = 38920, - [SMALL_STATE(1974)] = 38987, - [SMALL_STATE(1975)] = 39049, - [SMALL_STATE(1976)] = 39109, - [SMALL_STATE(1977)] = 39169, - [SMALL_STATE(1978)] = 39235, - [SMALL_STATE(1979)] = 39305, - [SMALL_STATE(1980)] = 39371, - [SMALL_STATE(1981)] = 39431, - [SMALL_STATE(1982)] = 39497, - [SMALL_STATE(1983)] = 39563, - [SMALL_STATE(1984)] = 39627, - [SMALL_STATE(1985)] = 39687, - [SMALL_STATE(1986)] = 39747, - [SMALL_STATE(1987)] = 39813, - [SMALL_STATE(1988)] = 39879, - [SMALL_STATE(1989)] = 39957, - [SMALL_STATE(1990)] = 40021, - [SMALL_STATE(1991)] = 40087, - [SMALL_STATE(1992)] = 40153, - [SMALL_STATE(1993)] = 40213, - [SMALL_STATE(1994)] = 40277, - [SMALL_STATE(1995)] = 40343, - [SMALL_STATE(1996)] = 40405, - [SMALL_STATE(1997)] = 40471, - [SMALL_STATE(1998)] = 40531, - [SMALL_STATE(1999)] = 40597, - [SMALL_STATE(2000)] = 40657, - [SMALL_STATE(2001)] = 40717, - [SMALL_STATE(2002)] = 40777, - [SMALL_STATE(2003)] = 40837, - [SMALL_STATE(2004)] = 40899, - [SMALL_STATE(2005)] = 40961, - [SMALL_STATE(2006)] = 41023, - [SMALL_STATE(2007)] = 41085, - [SMALL_STATE(2008)] = 41147, - [SMALL_STATE(2009)] = 41211, - [SMALL_STATE(2010)] = 41273, - [SMALL_STATE(2011)] = 41337, - [SMALL_STATE(2012)] = 41399, - [SMALL_STATE(2013)] = 41461, - [SMALL_STATE(2014)] = 41521, - [SMALL_STATE(2015)] = 41583, - [SMALL_STATE(2016)] = 41645, - [SMALL_STATE(2017)] = 41713, - [SMALL_STATE(2018)] = 41773, - [SMALL_STATE(2019)] = 41835, - [SMALL_STATE(2020)] = 41899, - [SMALL_STATE(2021)] = 41961, - [SMALL_STATE(2022)] = 42021, - [SMALL_STATE(2023)] = 42087, - [SMALL_STATE(2024)] = 42149, - [SMALL_STATE(2025)] = 42227, - [SMALL_STATE(2026)] = 42305, - [SMALL_STATE(2027)] = 42367, - [SMALL_STATE(2028)] = 42429, - [SMALL_STATE(2029)] = 42507, - [SMALL_STATE(2030)] = 42569, - [SMALL_STATE(2031)] = 42629, - [SMALL_STATE(2032)] = 42691, - [SMALL_STATE(2033)] = 42759, - [SMALL_STATE(2034)] = 42823, - [SMALL_STATE(2035)] = 42885, - [SMALL_STATE(2036)] = 42947, - [SMALL_STATE(2037)] = 43011, - [SMALL_STATE(2038)] = 43073, - [SMALL_STATE(2039)] = 43135, - [SMALL_STATE(2040)] = 43201, - [SMALL_STATE(2041)] = 43261, - [SMALL_STATE(2042)] = 43321, - [SMALL_STATE(2043)] = 43383, - [SMALL_STATE(2044)] = 43445, - [SMALL_STATE(2045)] = 43517, - [SMALL_STATE(2046)] = 43579, - [SMALL_STATE(2047)] = 43641, - [SMALL_STATE(2048)] = 43703, - [SMALL_STATE(2049)] = 43765, - [SMALL_STATE(2050)] = 43827, - [SMALL_STATE(2051)] = 43889, - [SMALL_STATE(2052)] = 43951, - [SMALL_STATE(2053)] = 44017, - [SMALL_STATE(2054)] = 44079, - [SMALL_STATE(2055)] = 44141, - [SMALL_STATE(2056)] = 44203, - [SMALL_STATE(2057)] = 44271, - [SMALL_STATE(2058)] = 44337, - [SMALL_STATE(2059)] = 44415, - [SMALL_STATE(2060)] = 44475, - [SMALL_STATE(2061)] = 44537, - [SMALL_STATE(2062)] = 44603, - [SMALL_STATE(2063)] = 44669, - [SMALL_STATE(2064)] = 44731, - [SMALL_STATE(2065)] = 44795, - [SMALL_STATE(2066)] = 44857, - [SMALL_STATE(2067)] = 44919, - [SMALL_STATE(2068)] = 44981, - [SMALL_STATE(2069)] = 45043, - [SMALL_STATE(2070)] = 45105, - [SMALL_STATE(2071)] = 45167, - [SMALL_STATE(2072)] = 45231, - [SMALL_STATE(2073)] = 45297, - [SMALL_STATE(2074)] = 45359, - [SMALL_STATE(2075)] = 45425, - [SMALL_STATE(2076)] = 45491, - [SMALL_STATE(2077)] = 45551, - [SMALL_STATE(2078)] = 45611, - [SMALL_STATE(2079)] = 45671, - [SMALL_STATE(2080)] = 45733, - [SMALL_STATE(2081)] = 45795, - [SMALL_STATE(2082)] = 45857, - [SMALL_STATE(2083)] = 45933, - [SMALL_STATE(2084)] = 45995, - [SMALL_STATE(2085)] = 46059, - [SMALL_STATE(2086)] = 46123, - [SMALL_STATE(2087)] = 46185, - [SMALL_STATE(2088)] = 46247, - [SMALL_STATE(2089)] = 46307, - [SMALL_STATE(2090)] = 46373, - [SMALL_STATE(2091)] = 46433, - [SMALL_STATE(2092)] = 46495, - [SMALL_STATE(2093)] = 46561, - [SMALL_STATE(2094)] = 46623, - [SMALL_STATE(2095)] = 46683, - [SMALL_STATE(2096)] = 46743, - [SMALL_STATE(2097)] = 46803, - [SMALL_STATE(2098)] = 46865, - [SMALL_STATE(2099)] = 46929, - [SMALL_STATE(2100)] = 46991, - [SMALL_STATE(2101)] = 47053, - [SMALL_STATE(2102)] = 47117, - [SMALL_STATE(2103)] = 47179, - [SMALL_STATE(2104)] = 47241, - [SMALL_STATE(2105)] = 47303, - [SMALL_STATE(2106)] = 47364, - [SMALL_STATE(2107)] = 47423, - [SMALL_STATE(2108)] = 47482, - [SMALL_STATE(2109)] = 47543, - [SMALL_STATE(2110)] = 47602, - [SMALL_STATE(2111)] = 47661, - [SMALL_STATE(2112)] = 47722, - [SMALL_STATE(2113)] = 47799, - [SMALL_STATE(2114)] = 47876, - [SMALL_STATE(2115)] = 47939, - [SMALL_STATE(2116)] = 48016, - [SMALL_STATE(2117)] = 48093, - [SMALL_STATE(2118)] = 48160, - [SMALL_STATE(2119)] = 48229, - [SMALL_STATE(2120)] = 48294, - [SMALL_STATE(2121)] = 48371, - [SMALL_STATE(2122)] = 48432, - [SMALL_STATE(2123)] = 48493, - [SMALL_STATE(2124)] = 48558, - [SMALL_STATE(2125)] = 48623, - [SMALL_STATE(2126)] = 48688, - [SMALL_STATE(2127)] = 48749, - [SMALL_STATE(2128)] = 48810, - [SMALL_STATE(2129)] = 48871, - [SMALL_STATE(2130)] = 48932, - [SMALL_STATE(2131)] = 48993, - [SMALL_STATE(2132)] = 49058, - [SMALL_STATE(2133)] = 49123, - [SMALL_STATE(2134)] = 49184, - [SMALL_STATE(2135)] = 49249, - [SMALL_STATE(2136)] = 49310, - [SMALL_STATE(2137)] = 49373, - [SMALL_STATE(2138)] = 49434, - [SMALL_STATE(2139)] = 49495, - [SMALL_STATE(2140)] = 49560, - [SMALL_STATE(2141)] = 49621, - [SMALL_STATE(2142)] = 49680, - [SMALL_STATE(2143)] = 49745, - [SMALL_STATE(2144)] = 49804, - [SMALL_STATE(2145)] = 49869, - [SMALL_STATE(2146)] = 49932, - [SMALL_STATE(2147)] = 49991, - [SMALL_STATE(2148)] = 50052, - [SMALL_STATE(2149)] = 50111, - [SMALL_STATE(2150)] = 50170, - [SMALL_STATE(2151)] = 50235, - [SMALL_STATE(2152)] = 50296, - [SMALL_STATE(2153)] = 50357, - [SMALL_STATE(2154)] = 50416, - [SMALL_STATE(2155)] = 50481, - [SMALL_STATE(2156)] = 50540, - [SMALL_STATE(2157)] = 50601, - [SMALL_STATE(2158)] = 50660, - [SMALL_STATE(2159)] = 50721, - [SMALL_STATE(2160)] = 50782, - [SMALL_STATE(2161)] = 50841, - [SMALL_STATE(2162)] = 50900, - [SMALL_STATE(2163)] = 50961, - [SMALL_STATE(2164)] = 51020, - [SMALL_STATE(2165)] = 51089, - [SMALL_STATE(2166)] = 51150, - [SMALL_STATE(2167)] = 51211, - [SMALL_STATE(2168)] = 51272, - [SMALL_STATE(2169)] = 51333, - [SMALL_STATE(2170)] = 51394, - [SMALL_STATE(2171)] = 51459, - [SMALL_STATE(2172)] = 51520, - [SMALL_STATE(2173)] = 51581, - [SMALL_STATE(2174)] = 51642, - [SMALL_STATE(2175)] = 51707, - [SMALL_STATE(2176)] = 51767, - [SMALL_STATE(2177)] = 51831, - [SMALL_STATE(2178)] = 51889, - [SMALL_STATE(2179)] = 51947, - [SMALL_STATE(2180)] = 52007, - [SMALL_STATE(2181)] = 52067, - [SMALL_STATE(2182)] = 52127, - [SMALL_STATE(2183)] = 52187, - [SMALL_STATE(2184)] = 52245, - [SMALL_STATE(2185)] = 52303, - [SMALL_STATE(2186)] = 52361, - [SMALL_STATE(2187)] = 52419, - [SMALL_STATE(2188)] = 52477, - [SMALL_STATE(2189)] = 52535, - [SMALL_STATE(2190)] = 52593, - [SMALL_STATE(2191)] = 52651, - [SMALL_STATE(2192)] = 52709, - [SMALL_STATE(2193)] = 52767, - [SMALL_STATE(2194)] = 52825, - [SMALL_STATE(2195)] = 52885, - [SMALL_STATE(2196)] = 52947, - [SMALL_STATE(2197)] = 53007, - [SMALL_STATE(2198)] = 53065, - [SMALL_STATE(2199)] = 53123, - [SMALL_STATE(2200)] = 53181, - [SMALL_STATE(2201)] = 53239, - [SMALL_STATE(2202)] = 53297, - [SMALL_STATE(2203)] = 53355, - [SMALL_STATE(2204)] = 53413, - [SMALL_STATE(2205)] = 53471, - [SMALL_STATE(2206)] = 53529, - [SMALL_STATE(2207)] = 53587, - [SMALL_STATE(2208)] = 53645, - [SMALL_STATE(2209)] = 53703, - [SMALL_STATE(2210)] = 53763, - [SMALL_STATE(2211)] = 53823, - [SMALL_STATE(2212)] = 53881, - [SMALL_STATE(2213)] = 53941, - [SMALL_STATE(2214)] = 53999, - [SMALL_STATE(2215)] = 54059, - [SMALL_STATE(2216)] = 54119, - [SMALL_STATE(2217)] = 54177, - [SMALL_STATE(2218)] = 54237, - [SMALL_STATE(2219)] = 54297, - [SMALL_STATE(2220)] = 54355, - [SMALL_STATE(2221)] = 54423, - [SMALL_STATE(2222)] = 54487, - [SMALL_STATE(2223)] = 54545, - [SMALL_STATE(2224)] = 54607, - [SMALL_STATE(2225)] = 54665, - [SMALL_STATE(2226)] = 54723, - [SMALL_STATE(2227)] = 54781, - [SMALL_STATE(2228)] = 54839, - [SMALL_STATE(2229)] = 54899, - [SMALL_STATE(2230)] = 54957, - [SMALL_STATE(2231)] = 55015, - [SMALL_STATE(2232)] = 55075, - [SMALL_STATE(2233)] = 55141, - [SMALL_STATE(2234)] = 55199, - [SMALL_STATE(2235)] = 55259, - [SMALL_STATE(2236)] = 55319, - [SMALL_STATE(2237)] = 55379, - [SMALL_STATE(2238)] = 55439, - [SMALL_STATE(2239)] = 55499, - [SMALL_STATE(2240)] = 55559, - [SMALL_STATE(2241)] = 55619, - [SMALL_STATE(2242)] = 55677, - [SMALL_STATE(2243)] = 55737, - [SMALL_STATE(2244)] = 55797, - [SMALL_STATE(2245)] = 55855, - [SMALL_STATE(2246)] = 55915, - [SMALL_STATE(2247)] = 55975, - [SMALL_STATE(2248)] = 56035, - [SMALL_STATE(2249)] = 56095, - [SMALL_STATE(2250)] = 56153, - [SMALL_STATE(2251)] = 56213, - [SMALL_STATE(2252)] = 56271, - [SMALL_STATE(2253)] = 56329, - [SMALL_STATE(2254)] = 56389, - [SMALL_STATE(2255)] = 56449, - [SMALL_STATE(2256)] = 56507, - [SMALL_STATE(2257)] = 56567, - [SMALL_STATE(2258)] = 56625, - [SMALL_STATE(2259)] = 56683, - [SMALL_STATE(2260)] = 56741, - [SMALL_STATE(2261)] = 56801, - [SMALL_STATE(2262)] = 56861, - [SMALL_STATE(2263)] = 56919, - [SMALL_STATE(2264)] = 56977, - [SMALL_STATE(2265)] = 57035, - [SMALL_STATE(2266)] = 57093, - [SMALL_STATE(2267)] = 57153, - [SMALL_STATE(2268)] = 57211, - [SMALL_STATE(2269)] = 57269, - [SMALL_STATE(2270)] = 57327, - [SMALL_STATE(2271)] = 57385, - [SMALL_STATE(2272)] = 57445, - [SMALL_STATE(2273)] = 57503, - [SMALL_STATE(2274)] = 57593, - [SMALL_STATE(2275)] = 57651, - [SMALL_STATE(2276)] = 57709, - [SMALL_STATE(2277)] = 57769, - [SMALL_STATE(2278)] = 57827, - [SMALL_STATE(2279)] = 57885, - [SMALL_STATE(2280)] = 57943, - [SMALL_STATE(2281)] = 58003, - [SMALL_STATE(2282)] = 58061, - [SMALL_STATE(2283)] = 58119, - [SMALL_STATE(2284)] = 58177, - [SMALL_STATE(2285)] = 58235, - [SMALL_STATE(2286)] = 58293, - [SMALL_STATE(2287)] = 58353, - [SMALL_STATE(2288)] = 58411, - [SMALL_STATE(2289)] = 58475, - [SMALL_STATE(2290)] = 58533, - [SMALL_STATE(2291)] = 58591, - [SMALL_STATE(2292)] = 58649, - [SMALL_STATE(2293)] = 58707, - [SMALL_STATE(2294)] = 58765, - [SMALL_STATE(2295)] = 58823, - [SMALL_STATE(2296)] = 58881, - [SMALL_STATE(2297)] = 58941, - [SMALL_STATE(2298)] = 59005, - [SMALL_STATE(2299)] = 59063, - [SMALL_STATE(2300)] = 59153, - [SMALL_STATE(2301)] = 59211, - [SMALL_STATE(2302)] = 59269, - [SMALL_STATE(2303)] = 59327, - [SMALL_STATE(2304)] = 59385, - [SMALL_STATE(2305)] = 59443, - [SMALL_STATE(2306)] = 59501, - [SMALL_STATE(2307)] = 59559, - [SMALL_STATE(2308)] = 59619, - [SMALL_STATE(2309)] = 59677, - [SMALL_STATE(2310)] = 59735, - [SMALL_STATE(2311)] = 59799, - [SMALL_STATE(2312)] = 59859, - [SMALL_STATE(2313)] = 59923, - [SMALL_STATE(2314)] = 59981, - [SMALL_STATE(2315)] = 60045, - [SMALL_STATE(2316)] = 60109, - [SMALL_STATE(2317)] = 60167, - [SMALL_STATE(2318)] = 60225, - [SMALL_STATE(2319)] = 60285, - [SMALL_STATE(2320)] = 60343, - [SMALL_STATE(2321)] = 60409, - [SMALL_STATE(2322)] = 60467, - [SMALL_STATE(2323)] = 60525, - [SMALL_STATE(2324)] = 60615, - [SMALL_STATE(2325)] = 60673, - [SMALL_STATE(2326)] = 60733, - [SMALL_STATE(2327)] = 60793, - [SMALL_STATE(2328)] = 60853, - [SMALL_STATE(2329)] = 60913, - [SMALL_STATE(2330)] = 60971, - [SMALL_STATE(2331)] = 61029, - [SMALL_STATE(2332)] = 61089, - [SMALL_STATE(2333)] = 61149, - [SMALL_STATE(2334)] = 61207, - [SMALL_STATE(2335)] = 61267, - [SMALL_STATE(2336)] = 61327, - [SMALL_STATE(2337)] = 61385, - [SMALL_STATE(2338)] = 61443, - [SMALL_STATE(2339)] = 61503, - [SMALL_STATE(2340)] = 61561, - [SMALL_STATE(2341)] = 61621, - [SMALL_STATE(2342)] = 61681, - [SMALL_STATE(2343)] = 61739, - [SMALL_STATE(2344)] = 61801, - [SMALL_STATE(2345)] = 61861, - [SMALL_STATE(2346)] = 61919, - [SMALL_STATE(2347)] = 61979, - [SMALL_STATE(2348)] = 62037, - [SMALL_STATE(2349)] = 62097, - [SMALL_STATE(2350)] = 62157, - [SMALL_STATE(2351)] = 62217, - [SMALL_STATE(2352)] = 62277, - [SMALL_STATE(2353)] = 62337, - [SMALL_STATE(2354)] = 62397, - [SMALL_STATE(2355)] = 62457, - [SMALL_STATE(2356)] = 62516, - [SMALL_STATE(2357)] = 62575, - [SMALL_STATE(2358)] = 62634, - [SMALL_STATE(2359)] = 62693, - [SMALL_STATE(2360)] = 62756, - [SMALL_STATE(2361)] = 62815, - [SMALL_STATE(2362)] = 62874, - [SMALL_STATE(2363)] = 62933, - [SMALL_STATE(2364)] = 62992, - [SMALL_STATE(2365)] = 63051, - [SMALL_STATE(2366)] = 63110, - [SMALL_STATE(2367)] = 63173, - [SMALL_STATE(2368)] = 63232, - [SMALL_STATE(2369)] = 63291, - [SMALL_STATE(2370)] = 63350, - [SMALL_STATE(2371)] = 63409, - [SMALL_STATE(2372)] = 63468, - [SMALL_STATE(2373)] = 63527, - [SMALL_STATE(2374)] = 63592, - [SMALL_STATE(2375)] = 63651, - [SMALL_STATE(2376)] = 63710, - [SMALL_STATE(2377)] = 63769, - [SMALL_STATE(2378)] = 63828, - [SMALL_STATE(2379)] = 63893, - [SMALL_STATE(2380)] = 63952, - [SMALL_STATE(2381)] = 64013, - [SMALL_STATE(2382)] = 64072, - [SMALL_STATE(2383)] = 64135, - [SMALL_STATE(2384)] = 64194, - [SMALL_STATE(2385)] = 64253, - [SMALL_STATE(2386)] = 64312, - [SMALL_STATE(2387)] = 64371, - [SMALL_STATE(2388)] = 64428, - [SMALL_STATE(2389)] = 64487, - [SMALL_STATE(2390)] = 64544, - [SMALL_STATE(2391)] = 64601, - [SMALL_STATE(2392)] = 64660, - [SMALL_STATE(2393)] = 64719, - [SMALL_STATE(2394)] = 64782, - [SMALL_STATE(2395)] = 64845, - [SMALL_STATE(2396)] = 64904, - [SMALL_STATE(2397)] = 64963, - [SMALL_STATE(2398)] = 65022, - [SMALL_STATE(2399)] = 65081, - [SMALL_STATE(2400)] = 65140, - [SMALL_STATE(2401)] = 65199, - [SMALL_STATE(2402)] = 65258, - [SMALL_STATE(2403)] = 65321, - [SMALL_STATE(2404)] = 65380, - [SMALL_STATE(2405)] = 65439, - [SMALL_STATE(2406)] = 65498, - [SMALL_STATE(2407)] = 65557, - [SMALL_STATE(2408)] = 65614, - [SMALL_STATE(2409)] = 65673, - [SMALL_STATE(2410)] = 65736, - [SMALL_STATE(2411)] = 65795, - [SMALL_STATE(2412)] = 65860, - [SMALL_STATE(2413)] = 65919, - [SMALL_STATE(2414)] = 65980, - [SMALL_STATE(2415)] = 66039, - [SMALL_STATE(2416)] = 66098, - [SMALL_STATE(2417)] = 66155, - [SMALL_STATE(2418)] = 66214, - [SMALL_STATE(2419)] = 66273, - [SMALL_STATE(2420)] = 66332, - [SMALL_STATE(2421)] = 66391, - [SMALL_STATE(2422)] = 66450, - [SMALL_STATE(2423)] = 66509, - [SMALL_STATE(2424)] = 66568, - [SMALL_STATE(2425)] = 66627, - [SMALL_STATE(2426)] = 66686, - [SMALL_STATE(2427)] = 66745, - [SMALL_STATE(2428)] = 66804, - [SMALL_STATE(2429)] = 66861, - [SMALL_STATE(2430)] = 66918, - [SMALL_STATE(2431)] = 66981, - [SMALL_STATE(2432)] = 67040, - [SMALL_STATE(2433)] = 67103, - [SMALL_STATE(2434)] = 67166, - [SMALL_STATE(2435)] = 67225, - [SMALL_STATE(2436)] = 67282, - [SMALL_STATE(2437)] = 67341, - [SMALL_STATE(2438)] = 67400, - [SMALL_STATE(2439)] = 67457, - [SMALL_STATE(2440)] = 67516, - [SMALL_STATE(2441)] = 67575, - [SMALL_STATE(2442)] = 67634, - [SMALL_STATE(2443)] = 67695, - [SMALL_STATE(2444)] = 67754, - [SMALL_STATE(2445)] = 67813, - [SMALL_STATE(2446)] = 67874, - [SMALL_STATE(2447)] = 67933, - [SMALL_STATE(2448)] = 67992, - [SMALL_STATE(2449)] = 68051, - [SMALL_STATE(2450)] = 68110, - [SMALL_STATE(2451)] = 68169, - [SMALL_STATE(2452)] = 68228, - [SMALL_STATE(2453)] = 68287, - [SMALL_STATE(2454)] = 68345, - [SMALL_STATE(2455)] = 68403, - [SMALL_STATE(2456)] = 68461, - [SMALL_STATE(2457)] = 68521, - [SMALL_STATE(2458)] = 68579, - [SMALL_STATE(2459)] = 68635, - [SMALL_STATE(2460)] = 68697, - [SMALL_STATE(2461)] = 68755, - [SMALL_STATE(2462)] = 68817, - [SMALL_STATE(2463)] = 68877, - [SMALL_STATE(2464)] = 68935, - [SMALL_STATE(2465)] = 68993, - [SMALL_STATE(2466)] = 69049, - [SMALL_STATE(2467)] = 69107, - [SMALL_STATE(2468)] = 69171, - [SMALL_STATE(2469)] = 69229, - [SMALL_STATE(2470)] = 69285, - [SMALL_STATE(2471)] = 69343, - [SMALL_STATE(2472)] = 69399, - [SMALL_STATE(2473)] = 69457, - [SMALL_STATE(2474)] = 69515, - [SMALL_STATE(2475)] = 69573, - [SMALL_STATE(2476)] = 69631, - [SMALL_STATE(2477)] = 69689, - [SMALL_STATE(2478)] = 69747, - [SMALL_STATE(2479)] = 69805, - [SMALL_STATE(2480)] = 69867, - [SMALL_STATE(2481)] = 69929, - [SMALL_STATE(2482)] = 69987, - [SMALL_STATE(2483)] = 70045, - [SMALL_STATE(2484)] = 70103, - [SMALL_STATE(2485)] = 70161, - [SMALL_STATE(2486)] = 70219, - [SMALL_STATE(2487)] = 70275, - [SMALL_STATE(2488)] = 70333, - [SMALL_STATE(2489)] = 70391, - [SMALL_STATE(2490)] = 70449, - [SMALL_STATE(2491)] = 70507, - [SMALL_STATE(2492)] = 70565, - [SMALL_STATE(2493)] = 70623, - [SMALL_STATE(2494)] = 70679, - [SMALL_STATE(2495)] = 70737, - [SMALL_STATE(2496)] = 70797, - [SMALL_STATE(2497)] = 70855, - [SMALL_STATE(2498)] = 70913, - [SMALL_STATE(2499)] = 70971, - [SMALL_STATE(2500)] = 71029, - [SMALL_STATE(2501)] = 71085, - [SMALL_STATE(2502)] = 71143, - [SMALL_STATE(2503)] = 71201, - [SMALL_STATE(2504)] = 71259, - [SMALL_STATE(2505)] = 71317, - [SMALL_STATE(2506)] = 71375, - [SMALL_STATE(2507)] = 71435, - [SMALL_STATE(2508)] = 71493, - [SMALL_STATE(2509)] = 71551, - [SMALL_STATE(2510)] = 71609, - [SMALL_STATE(2511)] = 71665, - [SMALL_STATE(2512)] = 71723, - [SMALL_STATE(2513)] = 71781, - [SMALL_STATE(2514)] = 71853, - [SMALL_STATE(2515)] = 71911, - [SMALL_STATE(2516)] = 71969, - [SMALL_STATE(2517)] = 72027, - [SMALL_STATE(2518)] = 72085, - [SMALL_STATE(2519)] = 72143, - [SMALL_STATE(2520)] = 72201, - [SMALL_STATE(2521)] = 72259, - [SMALL_STATE(2522)] = 72317, - [SMALL_STATE(2523)] = 72375, - [SMALL_STATE(2524)] = 72433, - [SMALL_STATE(2525)] = 72491, - [SMALL_STATE(2526)] = 72549, - [SMALL_STATE(2527)] = 72607, - [SMALL_STATE(2528)] = 72665, - [SMALL_STATE(2529)] = 72723, - [SMALL_STATE(2530)] = 72781, - [SMALL_STATE(2531)] = 72837, - [SMALL_STATE(2532)] = 72893, - [SMALL_STATE(2533)] = 72951, - [SMALL_STATE(2534)] = 73009, - [SMALL_STATE(2535)] = 73067, - [SMALL_STATE(2536)] = 73125, - [SMALL_STATE(2537)] = 73181, - [SMALL_STATE(2538)] = 73237, - [SMALL_STATE(2539)] = 73295, - [SMALL_STATE(2540)] = 73351, - [SMALL_STATE(2541)] = 73409, - [SMALL_STATE(2542)] = 73471, - [SMALL_STATE(2543)] = 73527, - [SMALL_STATE(2544)] = 73583, - [SMALL_STATE(2545)] = 73641, - [SMALL_STATE(2546)] = 73699, - [SMALL_STATE(2547)] = 73757, - [SMALL_STATE(2548)] = 73819, - [SMALL_STATE(2549)] = 73875, - [SMALL_STATE(2550)] = 73937, - [SMALL_STATE(2551)] = 73995, - [SMALL_STATE(2552)] = 74057, - [SMALL_STATE(2553)] = 74117, - [SMALL_STATE(2554)] = 74183, - [SMALL_STATE(2555)] = 74241, - [SMALL_STATE(2556)] = 74299, - [SMALL_STATE(2557)] = 74357, - [SMALL_STATE(2558)] = 74413, - [SMALL_STATE(2559)] = 74469, - [SMALL_STATE(2560)] = 74526, - [SMALL_STATE(2561)] = 74583, - [SMALL_STATE(2562)] = 74640, - [SMALL_STATE(2563)] = 74697, - [SMALL_STATE(2564)] = 74754, - [SMALL_STATE(2565)] = 74811, - [SMALL_STATE(2566)] = 74868, - [SMALL_STATE(2567)] = 74925, - [SMALL_STATE(2568)] = 74998, - [SMALL_STATE(2569)] = 75055, - [SMALL_STATE(2570)] = 75112, - [SMALL_STATE(2571)] = 75169, - [SMALL_STATE(2572)] = 75226, - [SMALL_STATE(2573)] = 75283, - [SMALL_STATE(2574)] = 75340, - [SMALL_STATE(2575)] = 75397, - [SMALL_STATE(2576)] = 75454, - [SMALL_STATE(2577)] = 75511, - [SMALL_STATE(2578)] = 75568, - [SMALL_STATE(2579)] = 75625, - [SMALL_STATE(2580)] = 75682, - [SMALL_STATE(2581)] = 75739, - [SMALL_STATE(2582)] = 75796, - [SMALL_STATE(2583)] = 75857, - [SMALL_STATE(2584)] = 75914, - [SMALL_STATE(2585)] = 75971, - [SMALL_STATE(2586)] = 76028, - [SMALL_STATE(2587)] = 76085, - [SMALL_STATE(2588)] = 76142, - [SMALL_STATE(2589)] = 76199, - [SMALL_STATE(2590)] = 76272, - [SMALL_STATE(2591)] = 76329, - [SMALL_STATE(2592)] = 76386, - [SMALL_STATE(2593)] = 76443, - [SMALL_STATE(2594)] = 76500, - [SMALL_STATE(2595)] = 76557, - [SMALL_STATE(2596)] = 76614, - [SMALL_STATE(2597)] = 76671, - [SMALL_STATE(2598)] = 76744, - [SMALL_STATE(2599)] = 76801, - [SMALL_STATE(2600)] = 76862, - [SMALL_STATE(2601)] = 76919, - [SMALL_STATE(2602)] = 76976, - [SMALL_STATE(2603)] = 77031, - [SMALL_STATE(2604)] = 77088, - [SMALL_STATE(2605)] = 77149, - [SMALL_STATE(2606)] = 77206, - [SMALL_STATE(2607)] = 77263, - [SMALL_STATE(2608)] = 77320, - [SMALL_STATE(2609)] = 77377, - [SMALL_STATE(2610)] = 77434, - [SMALL_STATE(2611)] = 77491, - [SMALL_STATE(2612)] = 77552, - [SMALL_STATE(2613)] = 77609, - [SMALL_STATE(2614)] = 77682, - [SMALL_STATE(2615)] = 77739, - [SMALL_STATE(2616)] = 77796, - [SMALL_STATE(2617)] = 77853, - [SMALL_STATE(2618)] = 77910, - [SMALL_STATE(2619)] = 77967, - [SMALL_STATE(2620)] = 78024, - [SMALL_STATE(2621)] = 78081, - [SMALL_STATE(2622)] = 78138, - [SMALL_STATE(2623)] = 78195, - [SMALL_STATE(2624)] = 78252, - [SMALL_STATE(2625)] = 78309, - [SMALL_STATE(2626)] = 78366, - [SMALL_STATE(2627)] = 78423, - [SMALL_STATE(2628)] = 78480, - [SMALL_STATE(2629)] = 78537, - [SMALL_STATE(2630)] = 78594, - [SMALL_STATE(2631)] = 78651, - [SMALL_STATE(2632)] = 78706, - [SMALL_STATE(2633)] = 78763, - [SMALL_STATE(2634)] = 78820, - [SMALL_STATE(2635)] = 78877, - [SMALL_STATE(2636)] = 78934, - [SMALL_STATE(2637)] = 78991, - [SMALL_STATE(2638)] = 79048, - [SMALL_STATE(2639)] = 79105, - [SMALL_STATE(2640)] = 79162, - [SMALL_STATE(2641)] = 79219, - [SMALL_STATE(2642)] = 79276, - [SMALL_STATE(2643)] = 79333, - [SMALL_STATE(2644)] = 79390, - [SMALL_STATE(2645)] = 79447, - [SMALL_STATE(2646)] = 79504, - [SMALL_STATE(2647)] = 79561, - [SMALL_STATE(2648)] = 79618, - [SMALL_STATE(2649)] = 79675, - [SMALL_STATE(2650)] = 79748, - [SMALL_STATE(2651)] = 79807, - [SMALL_STATE(2652)] = 79864, - [SMALL_STATE(2653)] = 79921, - [SMALL_STATE(2654)] = 79978, - [SMALL_STATE(2655)] = 80035, - [SMALL_STATE(2656)] = 80092, - [SMALL_STATE(2657)] = 80149, - [SMALL_STATE(2658)] = 80208, - [SMALL_STATE(2659)] = 80265, - [SMALL_STATE(2660)] = 80322, - [SMALL_STATE(2661)] = 80379, - [SMALL_STATE(2662)] = 80436, - [SMALL_STATE(2663)] = 80493, - [SMALL_STATE(2664)] = 80550, - [SMALL_STATE(2665)] = 80607, - [SMALL_STATE(2666)] = 80664, - [SMALL_STATE(2667)] = 80721, - [SMALL_STATE(2668)] = 80776, - [SMALL_STATE(2669)] = 80833, - [SMALL_STATE(2670)] = 80890, - [SMALL_STATE(2671)] = 80947, - [SMALL_STATE(2672)] = 81004, - [SMALL_STATE(2673)] = 81061, - [SMALL_STATE(2674)] = 81118, - [SMALL_STATE(2675)] = 81175, - [SMALL_STATE(2676)] = 81232, - [SMALL_STATE(2677)] = 81289, - [SMALL_STATE(2678)] = 81346, - [SMALL_STATE(2679)] = 81403, - [SMALL_STATE(2680)] = 81458, - [SMALL_STATE(2681)] = 81513, - [SMALL_STATE(2682)] = 81570, - [SMALL_STATE(2683)] = 81627, - [SMALL_STATE(2684)] = 81684, - [SMALL_STATE(2685)] = 81741, - [SMALL_STATE(2686)] = 81798, - [SMALL_STATE(2687)] = 81855, - [SMALL_STATE(2688)] = 81912, - [SMALL_STATE(2689)] = 81969, - [SMALL_STATE(2690)] = 82025, - [SMALL_STATE(2691)] = 82081, - [SMALL_STATE(2692)] = 82137, - [SMALL_STATE(2693)] = 82193, - [SMALL_STATE(2694)] = 82249, - [SMALL_STATE(2695)] = 82305, - [SMALL_STATE(2696)] = 82361, - [SMALL_STATE(2697)] = 82419, - [SMALL_STATE(2698)] = 82475, - [SMALL_STATE(2699)] = 82531, - [SMALL_STATE(2700)] = 82585, - [SMALL_STATE(2701)] = 82641, - [SMALL_STATE(2702)] = 82697, - [SMALL_STATE(2703)] = 82753, - [SMALL_STATE(2704)] = 82831, - [SMALL_STATE(2705)] = 82887, - [SMALL_STATE(2706)] = 82943, - [SMALL_STATE(2707)] = 82997, - [SMALL_STATE(2708)] = 83051, - [SMALL_STATE(2709)] = 83107, - [SMALL_STATE(2710)] = 83163, - [SMALL_STATE(2711)] = 83219, - [SMALL_STATE(2712)] = 83275, - [SMALL_STATE(2713)] = 83331, - [SMALL_STATE(2714)] = 83387, - [SMALL_STATE(2715)] = 83443, - [SMALL_STATE(2716)] = 83499, - [SMALL_STATE(2717)] = 83555, - [SMALL_STATE(2718)] = 83611, - [SMALL_STATE(2719)] = 83667, - [SMALL_STATE(2720)] = 83723, - [SMALL_STATE(2721)] = 83781, - [SMALL_STATE(2722)] = 83837, - [SMALL_STATE(2723)] = 83893, - [SMALL_STATE(2724)] = 83951, - [SMALL_STATE(2725)] = 84007, - [SMALL_STATE(2726)] = 84063, - [SMALL_STATE(2727)] = 84119, - [SMALL_STATE(2728)] = 84175, - [SMALL_STATE(2729)] = 84229, - [SMALL_STATE(2730)] = 84285, - [SMALL_STATE(2731)] = 84341, - [SMALL_STATE(2732)] = 84397, - [SMALL_STATE(2733)] = 84453, - [SMALL_STATE(2734)] = 84509, - [SMALL_STATE(2735)] = 84565, - [SMALL_STATE(2736)] = 84621, - [SMALL_STATE(2737)] = 84675, - [SMALL_STATE(2738)] = 84731, - [SMALL_STATE(2739)] = 84787, - [SMALL_STATE(2740)] = 84843, - [SMALL_STATE(2741)] = 84899, - [SMALL_STATE(2742)] = 84955, - [SMALL_STATE(2743)] = 85011, - [SMALL_STATE(2744)] = 85067, - [SMALL_STATE(2745)] = 85123, - [SMALL_STATE(2746)] = 85179, - [SMALL_STATE(2747)] = 85235, - [SMALL_STATE(2748)] = 85313, - [SMALL_STATE(2749)] = 85369, - [SMALL_STATE(2750)] = 85425, - [SMALL_STATE(2751)] = 85481, - [SMALL_STATE(2752)] = 85551, - [SMALL_STATE(2753)] = 85607, - [SMALL_STATE(2754)] = 85663, - [SMALL_STATE(2755)] = 85719, - [SMALL_STATE(2756)] = 85773, - [SMALL_STATE(2757)] = 85832, - [SMALL_STATE(2758)] = 85889, - [SMALL_STATE(2759)] = 85942, - [SMALL_STATE(2760)] = 85997, - [SMALL_STATE(2761)] = 86054, - [SMALL_STATE(2762)] = 86107, - [SMALL_STATE(2763)] = 86160, - [SMALL_STATE(2764)] = 86217, - [SMALL_STATE(2765)] = 86270, - [SMALL_STATE(2766)] = 86329, - [SMALL_STATE(2767)] = 86382, - [SMALL_STATE(2768)] = 86434, - [SMALL_STATE(2769)] = 86486, - [SMALL_STATE(2770)] = 86538, - [SMALL_STATE(2771)] = 86590, - [SMALL_STATE(2772)] = 86642, - [SMALL_STATE(2773)] = 86706, - [SMALL_STATE(2774)] = 86758, - [SMALL_STATE(2775)] = 86818, - [SMALL_STATE(2776)] = 86870, - [SMALL_STATE(2777)] = 86922, - [SMALL_STATE(2778)] = 86974, - [SMALL_STATE(2779)] = 87026, - [SMALL_STATE(2780)] = 87084, - [SMALL_STATE(2781)] = 87136, - [SMALL_STATE(2782)] = 87188, - [SMALL_STATE(2783)] = 87244, - [SMALL_STATE(2784)] = 87296, - [SMALL_STATE(2785)] = 87352, - [SMALL_STATE(2786)] = 87408, - [SMALL_STATE(2787)] = 87460, - [SMALL_STATE(2788)] = 87516, - [SMALL_STATE(2789)] = 87574, - [SMALL_STATE(2790)] = 87626, - [SMALL_STATE(2791)] = 87680, - [SMALL_STATE(2792)] = 87732, - [SMALL_STATE(2793)] = 87784, - [SMALL_STATE(2794)] = 87835, - [SMALL_STATE(2795)] = 87886, - [SMALL_STATE(2796)] = 87937, - [SMALL_STATE(2797)] = 87988, - [SMALL_STATE(2798)] = 88039, - [SMALL_STATE(2799)] = 88092, - [SMALL_STATE(2800)] = 88143, - [SMALL_STATE(2801)] = 88196, - [SMALL_STATE(2802)] = 88249, - [SMALL_STATE(2803)] = 88302, - [SMALL_STATE(2804)] = 88363, - [SMALL_STATE(2805)] = 88421, - [SMALL_STATE(2806)] = 88471, - [SMALL_STATE(2807)] = 88527, - [SMALL_STATE(2808)] = 88583, - [SMALL_STATE(2809)] = 88641, - [SMALL_STATE(2810)] = 88695, - [SMALL_STATE(2811)] = 88753, - [SMALL_STATE(2812)] = 88809, - [SMALL_STATE(2813)] = 88859, - [SMALL_STATE(2814)] = 88909, - [SMALL_STATE(2815)] = 88961, - [SMALL_STATE(2816)] = 89010, - [SMALL_STATE(2817)] = 89063, - [SMALL_STATE(2818)] = 89116, - [SMALL_STATE(2819)] = 89165, - [SMALL_STATE(2820)] = 89216, - [SMALL_STATE(2821)] = 89269, - [SMALL_STATE(2822)] = 89318, - [SMALL_STATE(2823)] = 89366, - [SMALL_STATE(2824)] = 89456, - [SMALL_STATE(2825)] = 89546, - [SMALL_STATE(2826)] = 89636, - [SMALL_STATE(2827)] = 89726, - [SMALL_STATE(2828)] = 89816, - [SMALL_STATE(2829)] = 89906, - [SMALL_STATE(2830)] = 89996, - [SMALL_STATE(2831)] = 90086, - [SMALL_STATE(2832)] = 90176, - [SMALL_STATE(2833)] = 90266, - [SMALL_STATE(2834)] = 90356, - [SMALL_STATE(2835)] = 90446, - [SMALL_STATE(2836)] = 90536, - [SMALL_STATE(2837)] = 90626, - [SMALL_STATE(2838)] = 90678, - [SMALL_STATE(2839)] = 90768, - [SMALL_STATE(2840)] = 90858, - [SMALL_STATE(2841)] = 90948, - [SMALL_STATE(2842)] = 90996, - [SMALL_STATE(2843)] = 91086, - [SMALL_STATE(2844)] = 91176, - [SMALL_STATE(2845)] = 91266, - [SMALL_STATE(2846)] = 91314, - [SMALL_STATE(2847)] = 91362, - [SMALL_STATE(2848)] = 91410, - [SMALL_STATE(2849)] = 91500, - [SMALL_STATE(2850)] = 91590, - [SMALL_STATE(2851)] = 91642, - [SMALL_STATE(2852)] = 91732, - [SMALL_STATE(2853)] = 91784, - [SMALL_STATE(2854)] = 91832, - [SMALL_STATE(2855)] = 91880, - [SMALL_STATE(2856)] = 91928, - [SMALL_STATE(2857)] = 92018, - [SMALL_STATE(2858)] = 92108, - [SMALL_STATE(2859)] = 92198, - [SMALL_STATE(2860)] = 92246, - [SMALL_STATE(2861)] = 92336, - [SMALL_STATE(2862)] = 92426, - [SMALL_STATE(2863)] = 92516, - [SMALL_STATE(2864)] = 92606, - [SMALL_STATE(2865)] = 92696, - [SMALL_STATE(2866)] = 92786, - [SMALL_STATE(2867)] = 92837, - [SMALL_STATE(2868)] = 92888, - [SMALL_STATE(2869)] = 92941, - [SMALL_STATE(2870)] = 92992, - [SMALL_STATE(2871)] = 93043, - [SMALL_STATE(2872)] = 93096, - [SMALL_STATE(2873)] = 93149, - [SMALL_STATE(2874)] = 93236, - [SMALL_STATE(2875)] = 93287, - [SMALL_STATE(2876)] = 93338, - [SMALL_STATE(2877)] = 93389, - [SMALL_STATE(2878)] = 93442, - [SMALL_STATE(2879)] = 93493, - [SMALL_STATE(2880)] = 93539, - [SMALL_STATE(2881)] = 93585, - [SMALL_STATE(2882)] = 93631, - [SMALL_STATE(2883)] = 93677, - [SMALL_STATE(2884)] = 93725, - [SMALL_STATE(2885)] = 93771, - [SMALL_STATE(2886)] = 93817, - [SMALL_STATE(2887)] = 93863, - [SMALL_STATE(2888)] = 93909, - [SMALL_STATE(2889)] = 93955, - [SMALL_STATE(2890)] = 94001, - [SMALL_STATE(2891)] = 94047, - [SMALL_STATE(2892)] = 94093, - [SMALL_STATE(2893)] = 94141, - [SMALL_STATE(2894)] = 94187, - [SMALL_STATE(2895)] = 94233, - [SMALL_STATE(2896)] = 94279, - [SMALL_STATE(2897)] = 94325, - [SMALL_STATE(2898)] = 94371, - [SMALL_STATE(2899)] = 94417, - [SMALL_STATE(2900)] = 94463, - [SMALL_STATE(2901)] = 94509, - [SMALL_STATE(2902)] = 94555, - [SMALL_STATE(2903)] = 94609, - [SMALL_STATE(2904)] = 94654, - [SMALL_STATE(2905)] = 94699, - [SMALL_STATE(2906)] = 94744, - [SMALL_STATE(2907)] = 94789, - [SMALL_STATE(2908)] = 94834, - [SMALL_STATE(2909)] = 94879, - [SMALL_STATE(2910)] = 94960, - [SMALL_STATE(2911)] = 95005, - [SMALL_STATE(2912)] = 95050, - [SMALL_STATE(2913)] = 95095, - [SMALL_STATE(2914)] = 95140, - [SMALL_STATE(2915)] = 95185, - [SMALL_STATE(2916)] = 95230, - [SMALL_STATE(2917)] = 95275, - [SMALL_STATE(2918)] = 95320, - [SMALL_STATE(2919)] = 95365, - [SMALL_STATE(2920)] = 95446, - [SMALL_STATE(2921)] = 95491, - [SMALL_STATE(2922)] = 95536, - [SMALL_STATE(2923)] = 95581, - [SMALL_STATE(2924)] = 95626, - [SMALL_STATE(2925)] = 95671, - [SMALL_STATE(2926)] = 95716, - [SMALL_STATE(2927)] = 95761, - [SMALL_STATE(2928)] = 95806, - [SMALL_STATE(2929)] = 95851, - [SMALL_STATE(2930)] = 95896, - [SMALL_STATE(2931)] = 95941, - [SMALL_STATE(2932)] = 95986, - [SMALL_STATE(2933)] = 96031, - [SMALL_STATE(2934)] = 96076, - [SMALL_STATE(2935)] = 96121, - [SMALL_STATE(2936)] = 96166, - [SMALL_STATE(2937)] = 96211, - [SMALL_STATE(2938)] = 96256, - [SMALL_STATE(2939)] = 96301, - [SMALL_STATE(2940)] = 96346, - [SMALL_STATE(2941)] = 96391, - [SMALL_STATE(2942)] = 96436, - [SMALL_STATE(2943)] = 96481, - [SMALL_STATE(2944)] = 96526, - [SMALL_STATE(2945)] = 96571, - [SMALL_STATE(2946)] = 96616, - [SMALL_STATE(2947)] = 96661, - [SMALL_STATE(2948)] = 96706, - [SMALL_STATE(2949)] = 96751, - [SMALL_STATE(2950)] = 96796, - [SMALL_STATE(2951)] = 96841, - [SMALL_STATE(2952)] = 96922, - [SMALL_STATE(2953)] = 96967, - [SMALL_STATE(2954)] = 97012, - [SMALL_STATE(2955)] = 97057, - [SMALL_STATE(2956)] = 97138, - [SMALL_STATE(2957)] = 97183, - [SMALL_STATE(2958)] = 97228, - [SMALL_STATE(2959)] = 97273, - [SMALL_STATE(2960)] = 97354, - [SMALL_STATE(2961)] = 97399, - [SMALL_STATE(2962)] = 97444, - [SMALL_STATE(2963)] = 97489, - [SMALL_STATE(2964)] = 97534, - [SMALL_STATE(2965)] = 97579, - [SMALL_STATE(2966)] = 97624, - [SMALL_STATE(2967)] = 97669, - [SMALL_STATE(2968)] = 97750, - [SMALL_STATE(2969)] = 97795, - [SMALL_STATE(2970)] = 97840, - [SMALL_STATE(2971)] = 97885, - [SMALL_STATE(2972)] = 97930, - [SMALL_STATE(2973)] = 97975, - [SMALL_STATE(2974)] = 98020, - [SMALL_STATE(2975)] = 98098, - [SMALL_STATE(2976)] = 98186, - [SMALL_STATE(2977)] = 98274, - [SMALL_STATE(2978)] = 98319, - [SMALL_STATE(2979)] = 98390, - [SMALL_STATE(2980)] = 98461, - [SMALL_STATE(2981)] = 98532, - [SMALL_STATE(2982)] = 98603, - [SMALL_STATE(2983)] = 98648, - [SMALL_STATE(2984)] = 98693, - [SMALL_STATE(2985)] = 98738, - [SMALL_STATE(2986)] = 98809, - [SMALL_STATE(2987)] = 98880, - [SMALL_STATE(2988)] = 98925, - [SMALL_STATE(2989)] = 98996, - [SMALL_STATE(2990)] = 99041, - [SMALL_STATE(2991)] = 99083, - [SMALL_STATE(2992)] = 99125, - [SMALL_STATE(2993)] = 99167, - [SMALL_STATE(2994)] = 99211, - [SMALL_STATE(2995)] = 99253, - [SMALL_STATE(2996)] = 99295, - [SMALL_STATE(2997)] = 99337, - [SMALL_STATE(2998)] = 99378, - [SMALL_STATE(2999)] = 99419, - [SMALL_STATE(3000)] = 99502, - [SMALL_STATE(3001)] = 99543, - [SMALL_STATE(3002)] = 99584, - [SMALL_STATE(3003)] = 99625, - [SMALL_STATE(3004)] = 99666, - [SMALL_STATE(3005)] = 99749, - [SMALL_STATE(3006)] = 99793, - [SMALL_STATE(3007)] = 99839, - [SMALL_STATE(3008)] = 99909, - [SMALL_STATE(3009)] = 99955, - [SMALL_STATE(3010)] = 100001, - [SMALL_STATE(3011)] = 100068, - [SMALL_STATE(3012)] = 100137, - [SMALL_STATE(3013)] = 100204, - [SMALL_STATE(3014)] = 100273, - [SMALL_STATE(3015)] = 100342, - [SMALL_STATE(3016)] = 100411, - [SMALL_STATE(3017)] = 100478, - [SMALL_STATE(3018)] = 100547, - [SMALL_STATE(3019)] = 100616, - [SMALL_STATE(3020)] = 100683, - [SMALL_STATE(3021)] = 100750, - [SMALL_STATE(3022)] = 100819, - [SMALL_STATE(3023)] = 100898, - [SMALL_STATE(3024)] = 100967, - [SMALL_STATE(3025)] = 101034, - [SMALL_STATE(3026)] = 101101, - [SMALL_STATE(3027)] = 101168, - [SMALL_STATE(3028)] = 101235, - [SMALL_STATE(3029)] = 101302, - [SMALL_STATE(3030)] = 101369, - [SMALL_STATE(3031)] = 101436, - [SMALL_STATE(3032)] = 101503, - [SMALL_STATE(3033)] = 101570, - [SMALL_STATE(3034)] = 101637, - [SMALL_STATE(3035)] = 101706, - [SMALL_STATE(3036)] = 101773, - [SMALL_STATE(3037)] = 101842, - [SMALL_STATE(3038)] = 101911, - [SMALL_STATE(3039)] = 101978, - [SMALL_STATE(3040)] = 102045, - [SMALL_STATE(3041)] = 102112, - [SMALL_STATE(3042)] = 102179, - [SMALL_STATE(3043)] = 102246, - [SMALL_STATE(3044)] = 102313, - [SMALL_STATE(3045)] = 102382, - [SMALL_STATE(3046)] = 102451, - [SMALL_STATE(3047)] = 102518, - [SMALL_STATE(3048)] = 102587, - [SMALL_STATE(3049)] = 102656, - [SMALL_STATE(3050)] = 102723, - [SMALL_STATE(3051)] = 102790, - [SMALL_STATE(3052)] = 102859, - [SMALL_STATE(3053)] = 102926, - [SMALL_STATE(3054)] = 102995, - [SMALL_STATE(3055)] = 103062, - [SMALL_STATE(3056)] = 103129, - [SMALL_STATE(3057)] = 103198, - [SMALL_STATE(3058)] = 103265, - [SMALL_STATE(3059)] = 103332, - [SMALL_STATE(3060)] = 103401, - [SMALL_STATE(3061)] = 103480, - [SMALL_STATE(3062)] = 103549, - [SMALL_STATE(3063)] = 103616, - [SMALL_STATE(3064)] = 103683, - [SMALL_STATE(3065)] = 103750, - [SMALL_STATE(3066)] = 103817, - [SMALL_STATE(3067)] = 103884, - [SMALL_STATE(3068)] = 103923, - [SMALL_STATE(3069)] = 103990, - [SMALL_STATE(3070)] = 104057, - [SMALL_STATE(3071)] = 104124, - [SMALL_STATE(3072)] = 104193, - [SMALL_STATE(3073)] = 104260, - [SMALL_STATE(3074)] = 104327, - [SMALL_STATE(3075)] = 104394, - [SMALL_STATE(3076)] = 104463, - [SMALL_STATE(3077)] = 104530, - [SMALL_STATE(3078)] = 104597, - [SMALL_STATE(3079)] = 104664, - [SMALL_STATE(3080)] = 104731, - [SMALL_STATE(3081)] = 104800, - [SMALL_STATE(3082)] = 104867, - [SMALL_STATE(3083)] = 104934, - [SMALL_STATE(3084)] = 105001, - [SMALL_STATE(3085)] = 105068, - [SMALL_STATE(3086)] = 105135, - [SMALL_STATE(3087)] = 105202, - [SMALL_STATE(3088)] = 105269, - [SMALL_STATE(3089)] = 105336, - [SMALL_STATE(3090)] = 105405, - [SMALL_STATE(3091)] = 105472, - [SMALL_STATE(3092)] = 105539, - [SMALL_STATE(3093)] = 105606, - [SMALL_STATE(3094)] = 105673, - [SMALL_STATE(3095)] = 105740, - [SMALL_STATE(3096)] = 105807, - [SMALL_STATE(3097)] = 105874, - [SMALL_STATE(3098)] = 105941, - [SMALL_STATE(3099)] = 106010, - [SMALL_STATE(3100)] = 106079, - [SMALL_STATE(3101)] = 106148, - [SMALL_STATE(3102)] = 106215, - [SMALL_STATE(3103)] = 106284, - [SMALL_STATE(3104)] = 106353, - [SMALL_STATE(3105)] = 106420, - [SMALL_STATE(3106)] = 106487, - [SMALL_STATE(3107)] = 106554, - [SMALL_STATE(3108)] = 106623, - [SMALL_STATE(3109)] = 106692, - [SMALL_STATE(3110)] = 106759, - [SMALL_STATE(3111)] = 106826, - [SMALL_STATE(3112)] = 106893, - [SMALL_STATE(3113)] = 106960, - [SMALL_STATE(3114)] = 107029, - [SMALL_STATE(3115)] = 107098, - [SMALL_STATE(3116)] = 107165, - [SMALL_STATE(3117)] = 107234, - [SMALL_STATE(3118)] = 107303, - [SMALL_STATE(3119)] = 107372, - [SMALL_STATE(3120)] = 107441, - [SMALL_STATE(3121)] = 107510, - [SMALL_STATE(3122)] = 107579, - [SMALL_STATE(3123)] = 107648, - [SMALL_STATE(3124)] = 107715, - [SMALL_STATE(3125)] = 107782, - [SMALL_STATE(3126)] = 107851, - [SMALL_STATE(3127)] = 107920, - [SMALL_STATE(3128)] = 107989, - [SMALL_STATE(3129)] = 108056, - [SMALL_STATE(3130)] = 108125, - [SMALL_STATE(3131)] = 108192, - [SMALL_STATE(3132)] = 108259, - [SMALL_STATE(3133)] = 108323, - [SMALL_STATE(3134)] = 108387, - [SMALL_STATE(3135)] = 108451, - [SMALL_STATE(3136)] = 108515, - [SMALL_STATE(3137)] = 108579, - [SMALL_STATE(3138)] = 108643, - [SMALL_STATE(3139)] = 108707, - [SMALL_STATE(3140)] = 108771, - [SMALL_STATE(3141)] = 108835, - [SMALL_STATE(3142)] = 108899, - [SMALL_STATE(3143)] = 108963, - [SMALL_STATE(3144)] = 109027, - [SMALL_STATE(3145)] = 109091, - [SMALL_STATE(3146)] = 109155, - [SMALL_STATE(3147)] = 109219, - [SMALL_STATE(3148)] = 109283, - [SMALL_STATE(3149)] = 109347, - [SMALL_STATE(3150)] = 109411, - [SMALL_STATE(3151)] = 109475, - [SMALL_STATE(3152)] = 109539, - [SMALL_STATE(3153)] = 109603, - [SMALL_STATE(3154)] = 109667, - [SMALL_STATE(3155)] = 109731, - [SMALL_STATE(3156)] = 109795, - [SMALL_STATE(3157)] = 109859, - [SMALL_STATE(3158)] = 109923, - [SMALL_STATE(3159)] = 109987, - [SMALL_STATE(3160)] = 110051, - [SMALL_STATE(3161)] = 110115, - [SMALL_STATE(3162)] = 110179, - [SMALL_STATE(3163)] = 110243, - [SMALL_STATE(3164)] = 110307, - [SMALL_STATE(3165)] = 110371, - [SMALL_STATE(3166)] = 110435, - [SMALL_STATE(3167)] = 110499, - [SMALL_STATE(3168)] = 110563, - [SMALL_STATE(3169)] = 110627, - [SMALL_STATE(3170)] = 110691, - [SMALL_STATE(3171)] = 110755, - [SMALL_STATE(3172)] = 110819, - [SMALL_STATE(3173)] = 110883, - [SMALL_STATE(3174)] = 110947, - [SMALL_STATE(3175)] = 111011, - [SMALL_STATE(3176)] = 111075, - [SMALL_STATE(3177)] = 111139, - [SMALL_STATE(3178)] = 111203, - [SMALL_STATE(3179)] = 111267, - [SMALL_STATE(3180)] = 111331, - [SMALL_STATE(3181)] = 111395, - [SMALL_STATE(3182)] = 111459, - [SMALL_STATE(3183)] = 111523, - [SMALL_STATE(3184)] = 111587, - [SMALL_STATE(3185)] = 111651, - [SMALL_STATE(3186)] = 111715, - [SMALL_STATE(3187)] = 111779, - [SMALL_STATE(3188)] = 111843, - [SMALL_STATE(3189)] = 111907, - [SMALL_STATE(3190)] = 111971, - [SMALL_STATE(3191)] = 112035, - [SMALL_STATE(3192)] = 112099, - [SMALL_STATE(3193)] = 112163, - [SMALL_STATE(3194)] = 112227, - [SMALL_STATE(3195)] = 112291, - [SMALL_STATE(3196)] = 112355, - [SMALL_STATE(3197)] = 112419, - [SMALL_STATE(3198)] = 112483, - [SMALL_STATE(3199)] = 112547, - [SMALL_STATE(3200)] = 112611, - [SMALL_STATE(3201)] = 112675, - [SMALL_STATE(3202)] = 112739, - [SMALL_STATE(3203)] = 112803, - [SMALL_STATE(3204)] = 112867, - [SMALL_STATE(3205)] = 112931, - [SMALL_STATE(3206)] = 112995, - [SMALL_STATE(3207)] = 113059, - [SMALL_STATE(3208)] = 113123, - [SMALL_STATE(3209)] = 113187, - [SMALL_STATE(3210)] = 113251, - [SMALL_STATE(3211)] = 113315, - [SMALL_STATE(3212)] = 113381, - [SMALL_STATE(3213)] = 113445, - [SMALL_STATE(3214)] = 113509, - [SMALL_STATE(3215)] = 113573, - [SMALL_STATE(3216)] = 113637, - [SMALL_STATE(3217)] = 113701, - [SMALL_STATE(3218)] = 113765, - [SMALL_STATE(3219)] = 113829, - [SMALL_STATE(3220)] = 113893, - [SMALL_STATE(3221)] = 113957, - [SMALL_STATE(3222)] = 114021, - [SMALL_STATE(3223)] = 114085, - [SMALL_STATE(3224)] = 114149, - [SMALL_STATE(3225)] = 114213, - [SMALL_STATE(3226)] = 114277, - [SMALL_STATE(3227)] = 114341, - [SMALL_STATE(3228)] = 114405, - [SMALL_STATE(3229)] = 114469, - [SMALL_STATE(3230)] = 114533, - [SMALL_STATE(3231)] = 114597, - [SMALL_STATE(3232)] = 114661, - [SMALL_STATE(3233)] = 114725, - [SMALL_STATE(3234)] = 114789, - [SMALL_STATE(3235)] = 114853, - [SMALL_STATE(3236)] = 114917, - [SMALL_STATE(3237)] = 114981, - [SMALL_STATE(3238)] = 115045, - [SMALL_STATE(3239)] = 115109, - [SMALL_STATE(3240)] = 115173, - [SMALL_STATE(3241)] = 115237, - [SMALL_STATE(3242)] = 115301, - [SMALL_STATE(3243)] = 115365, - [SMALL_STATE(3244)] = 115429, - [SMALL_STATE(3245)] = 115493, - [SMALL_STATE(3246)] = 115557, - [SMALL_STATE(3247)] = 115621, - [SMALL_STATE(3248)] = 115685, - [SMALL_STATE(3249)] = 115749, - [SMALL_STATE(3250)] = 115813, - [SMALL_STATE(3251)] = 115897, - [SMALL_STATE(3252)] = 115961, - [SMALL_STATE(3253)] = 116025, - [SMALL_STATE(3254)] = 116089, - [SMALL_STATE(3255)] = 116153, - [SMALL_STATE(3256)] = 116217, - [SMALL_STATE(3257)] = 116281, - [SMALL_STATE(3258)] = 116345, - [SMALL_STATE(3259)] = 116409, - [SMALL_STATE(3260)] = 116473, - [SMALL_STATE(3261)] = 116537, - [SMALL_STATE(3262)] = 116601, - [SMALL_STATE(3263)] = 116665, - [SMALL_STATE(3264)] = 116729, - [SMALL_STATE(3265)] = 116793, - [SMALL_STATE(3266)] = 116857, - [SMALL_STATE(3267)] = 116921, - [SMALL_STATE(3268)] = 116985, - [SMALL_STATE(3269)] = 117049, - [SMALL_STATE(3270)] = 117113, - [SMALL_STATE(3271)] = 117177, - [SMALL_STATE(3272)] = 117241, - [SMALL_STATE(3273)] = 117305, - [SMALL_STATE(3274)] = 117369, - [SMALL_STATE(3275)] = 117433, - [SMALL_STATE(3276)] = 117497, - [SMALL_STATE(3277)] = 117561, - [SMALL_STATE(3278)] = 117625, - [SMALL_STATE(3279)] = 117689, - [SMALL_STATE(3280)] = 117753, - [SMALL_STATE(3281)] = 117817, - [SMALL_STATE(3282)] = 117881, - [SMALL_STATE(3283)] = 117945, - [SMALL_STATE(3284)] = 117983, - [SMALL_STATE(3285)] = 118047, - [SMALL_STATE(3286)] = 118111, - [SMALL_STATE(3287)] = 118155, - [SMALL_STATE(3288)] = 118219, - [SMALL_STATE(3289)] = 118283, - [SMALL_STATE(3290)] = 118347, - [SMALL_STATE(3291)] = 118411, - [SMALL_STATE(3292)] = 118475, - [SMALL_STATE(3293)] = 118539, - [SMALL_STATE(3294)] = 118603, - [SMALL_STATE(3295)] = 118667, - [SMALL_STATE(3296)] = 118731, - [SMALL_STATE(3297)] = 118795, - [SMALL_STATE(3298)] = 118859, - [SMALL_STATE(3299)] = 118923, - [SMALL_STATE(3300)] = 118987, - [SMALL_STATE(3301)] = 119051, - [SMALL_STATE(3302)] = 119115, - [SMALL_STATE(3303)] = 119179, - [SMALL_STATE(3304)] = 119243, - [SMALL_STATE(3305)] = 119307, - [SMALL_STATE(3306)] = 119371, - [SMALL_STATE(3307)] = 119435, - [SMALL_STATE(3308)] = 119499, - [SMALL_STATE(3309)] = 119563, - [SMALL_STATE(3310)] = 119627, - [SMALL_STATE(3311)] = 119691, - [SMALL_STATE(3312)] = 119755, - [SMALL_STATE(3313)] = 119819, - [SMALL_STATE(3314)] = 119883, - [SMALL_STATE(3315)] = 119947, - [SMALL_STATE(3316)] = 120011, - [SMALL_STATE(3317)] = 120075, - [SMALL_STATE(3318)] = 120113, - [SMALL_STATE(3319)] = 120177, - [SMALL_STATE(3320)] = 120241, - [SMALL_STATE(3321)] = 120305, - [SMALL_STATE(3322)] = 120343, - [SMALL_STATE(3323)] = 120407, - [SMALL_STATE(3324)] = 120471, - [SMALL_STATE(3325)] = 120535, - [SMALL_STATE(3326)] = 120599, - [SMALL_STATE(3327)] = 120663, - [SMALL_STATE(3328)] = 120727, - [SMALL_STATE(3329)] = 120791, - [SMALL_STATE(3330)] = 120855, - [SMALL_STATE(3331)] = 120919, - [SMALL_STATE(3332)] = 120983, - [SMALL_STATE(3333)] = 121047, - [SMALL_STATE(3334)] = 121111, - [SMALL_STATE(3335)] = 121175, - [SMALL_STATE(3336)] = 121239, - [SMALL_STATE(3337)] = 121303, - [SMALL_STATE(3338)] = 121367, - [SMALL_STATE(3339)] = 121431, - [SMALL_STATE(3340)] = 121495, - [SMALL_STATE(3341)] = 121559, - [SMALL_STATE(3342)] = 121623, - [SMALL_STATE(3343)] = 121687, - [SMALL_STATE(3344)] = 121751, - [SMALL_STATE(3345)] = 121815, - [SMALL_STATE(3346)] = 121879, - [SMALL_STATE(3347)] = 121943, - [SMALL_STATE(3348)] = 122007, - [SMALL_STATE(3349)] = 122071, - [SMALL_STATE(3350)] = 122135, - [SMALL_STATE(3351)] = 122199, - [SMALL_STATE(3352)] = 122263, - [SMALL_STATE(3353)] = 122307, - [SMALL_STATE(3354)] = 122371, - [SMALL_STATE(3355)] = 122435, - [SMALL_STATE(3356)] = 122499, - [SMALL_STATE(3357)] = 122563, - [SMALL_STATE(3358)] = 122627, - [SMALL_STATE(3359)] = 122691, - [SMALL_STATE(3360)] = 122755, - [SMALL_STATE(3361)] = 122819, - [SMALL_STATE(3362)] = 122883, - [SMALL_STATE(3363)] = 122947, - [SMALL_STATE(3364)] = 123011, - [SMALL_STATE(3365)] = 123075, - [SMALL_STATE(3366)] = 123139, - [SMALL_STATE(3367)] = 123203, - [SMALL_STATE(3368)] = 123267, - [SMALL_STATE(3369)] = 123331, - [SMALL_STATE(3370)] = 123395, - [SMALL_STATE(3371)] = 123459, - [SMALL_STATE(3372)] = 123523, - [SMALL_STATE(3373)] = 123587, - [SMALL_STATE(3374)] = 123651, - [SMALL_STATE(3375)] = 123715, - [SMALL_STATE(3376)] = 123779, - [SMALL_STATE(3377)] = 123843, - [SMALL_STATE(3378)] = 123907, - [SMALL_STATE(3379)] = 123971, - [SMALL_STATE(3380)] = 124035, - [SMALL_STATE(3381)] = 124099, - [SMALL_STATE(3382)] = 124163, - [SMALL_STATE(3383)] = 124227, - [SMALL_STATE(3384)] = 124291, - [SMALL_STATE(3385)] = 124355, - [SMALL_STATE(3386)] = 124419, - [SMALL_STATE(3387)] = 124483, - [SMALL_STATE(3388)] = 124547, - [SMALL_STATE(3389)] = 124611, - [SMALL_STATE(3390)] = 124675, - [SMALL_STATE(3391)] = 124739, - [SMALL_STATE(3392)] = 124803, - [SMALL_STATE(3393)] = 124867, - [SMALL_STATE(3394)] = 124905, - [SMALL_STATE(3395)] = 124969, - [SMALL_STATE(3396)] = 125033, - [SMALL_STATE(3397)] = 125097, - [SMALL_STATE(3398)] = 125161, - [SMALL_STATE(3399)] = 125203, - [SMALL_STATE(3400)] = 125267, - [SMALL_STATE(3401)] = 125331, - [SMALL_STATE(3402)] = 125395, - [SMALL_STATE(3403)] = 125459, - [SMALL_STATE(3404)] = 125523, - [SMALL_STATE(3405)] = 125587, - [SMALL_STATE(3406)] = 125651, - [SMALL_STATE(3407)] = 125715, - [SMALL_STATE(3408)] = 125779, - [SMALL_STATE(3409)] = 125843, - [SMALL_STATE(3410)] = 125907, - [SMALL_STATE(3411)] = 125971, - [SMALL_STATE(3412)] = 126035, - [SMALL_STATE(3413)] = 126099, - [SMALL_STATE(3414)] = 126163, - [SMALL_STATE(3415)] = 126227, - [SMALL_STATE(3416)] = 126291, - [SMALL_STATE(3417)] = 126355, - [SMALL_STATE(3418)] = 126419, - [SMALL_STATE(3419)] = 126483, - [SMALL_STATE(3420)] = 126547, - [SMALL_STATE(3421)] = 126611, - [SMALL_STATE(3422)] = 126675, - [SMALL_STATE(3423)] = 126739, - [SMALL_STATE(3424)] = 126803, - [SMALL_STATE(3425)] = 126867, - [SMALL_STATE(3426)] = 126931, - [SMALL_STATE(3427)] = 126995, - [SMALL_STATE(3428)] = 127059, - [SMALL_STATE(3429)] = 127123, - [SMALL_STATE(3430)] = 127187, - [SMALL_STATE(3431)] = 127251, - [SMALL_STATE(3432)] = 127315, - [SMALL_STATE(3433)] = 127379, - [SMALL_STATE(3434)] = 127443, - [SMALL_STATE(3435)] = 127507, - [SMALL_STATE(3436)] = 127571, - [SMALL_STATE(3437)] = 127635, - [SMALL_STATE(3438)] = 127699, - [SMALL_STATE(3439)] = 127763, - [SMALL_STATE(3440)] = 127827, - [SMALL_STATE(3441)] = 127891, - [SMALL_STATE(3442)] = 127955, - [SMALL_STATE(3443)] = 128019, - [SMALL_STATE(3444)] = 128083, - [SMALL_STATE(3445)] = 128147, - [SMALL_STATE(3446)] = 128211, - [SMALL_STATE(3447)] = 128275, - [SMALL_STATE(3448)] = 128339, - [SMALL_STATE(3449)] = 128403, - [SMALL_STATE(3450)] = 128467, - [SMALL_STATE(3451)] = 128531, - [SMALL_STATE(3452)] = 128595, - [SMALL_STATE(3453)] = 128659, - [SMALL_STATE(3454)] = 128723, - [SMALL_STATE(3455)] = 128787, - [SMALL_STATE(3456)] = 128851, - [SMALL_STATE(3457)] = 128915, - [SMALL_STATE(3458)] = 128979, - [SMALL_STATE(3459)] = 129043, - [SMALL_STATE(3460)] = 129087, - [SMALL_STATE(3461)] = 129151, - [SMALL_STATE(3462)] = 129215, - [SMALL_STATE(3463)] = 129279, - [SMALL_STATE(3464)] = 129352, - [SMALL_STATE(3465)] = 129389, - [SMALL_STATE(3466)] = 129470, - [SMALL_STATE(3467)] = 129543, - [SMALL_STATE(3468)] = 129616, - [SMALL_STATE(3469)] = 129689, - [SMALL_STATE(3470)] = 129762, - [SMALL_STATE(3471)] = 129835, - [SMALL_STATE(3472)] = 129908, - [SMALL_STATE(3473)] = 129945, - [SMALL_STATE(3474)] = 130018, - [SMALL_STATE(3475)] = 130055, - [SMALL_STATE(3476)] = 130094, - [SMALL_STATE(3477)] = 130159, - [SMALL_STATE(3478)] = 130232, - [SMALL_STATE(3479)] = 130277, - [SMALL_STATE(3480)] = 130350, - [SMALL_STATE(3481)] = 130420, - [SMALL_STATE(3482)] = 130490, - [SMALL_STATE(3483)] = 130526, - [SMALL_STATE(3484)] = 130596, - [SMALL_STATE(3485)] = 130632, - [SMALL_STATE(3486)] = 130702, - [SMALL_STATE(3487)] = 130772, - [SMALL_STATE(3488)] = 130842, - [SMALL_STATE(3489)] = 130912, - [SMALL_STATE(3490)] = 130982, - [SMALL_STATE(3491)] = 131052, - [SMALL_STATE(3492)] = 131122, - [SMALL_STATE(3493)] = 131192, - [SMALL_STATE(3494)] = 131262, - [SMALL_STATE(3495)] = 131298, - [SMALL_STATE(3496)] = 131368, - [SMALL_STATE(3497)] = 131404, - [SMALL_STATE(3498)] = 131474, - [SMALL_STATE(3499)] = 131544, - [SMALL_STATE(3500)] = 131614, - [SMALL_STATE(3501)] = 131684, - [SMALL_STATE(3502)] = 131751, - [SMALL_STATE(3503)] = 131826, - [SMALL_STATE(3504)] = 131893, - [SMALL_STATE(3505)] = 131930, - [SMALL_STATE(3506)] = 131997, - [SMALL_STATE(3507)] = 132064, - [SMALL_STATE(3508)] = 132131, - [SMALL_STATE(3509)] = 132198, - [SMALL_STATE(3510)] = 132265, - [SMALL_STATE(3511)] = 132332, - [SMALL_STATE(3512)] = 132366, - [SMALL_STATE(3513)] = 132408, - [SMALL_STATE(3514)] = 132442, - [SMALL_STATE(3515)] = 132480, - [SMALL_STATE(3516)] = 132531, - [SMALL_STATE(3517)] = 132582, - [SMALL_STATE(3518)] = 132633, - [SMALL_STATE(3519)] = 132684, - [SMALL_STATE(3520)] = 132735, - [SMALL_STATE(3521)] = 132786, - [SMALL_STATE(3522)] = 132837, - [SMALL_STATE(3523)] = 132888, - [SMALL_STATE(3524)] = 132939, - [SMALL_STATE(3525)] = 132990, - [SMALL_STATE(3526)] = 133041, - [SMALL_STATE(3527)] = 133092, - [SMALL_STATE(3528)] = 133143, - [SMALL_STATE(3529)] = 133194, - [SMALL_STATE(3530)] = 133245, - [SMALL_STATE(3531)] = 133296, - [SMALL_STATE(3532)] = 133347, - [SMALL_STATE(3533)] = 133398, - [SMALL_STATE(3534)] = 133449, - [SMALL_STATE(3535)] = 133500, - [SMALL_STATE(3536)] = 133551, - [SMALL_STATE(3537)] = 133602, - [SMALL_STATE(3538)] = 133653, - [SMALL_STATE(3539)] = 133704, - [SMALL_STATE(3540)] = 133755, - [SMALL_STATE(3541)] = 133806, - [SMALL_STATE(3542)] = 133857, - [SMALL_STATE(3543)] = 133908, - [SMALL_STATE(3544)] = 133959, - [SMALL_STATE(3545)] = 134010, - [SMALL_STATE(3546)] = 134061, - [SMALL_STATE(3547)] = 134112, - [SMALL_STATE(3548)] = 134163, - [SMALL_STATE(3549)] = 134214, - [SMALL_STATE(3550)] = 134265, - [SMALL_STATE(3551)] = 134316, - [SMALL_STATE(3552)] = 134367, - [SMALL_STATE(3553)] = 134418, - [SMALL_STATE(3554)] = 134469, - [SMALL_STATE(3555)] = 134520, - [SMALL_STATE(3556)] = 134571, - [SMALL_STATE(3557)] = 134622, - [SMALL_STATE(3558)] = 134673, - [SMALL_STATE(3559)] = 134724, - [SMALL_STATE(3560)] = 134775, - [SMALL_STATE(3561)] = 134826, - [SMALL_STATE(3562)] = 134877, - [SMALL_STATE(3563)] = 134928, - [SMALL_STATE(3564)] = 134979, - [SMALL_STATE(3565)] = 135030, - [SMALL_STATE(3566)] = 135081, - [SMALL_STATE(3567)] = 135132, - [SMALL_STATE(3568)] = 135183, - [SMALL_STATE(3569)] = 135234, - [SMALL_STATE(3570)] = 135285, - [SMALL_STATE(3571)] = 135336, - [SMALL_STATE(3572)] = 135387, - [SMALL_STATE(3573)] = 135438, - [SMALL_STATE(3574)] = 135489, - [SMALL_STATE(3575)] = 135540, - [SMALL_STATE(3576)] = 135591, - [SMALL_STATE(3577)] = 135642, - [SMALL_STATE(3578)] = 135693, - [SMALL_STATE(3579)] = 135744, - [SMALL_STATE(3580)] = 135795, - [SMALL_STATE(3581)] = 135846, - [SMALL_STATE(3582)] = 135897, - [SMALL_STATE(3583)] = 135948, - [SMALL_STATE(3584)] = 135999, - [SMALL_STATE(3585)] = 136050, - [SMALL_STATE(3586)] = 136101, - [SMALL_STATE(3587)] = 136152, - [SMALL_STATE(3588)] = 136203, - [SMALL_STATE(3589)] = 136254, - [SMALL_STATE(3590)] = 136305, - [SMALL_STATE(3591)] = 136356, - [SMALL_STATE(3592)] = 136407, - [SMALL_STATE(3593)] = 136458, - [SMALL_STATE(3594)] = 136509, - [SMALL_STATE(3595)] = 136560, - [SMALL_STATE(3596)] = 136611, - [SMALL_STATE(3597)] = 136662, - [SMALL_STATE(3598)] = 136713, - [SMALL_STATE(3599)] = 136764, - [SMALL_STATE(3600)] = 136815, - [SMALL_STATE(3601)] = 136866, - [SMALL_STATE(3602)] = 136917, - [SMALL_STATE(3603)] = 136968, - [SMALL_STATE(3604)] = 137019, - [SMALL_STATE(3605)] = 137070, - [SMALL_STATE(3606)] = 137121, - [SMALL_STATE(3607)] = 137172, - [SMALL_STATE(3608)] = 137223, - [SMALL_STATE(3609)] = 137272, - [SMALL_STATE(3610)] = 137323, - [SMALL_STATE(3611)] = 137374, - [SMALL_STATE(3612)] = 137425, - [SMALL_STATE(3613)] = 137476, - [SMALL_STATE(3614)] = 137527, - [SMALL_STATE(3615)] = 137578, - [SMALL_STATE(3616)] = 137629, - [SMALL_STATE(3617)] = 137680, - [SMALL_STATE(3618)] = 137731, - [SMALL_STATE(3619)] = 137782, - [SMALL_STATE(3620)] = 137833, - [SMALL_STATE(3621)] = 137884, - [SMALL_STATE(3622)] = 137935, - [SMALL_STATE(3623)] = 137986, - [SMALL_STATE(3624)] = 138037, - [SMALL_STATE(3625)] = 138088, - [SMALL_STATE(3626)] = 138139, - [SMALL_STATE(3627)] = 138190, - [SMALL_STATE(3628)] = 138241, - [SMALL_STATE(3629)] = 138292, - [SMALL_STATE(3630)] = 138343, - [SMALL_STATE(3631)] = 138394, - [SMALL_STATE(3632)] = 138445, - [SMALL_STATE(3633)] = 138496, - [SMALL_STATE(3634)] = 138547, - [SMALL_STATE(3635)] = 138598, - [SMALL_STATE(3636)] = 138649, - [SMALL_STATE(3637)] = 138700, - [SMALL_STATE(3638)] = 138751, - [SMALL_STATE(3639)] = 138802, - [SMALL_STATE(3640)] = 138853, - [SMALL_STATE(3641)] = 138904, - [SMALL_STATE(3642)] = 138955, - [SMALL_STATE(3643)] = 139006, - [SMALL_STATE(3644)] = 139057, - [SMALL_STATE(3645)] = 139108, - [SMALL_STATE(3646)] = 139159, - [SMALL_STATE(3647)] = 139210, - [SMALL_STATE(3648)] = 139261, - [SMALL_STATE(3649)] = 139293, - [SMALL_STATE(3650)] = 139325, - [SMALL_STATE(3651)] = 139373, - [SMALL_STATE(3652)] = 139405, - [SMALL_STATE(3653)] = 139437, - [SMALL_STATE(3654)] = 139485, - [SMALL_STATE(3655)] = 139517, - [SMALL_STATE(3656)] = 139549, - [SMALL_STATE(3657)] = 139597, - [SMALL_STATE(3658)] = 139635, - [SMALL_STATE(3659)] = 139667, - [SMALL_STATE(3660)] = 139699, - [SMALL_STATE(3661)] = 139731, - [SMALL_STATE(3662)] = 139779, - [SMALL_STATE(3663)] = 139817, - [SMALL_STATE(3664)] = 139849, - [SMALL_STATE(3665)] = 139897, - [SMALL_STATE(3666)] = 139945, - [SMALL_STATE(3667)] = 139981, - [SMALL_STATE(3668)] = 140019, - [SMALL_STATE(3669)] = 140067, - [SMALL_STATE(3670)] = 140112, - [SMALL_STATE(3671)] = 140159, - [SMALL_STATE(3672)] = 140206, - [SMALL_STATE(3673)] = 140239, - [SMALL_STATE(3674)] = 140276, - [SMALL_STATE(3675)] = 140311, - [SMALL_STATE(3676)] = 140342, - [SMALL_STATE(3677)] = 140377, - [SMALL_STATE(3678)] = 140424, - [SMALL_STATE(3679)] = 140471, - [SMALL_STATE(3680)] = 140518, - [SMALL_STATE(3681)] = 140555, - [SMALL_STATE(3682)] = 140592, - [SMALL_STATE(3683)] = 140622, - [SMALL_STATE(3684)] = 140666, - [SMALL_STATE(3685)] = 140700, - [SMALL_STATE(3686)] = 140730, - [SMALL_STATE(3687)] = 140760, - [SMALL_STATE(3688)] = 140806, - [SMALL_STATE(3689)] = 140840, - [SMALL_STATE(3690)] = 140872, - [SMALL_STATE(3691)] = 140906, - [SMALL_STATE(3692)] = 140940, - [SMALL_STATE(3693)] = 140986, - [SMALL_STATE(3694)] = 141020, - [SMALL_STATE(3695)] = 141050, - [SMALL_STATE(3696)] = 141084, - [SMALL_STATE(3697)] = 141128, - [SMALL_STATE(3698)] = 141172, - [SMALL_STATE(3699)] = 141218, - [SMALL_STATE(3700)] = 141248, - [SMALL_STATE(3701)] = 141276, - [SMALL_STATE(3702)] = 141322, - [SMALL_STATE(3703)] = 141368, - [SMALL_STATE(3704)] = 141395, - [SMALL_STATE(3705)] = 141428, - [SMALL_STATE(3706)] = 141461, - [SMALL_STATE(3707)] = 141488, - [SMALL_STATE(3708)] = 141533, - [SMALL_STATE(3709)] = 141562, - [SMALL_STATE(3710)] = 141607, - [SMALL_STATE(3711)] = 141652, - [SMALL_STATE(3712)] = 141697, - [SMALL_STATE(3713)] = 141742, - [SMALL_STATE(3714)] = 141769, - [SMALL_STATE(3715)] = 141812, - [SMALL_STATE(3716)] = 141843, - [SMALL_STATE(3717)] = 141872, - [SMALL_STATE(3718)] = 141917, - [SMALL_STATE(3719)] = 141962, - [SMALL_STATE(3720)] = 141991, - [SMALL_STATE(3721)] = 142036, - [SMALL_STATE(3722)] = 142095, - [SMALL_STATE(3723)] = 142124, - [SMALL_STATE(3724)] = 142151, - [SMALL_STATE(3725)] = 142196, - [SMALL_STATE(3726)] = 142229, - [SMALL_STATE(3727)] = 142258, - [SMALL_STATE(3728)] = 142303, - [SMALL_STATE(3729)] = 142332, - [SMALL_STATE(3730)] = 142365, - [SMALL_STATE(3731)] = 142394, - [SMALL_STATE(3732)] = 142439, - [SMALL_STATE(3733)] = 142468, - [SMALL_STATE(3734)] = 142497, - [SMALL_STATE(3735)] = 142542, - [SMALL_STATE(3736)] = 142571, - [SMALL_STATE(3737)] = 142600, - [SMALL_STATE(3738)] = 142633, - [SMALL_STATE(3739)] = 142676, - [SMALL_STATE(3740)] = 142709, - [SMALL_STATE(3741)] = 142740, - [SMALL_STATE(3742)] = 142771, - [SMALL_STATE(3743)] = 142798, - [SMALL_STATE(3744)] = 142831, - [SMALL_STATE(3745)] = 142876, - [SMALL_STATE(3746)] = 142905, - [SMALL_STATE(3747)] = 142950, - [SMALL_STATE(3748)] = 142983, - [SMALL_STATE(3749)] = 143028, - [SMALL_STATE(3750)] = 143081, - [SMALL_STATE(3751)] = 143114, - [SMALL_STATE(3752)] = 143147, - [SMALL_STATE(3753)] = 143192, - [SMALL_STATE(3754)] = 143225, - [SMALL_STATE(3755)] = 143268, - [SMALL_STATE(3756)] = 143301, - [SMALL_STATE(3757)] = 143334, - [SMALL_STATE(3758)] = 143390, - [SMALL_STATE(3759)] = 143446, - [SMALL_STATE(3760)] = 143490, - [SMALL_STATE(3761)] = 143516, - [SMALL_STATE(3762)] = 143560, - [SMALL_STATE(3763)] = 143586, - [SMALL_STATE(3764)] = 143630, - [SMALL_STATE(3765)] = 143674, - [SMALL_STATE(3766)] = 143700, - [SMALL_STATE(3767)] = 143744, - [SMALL_STATE(3768)] = 143788, - [SMALL_STATE(3769)] = 143820, - [SMALL_STATE(3770)] = 143846, - [SMALL_STATE(3771)] = 143890, - [SMALL_STATE(3772)] = 143924, - [SMALL_STATE(3773)] = 143968, - [SMALL_STATE(3774)] = 144012, - [SMALL_STATE(3775)] = 144056, - [SMALL_STATE(3776)] = 144104, - [SMALL_STATE(3777)] = 144130, - [SMALL_STATE(3778)] = 144174, - [SMALL_STATE(3779)] = 144208, - [SMALL_STATE(3780)] = 144252, - [SMALL_STATE(3781)] = 144296, - [SMALL_STATE(3782)] = 144324, - [SMALL_STATE(3783)] = 144380, - [SMALL_STATE(3784)] = 144424, - [SMALL_STATE(3785)] = 144468, - [SMALL_STATE(3786)] = 144502, - [SMALL_STATE(3787)] = 144546, - [SMALL_STATE(3788)] = 144590, - [SMALL_STATE(3789)] = 144616, - [SMALL_STATE(3790)] = 144642, - [SMALL_STATE(3791)] = 144698, - [SMALL_STATE(3792)] = 144726, - [SMALL_STATE(3793)] = 144754, - [SMALL_STATE(3794)] = 144784, - [SMALL_STATE(3795)] = 144814, - [SMALL_STATE(3796)] = 144846, - [SMALL_STATE(3797)] = 144872, - [SMALL_STATE(3798)] = 144898, - [SMALL_STATE(3799)] = 144946, - [SMALL_STATE(3800)] = 144976, - [SMALL_STATE(3801)] = 145006, - [SMALL_STATE(3802)] = 145054, - [SMALL_STATE(3803)] = 145086, - [SMALL_STATE(3804)] = 145118, - [SMALL_STATE(3805)] = 145148, - [SMALL_STATE(3806)] = 145196, - [SMALL_STATE(3807)] = 145240, - [SMALL_STATE(3808)] = 145268, - [SMALL_STATE(3809)] = 145312, - [SMALL_STATE(3810)] = 145360, - [SMALL_STATE(3811)] = 145402, - [SMALL_STATE(3812)] = 145430, - [SMALL_STATE(3813)] = 145460, - [SMALL_STATE(3814)] = 145488, - [SMALL_STATE(3815)] = 145532, - [SMALL_STATE(3816)] = 145558, - [SMALL_STATE(3817)] = 145590, - [SMALL_STATE(3818)] = 145634, - [SMALL_STATE(3819)] = 145666, - [SMALL_STATE(3820)] = 145698, - [SMALL_STATE(3821)] = 145730, - [SMALL_STATE(3822)] = 145762, - [SMALL_STATE(3823)] = 145806, - [SMALL_STATE(3824)] = 145838, - [SMALL_STATE(3825)] = 145881, - [SMALL_STATE(3826)] = 145906, - [SMALL_STATE(3827)] = 145931, - [SMALL_STATE(3828)] = 145956, - [SMALL_STATE(3829)] = 145985, - [SMALL_STATE(3830)] = 146028, - [SMALL_STATE(3831)] = 146071, - [SMALL_STATE(3832)] = 146096, - [SMALL_STATE(3833)] = 146137, - [SMALL_STATE(3834)] = 146166, - [SMALL_STATE(3835)] = 146191, - [SMALL_STATE(3836)] = 146226, - [SMALL_STATE(3837)] = 146269, - [SMALL_STATE(3838)] = 146300, - [SMALL_STATE(3839)] = 146329, - [SMALL_STATE(3840)] = 146372, - [SMALL_STATE(3841)] = 146401, - [SMALL_STATE(3842)] = 146444, - [SMALL_STATE(3843)] = 146477, - [SMALL_STATE(3844)] = 146510, - [SMALL_STATE(3845)] = 146553, - [SMALL_STATE(3846)] = 146584, - [SMALL_STATE(3847)] = 146613, - [SMALL_STATE(3848)] = 146648, - [SMALL_STATE(3849)] = 146681, - [SMALL_STATE(3850)] = 146714, - [SMALL_STATE(3851)] = 146745, - [SMALL_STATE(3852)] = 146774, - [SMALL_STATE(3853)] = 146809, - [SMALL_STATE(3854)] = 146852, - [SMALL_STATE(3855)] = 146883, - [SMALL_STATE(3856)] = 146908, - [SMALL_STATE(3857)] = 146937, - [SMALL_STATE(3858)] = 146980, - [SMALL_STATE(3859)] = 147005, - [SMALL_STATE(3860)] = 147038, - [SMALL_STATE(3861)] = 147067, - [SMALL_STATE(3862)] = 147098, - [SMALL_STATE(3863)] = 147127, - [SMALL_STATE(3864)] = 147162, - [SMALL_STATE(3865)] = 147187, - [SMALL_STATE(3866)] = 147212, - [SMALL_STATE(3867)] = 147237, - [SMALL_STATE(3868)] = 147280, - [SMALL_STATE(3869)] = 147305, - [SMALL_STATE(3870)] = 147340, - [SMALL_STATE(3871)] = 147367, - [SMALL_STATE(3872)] = 147392, - [SMALL_STATE(3873)] = 147421, - [SMALL_STATE(3874)] = 147446, - [SMALL_STATE(3875)] = 147489, - [SMALL_STATE(3876)] = 147532, - [SMALL_STATE(3877)] = 147575, - [SMALL_STATE(3878)] = 147600, - [SMALL_STATE(3879)] = 147625, - [SMALL_STATE(3880)] = 147668, - [SMALL_STATE(3881)] = 147703, - [SMALL_STATE(3882)] = 147736, - [SMALL_STATE(3883)] = 147761, - [SMALL_STATE(3884)] = 147786, - [SMALL_STATE(3885)] = 147813, - [SMALL_STATE(3886)] = 147838, - [SMALL_STATE(3887)] = 147881, - [SMALL_STATE(3888)] = 147906, - [SMALL_STATE(3889)] = 147931, - [SMALL_STATE(3890)] = 147956, - [SMALL_STATE(3891)] = 147985, - [SMALL_STATE(3892)] = 148014, - [SMALL_STATE(3893)] = 148058, - [SMALL_STATE(3894)] = 148088, - [SMALL_STATE(3895)] = 148132, - [SMALL_STATE(3896)] = 148156, - [SMALL_STATE(3897)] = 148188, - [SMALL_STATE(3898)] = 148216, - [SMALL_STATE(3899)] = 148240, - [SMALL_STATE(3900)] = 148264, - [SMALL_STATE(3901)] = 148288, - [SMALL_STATE(3902)] = 148318, - [SMALL_STATE(3903)] = 148342, - [SMALL_STATE(3904)] = 148366, - [SMALL_STATE(3905)] = 148394, - [SMALL_STATE(3906)] = 148418, - [SMALL_STATE(3907)] = 148442, - [SMALL_STATE(3908)] = 148466, - [SMALL_STATE(3909)] = 148490, - [SMALL_STATE(3910)] = 148518, - [SMALL_STATE(3911)] = 148546, - [SMALL_STATE(3912)] = 148570, - [SMALL_STATE(3913)] = 148594, - [SMALL_STATE(3914)] = 148620, - [SMALL_STATE(3915)] = 148648, - [SMALL_STATE(3916)] = 148680, - [SMALL_STATE(3917)] = 148704, - [SMALL_STATE(3918)] = 148728, - [SMALL_STATE(3919)] = 148752, - [SMALL_STATE(3920)] = 148782, - [SMALL_STATE(3921)] = 148806, - [SMALL_STATE(3922)] = 148834, - [SMALL_STATE(3923)] = 148858, - [SMALL_STATE(3924)] = 148886, - [SMALL_STATE(3925)] = 148914, - [SMALL_STATE(3926)] = 148938, - [SMALL_STATE(3927)] = 148962, - [SMALL_STATE(3928)] = 148988, - [SMALL_STATE(3929)] = 149012, - [SMALL_STATE(3930)] = 149040, - [SMALL_STATE(3931)] = 149066, - [SMALL_STATE(3932)] = 149110, - [SMALL_STATE(3933)] = 149134, - [SMALL_STATE(3934)] = 149162, - [SMALL_STATE(3935)] = 149186, - [SMALL_STATE(3936)] = 149210, - [SMALL_STATE(3937)] = 149236, - [SMALL_STATE(3938)] = 149264, - [SMALL_STATE(3939)] = 149288, - [SMALL_STATE(3940)] = 149312, - [SMALL_STATE(3941)] = 149354, - [SMALL_STATE(3942)] = 149396, - [SMALL_STATE(3943)] = 149438, - [SMALL_STATE(3944)] = 149462, - [SMALL_STATE(3945)] = 149486, - [SMALL_STATE(3946)] = 149512, - [SMALL_STATE(3947)] = 149536, - [SMALL_STATE(3948)] = 149562, - [SMALL_STATE(3949)] = 149588, - [SMALL_STATE(3950)] = 149612, - [SMALL_STATE(3951)] = 149638, - [SMALL_STATE(3952)] = 149662, - [SMALL_STATE(3953)] = 149690, - [SMALL_STATE(3954)] = 149720, - [SMALL_STATE(3955)] = 149762, - [SMALL_STATE(3956)] = 149804, - [SMALL_STATE(3957)] = 149832, - [SMALL_STATE(3958)] = 149862, - [SMALL_STATE(3959)] = 149892, - [SMALL_STATE(3960)] = 149918, - [SMALL_STATE(3961)] = 149942, - [SMALL_STATE(3962)] = 149966, - [SMALL_STATE(3963)] = 149990, - [SMALL_STATE(3964)] = 150034, - [SMALL_STATE(3965)] = 150057, - [SMALL_STATE(3966)] = 150082, - [SMALL_STATE(3967)] = 150107, - [SMALL_STATE(3968)] = 150130, - [SMALL_STATE(3969)] = 150167, - [SMALL_STATE(3970)] = 150190, - [SMALL_STATE(3971)] = 150213, - [SMALL_STATE(3972)] = 150236, - [SMALL_STATE(3973)] = 150259, - [SMALL_STATE(3974)] = 150282, - [SMALL_STATE(3975)] = 150305, - [SMALL_STATE(3976)] = 150330, - [SMALL_STATE(3977)] = 150369, - [SMALL_STATE(3978)] = 150396, - [SMALL_STATE(3979)] = 150435, - [SMALL_STATE(3980)] = 150458, - [SMALL_STATE(3981)] = 150487, - [SMALL_STATE(3982)] = 150510, - [SMALL_STATE(3983)] = 150539, - [SMALL_STATE(3984)] = 150564, - [SMALL_STATE(3985)] = 150587, - [SMALL_STATE(3986)] = 150616, - [SMALL_STATE(3987)] = 150639, - [SMALL_STATE(3988)] = 150664, - [SMALL_STATE(3989)] = 150687, - [SMALL_STATE(3990)] = 150712, - [SMALL_STATE(3991)] = 150741, - [SMALL_STATE(3992)] = 150768, - [SMALL_STATE(3993)] = 150797, - [SMALL_STATE(3994)] = 150820, - [SMALL_STATE(3995)] = 150845, - [SMALL_STATE(3996)] = 150868, - [SMALL_STATE(3997)] = 150895, - [SMALL_STATE(3998)] = 150918, - [SMALL_STATE(3999)] = 150943, - [SMALL_STATE(4000)] = 150966, - [SMALL_STATE(4001)] = 150989, - [SMALL_STATE(4002)] = 151012, - [SMALL_STATE(4003)] = 151035, - [SMALL_STATE(4004)] = 151064, - [SMALL_STATE(4005)] = 151089, - [SMALL_STATE(4006)] = 151114, - [SMALL_STATE(4007)] = 151137, - [SMALL_STATE(4008)] = 151160, - [SMALL_STATE(4009)] = 151183, - [SMALL_STATE(4010)] = 151220, - [SMALL_STATE(4011)] = 151249, - [SMALL_STATE(4012)] = 151272, - [SMALL_STATE(4013)] = 151297, - [SMALL_STATE(4014)] = 151320, - [SMALL_STATE(4015)] = 151343, - [SMALL_STATE(4016)] = 151366, - [SMALL_STATE(4017)] = 151405, - [SMALL_STATE(4018)] = 151430, - [SMALL_STATE(4019)] = 151459, - [SMALL_STATE(4020)] = 151482, - [SMALL_STATE(4021)] = 151507, - [SMALL_STATE(4022)] = 151532, - [SMALL_STATE(4023)] = 151561, - [SMALL_STATE(4024)] = 151588, - [SMALL_STATE(4025)] = 151611, - [SMALL_STATE(4026)] = 151636, - [SMALL_STATE(4027)] = 151663, - [SMALL_STATE(4028)] = 151692, - [SMALL_STATE(4029)] = 151715, - [SMALL_STATE(4030)] = 151744, - [SMALL_STATE(4031)] = 151773, - [SMALL_STATE(4032)] = 151796, - [SMALL_STATE(4033)] = 151821, - [SMALL_STATE(4034)] = 151848, - [SMALL_STATE(4035)] = 151873, - [SMALL_STATE(4036)] = 151902, - [SMALL_STATE(4037)] = 151929, - [SMALL_STATE(4038)] = 151952, - [SMALL_STATE(4039)] = 151981, - [SMALL_STATE(4040)] = 152019, - [SMALL_STATE(4041)] = 152059, - [SMALL_STATE(4042)] = 152097, - [SMALL_STATE(4043)] = 152123, - [SMALL_STATE(4044)] = 152161, - [SMALL_STATE(4045)] = 152201, - [SMALL_STATE(4046)] = 152237, - [SMALL_STATE(4047)] = 152259, - [SMALL_STATE(4048)] = 152281, - [SMALL_STATE(4049)] = 152319, - [SMALL_STATE(4050)] = 152347, - [SMALL_STATE(4051)] = 152383, - [SMALL_STATE(4052)] = 152405, - [SMALL_STATE(4053)] = 152427, - [SMALL_STATE(4054)] = 152455, - [SMALL_STATE(4055)] = 152493, - [SMALL_STATE(4056)] = 152533, - [SMALL_STATE(4057)] = 152569, - [SMALL_STATE(4058)] = 152595, - [SMALL_STATE(4059)] = 152635, - [SMALL_STATE(4060)] = 152675, - [SMALL_STATE(4061)] = 152707, - [SMALL_STATE(4062)] = 152743, - [SMALL_STATE(4063)] = 152765, - [SMALL_STATE(4064)] = 152801, - [SMALL_STATE(4065)] = 152841, - [SMALL_STATE(4066)] = 152863, - [SMALL_STATE(4067)] = 152889, - [SMALL_STATE(4068)] = 152925, - [SMALL_STATE(4069)] = 152963, - [SMALL_STATE(4070)] = 152993, - [SMALL_STATE(4071)] = 153015, - [SMALL_STATE(4072)] = 153045, - [SMALL_STATE(4073)] = 153083, - [SMALL_STATE(4074)] = 153105, - [SMALL_STATE(4075)] = 153133, - [SMALL_STATE(4076)] = 153163, - [SMALL_STATE(4077)] = 153191, - [SMALL_STATE(4078)] = 153227, - [SMALL_STATE(4079)] = 153249, - [SMALL_STATE(4080)] = 153289, - [SMALL_STATE(4081)] = 153327, - [SMALL_STATE(4082)] = 153353, - [SMALL_STATE(4083)] = 153377, - [SMALL_STATE(4084)] = 153413, - [SMALL_STATE(4085)] = 153437, - [SMALL_STATE(4086)] = 153475, - [SMALL_STATE(4087)] = 153503, - [SMALL_STATE(4088)] = 153525, - [SMALL_STATE(4089)] = 153561, - [SMALL_STATE(4090)] = 153583, - [SMALL_STATE(4091)] = 153607, - [SMALL_STATE(4092)] = 153629, - [SMALL_STATE(4093)] = 153655, - [SMALL_STATE(4094)] = 153691, - [SMALL_STATE(4095)] = 153721, - [SMALL_STATE(4096)] = 153757, - [SMALL_STATE(4097)] = 153779, - [SMALL_STATE(4098)] = 153815, - [SMALL_STATE(4099)] = 153839, - [SMALL_STATE(4100)] = 153863, - [SMALL_STATE(4101)] = 153885, - [SMALL_STATE(4102)] = 153911, - [SMALL_STATE(4103)] = 153933, - [SMALL_STATE(4104)] = 153969, - [SMALL_STATE(4105)] = 154005, - [SMALL_STATE(4106)] = 154041, - [SMALL_STATE(4107)] = 154065, - [SMALL_STATE(4108)] = 154089, - [SMALL_STATE(4109)] = 154115, - [SMALL_STATE(4110)] = 154141, - [SMALL_STATE(4111)] = 154163, - [SMALL_STATE(4112)] = 154201, - [SMALL_STATE(4113)] = 154223, - [SMALL_STATE(4114)] = 154247, - [SMALL_STATE(4115)] = 154269, - [SMALL_STATE(4116)] = 154291, - [SMALL_STATE(4117)] = 154313, - [SMALL_STATE(4118)] = 154337, - [SMALL_STATE(4119)] = 154361, - [SMALL_STATE(4120)] = 154383, - [SMALL_STATE(4121)] = 154407, - [SMALL_STATE(4122)] = 154443, - [SMALL_STATE(4123)] = 154479, - [SMALL_STATE(4124)] = 154501, - [SMALL_STATE(4125)] = 154525, - [SMALL_STATE(4126)] = 154549, - [SMALL_STATE(4127)] = 154587, - [SMALL_STATE(4128)] = 154617, - [SMALL_STATE(4129)] = 154641, - [SMALL_STATE(4130)] = 154667, - [SMALL_STATE(4131)] = 154703, - [SMALL_STATE(4132)] = 154729, - [SMALL_STATE(4133)] = 154751, - [SMALL_STATE(4134)] = 154775, - [SMALL_STATE(4135)] = 154803, - [SMALL_STATE(4136)] = 154839, - [SMALL_STATE(4137)] = 154867, - [SMALL_STATE(4138)] = 154891, - [SMALL_STATE(4139)] = 154927, - [SMALL_STATE(4140)] = 154949, - [SMALL_STATE(4141)] = 154987, - [SMALL_STATE(4142)] = 155025, - [SMALL_STATE(4143)] = 155055, - [SMALL_STATE(4144)] = 155077, - [SMALL_STATE(4145)] = 155099, - [SMALL_STATE(4146)] = 155135, - [SMALL_STATE(4147)] = 155159, - [SMALL_STATE(4148)] = 155180, - [SMALL_STATE(4149)] = 155205, - [SMALL_STATE(4150)] = 155246, - [SMALL_STATE(4151)] = 155287, - [SMALL_STATE(4152)] = 155328, - [SMALL_STATE(4153)] = 155349, - [SMALL_STATE(4154)] = 155372, - [SMALL_STATE(4155)] = 155413, - [SMALL_STATE(4156)] = 155434, - [SMALL_STATE(4157)] = 155475, - [SMALL_STATE(4158)] = 155516, - [SMALL_STATE(4159)] = 155539, - [SMALL_STATE(4160)] = 155580, - [SMALL_STATE(4161)] = 155621, - [SMALL_STATE(4162)] = 155646, - [SMALL_STATE(4163)] = 155667, - [SMALL_STATE(4164)] = 155708, - [SMALL_STATE(4165)] = 155729, - [SMALL_STATE(4166)] = 155770, - [SMALL_STATE(4167)] = 155791, - [SMALL_STATE(4168)] = 155818, - [SMALL_STATE(4169)] = 155839, - [SMALL_STATE(4170)] = 155880, - [SMALL_STATE(4171)] = 155921, - [SMALL_STATE(4172)] = 155962, - [SMALL_STATE(4173)] = 156003, - [SMALL_STATE(4174)] = 156024, - [SMALL_STATE(4175)] = 156045, - [SMALL_STATE(4176)] = 156066, - [SMALL_STATE(4177)] = 156093, - [SMALL_STATE(4178)] = 156114, - [SMALL_STATE(4179)] = 156155, - [SMALL_STATE(4180)] = 156196, - [SMALL_STATE(4181)] = 156217, - [SMALL_STATE(4182)] = 156258, - [SMALL_STATE(4183)] = 156281, - [SMALL_STATE(4184)] = 156322, - [SMALL_STATE(4185)] = 156343, - [SMALL_STATE(4186)] = 156364, - [SMALL_STATE(4187)] = 156385, - [SMALL_STATE(4188)] = 156408, - [SMALL_STATE(4189)] = 156449, - [SMALL_STATE(4190)] = 156470, - [SMALL_STATE(4191)] = 156511, - [SMALL_STATE(4192)] = 156552, - [SMALL_STATE(4193)] = 156573, - [SMALL_STATE(4194)] = 156594, - [SMALL_STATE(4195)] = 156617, - [SMALL_STATE(4196)] = 156642, - [SMALL_STATE(4197)] = 156683, - [SMALL_STATE(4198)] = 156706, - [SMALL_STATE(4199)] = 156747, - [SMALL_STATE(4200)] = 156768, - [SMALL_STATE(4201)] = 156809, - [SMALL_STATE(4202)] = 156850, - [SMALL_STATE(4203)] = 156873, - [SMALL_STATE(4204)] = 156912, - [SMALL_STATE(4205)] = 156949, - [SMALL_STATE(4206)] = 156970, - [SMALL_STATE(4207)] = 156995, - [SMALL_STATE(4208)] = 157022, - [SMALL_STATE(4209)] = 157049, - [SMALL_STATE(4210)] = 157076, - [SMALL_STATE(4211)] = 157096, - [SMALL_STATE(4212)] = 157120, - [SMALL_STATE(4213)] = 157142, - [SMALL_STATE(4214)] = 157166, - [SMALL_STATE(4215)] = 157188, - [SMALL_STATE(4216)] = 157222, - [SMALL_STATE(4217)] = 157242, - [SMALL_STATE(4218)] = 157280, - [SMALL_STATE(4219)] = 157314, - [SMALL_STATE(4220)] = 157352, - [SMALL_STATE(4221)] = 157390, - [SMALL_STATE(4222)] = 157410, - [SMALL_STATE(4223)] = 157432, - [SMALL_STATE(4224)] = 157464, - [SMALL_STATE(4225)] = 157496, - [SMALL_STATE(4226)] = 157520, - [SMALL_STATE(4227)] = 157540, - [SMALL_STATE(4228)] = 157572, - [SMALL_STATE(4229)] = 157606, - [SMALL_STATE(4230)] = 157638, - [SMALL_STATE(4231)] = 157670, - [SMALL_STATE(4232)] = 157708, - [SMALL_STATE(4233)] = 157742, - [SMALL_STATE(4234)] = 157764, - [SMALL_STATE(4235)] = 157784, - [SMALL_STATE(4236)] = 157806, - [SMALL_STATE(4237)] = 157838, - [SMALL_STATE(4238)] = 157860, - [SMALL_STATE(4239)] = 157898, - [SMALL_STATE(4240)] = 157922, - [SMALL_STATE(4241)] = 157942, - [SMALL_STATE(4242)] = 157976, - [SMALL_STATE(4243)] = 157996, - [SMALL_STATE(4244)] = 158016, - [SMALL_STATE(4245)] = 158050, - [SMALL_STATE(4246)] = 158070, - [SMALL_STATE(4247)] = 158090, - [SMALL_STATE(4248)] = 158116, - [SMALL_STATE(4249)] = 158142, - [SMALL_STATE(4250)] = 158166, - [SMALL_STATE(4251)] = 158204, - [SMALL_STATE(4252)] = 158230, - [SMALL_STATE(4253)] = 158268, - [SMALL_STATE(4254)] = 158306, - [SMALL_STATE(4255)] = 158328, - [SMALL_STATE(4256)] = 158366, - [SMALL_STATE(4257)] = 158404, - [SMALL_STATE(4258)] = 158432, - [SMALL_STATE(4259)] = 158470, - [SMALL_STATE(4260)] = 158508, - [SMALL_STATE(4261)] = 158528, - [SMALL_STATE(4262)] = 158548, - [SMALL_STATE(4263)] = 158574, - [SMALL_STATE(4264)] = 158594, - [SMALL_STATE(4265)] = 158614, - [SMALL_STATE(4266)] = 158648, - [SMALL_STATE(4267)] = 158668, - [SMALL_STATE(4268)] = 158692, - [SMALL_STATE(4269)] = 158730, - [SMALL_STATE(4270)] = 158768, - [SMALL_STATE(4271)] = 158800, - [SMALL_STATE(4272)] = 158838, - [SMALL_STATE(4273)] = 158858, - [SMALL_STATE(4274)] = 158896, - [SMALL_STATE(4275)] = 158934, - [SMALL_STATE(4276)] = 158954, - [SMALL_STATE(4277)] = 158986, - [SMALL_STATE(4278)] = 159008, - [SMALL_STATE(4279)] = 159044, - [SMALL_STATE(4280)] = 159076, - [SMALL_STATE(4281)] = 159114, - [SMALL_STATE(4282)] = 159134, - [SMALL_STATE(4283)] = 159172, - [SMALL_STATE(4284)] = 159210, - [SMALL_STATE(4285)] = 159248, - [SMALL_STATE(4286)] = 159274, - [SMALL_STATE(4287)] = 159298, - [SMALL_STATE(4288)] = 159321, - [SMALL_STATE(4289)] = 159340, - [SMALL_STATE(4290)] = 159361, - [SMALL_STATE(4291)] = 159384, - [SMALL_STATE(4292)] = 159411, - [SMALL_STATE(4293)] = 159442, - [SMALL_STATE(4294)] = 159473, - [SMALL_STATE(4295)] = 159500, - [SMALL_STATE(4296)] = 159529, - [SMALL_STATE(4297)] = 159554, - [SMALL_STATE(4298)] = 159583, - [SMALL_STATE(4299)] = 159604, - [SMALL_STATE(4300)] = 159631, - [SMALL_STATE(4301)] = 159650, - [SMALL_STATE(4302)] = 159679, - [SMALL_STATE(4303)] = 159698, - [SMALL_STATE(4304)] = 159717, - [SMALL_STATE(4305)] = 159738, - [SMALL_STATE(4306)] = 159757, - [SMALL_STATE(4307)] = 159786, - [SMALL_STATE(4308)] = 159807, - [SMALL_STATE(4309)] = 159828, - [SMALL_STATE(4310)] = 159857, - [SMALL_STATE(4311)] = 159876, - [SMALL_STATE(4312)] = 159911, - [SMALL_STATE(4313)] = 159940, - [SMALL_STATE(4314)] = 159961, - [SMALL_STATE(4315)] = 159980, - [SMALL_STATE(4316)] = 160007, - [SMALL_STATE(4317)] = 160026, - [SMALL_STATE(4318)] = 160045, - [SMALL_STATE(4319)] = 160066, - [SMALL_STATE(4320)] = 160085, - [SMALL_STATE(4321)] = 160104, - [SMALL_STATE(4322)] = 160129, - [SMALL_STATE(4323)] = 160154, - [SMALL_STATE(4324)] = 160173, - [SMALL_STATE(4325)] = 160200, - [SMALL_STATE(4326)] = 160229, - [SMALL_STATE(4327)] = 160252, - [SMALL_STATE(4328)] = 160279, - [SMALL_STATE(4329)] = 160308, - [SMALL_STATE(4330)] = 160329, - [SMALL_STATE(4331)] = 160348, - [SMALL_STATE(4332)] = 160369, - [SMALL_STATE(4333)] = 160388, - [SMALL_STATE(4334)] = 160409, - [SMALL_STATE(4335)] = 160428, - [SMALL_STATE(4336)] = 160447, - [SMALL_STATE(4337)] = 160476, - [SMALL_STATE(4338)] = 160495, - [SMALL_STATE(4339)] = 160514, - [SMALL_STATE(4340)] = 160539, - [SMALL_STATE(4341)] = 160561, - [SMALL_STATE(4342)] = 160583, - [SMALL_STATE(4343)] = 160605, - [SMALL_STATE(4344)] = 160625, - [SMALL_STATE(4345)] = 160657, - [SMALL_STATE(4346)] = 160675, - [SMALL_STATE(4347)] = 160693, - [SMALL_STATE(4348)] = 160721, - [SMALL_STATE(4349)] = 160749, - [SMALL_STATE(4350)] = 160777, - [SMALL_STATE(4351)] = 160803, - [SMALL_STATE(4352)] = 160827, - [SMALL_STATE(4353)] = 160847, - [SMALL_STATE(4354)] = 160865, - [SMALL_STATE(4355)] = 160893, - [SMALL_STATE(4356)] = 160911, - [SMALL_STATE(4357)] = 160937, - [SMALL_STATE(4358)] = 160955, - [SMALL_STATE(4359)] = 160981, - [SMALL_STATE(4360)] = 160999, - [SMALL_STATE(4361)] = 161027, - [SMALL_STATE(4362)] = 161055, - [SMALL_STATE(4363)] = 161075, - [SMALL_STATE(4364)] = 161093, - [SMALL_STATE(4365)] = 161121, - [SMALL_STATE(4366)] = 161149, - [SMALL_STATE(4367)] = 161171, - [SMALL_STATE(4368)] = 161197, - [SMALL_STATE(4369)] = 161219, - [SMALL_STATE(4370)] = 161245, - [SMALL_STATE(4371)] = 161267, - [SMALL_STATE(4372)] = 161291, - [SMALL_STATE(4373)] = 161319, - [SMALL_STATE(4374)] = 161347, - [SMALL_STATE(4375)] = 161367, - [SMALL_STATE(4376)] = 161399, - [SMALL_STATE(4377)] = 161417, - [SMALL_STATE(4378)] = 161439, - [SMALL_STATE(4379)] = 161465, - [SMALL_STATE(4380)] = 161493, - [SMALL_STATE(4381)] = 161517, - [SMALL_STATE(4382)] = 161543, - [SMALL_STATE(4383)] = 161561, - [SMALL_STATE(4384)] = 161583, - [SMALL_STATE(4385)] = 161609, - [SMALL_STATE(4386)] = 161637, - [SMALL_STATE(4387)] = 161659, - [SMALL_STATE(4388)] = 161677, - [SMALL_STATE(4389)] = 161697, - [SMALL_STATE(4390)] = 161719, - [SMALL_STATE(4391)] = 161750, - [SMALL_STATE(4392)] = 161775, - [SMALL_STATE(4393)] = 161806, - [SMALL_STATE(4394)] = 161825, - [SMALL_STATE(4395)] = 161846, - [SMALL_STATE(4396)] = 161867, - [SMALL_STATE(4397)] = 161890, - [SMALL_STATE(4398)] = 161915, - [SMALL_STATE(4399)] = 161938, - [SMALL_STATE(4400)] = 161955, - [SMALL_STATE(4401)] = 161984, - [SMALL_STATE(4402)] = 162013, - [SMALL_STATE(4403)] = 162036, - [SMALL_STATE(4404)] = 162055, - [SMALL_STATE(4405)] = 162076, - [SMALL_STATE(4406)] = 162101, - [SMALL_STATE(4407)] = 162126, - [SMALL_STATE(4408)] = 162151, - [SMALL_STATE(4409)] = 162180, - [SMALL_STATE(4410)] = 162197, - [SMALL_STATE(4411)] = 162218, - [SMALL_STATE(4412)] = 162247, - [SMALL_STATE(4413)] = 162272, - [SMALL_STATE(4414)] = 162293, - [SMALL_STATE(4415)] = 162312, - [SMALL_STATE(4416)] = 162333, - [SMALL_STATE(4417)] = 162364, - [SMALL_STATE(4418)] = 162389, - [SMALL_STATE(4419)] = 162418, - [SMALL_STATE(4420)] = 162449, - [SMALL_STATE(4421)] = 162480, - [SMALL_STATE(4422)] = 162497, - [SMALL_STATE(4423)] = 162516, - [SMALL_STATE(4424)] = 162539, - [SMALL_STATE(4425)] = 162568, - [SMALL_STATE(4426)] = 162587, - [SMALL_STATE(4427)] = 162610, - [SMALL_STATE(4428)] = 162641, - [SMALL_STATE(4429)] = 162666, - [SMALL_STATE(4430)] = 162687, - [SMALL_STATE(4431)] = 162708, - [SMALL_STATE(4432)] = 162729, - [SMALL_STATE(4433)] = 162756, - [SMALL_STATE(4434)] = 162781, - [SMALL_STATE(4435)] = 162810, - [SMALL_STATE(4436)] = 162839, - [SMALL_STATE(4437)] = 162868, - [SMALL_STATE(4438)] = 162897, - [SMALL_STATE(4439)] = 162918, - [SMALL_STATE(4440)] = 162943, - [SMALL_STATE(4441)] = 162966, - [SMALL_STATE(4442)] = 162989, - [SMALL_STATE(4443)] = 163018, - [SMALL_STATE(4444)] = 163043, - [SMALL_STATE(4445)] = 163066, - [SMALL_STATE(4446)] = 163087, - [SMALL_STATE(4447)] = 163108, - [SMALL_STATE(4448)] = 163131, - [SMALL_STATE(4449)] = 163156, - [SMALL_STATE(4450)] = 163181, - [SMALL_STATE(4451)] = 163210, - [SMALL_STATE(4452)] = 163231, - [SMALL_STATE(4453)] = 163252, - [SMALL_STATE(4454)] = 163281, - [SMALL_STATE(4455)] = 163304, - [SMALL_STATE(4456)] = 163335, - [SMALL_STATE(4457)] = 163356, - [SMALL_STATE(4458)] = 163387, - [SMALL_STATE(4459)] = 163412, - [SMALL_STATE(4460)] = 163443, - [SMALL_STATE(4461)] = 163468, - [SMALL_STATE(4462)] = 163485, - [SMALL_STATE(4463)] = 163502, - [SMALL_STATE(4464)] = 163527, - [SMALL_STATE(4465)] = 163552, - [SMALL_STATE(4466)] = 163571, - [SMALL_STATE(4467)] = 163590, - [SMALL_STATE(4468)] = 163617, - [SMALL_STATE(4469)] = 163636, - [SMALL_STATE(4470)] = 163661, - [SMALL_STATE(4471)] = 163682, - [SMALL_STATE(4472)] = 163699, - [SMALL_STATE(4473)] = 163730, - [SMALL_STATE(4474)] = 163755, - [SMALL_STATE(4475)] = 163780, - [SMALL_STATE(4476)] = 163797, - [SMALL_STATE(4477)] = 163826, - [SMALL_STATE(4478)] = 163851, - [SMALL_STATE(4479)] = 163870, - [SMALL_STATE(4480)] = 163899, - [SMALL_STATE(4481)] = 163928, - [SMALL_STATE(4482)] = 163953, - [SMALL_STATE(4483)] = 163978, - [SMALL_STATE(4484)] = 164007, - [SMALL_STATE(4485)] = 164038, - [SMALL_STATE(4486)] = 164069, - [SMALL_STATE(4487)] = 164086, - [SMALL_STATE(4488)] = 164107, - [SMALL_STATE(4489)] = 164123, - [SMALL_STATE(4490)] = 164145, - [SMALL_STATE(4491)] = 164161, - [SMALL_STATE(4492)] = 164177, - [SMALL_STATE(4493)] = 164199, - [SMALL_STATE(4494)] = 164217, - [SMALL_STATE(4495)] = 164235, - [SMALL_STATE(4496)] = 164257, - [SMALL_STATE(4497)] = 164273, - [SMALL_STATE(4498)] = 164289, - [SMALL_STATE(4499)] = 164311, - [SMALL_STATE(4500)] = 164327, - [SMALL_STATE(4501)] = 164349, - [SMALL_STATE(4502)] = 164371, - [SMALL_STATE(4503)] = 164393, - [SMALL_STATE(4504)] = 164421, - [SMALL_STATE(4505)] = 164437, - [SMALL_STATE(4506)] = 164459, - [SMALL_STATE(4507)] = 164475, - [SMALL_STATE(4508)] = 164499, - [SMALL_STATE(4509)] = 164519, - [SMALL_STATE(4510)] = 164539, - [SMALL_STATE(4511)] = 164561, - [SMALL_STATE(4512)] = 164583, - [SMALL_STATE(4513)] = 164605, - [SMALL_STATE(4514)] = 164623, - [SMALL_STATE(4515)] = 164645, - [SMALL_STATE(4516)] = 164673, - [SMALL_STATE(4517)] = 164695, - [SMALL_STATE(4518)] = 164711, - [SMALL_STATE(4519)] = 164739, - [SMALL_STATE(4520)] = 164755, - [SMALL_STATE(4521)] = 164777, - [SMALL_STATE(4522)] = 164799, - [SMALL_STATE(4523)] = 164821, - [SMALL_STATE(4524)] = 164843, - [SMALL_STATE(4525)] = 164859, - [SMALL_STATE(4526)] = 164881, - [SMALL_STATE(4527)] = 164901, - [SMALL_STATE(4528)] = 164929, - [SMALL_STATE(4529)] = 164947, - [SMALL_STATE(4530)] = 164969, - [SMALL_STATE(4531)] = 164991, - [SMALL_STATE(4532)] = 165013, - [SMALL_STATE(4533)] = 165041, - [SMALL_STATE(4534)] = 165063, - [SMALL_STATE(4535)] = 165085, - [SMALL_STATE(4536)] = 165107, - [SMALL_STATE(4537)] = 165129, - [SMALL_STATE(4538)] = 165151, - [SMALL_STATE(4539)] = 165167, - [SMALL_STATE(4540)] = 165189, - [SMALL_STATE(4541)] = 165211, - [SMALL_STATE(4542)] = 165233, - [SMALL_STATE(4543)] = 165249, - [SMALL_STATE(4544)] = 165265, - [SMALL_STATE(4545)] = 165287, - [SMALL_STATE(4546)] = 165303, - [SMALL_STATE(4547)] = 165321, - [SMALL_STATE(4548)] = 165343, - [SMALL_STATE(4549)] = 165365, - [SMALL_STATE(4550)] = 165383, - [SMALL_STATE(4551)] = 165405, - [SMALL_STATE(4552)] = 165427, - [SMALL_STATE(4553)] = 165449, - [SMALL_STATE(4554)] = 165471, - [SMALL_STATE(4555)] = 165487, - [SMALL_STATE(4556)] = 165507, - [SMALL_STATE(4557)] = 165531, - [SMALL_STATE(4558)] = 165549, - [SMALL_STATE(4559)] = 165567, - [SMALL_STATE(4560)] = 165583, - [SMALL_STATE(4561)] = 165605, - [SMALL_STATE(4562)] = 165627, - [SMALL_STATE(4563)] = 165649, - [SMALL_STATE(4564)] = 165677, - [SMALL_STATE(4565)] = 165699, - [SMALL_STATE(4566)] = 165715, - [SMALL_STATE(4567)] = 165737, - [SMALL_STATE(4568)] = 165759, - [SMALL_STATE(4569)] = 165777, - [SMALL_STATE(4570)] = 165793, - [SMALL_STATE(4571)] = 165815, - [SMALL_STATE(4572)] = 165831, - [SMALL_STATE(4573)] = 165859, - [SMALL_STATE(4574)] = 165881, - [SMALL_STATE(4575)] = 165899, - [SMALL_STATE(4576)] = 165921, - [SMALL_STATE(4577)] = 165939, - [SMALL_STATE(4578)] = 165967, - [SMALL_STATE(4579)] = 165995, - [SMALL_STATE(4580)] = 166017, - [SMALL_STATE(4581)] = 166039, - [SMALL_STATE(4582)] = 166059, - [SMALL_STATE(4583)] = 166079, - [SMALL_STATE(4584)] = 166101, - [SMALL_STATE(4585)] = 166129, - [SMALL_STATE(4586)] = 166151, - [SMALL_STATE(4587)] = 166167, - [SMALL_STATE(4588)] = 166183, - [SMALL_STATE(4589)] = 166211, - [SMALL_STATE(4590)] = 166231, - [SMALL_STATE(4591)] = 166249, - [SMALL_STATE(4592)] = 166265, - [SMALL_STATE(4593)] = 166287, - [SMALL_STATE(4594)] = 166303, - [SMALL_STATE(4595)] = 166331, - [SMALL_STATE(4596)] = 166359, - [SMALL_STATE(4597)] = 166381, - [SMALL_STATE(4598)] = 166401, - [SMALL_STATE(4599)] = 166417, - [SMALL_STATE(4600)] = 166433, - [SMALL_STATE(4601)] = 166461, - [SMALL_STATE(4602)] = 166483, - [SMALL_STATE(4603)] = 166501, - [SMALL_STATE(4604)] = 166519, - [SMALL_STATE(4605)] = 166541, - [SMALL_STATE(4606)] = 166563, - [SMALL_STATE(4607)] = 166581, - [SMALL_STATE(4608)] = 166597, - [SMALL_STATE(4609)] = 166619, - [SMALL_STATE(4610)] = 166641, - [SMALL_STATE(4611)] = 166661, - [SMALL_STATE(4612)] = 166677, - [SMALL_STATE(4613)] = 166699, - [SMALL_STATE(4614)] = 166727, - [SMALL_STATE(4615)] = 166755, - [SMALL_STATE(4616)] = 166777, - [SMALL_STATE(4617)] = 166793, - [SMALL_STATE(4618)] = 166809, - [SMALL_STATE(4619)] = 166825, - [SMALL_STATE(4620)] = 166847, - [SMALL_STATE(4621)] = 166865, - [SMALL_STATE(4622)] = 166881, - [SMALL_STATE(4623)] = 166899, - [SMALL_STATE(4624)] = 166915, - [SMALL_STATE(4625)] = 166931, - [SMALL_STATE(4626)] = 166959, - [SMALL_STATE(4627)] = 166975, - [SMALL_STATE(4628)] = 166993, - [SMALL_STATE(4629)] = 167011, - [SMALL_STATE(4630)] = 167027, - [SMALL_STATE(4631)] = 167043, - [SMALL_STATE(4632)] = 167059, - [SMALL_STATE(4633)] = 167081, - [SMALL_STATE(4634)] = 167097, - [SMALL_STATE(4635)] = 167117, - [SMALL_STATE(4636)] = 167139, - [SMALL_STATE(4637)] = 167167, - [SMALL_STATE(4638)] = 167189, - [SMALL_STATE(4639)] = 167208, - [SMALL_STATE(4640)] = 167227, - [SMALL_STATE(4641)] = 167246, - [SMALL_STATE(4642)] = 167265, - [SMALL_STATE(4643)] = 167286, - [SMALL_STATE(4644)] = 167305, - [SMALL_STATE(4645)] = 167324, - [SMALL_STATE(4646)] = 167345, - [SMALL_STATE(4647)] = 167360, - [SMALL_STATE(4648)] = 167379, - [SMALL_STATE(4649)] = 167398, - [SMALL_STATE(4650)] = 167417, - [SMALL_STATE(4651)] = 167432, - [SMALL_STATE(4652)] = 167451, - [SMALL_STATE(4653)] = 167470, - [SMALL_STATE(4654)] = 167489, - [SMALL_STATE(4655)] = 167510, - [SMALL_STATE(4656)] = 167529, - [SMALL_STATE(4657)] = 167544, - [SMALL_STATE(4658)] = 167563, - [SMALL_STATE(4659)] = 167578, - [SMALL_STATE(4660)] = 167597, - [SMALL_STATE(4661)] = 167618, - [SMALL_STATE(4662)] = 167637, - [SMALL_STATE(4663)] = 167656, - [SMALL_STATE(4664)] = 167671, - [SMALL_STATE(4665)] = 167690, - [SMALL_STATE(4666)] = 167705, - [SMALL_STATE(4667)] = 167724, - [SMALL_STATE(4668)] = 167743, - [SMALL_STATE(4669)] = 167764, - [SMALL_STATE(4670)] = 167783, - [SMALL_STATE(4671)] = 167804, - [SMALL_STATE(4672)] = 167819, - [SMALL_STATE(4673)] = 167838, - [SMALL_STATE(4674)] = 167857, - [SMALL_STATE(4675)] = 167876, - [SMALL_STATE(4676)] = 167893, - [SMALL_STATE(4677)] = 167912, - [SMALL_STATE(4678)] = 167931, - [SMALL_STATE(4679)] = 167950, - [SMALL_STATE(4680)] = 167969, - [SMALL_STATE(4681)] = 167988, - [SMALL_STATE(4682)] = 168003, - [SMALL_STATE(4683)] = 168022, - [SMALL_STATE(4684)] = 168039, - [SMALL_STATE(4685)] = 168060, - [SMALL_STATE(4686)] = 168075, - [SMALL_STATE(4687)] = 168090, - [SMALL_STATE(4688)] = 168111, - [SMALL_STATE(4689)] = 168128, - [SMALL_STATE(4690)] = 168145, - [SMALL_STATE(4691)] = 168166, - [SMALL_STATE(4692)] = 168187, - [SMALL_STATE(4693)] = 168204, - [SMALL_STATE(4694)] = 168223, - [SMALL_STATE(4695)] = 168246, - [SMALL_STATE(4696)] = 168265, - [SMALL_STATE(4697)] = 168284, - [SMALL_STATE(4698)] = 168303, - [SMALL_STATE(4699)] = 168322, - [SMALL_STATE(4700)] = 168341, - [SMALL_STATE(4701)] = 168360, - [SMALL_STATE(4702)] = 168379, - [SMALL_STATE(4703)] = 168400, - [SMALL_STATE(4704)] = 168415, - [SMALL_STATE(4705)] = 168434, - [SMALL_STATE(4706)] = 168453, - [SMALL_STATE(4707)] = 168472, - [SMALL_STATE(4708)] = 168487, - [SMALL_STATE(4709)] = 168506, - [SMALL_STATE(4710)] = 168521, - [SMALL_STATE(4711)] = 168536, - [SMALL_STATE(4712)] = 168555, - [SMALL_STATE(4713)] = 168572, - [SMALL_STATE(4714)] = 168591, - [SMALL_STATE(4715)] = 168614, - [SMALL_STATE(4716)] = 168629, - [SMALL_STATE(4717)] = 168644, - [SMALL_STATE(4718)] = 168663, - [SMALL_STATE(4719)] = 168678, - [SMALL_STATE(4720)] = 168693, - [SMALL_STATE(4721)] = 168708, - [SMALL_STATE(4722)] = 168725, - [SMALL_STATE(4723)] = 168750, - [SMALL_STATE(4724)] = 168765, - [SMALL_STATE(4725)] = 168784, - [SMALL_STATE(4726)] = 168801, - [SMALL_STATE(4727)] = 168820, - [SMALL_STATE(4728)] = 168835, - [SMALL_STATE(4729)] = 168854, - [SMALL_STATE(4730)] = 168873, - [SMALL_STATE(4731)] = 168892, - [SMALL_STATE(4732)] = 168911, - [SMALL_STATE(4733)] = 168930, - [SMALL_STATE(4734)] = 168949, - [SMALL_STATE(4735)] = 168968, - [SMALL_STATE(4736)] = 168987, - [SMALL_STATE(4737)] = 169004, - [SMALL_STATE(4738)] = 169025, - [SMALL_STATE(4739)] = 169044, - [SMALL_STATE(4740)] = 169063, - [SMALL_STATE(4741)] = 169082, - [SMALL_STATE(4742)] = 169101, - [SMALL_STATE(4743)] = 169122, - [SMALL_STATE(4744)] = 169141, - [SMALL_STATE(4745)] = 169160, - [SMALL_STATE(4746)] = 169175, - [SMALL_STATE(4747)] = 169190, - [SMALL_STATE(4748)] = 169209, - [SMALL_STATE(4749)] = 169228, - [SMALL_STATE(4750)] = 169249, - [SMALL_STATE(4751)] = 169264, - [SMALL_STATE(4752)] = 169285, - [SMALL_STATE(4753)] = 169300, - [SMALL_STATE(4754)] = 169315, - [SMALL_STATE(4755)] = 169334, - [SMALL_STATE(4756)] = 169349, - [SMALL_STATE(4757)] = 169368, - [SMALL_STATE(4758)] = 169387, - [SMALL_STATE(4759)] = 169402, - [SMALL_STATE(4760)] = 169421, - [SMALL_STATE(4761)] = 169436, - [SMALL_STATE(4762)] = 169451, - [SMALL_STATE(4763)] = 169472, - [SMALL_STATE(4764)] = 169487, - [SMALL_STATE(4765)] = 169506, - [SMALL_STATE(4766)] = 169525, - [SMALL_STATE(4767)] = 169546, - [SMALL_STATE(4768)] = 169565, - [SMALL_STATE(4769)] = 169584, - [SMALL_STATE(4770)] = 169603, - [SMALL_STATE(4771)] = 169618, - [SMALL_STATE(4772)] = 169637, - [SMALL_STATE(4773)] = 169656, - [SMALL_STATE(4774)] = 169677, - [SMALL_STATE(4775)] = 169696, - [SMALL_STATE(4776)] = 169713, - [SMALL_STATE(4777)] = 169732, - [SMALL_STATE(4778)] = 169749, - [SMALL_STATE(4779)] = 169768, - [SMALL_STATE(4780)] = 169791, - [SMALL_STATE(4781)] = 169810, - [SMALL_STATE(4782)] = 169831, - [SMALL_STATE(4783)] = 169852, - [SMALL_STATE(4784)] = 169875, - [SMALL_STATE(4785)] = 169890, - [SMALL_STATE(4786)] = 169907, - [SMALL_STATE(4787)] = 169922, - [SMALL_STATE(4788)] = 169937, - [SMALL_STATE(4789)] = 169956, - [SMALL_STATE(4790)] = 169975, - [SMALL_STATE(4791)] = 169994, - [SMALL_STATE(4792)] = 170013, - [SMALL_STATE(4793)] = 170032, - [SMALL_STATE(4794)] = 170051, - [SMALL_STATE(4795)] = 170070, - [SMALL_STATE(4796)] = 170089, - [SMALL_STATE(4797)] = 170108, - [SMALL_STATE(4798)] = 170127, - [SMALL_STATE(4799)] = 170152, - [SMALL_STATE(4800)] = 170173, - [SMALL_STATE(4801)] = 170188, - [SMALL_STATE(4802)] = 170207, - [SMALL_STATE(4803)] = 170226, - [SMALL_STATE(4804)] = 170245, - [SMALL_STATE(4805)] = 170264, - [SMALL_STATE(4806)] = 170283, - [SMALL_STATE(4807)] = 170302, - [SMALL_STATE(4808)] = 170321, - [SMALL_STATE(4809)] = 170340, - [SMALL_STATE(4810)] = 170359, - [SMALL_STATE(4811)] = 170374, - [SMALL_STATE(4812)] = 170393, - [SMALL_STATE(4813)] = 170412, - [SMALL_STATE(4814)] = 170431, - [SMALL_STATE(4815)] = 170446, - [SMALL_STATE(4816)] = 170465, - [SMALL_STATE(4817)] = 170484, - [SMALL_STATE(4818)] = 170503, - [SMALL_STATE(4819)] = 170522, - [SMALL_STATE(4820)] = 170543, - [SMALL_STATE(4821)] = 170562, - [SMALL_STATE(4822)] = 170581, - [SMALL_STATE(4823)] = 170600, - [SMALL_STATE(4824)] = 170619, - [SMALL_STATE(4825)] = 170638, - [SMALL_STATE(4826)] = 170657, - [SMALL_STATE(4827)] = 170672, - [SMALL_STATE(4828)] = 170691, - [SMALL_STATE(4829)] = 170716, - [SMALL_STATE(4830)] = 170735, - [SMALL_STATE(4831)] = 170756, - [SMALL_STATE(4832)] = 170775, - [SMALL_STATE(4833)] = 170792, - [SMALL_STATE(4834)] = 170811, - [SMALL_STATE(4835)] = 170830, - [SMALL_STATE(4836)] = 170853, - [SMALL_STATE(4837)] = 170872, - [SMALL_STATE(4838)] = 170891, - [SMALL_STATE(4839)] = 170906, - [SMALL_STATE(4840)] = 170921, - [SMALL_STATE(4841)] = 170936, - [SMALL_STATE(4842)] = 170951, - [SMALL_STATE(4843)] = 170970, - [SMALL_STATE(4844)] = 170989, - [SMALL_STATE(4845)] = 171004, - [SMALL_STATE(4846)] = 171029, - [SMALL_STATE(4847)] = 171049, - [SMALL_STATE(4848)] = 171069, - [SMALL_STATE(4849)] = 171087, - [SMALL_STATE(4850)] = 171109, - [SMALL_STATE(4851)] = 171129, - [SMALL_STATE(4852)] = 171147, - [SMALL_STATE(4853)] = 171165, - [SMALL_STATE(4854)] = 171183, - [SMALL_STATE(4855)] = 171197, - [SMALL_STATE(4856)] = 171219, - [SMALL_STATE(4857)] = 171233, - [SMALL_STATE(4858)] = 171251, - [SMALL_STATE(4859)] = 171273, - [SMALL_STATE(4860)] = 171291, - [SMALL_STATE(4861)] = 171309, - [SMALL_STATE(4862)] = 171327, - [SMALL_STATE(4863)] = 171345, - [SMALL_STATE(4864)] = 171363, - [SMALL_STATE(4865)] = 171381, - [SMALL_STATE(4866)] = 171399, - [SMALL_STATE(4867)] = 171421, - [SMALL_STATE(4868)] = 171443, - [SMALL_STATE(4869)] = 171461, - [SMALL_STATE(4870)] = 171481, - [SMALL_STATE(4871)] = 171499, - [SMALL_STATE(4872)] = 171521, - [SMALL_STATE(4873)] = 171541, - [SMALL_STATE(4874)] = 171563, - [SMALL_STATE(4875)] = 171583, - [SMALL_STATE(4876)] = 171603, - [SMALL_STATE(4877)] = 171623, - [SMALL_STATE(4878)] = 171637, - [SMALL_STATE(4879)] = 171657, - [SMALL_STATE(4880)] = 171677, - [SMALL_STATE(4881)] = 171699, - [SMALL_STATE(4882)] = 171719, - [SMALL_STATE(4883)] = 171737, - [SMALL_STATE(4884)] = 171753, - [SMALL_STATE(4885)] = 171771, - [SMALL_STATE(4886)] = 171785, - [SMALL_STATE(4887)] = 171803, - [SMALL_STATE(4888)] = 171817, - [SMALL_STATE(4889)] = 171831, - [SMALL_STATE(4890)] = 171851, - [SMALL_STATE(4891)] = 171869, - [SMALL_STATE(4892)] = 171889, - [SMALL_STATE(4893)] = 171909, - [SMALL_STATE(4894)] = 171923, - [SMALL_STATE(4895)] = 171943, - [SMALL_STATE(4896)] = 171963, - [SMALL_STATE(4897)] = 171977, - [SMALL_STATE(4898)] = 171999, - [SMALL_STATE(4899)] = 172019, - [SMALL_STATE(4900)] = 172041, - [SMALL_STATE(4901)] = 172055, - [SMALL_STATE(4902)] = 172077, - [SMALL_STATE(4903)] = 172097, - [SMALL_STATE(4904)] = 172119, - [SMALL_STATE(4905)] = 172133, - [SMALL_STATE(4906)] = 172155, - [SMALL_STATE(4907)] = 172177, - [SMALL_STATE(4908)] = 172195, - [SMALL_STATE(4909)] = 172213, - [SMALL_STATE(4910)] = 172231, - [SMALL_STATE(4911)] = 172249, - [SMALL_STATE(4912)] = 172263, - [SMALL_STATE(4913)] = 172277, - [SMALL_STATE(4914)] = 172299, - [SMALL_STATE(4915)] = 172319, - [SMALL_STATE(4916)] = 172341, - [SMALL_STATE(4917)] = 172363, - [SMALL_STATE(4918)] = 172379, - [SMALL_STATE(4919)] = 172399, - [SMALL_STATE(4920)] = 172419, - [SMALL_STATE(4921)] = 172441, - [SMALL_STATE(4922)] = 172455, - [SMALL_STATE(4923)] = 172469, - [SMALL_STATE(4924)] = 172487, - [SMALL_STATE(4925)] = 172501, - [SMALL_STATE(4926)] = 172515, - [SMALL_STATE(4927)] = 172533, - [SMALL_STATE(4928)] = 172555, - [SMALL_STATE(4929)] = 172569, - [SMALL_STATE(4930)] = 172587, - [SMALL_STATE(4931)] = 172605, - [SMALL_STATE(4932)] = 172623, - [SMALL_STATE(4933)] = 172643, - [SMALL_STATE(4934)] = 172661, - [SMALL_STATE(4935)] = 172679, - [SMALL_STATE(4936)] = 172699, - [SMALL_STATE(4937)] = 172721, - [SMALL_STATE(4938)] = 172741, - [SMALL_STATE(4939)] = 172763, - [SMALL_STATE(4940)] = 172777, - [SMALL_STATE(4941)] = 172795, - [SMALL_STATE(4942)] = 172813, - [SMALL_STATE(4943)] = 172827, - [SMALL_STATE(4944)] = 172841, - [SMALL_STATE(4945)] = 172861, - [SMALL_STATE(4946)] = 172883, - [SMALL_STATE(4947)] = 172903, - [SMALL_STATE(4948)] = 172921, - [SMALL_STATE(4949)] = 172943, - [SMALL_STATE(4950)] = 172965, - [SMALL_STATE(4951)] = 172985, - [SMALL_STATE(4952)] = 173005, - [SMALL_STATE(4953)] = 173025, - [SMALL_STATE(4954)] = 173047, - [SMALL_STATE(4955)] = 173061, - [SMALL_STATE(4956)] = 173083, - [SMALL_STATE(4957)] = 173105, - [SMALL_STATE(4958)] = 173121, - [SMALL_STATE(4959)] = 173141, - [SMALL_STATE(4960)] = 173161, - [SMALL_STATE(4961)] = 173175, - [SMALL_STATE(4962)] = 173193, - [SMALL_STATE(4963)] = 173213, - [SMALL_STATE(4964)] = 173231, - [SMALL_STATE(4965)] = 173249, - [SMALL_STATE(4966)] = 173271, - [SMALL_STATE(4967)] = 173293, - [SMALL_STATE(4968)] = 173315, - [SMALL_STATE(4969)] = 173335, - [SMALL_STATE(4970)] = 173355, - [SMALL_STATE(4971)] = 173369, - [SMALL_STATE(4972)] = 173389, - [SMALL_STATE(4973)] = 173407, - [SMALL_STATE(4974)] = 173429, - [SMALL_STATE(4975)] = 173451, - [SMALL_STATE(4976)] = 173473, - [SMALL_STATE(4977)] = 173495, - [SMALL_STATE(4978)] = 173517, - [SMALL_STATE(4979)] = 173531, - [SMALL_STATE(4980)] = 173553, - [SMALL_STATE(4981)] = 173575, - [SMALL_STATE(4982)] = 173595, - [SMALL_STATE(4983)] = 173617, - [SMALL_STATE(4984)] = 173637, - [SMALL_STATE(4985)] = 173655, - [SMALL_STATE(4986)] = 173669, - [SMALL_STATE(4987)] = 173691, - [SMALL_STATE(4988)] = 173713, - [SMALL_STATE(4989)] = 173733, - [SMALL_STATE(4990)] = 173747, - [SMALL_STATE(4991)] = 173761, - [SMALL_STATE(4992)] = 173781, - [SMALL_STATE(4993)] = 173795, - [SMALL_STATE(4994)] = 173811, - [SMALL_STATE(4995)] = 173825, - [SMALL_STATE(4996)] = 173845, - [SMALL_STATE(4997)] = 173863, - [SMALL_STATE(4998)] = 173885, - [SMALL_STATE(4999)] = 173903, - [SMALL_STATE(5000)] = 173923, - [SMALL_STATE(5001)] = 173941, - [SMALL_STATE(5002)] = 173963, - [SMALL_STATE(5003)] = 173985, - [SMALL_STATE(5004)] = 174007, - [SMALL_STATE(5005)] = 174021, - [SMALL_STATE(5006)] = 174041, - [SMALL_STATE(5007)] = 174055, - [SMALL_STATE(5008)] = 174069, - [SMALL_STATE(5009)] = 174091, - [SMALL_STATE(5010)] = 174105, - [SMALL_STATE(5011)] = 174127, - [SMALL_STATE(5012)] = 174147, - [SMALL_STATE(5013)] = 174161, - [SMALL_STATE(5014)] = 174179, - [SMALL_STATE(5015)] = 174197, - [SMALL_STATE(5016)] = 174215, - [SMALL_STATE(5017)] = 174233, - [SMALL_STATE(5018)] = 174251, - [SMALL_STATE(5019)] = 174269, - [SMALL_STATE(5020)] = 174291, - [SMALL_STATE(5021)] = 174313, - [SMALL_STATE(5022)] = 174332, - [SMALL_STATE(5023)] = 174351, - [SMALL_STATE(5024)] = 174364, - [SMALL_STATE(5025)] = 174383, - [SMALL_STATE(5026)] = 174402, - [SMALL_STATE(5027)] = 174421, - [SMALL_STATE(5028)] = 174434, - [SMALL_STATE(5029)] = 174453, - [SMALL_STATE(5030)] = 174472, - [SMALL_STATE(5031)] = 174491, - [SMALL_STATE(5032)] = 174510, - [SMALL_STATE(5033)] = 174523, - [SMALL_STATE(5034)] = 174540, - [SMALL_STATE(5035)] = 174555, - [SMALL_STATE(5036)] = 174568, - [SMALL_STATE(5037)] = 174581, - [SMALL_STATE(5038)] = 174600, - [SMALL_STATE(5039)] = 174619, - [SMALL_STATE(5040)] = 174638, - [SMALL_STATE(5041)] = 174653, - [SMALL_STATE(5042)] = 174666, - [SMALL_STATE(5043)] = 174683, - [SMALL_STATE(5044)] = 174702, - [SMALL_STATE(5045)] = 174715, - [SMALL_STATE(5046)] = 174728, - [SMALL_STATE(5047)] = 174741, - [SMALL_STATE(5048)] = 174754, - [SMALL_STATE(5049)] = 174767, - [SMALL_STATE(5050)] = 174780, - [SMALL_STATE(5051)] = 174793, - [SMALL_STATE(5052)] = 174806, - [SMALL_STATE(5053)] = 174825, - [SMALL_STATE(5054)] = 174842, - [SMALL_STATE(5055)] = 174855, - [SMALL_STATE(5056)] = 174868, - [SMALL_STATE(5057)] = 174881, - [SMALL_STATE(5058)] = 174900, - [SMALL_STATE(5059)] = 174913, - [SMALL_STATE(5060)] = 174926, - [SMALL_STATE(5061)] = 174939, - [SMALL_STATE(5062)] = 174952, - [SMALL_STATE(5063)] = 174965, - [SMALL_STATE(5064)] = 174978, - [SMALL_STATE(5065)] = 174997, - [SMALL_STATE(5066)] = 175010, - [SMALL_STATE(5067)] = 175029, - [SMALL_STATE(5068)] = 175042, - [SMALL_STATE(5069)] = 175055, - [SMALL_STATE(5070)] = 175074, - [SMALL_STATE(5071)] = 175087, - [SMALL_STATE(5072)] = 175100, - [SMALL_STATE(5073)] = 175119, - [SMALL_STATE(5074)] = 175138, - [SMALL_STATE(5075)] = 175153, - [SMALL_STATE(5076)] = 175172, - [SMALL_STATE(5077)] = 175191, - [SMALL_STATE(5078)] = 175208, - [SMALL_STATE(5079)] = 175227, - [SMALL_STATE(5080)] = 175240, - [SMALL_STATE(5081)] = 175259, - [SMALL_STATE(5082)] = 175272, - [SMALL_STATE(5083)] = 175291, - [SMALL_STATE(5084)] = 175304, - [SMALL_STATE(5085)] = 175317, - [SMALL_STATE(5086)] = 175330, - [SMALL_STATE(5087)] = 175343, - [SMALL_STATE(5088)] = 175356, - [SMALL_STATE(5089)] = 175369, - [SMALL_STATE(5090)] = 175388, - [SMALL_STATE(5091)] = 175401, - [SMALL_STATE(5092)] = 175420, - [SMALL_STATE(5093)] = 175433, - [SMALL_STATE(5094)] = 175452, - [SMALL_STATE(5095)] = 175465, - [SMALL_STATE(5096)] = 175484, - [SMALL_STATE(5097)] = 175497, - [SMALL_STATE(5098)] = 175516, - [SMALL_STATE(5099)] = 175535, - [SMALL_STATE(5100)] = 175548, - [SMALL_STATE(5101)] = 175567, - [SMALL_STATE(5102)] = 175586, - [SMALL_STATE(5103)] = 175603, - [SMALL_STATE(5104)] = 175622, - [SMALL_STATE(5105)] = 175641, - [SMALL_STATE(5106)] = 175654, - [SMALL_STATE(5107)] = 175673, - [SMALL_STATE(5108)] = 175692, - [SMALL_STATE(5109)] = 175705, - [SMALL_STATE(5110)] = 175722, - [SMALL_STATE(5111)] = 175741, - [SMALL_STATE(5112)] = 175758, - [SMALL_STATE(5113)] = 175775, - [SMALL_STATE(5114)] = 175794, - [SMALL_STATE(5115)] = 175811, - [SMALL_STATE(5116)] = 175830, - [SMALL_STATE(5117)] = 175843, - [SMALL_STATE(5118)] = 175856, - [SMALL_STATE(5119)] = 175875, - [SMALL_STATE(5120)] = 175892, - [SMALL_STATE(5121)] = 175911, - [SMALL_STATE(5122)] = 175928, - [SMALL_STATE(5123)] = 175941, - [SMALL_STATE(5124)] = 175954, - [SMALL_STATE(5125)] = 175973, - [SMALL_STATE(5126)] = 175992, - [SMALL_STATE(5127)] = 176005, - [SMALL_STATE(5128)] = 176022, - [SMALL_STATE(5129)] = 176035, - [SMALL_STATE(5130)] = 176052, - [SMALL_STATE(5131)] = 176071, - [SMALL_STATE(5132)] = 176090, - [SMALL_STATE(5133)] = 176103, - [SMALL_STATE(5134)] = 176116, - [SMALL_STATE(5135)] = 176135, - [SMALL_STATE(5136)] = 176148, - [SMALL_STATE(5137)] = 176167, - [SMALL_STATE(5138)] = 176182, - [SMALL_STATE(5139)] = 176199, - [SMALL_STATE(5140)] = 176212, - [SMALL_STATE(5141)] = 176225, - [SMALL_STATE(5142)] = 176244, - [SMALL_STATE(5143)] = 176263, - [SMALL_STATE(5144)] = 176282, - [SMALL_STATE(5145)] = 176301, - [SMALL_STATE(5146)] = 176314, - [SMALL_STATE(5147)] = 176333, - [SMALL_STATE(5148)] = 176352, - [SMALL_STATE(5149)] = 176365, - [SMALL_STATE(5150)] = 176384, - [SMALL_STATE(5151)] = 176403, - [SMALL_STATE(5152)] = 176416, - [SMALL_STATE(5153)] = 176429, - [SMALL_STATE(5154)] = 176442, - [SMALL_STATE(5155)] = 176461, - [SMALL_STATE(5156)] = 176480, - [SMALL_STATE(5157)] = 176493, - [SMALL_STATE(5158)] = 176512, - [SMALL_STATE(5159)] = 176525, - [SMALL_STATE(5160)] = 176538, - [SMALL_STATE(5161)] = 176551, - [SMALL_STATE(5162)] = 176570, - [SMALL_STATE(5163)] = 176589, - [SMALL_STATE(5164)] = 176608, - [SMALL_STATE(5165)] = 176621, - [SMALL_STATE(5166)] = 176640, - [SMALL_STATE(5167)] = 176653, - [SMALL_STATE(5168)] = 176666, - [SMALL_STATE(5169)] = 176679, - [SMALL_STATE(5170)] = 176692, - [SMALL_STATE(5171)] = 176705, - [SMALL_STATE(5172)] = 176724, - [SMALL_STATE(5173)] = 176737, - [SMALL_STATE(5174)] = 176750, - [SMALL_STATE(5175)] = 176769, - [SMALL_STATE(5176)] = 176782, - [SMALL_STATE(5177)] = 176801, - [SMALL_STATE(5178)] = 176814, - [SMALL_STATE(5179)] = 176831, - [SMALL_STATE(5180)] = 176844, - [SMALL_STATE(5181)] = 176857, - [SMALL_STATE(5182)] = 176870, - [SMALL_STATE(5183)] = 176889, - [SMALL_STATE(5184)] = 176902, - [SMALL_STATE(5185)] = 176921, - [SMALL_STATE(5186)] = 176934, - [SMALL_STATE(5187)] = 176947, - [SMALL_STATE(5188)] = 176960, - [SMALL_STATE(5189)] = 176973, - [SMALL_STATE(5190)] = 176988, - [SMALL_STATE(5191)] = 177001, - [SMALL_STATE(5192)] = 177016, - [SMALL_STATE(5193)] = 177029, - [SMALL_STATE(5194)] = 177042, - [SMALL_STATE(5195)] = 177055, - [SMALL_STATE(5196)] = 177068, - [SMALL_STATE(5197)] = 177081, - [SMALL_STATE(5198)] = 177100, - [SMALL_STATE(5199)] = 177113, - [SMALL_STATE(5200)] = 177130, - [SMALL_STATE(5201)] = 177143, - [SMALL_STATE(5202)] = 177156, - [SMALL_STATE(5203)] = 177169, - [SMALL_STATE(5204)] = 177188, - [SMALL_STATE(5205)] = 177201, - [SMALL_STATE(5206)] = 177214, - [SMALL_STATE(5207)] = 177227, - [SMALL_STATE(5208)] = 177240, - [SMALL_STATE(5209)] = 177253, - [SMALL_STATE(5210)] = 177272, - [SMALL_STATE(5211)] = 177287, - [SMALL_STATE(5212)] = 177302, - [SMALL_STATE(5213)] = 177315, - [SMALL_STATE(5214)] = 177328, - [SMALL_STATE(5215)] = 177341, - [SMALL_STATE(5216)] = 177354, - [SMALL_STATE(5217)] = 177367, - [SMALL_STATE(5218)] = 177380, - [SMALL_STATE(5219)] = 177397, - [SMALL_STATE(5220)] = 177410, - [SMALL_STATE(5221)] = 177423, - [SMALL_STATE(5222)] = 177436, - [SMALL_STATE(5223)] = 177449, - [SMALL_STATE(5224)] = 177462, - [SMALL_STATE(5225)] = 177475, - [SMALL_STATE(5226)] = 177488, - [SMALL_STATE(5227)] = 177507, - [SMALL_STATE(5228)] = 177520, - [SMALL_STATE(5229)] = 177533, - [SMALL_STATE(5230)] = 177546, - [SMALL_STATE(5231)] = 177559, - [SMALL_STATE(5232)] = 177578, - [SMALL_STATE(5233)] = 177591, - [SMALL_STATE(5234)] = 177610, - [SMALL_STATE(5235)] = 177629, - [SMALL_STATE(5236)] = 177642, - [SMALL_STATE(5237)] = 177655, - [SMALL_STATE(5238)] = 177668, - [SMALL_STATE(5239)] = 177687, - [SMALL_STATE(5240)] = 177706, - [SMALL_STATE(5241)] = 177719, - [SMALL_STATE(5242)] = 177732, - [SMALL_STATE(5243)] = 177745, - [SMALL_STATE(5244)] = 177764, - [SMALL_STATE(5245)] = 177777, - [SMALL_STATE(5246)] = 177790, - [SMALL_STATE(5247)] = 177803, - [SMALL_STATE(5248)] = 177816, - [SMALL_STATE(5249)] = 177832, - [SMALL_STATE(5250)] = 177848, - [SMALL_STATE(5251)] = 177864, - [SMALL_STATE(5252)] = 177876, - [SMALL_STATE(5253)] = 177890, - [SMALL_STATE(5254)] = 177902, - [SMALL_STATE(5255)] = 177914, - [SMALL_STATE(5256)] = 177926, - [SMALL_STATE(5257)] = 177942, - [SMALL_STATE(5258)] = 177954, - [SMALL_STATE(5259)] = 177966, - [SMALL_STATE(5260)] = 177978, - [SMALL_STATE(5261)] = 177990, - [SMALL_STATE(5262)] = 178002, - [SMALL_STATE(5263)] = 178014, - [SMALL_STATE(5264)] = 178026, - [SMALL_STATE(5265)] = 178038, - [SMALL_STATE(5266)] = 178054, - [SMALL_STATE(5267)] = 178066, - [SMALL_STATE(5268)] = 178082, - [SMALL_STATE(5269)] = 178094, - [SMALL_STATE(5270)] = 178106, - [SMALL_STATE(5271)] = 178118, - [SMALL_STATE(5272)] = 178134, - [SMALL_STATE(5273)] = 178146, - [SMALL_STATE(5274)] = 178162, - [SMALL_STATE(5275)] = 178174, - [SMALL_STATE(5276)] = 178186, - [SMALL_STATE(5277)] = 178198, - [SMALL_STATE(5278)] = 178210, - [SMALL_STATE(5279)] = 178226, - [SMALL_STATE(5280)] = 178238, - [SMALL_STATE(5281)] = 178254, - [SMALL_STATE(5282)] = 178270, - [SMALL_STATE(5283)] = 178286, - [SMALL_STATE(5284)] = 178302, - [SMALL_STATE(5285)] = 178314, - [SMALL_STATE(5286)] = 178330, - [SMALL_STATE(5287)] = 178346, - [SMALL_STATE(5288)] = 178358, - [SMALL_STATE(5289)] = 178374, - [SMALL_STATE(5290)] = 178390, - [SMALL_STATE(5291)] = 178406, - [SMALL_STATE(5292)] = 178422, - [SMALL_STATE(5293)] = 178436, - [SMALL_STATE(5294)] = 178452, - [SMALL_STATE(5295)] = 178468, - [SMALL_STATE(5296)] = 178484, - [SMALL_STATE(5297)] = 178500, - [SMALL_STATE(5298)] = 178512, - [SMALL_STATE(5299)] = 178524, - [SMALL_STATE(5300)] = 178540, - [SMALL_STATE(5301)] = 178556, - [SMALL_STATE(5302)] = 178568, - [SMALL_STATE(5303)] = 178584, - [SMALL_STATE(5304)] = 178596, - [SMALL_STATE(5305)] = 178608, - [SMALL_STATE(5306)] = 178624, - [SMALL_STATE(5307)] = 178636, - [SMALL_STATE(5308)] = 178648, - [SMALL_STATE(5309)] = 178664, - [SMALL_STATE(5310)] = 178680, - [SMALL_STATE(5311)] = 178696, - [SMALL_STATE(5312)] = 178712, - [SMALL_STATE(5313)] = 178728, - [SMALL_STATE(5314)] = 178740, - [SMALL_STATE(5315)] = 178752, - [SMALL_STATE(5316)] = 178768, - [SMALL_STATE(5317)] = 178780, - [SMALL_STATE(5318)] = 178792, - [SMALL_STATE(5319)] = 178804, - [SMALL_STATE(5320)] = 178820, - [SMALL_STATE(5321)] = 178836, - [SMALL_STATE(5322)] = 178848, - [SMALL_STATE(5323)] = 178864, - [SMALL_STATE(5324)] = 178878, - [SMALL_STATE(5325)] = 178894, - [SMALL_STATE(5326)] = 178906, - [SMALL_STATE(5327)] = 178922, - [SMALL_STATE(5328)] = 178938, - [SMALL_STATE(5329)] = 178954, - [SMALL_STATE(5330)] = 178970, - [SMALL_STATE(5331)] = 178986, - [SMALL_STATE(5332)] = 178998, - [SMALL_STATE(5333)] = 179010, - [SMALL_STATE(5334)] = 179026, - [SMALL_STATE(5335)] = 179038, - [SMALL_STATE(5336)] = 179054, - [SMALL_STATE(5337)] = 179066, - [SMALL_STATE(5338)] = 179082, - [SMALL_STATE(5339)] = 179094, - [SMALL_STATE(5340)] = 179110, - [SMALL_STATE(5341)] = 179126, - [SMALL_STATE(5342)] = 179140, - [SMALL_STATE(5343)] = 179156, - [SMALL_STATE(5344)] = 179172, - [SMALL_STATE(5345)] = 179188, - [SMALL_STATE(5346)] = 179200, - [SMALL_STATE(5347)] = 179216, - [SMALL_STATE(5348)] = 179230, - [SMALL_STATE(5349)] = 179246, - [SMALL_STATE(5350)] = 179262, - [SMALL_STATE(5351)] = 179278, - [SMALL_STATE(5352)] = 179294, - [SMALL_STATE(5353)] = 179310, - [SMALL_STATE(5354)] = 179322, - [SMALL_STATE(5355)] = 179338, - [SMALL_STATE(5356)] = 179350, - [SMALL_STATE(5357)] = 179366, - [SMALL_STATE(5358)] = 179378, - [SMALL_STATE(5359)] = 179390, - [SMALL_STATE(5360)] = 179402, - [SMALL_STATE(5361)] = 179418, - [SMALL_STATE(5362)] = 179434, - [SMALL_STATE(5363)] = 179450, - [SMALL_STATE(5364)] = 179466, - [SMALL_STATE(5365)] = 179482, - [SMALL_STATE(5366)] = 179496, - [SMALL_STATE(5367)] = 179512, - [SMALL_STATE(5368)] = 179528, - [SMALL_STATE(5369)] = 179544, - [SMALL_STATE(5370)] = 179560, - [SMALL_STATE(5371)] = 179572, - [SMALL_STATE(5372)] = 179584, - [SMALL_STATE(5373)] = 179600, - [SMALL_STATE(5374)] = 179616, - [SMALL_STATE(5375)] = 179632, - [SMALL_STATE(5376)] = 179648, - [SMALL_STATE(5377)] = 179664, - [SMALL_STATE(5378)] = 179676, - [SMALL_STATE(5379)] = 179692, - [SMALL_STATE(5380)] = 179708, - [SMALL_STATE(5381)] = 179724, - [SMALL_STATE(5382)] = 179736, - [SMALL_STATE(5383)] = 179752, - [SMALL_STATE(5384)] = 179768, - [SMALL_STATE(5385)] = 179784, - [SMALL_STATE(5386)] = 179796, - [SMALL_STATE(5387)] = 179808, - [SMALL_STATE(5388)] = 179824, - [SMALL_STATE(5389)] = 179836, - [SMALL_STATE(5390)] = 179848, - [SMALL_STATE(5391)] = 179864, - [SMALL_STATE(5392)] = 179876, - [SMALL_STATE(5393)] = 179892, - [SMALL_STATE(5394)] = 179904, - [SMALL_STATE(5395)] = 179916, - [SMALL_STATE(5396)] = 179932, - [SMALL_STATE(5397)] = 179944, - [SMALL_STATE(5398)] = 179956, - [SMALL_STATE(5399)] = 179968, - [SMALL_STATE(5400)] = 179984, - [SMALL_STATE(5401)] = 180000, - [SMALL_STATE(5402)] = 180012, - [SMALL_STATE(5403)] = 180024, - [SMALL_STATE(5404)] = 180036, - [SMALL_STATE(5405)] = 180052, - [SMALL_STATE(5406)] = 180064, - [SMALL_STATE(5407)] = 180076, - [SMALL_STATE(5408)] = 180092, - [SMALL_STATE(5409)] = 180108, - [SMALL_STATE(5410)] = 180120, - [SMALL_STATE(5411)] = 180136, - [SMALL_STATE(5412)] = 180148, - [SMALL_STATE(5413)] = 180160, - [SMALL_STATE(5414)] = 180176, - [SMALL_STATE(5415)] = 180188, - [SMALL_STATE(5416)] = 180204, - [SMALL_STATE(5417)] = 180216, - [SMALL_STATE(5418)] = 180232, - [SMALL_STATE(5419)] = 180244, - [SMALL_STATE(5420)] = 180256, - [SMALL_STATE(5421)] = 180268, - [SMALL_STATE(5422)] = 180280, - [SMALL_STATE(5423)] = 180296, - [SMALL_STATE(5424)] = 180312, - [SMALL_STATE(5425)] = 180328, - [SMALL_STATE(5426)] = 180344, - [SMALL_STATE(5427)] = 180356, - [SMALL_STATE(5428)] = 180372, - [SMALL_STATE(5429)] = 180388, - [SMALL_STATE(5430)] = 180404, - [SMALL_STATE(5431)] = 180416, - [SMALL_STATE(5432)] = 180428, - [SMALL_STATE(5433)] = 180440, - [SMALL_STATE(5434)] = 180452, - [SMALL_STATE(5435)] = 180468, - [SMALL_STATE(5436)] = 180484, - [SMALL_STATE(5437)] = 180500, - [SMALL_STATE(5438)] = 180516, - [SMALL_STATE(5439)] = 180530, - [SMALL_STATE(5440)] = 180546, - [SMALL_STATE(5441)] = 180562, - [SMALL_STATE(5442)] = 180578, - [SMALL_STATE(5443)] = 180594, - [SMALL_STATE(5444)] = 180610, - [SMALL_STATE(5445)] = 180626, - [SMALL_STATE(5446)] = 180642, - [SMALL_STATE(5447)] = 180658, - [SMALL_STATE(5448)] = 180670, - [SMALL_STATE(5449)] = 180682, - [SMALL_STATE(5450)] = 180694, - [SMALL_STATE(5451)] = 180706, - [SMALL_STATE(5452)] = 180722, - [SMALL_STATE(5453)] = 180734, - [SMALL_STATE(5454)] = 180750, - [SMALL_STATE(5455)] = 180766, - [SMALL_STATE(5456)] = 180782, - [SMALL_STATE(5457)] = 180794, - [SMALL_STATE(5458)] = 180806, - [SMALL_STATE(5459)] = 180818, - [SMALL_STATE(5460)] = 180834, - [SMALL_STATE(5461)] = 180850, - [SMALL_STATE(5462)] = 180866, - [SMALL_STATE(5463)] = 180882, - [SMALL_STATE(5464)] = 180898, - [SMALL_STATE(5465)] = 180910, - [SMALL_STATE(5466)] = 180926, - [SMALL_STATE(5467)] = 180942, - [SMALL_STATE(5468)] = 180958, - [SMALL_STATE(5469)] = 180970, - [SMALL_STATE(5470)] = 180986, - [SMALL_STATE(5471)] = 181002, - [SMALL_STATE(5472)] = 181018, - [SMALL_STATE(5473)] = 181034, - [SMALL_STATE(5474)] = 181046, - [SMALL_STATE(5475)] = 181062, - [SMALL_STATE(5476)] = 181078, - [SMALL_STATE(5477)] = 181092, - [SMALL_STATE(5478)] = 181104, - [SMALL_STATE(5479)] = 181120, - [SMALL_STATE(5480)] = 181136, - [SMALL_STATE(5481)] = 181148, - [SMALL_STATE(5482)] = 181160, - [SMALL_STATE(5483)] = 181176, - [SMALL_STATE(5484)] = 181188, - [SMALL_STATE(5485)] = 181204, - [SMALL_STATE(5486)] = 181216, - [SMALL_STATE(5487)] = 181228, - [SMALL_STATE(5488)] = 181244, - [SMALL_STATE(5489)] = 181260, - [SMALL_STATE(5490)] = 181276, - [SMALL_STATE(5491)] = 181288, - [SMALL_STATE(5492)] = 181304, - [SMALL_STATE(5493)] = 181320, - [SMALL_STATE(5494)] = 181336, - [SMALL_STATE(5495)] = 181348, - [SMALL_STATE(5496)] = 181360, - [SMALL_STATE(5497)] = 181376, - [SMALL_STATE(5498)] = 181390, - [SMALL_STATE(5499)] = 181406, - [SMALL_STATE(5500)] = 181422, - [SMALL_STATE(5501)] = 181434, - [SMALL_STATE(5502)] = 181450, - [SMALL_STATE(5503)] = 181466, - [SMALL_STATE(5504)] = 181478, - [SMALL_STATE(5505)] = 181490, - [SMALL_STATE(5506)] = 181502, - [SMALL_STATE(5507)] = 181518, - [SMALL_STATE(5508)] = 181534, - [SMALL_STATE(5509)] = 181550, - [SMALL_STATE(5510)] = 181562, - [SMALL_STATE(5511)] = 181576, - [SMALL_STATE(5512)] = 181588, - [SMALL_STATE(5513)] = 181600, - [SMALL_STATE(5514)] = 181616, - [SMALL_STATE(5515)] = 181632, - [SMALL_STATE(5516)] = 181648, - [SMALL_STATE(5517)] = 181664, - [SMALL_STATE(5518)] = 181680, - [SMALL_STATE(5519)] = 181694, - [SMALL_STATE(5520)] = 181710, - [SMALL_STATE(5521)] = 181726, - [SMALL_STATE(5522)] = 181742, - [SMALL_STATE(5523)] = 181754, - [SMALL_STATE(5524)] = 181770, - [SMALL_STATE(5525)] = 181786, - [SMALL_STATE(5526)] = 181798, - [SMALL_STATE(5527)] = 181810, - [SMALL_STATE(5528)] = 181826, - [SMALL_STATE(5529)] = 181842, - [SMALL_STATE(5530)] = 181858, - [SMALL_STATE(5531)] = 181874, - [SMALL_STATE(5532)] = 181886, - [SMALL_STATE(5533)] = 181902, - [SMALL_STATE(5534)] = 181918, - [SMALL_STATE(5535)] = 181934, - [SMALL_STATE(5536)] = 181950, - [SMALL_STATE(5537)] = 181966, - [SMALL_STATE(5538)] = 181978, - [SMALL_STATE(5539)] = 181994, - [SMALL_STATE(5540)] = 182008, - [SMALL_STATE(5541)] = 182024, - [SMALL_STATE(5542)] = 182036, - [SMALL_STATE(5543)] = 182048, - [SMALL_STATE(5544)] = 182064, - [SMALL_STATE(5545)] = 182080, - [SMALL_STATE(5546)] = 182096, - [SMALL_STATE(5547)] = 182112, - [SMALL_STATE(5548)] = 182128, - [SMALL_STATE(5549)] = 182144, - [SMALL_STATE(5550)] = 182160, - [SMALL_STATE(5551)] = 182176, - [SMALL_STATE(5552)] = 182192, - [SMALL_STATE(5553)] = 182204, - [SMALL_STATE(5554)] = 182220, - [SMALL_STATE(5555)] = 182236, - [SMALL_STATE(5556)] = 182252, - [SMALL_STATE(5557)] = 182268, - [SMALL_STATE(5558)] = 182284, - [SMALL_STATE(5559)] = 182300, - [SMALL_STATE(5560)] = 182316, - [SMALL_STATE(5561)] = 182330, - [SMALL_STATE(5562)] = 182346, - [SMALL_STATE(5563)] = 182358, - [SMALL_STATE(5564)] = 182370, - [SMALL_STATE(5565)] = 182382, - [SMALL_STATE(5566)] = 182398, - [SMALL_STATE(5567)] = 182414, - [SMALL_STATE(5568)] = 182430, - [SMALL_STATE(5569)] = 182446, - [SMALL_STATE(5570)] = 182462, - [SMALL_STATE(5571)] = 182478, - [SMALL_STATE(5572)] = 182494, - [SMALL_STATE(5573)] = 182510, - [SMALL_STATE(5574)] = 182526, - [SMALL_STATE(5575)] = 182540, - [SMALL_STATE(5576)] = 182556, - [SMALL_STATE(5577)] = 182572, - [SMALL_STATE(5578)] = 182588, - [SMALL_STATE(5579)] = 182604, - [SMALL_STATE(5580)] = 182620, - [SMALL_STATE(5581)] = 182636, - [SMALL_STATE(5582)] = 182650, - [SMALL_STATE(5583)] = 182666, - [SMALL_STATE(5584)] = 182682, - [SMALL_STATE(5585)] = 182698, - [SMALL_STATE(5586)] = 182714, - [SMALL_STATE(5587)] = 182726, - [SMALL_STATE(5588)] = 182738, - [SMALL_STATE(5589)] = 182750, - [SMALL_STATE(5590)] = 182762, - [SMALL_STATE(5591)] = 182774, - [SMALL_STATE(5592)] = 182790, - [SMALL_STATE(5593)] = 182806, - [SMALL_STATE(5594)] = 182822, - [SMALL_STATE(5595)] = 182838, - [SMALL_STATE(5596)] = 182854, - [SMALL_STATE(5597)] = 182866, - [SMALL_STATE(5598)] = 182882, - [SMALL_STATE(5599)] = 182898, - [SMALL_STATE(5600)] = 182910, - [SMALL_STATE(5601)] = 182926, - [SMALL_STATE(5602)] = 182942, - [SMALL_STATE(5603)] = 182956, - [SMALL_STATE(5604)] = 182972, - [SMALL_STATE(5605)] = 182984, - [SMALL_STATE(5606)] = 183000, - [SMALL_STATE(5607)] = 183016, - [SMALL_STATE(5608)] = 183032, - [SMALL_STATE(5609)] = 183044, - [SMALL_STATE(5610)] = 183060, - [SMALL_STATE(5611)] = 183076, - [SMALL_STATE(5612)] = 183088, - [SMALL_STATE(5613)] = 183100, - [SMALL_STATE(5614)] = 183116, - [SMALL_STATE(5615)] = 183128, - [SMALL_STATE(5616)] = 183140, - [SMALL_STATE(5617)] = 183156, - [SMALL_STATE(5618)] = 183172, - [SMALL_STATE(5619)] = 183188, - [SMALL_STATE(5620)] = 183204, - [SMALL_STATE(5621)] = 183220, - [SMALL_STATE(5622)] = 183232, - [SMALL_STATE(5623)] = 183248, - [SMALL_STATE(5624)] = 183262, - [SMALL_STATE(5625)] = 183274, - [SMALL_STATE(5626)] = 183286, - [SMALL_STATE(5627)] = 183302, - [SMALL_STATE(5628)] = 183314, - [SMALL_STATE(5629)] = 183326, - [SMALL_STATE(5630)] = 183338, - [SMALL_STATE(5631)] = 183350, - [SMALL_STATE(5632)] = 183362, - [SMALL_STATE(5633)] = 183378, - [SMALL_STATE(5634)] = 183394, - [SMALL_STATE(5635)] = 183410, - [SMALL_STATE(5636)] = 183426, - [SMALL_STATE(5637)] = 183442, - [SMALL_STATE(5638)] = 183458, - [SMALL_STATE(5639)] = 183470, - [SMALL_STATE(5640)] = 183486, - [SMALL_STATE(5641)] = 183502, - [SMALL_STATE(5642)] = 183518, - [SMALL_STATE(5643)] = 183534, - [SMALL_STATE(5644)] = 183550, - [SMALL_STATE(5645)] = 183564, - [SMALL_STATE(5646)] = 183580, - [SMALL_STATE(5647)] = 183596, - [SMALL_STATE(5648)] = 183608, - [SMALL_STATE(5649)] = 183624, - [SMALL_STATE(5650)] = 183640, - [SMALL_STATE(5651)] = 183656, - [SMALL_STATE(5652)] = 183672, - [SMALL_STATE(5653)] = 183684, - [SMALL_STATE(5654)] = 183696, - [SMALL_STATE(5655)] = 183712, - [SMALL_STATE(5656)] = 183728, - [SMALL_STATE(5657)] = 183740, - [SMALL_STATE(5658)] = 183756, - [SMALL_STATE(5659)] = 183768, - [SMALL_STATE(5660)] = 183780, - [SMALL_STATE(5661)] = 183796, - [SMALL_STATE(5662)] = 183812, - [SMALL_STATE(5663)] = 183824, - [SMALL_STATE(5664)] = 183836, - [SMALL_STATE(5665)] = 183852, - [SMALL_STATE(5666)] = 183866, - [SMALL_STATE(5667)] = 183878, - [SMALL_STATE(5668)] = 183894, - [SMALL_STATE(5669)] = 183910, - [SMALL_STATE(5670)] = 183926, - [SMALL_STATE(5671)] = 183942, - [SMALL_STATE(5672)] = 183958, - [SMALL_STATE(5673)] = 183974, - [SMALL_STATE(5674)] = 183986, - [SMALL_STATE(5675)] = 184002, - [SMALL_STATE(5676)] = 184018, - [SMALL_STATE(5677)] = 184034, - [SMALL_STATE(5678)] = 184050, - [SMALL_STATE(5679)] = 184066, - [SMALL_STATE(5680)] = 184082, - [SMALL_STATE(5681)] = 184098, - [SMALL_STATE(5682)] = 184114, - [SMALL_STATE(5683)] = 184130, - [SMALL_STATE(5684)] = 184146, - [SMALL_STATE(5685)] = 184162, - [SMALL_STATE(5686)] = 184178, - [SMALL_STATE(5687)] = 184192, - [SMALL_STATE(5688)] = 184208, - [SMALL_STATE(5689)] = 184224, - [SMALL_STATE(5690)] = 184236, - [SMALL_STATE(5691)] = 184252, - [SMALL_STATE(5692)] = 184268, - [SMALL_STATE(5693)] = 184284, - [SMALL_STATE(5694)] = 184296, - [SMALL_STATE(5695)] = 184312, - [SMALL_STATE(5696)] = 184328, - [SMALL_STATE(5697)] = 184340, - [SMALL_STATE(5698)] = 184356, - [SMALL_STATE(5699)] = 184372, - [SMALL_STATE(5700)] = 184386, - [SMALL_STATE(5701)] = 184400, - [SMALL_STATE(5702)] = 184412, - [SMALL_STATE(5703)] = 184428, - [SMALL_STATE(5704)] = 184444, - [SMALL_STATE(5705)] = 184456, - [SMALL_STATE(5706)] = 184472, - [SMALL_STATE(5707)] = 184488, - [SMALL_STATE(5708)] = 184504, - [SMALL_STATE(5709)] = 184516, - [SMALL_STATE(5710)] = 184532, - [SMALL_STATE(5711)] = 184548, - [SMALL_STATE(5712)] = 184564, - [SMALL_STATE(5713)] = 184580, - [SMALL_STATE(5714)] = 184596, - [SMALL_STATE(5715)] = 184612, - [SMALL_STATE(5716)] = 184628, - [SMALL_STATE(5717)] = 184644, - [SMALL_STATE(5718)] = 184660, - [SMALL_STATE(5719)] = 184676, - [SMALL_STATE(5720)] = 184688, - [SMALL_STATE(5721)] = 184704, - [SMALL_STATE(5722)] = 184720, - [SMALL_STATE(5723)] = 184736, - [SMALL_STATE(5724)] = 184752, - [SMALL_STATE(5725)] = 184768, - [SMALL_STATE(5726)] = 184784, - [SMALL_STATE(5727)] = 184800, - [SMALL_STATE(5728)] = 184812, - [SMALL_STATE(5729)] = 184826, - [SMALL_STATE(5730)] = 184842, - [SMALL_STATE(5731)] = 184858, - [SMALL_STATE(5732)] = 184874, - [SMALL_STATE(5733)] = 184890, - [SMALL_STATE(5734)] = 184906, - [SMALL_STATE(5735)] = 184920, - [SMALL_STATE(5736)] = 184936, - [SMALL_STATE(5737)] = 184952, - [SMALL_STATE(5738)] = 184968, - [SMALL_STATE(5739)] = 184984, - [SMALL_STATE(5740)] = 185000, - [SMALL_STATE(5741)] = 185016, - [SMALL_STATE(5742)] = 185032, - [SMALL_STATE(5743)] = 185048, - [SMALL_STATE(5744)] = 185064, - [SMALL_STATE(5745)] = 185080, - [SMALL_STATE(5746)] = 185096, - [SMALL_STATE(5747)] = 185112, - [SMALL_STATE(5748)] = 185128, - [SMALL_STATE(5749)] = 185144, - [SMALL_STATE(5750)] = 185160, - [SMALL_STATE(5751)] = 185172, - [SMALL_STATE(5752)] = 185188, - [SMALL_STATE(5753)] = 185200, - [SMALL_STATE(5754)] = 185216, - [SMALL_STATE(5755)] = 185232, - [SMALL_STATE(5756)] = 185248, - [SMALL_STATE(5757)] = 185264, - [SMALL_STATE(5758)] = 185280, - [SMALL_STATE(5759)] = 185296, - [SMALL_STATE(5760)] = 185308, - [SMALL_STATE(5761)] = 185324, - [SMALL_STATE(5762)] = 185340, - [SMALL_STATE(5763)] = 185356, - [SMALL_STATE(5764)] = 185372, - [SMALL_STATE(5765)] = 185388, - [SMALL_STATE(5766)] = 185404, - [SMALL_STATE(5767)] = 185420, - [SMALL_STATE(5768)] = 185436, - [SMALL_STATE(5769)] = 185448, - [SMALL_STATE(5770)] = 185464, - [SMALL_STATE(5771)] = 185480, - [SMALL_STATE(5772)] = 185496, - [SMALL_STATE(5773)] = 185508, - [SMALL_STATE(5774)] = 185520, - [SMALL_STATE(5775)] = 185536, - [SMALL_STATE(5776)] = 185552, - [SMALL_STATE(5777)] = 185564, - [SMALL_STATE(5778)] = 185580, - [SMALL_STATE(5779)] = 185596, - [SMALL_STATE(5780)] = 185612, - [SMALL_STATE(5781)] = 185628, - [SMALL_STATE(5782)] = 185644, - [SMALL_STATE(5783)] = 185660, - [SMALL_STATE(5784)] = 185676, - [SMALL_STATE(5785)] = 185692, - [SMALL_STATE(5786)] = 185708, - [SMALL_STATE(5787)] = 185724, - [SMALL_STATE(5788)] = 185740, - [SMALL_STATE(5789)] = 185756, - [SMALL_STATE(5790)] = 185772, - [SMALL_STATE(5791)] = 185788, - [SMALL_STATE(5792)] = 185804, - [SMALL_STATE(5793)] = 185820, - [SMALL_STATE(5794)] = 185836, - [SMALL_STATE(5795)] = 185852, - [SMALL_STATE(5796)] = 185868, - [SMALL_STATE(5797)] = 185880, - [SMALL_STATE(5798)] = 185896, - [SMALL_STATE(5799)] = 185912, - [SMALL_STATE(5800)] = 185928, - [SMALL_STATE(5801)] = 185944, - [SMALL_STATE(5802)] = 185960, - [SMALL_STATE(5803)] = 185976, - [SMALL_STATE(5804)] = 185992, - [SMALL_STATE(5805)] = 186008, - [SMALL_STATE(5806)] = 186020, - [SMALL_STATE(5807)] = 186036, - [SMALL_STATE(5808)] = 186052, - [SMALL_STATE(5809)] = 186068, - [SMALL_STATE(5810)] = 186084, - [SMALL_STATE(5811)] = 186098, - [SMALL_STATE(5812)] = 186114, - [SMALL_STATE(5813)] = 186130, - [SMALL_STATE(5814)] = 186146, - [SMALL_STATE(5815)] = 186162, - [SMALL_STATE(5816)] = 186178, - [SMALL_STATE(5817)] = 186190, - [SMALL_STATE(5818)] = 186206, - [SMALL_STATE(5819)] = 186222, - [SMALL_STATE(5820)] = 186238, - [SMALL_STATE(5821)] = 186254, - [SMALL_STATE(5822)] = 186270, - [SMALL_STATE(5823)] = 186286, - [SMALL_STATE(5824)] = 186302, - [SMALL_STATE(5825)] = 186318, - [SMALL_STATE(5826)] = 186334, - [SMALL_STATE(5827)] = 186350, - [SMALL_STATE(5828)] = 186366, - [SMALL_STATE(5829)] = 186382, - [SMALL_STATE(5830)] = 186398, - [SMALL_STATE(5831)] = 186414, - [SMALL_STATE(5832)] = 186430, - [SMALL_STATE(5833)] = 186442, - [SMALL_STATE(5834)] = 186454, - [SMALL_STATE(5835)] = 186470, - [SMALL_STATE(5836)] = 186486, - [SMALL_STATE(5837)] = 186502, - [SMALL_STATE(5838)] = 186518, - [SMALL_STATE(5839)] = 186534, - [SMALL_STATE(5840)] = 186550, - [SMALL_STATE(5841)] = 186566, - [SMALL_STATE(5842)] = 186582, - [SMALL_STATE(5843)] = 186598, - [SMALL_STATE(5844)] = 186614, - [SMALL_STATE(5845)] = 186630, - [SMALL_STATE(5846)] = 186646, - [SMALL_STATE(5847)] = 186662, - [SMALL_STATE(5848)] = 186678, - [SMALL_STATE(5849)] = 186694, - [SMALL_STATE(5850)] = 186710, - [SMALL_STATE(5851)] = 186726, - [SMALL_STATE(5852)] = 186742, - [SMALL_STATE(5853)] = 186754, - [SMALL_STATE(5854)] = 186770, - [SMALL_STATE(5855)] = 186786, - [SMALL_STATE(5856)] = 186802, - [SMALL_STATE(5857)] = 186818, - [SMALL_STATE(5858)] = 186834, - [SMALL_STATE(5859)] = 186850, - [SMALL_STATE(5860)] = 186866, - [SMALL_STATE(5861)] = 186882, - [SMALL_STATE(5862)] = 186898, - [SMALL_STATE(5863)] = 186914, - [SMALL_STATE(5864)] = 186930, - [SMALL_STATE(5865)] = 186946, - [SMALL_STATE(5866)] = 186958, - [SMALL_STATE(5867)] = 186974, - [SMALL_STATE(5868)] = 186986, - [SMALL_STATE(5869)] = 186998, - [SMALL_STATE(5870)] = 187014, - [SMALL_STATE(5871)] = 187030, - [SMALL_STATE(5872)] = 187046, - [SMALL_STATE(5873)] = 187062, - [SMALL_STATE(5874)] = 187078, - [SMALL_STATE(5875)] = 187090, - [SMALL_STATE(5876)] = 187106, - [SMALL_STATE(5877)] = 187118, - [SMALL_STATE(5878)] = 187134, - [SMALL_STATE(5879)] = 187146, - [SMALL_STATE(5880)] = 187158, - [SMALL_STATE(5881)] = 187174, - [SMALL_STATE(5882)] = 187186, - [SMALL_STATE(5883)] = 187202, - [SMALL_STATE(5884)] = 187215, - [SMALL_STATE(5885)] = 187228, - [SMALL_STATE(5886)] = 187239, - [SMALL_STATE(5887)] = 187250, - [SMALL_STATE(5888)] = 187263, - [SMALL_STATE(5889)] = 187276, - [SMALL_STATE(5890)] = 187289, - [SMALL_STATE(5891)] = 187302, - [SMALL_STATE(5892)] = 187315, - [SMALL_STATE(5893)] = 187328, - [SMALL_STATE(5894)] = 187339, - [SMALL_STATE(5895)] = 187352, - [SMALL_STATE(5896)] = 187365, - [SMALL_STATE(5897)] = 187376, - [SMALL_STATE(5898)] = 187389, - [SMALL_STATE(5899)] = 187402, - [SMALL_STATE(5900)] = 187415, - [SMALL_STATE(5901)] = 187428, - [SMALL_STATE(5902)] = 187441, - [SMALL_STATE(5903)] = 187454, - [SMALL_STATE(5904)] = 187467, - [SMALL_STATE(5905)] = 187480, - [SMALL_STATE(5906)] = 187493, - [SMALL_STATE(5907)] = 187506, - [SMALL_STATE(5908)] = 187517, - [SMALL_STATE(5909)] = 187530, - [SMALL_STATE(5910)] = 187541, - [SMALL_STATE(5911)] = 187554, - [SMALL_STATE(5912)] = 187567, - [SMALL_STATE(5913)] = 187580, - [SMALL_STATE(5914)] = 187591, - [SMALL_STATE(5915)] = 187604, - [SMALL_STATE(5916)] = 187617, - [SMALL_STATE(5917)] = 187630, - [SMALL_STATE(5918)] = 187643, - [SMALL_STATE(5919)] = 187656, - [SMALL_STATE(5920)] = 187669, - [SMALL_STATE(5921)] = 187682, - [SMALL_STATE(5922)] = 187695, - [SMALL_STATE(5923)] = 187708, - [SMALL_STATE(5924)] = 187721, - [SMALL_STATE(5925)] = 187734, - [SMALL_STATE(5926)] = 187747, - [SMALL_STATE(5927)] = 187760, - [SMALL_STATE(5928)] = 187773, - [SMALL_STATE(5929)] = 187786, - [SMALL_STATE(5930)] = 187799, - [SMALL_STATE(5931)] = 187812, - [SMALL_STATE(5932)] = 187823, - [SMALL_STATE(5933)] = 187834, - [SMALL_STATE(5934)] = 187847, - [SMALL_STATE(5935)] = 187860, - [SMALL_STATE(5936)] = 187871, - [SMALL_STATE(5937)] = 187882, - [SMALL_STATE(5938)] = 187895, - [SMALL_STATE(5939)] = 187908, - [SMALL_STATE(5940)] = 187921, - [SMALL_STATE(5941)] = 187934, - [SMALL_STATE(5942)] = 187947, - [SMALL_STATE(5943)] = 187960, - [SMALL_STATE(5944)] = 187973, - [SMALL_STATE(5945)] = 187984, - [SMALL_STATE(5946)] = 187995, - [SMALL_STATE(5947)] = 188008, - [SMALL_STATE(5948)] = 188021, - [SMALL_STATE(5949)] = 188034, - [SMALL_STATE(5950)] = 188047, - [SMALL_STATE(5951)] = 188060, - [SMALL_STATE(5952)] = 188073, - [SMALL_STATE(5953)] = 188086, - [SMALL_STATE(5954)] = 188099, - [SMALL_STATE(5955)] = 188112, - [SMALL_STATE(5956)] = 188125, - [SMALL_STATE(5957)] = 188136, - [SMALL_STATE(5958)] = 188147, - [SMALL_STATE(5959)] = 188160, - [SMALL_STATE(5960)] = 188173, - [SMALL_STATE(5961)] = 188186, - [SMALL_STATE(5962)] = 188197, - [SMALL_STATE(5963)] = 188208, - [SMALL_STATE(5964)] = 188221, - [SMALL_STATE(5965)] = 188234, - [SMALL_STATE(5966)] = 188247, - [SMALL_STATE(5967)] = 188258, - [SMALL_STATE(5968)] = 188271, - [SMALL_STATE(5969)] = 188284, - [SMALL_STATE(5970)] = 188297, - [SMALL_STATE(5971)] = 188308, - [SMALL_STATE(5972)] = 188321, - [SMALL_STATE(5973)] = 188334, - [SMALL_STATE(5974)] = 188347, - [SMALL_STATE(5975)] = 188358, - [SMALL_STATE(5976)] = 188371, - [SMALL_STATE(5977)] = 188382, - [SMALL_STATE(5978)] = 188395, - [SMALL_STATE(5979)] = 188408, - [SMALL_STATE(5980)] = 188421, - [SMALL_STATE(5981)] = 188434, - [SMALL_STATE(5982)] = 188447, - [SMALL_STATE(5983)] = 188458, - [SMALL_STATE(5984)] = 188469, - [SMALL_STATE(5985)] = 188482, - [SMALL_STATE(5986)] = 188493, - [SMALL_STATE(5987)] = 188506, - [SMALL_STATE(5988)] = 188519, - [SMALL_STATE(5989)] = 188532, - [SMALL_STATE(5990)] = 188543, - [SMALL_STATE(5991)] = 188556, - [SMALL_STATE(5992)] = 188569, - [SMALL_STATE(5993)] = 188580, - [SMALL_STATE(5994)] = 188593, - [SMALL_STATE(5995)] = 188606, - [SMALL_STATE(5996)] = 188619, - [SMALL_STATE(5997)] = 188630, - [SMALL_STATE(5998)] = 188643, - [SMALL_STATE(5999)] = 188654, - [SMALL_STATE(6000)] = 188667, - [SMALL_STATE(6001)] = 188680, - [SMALL_STATE(6002)] = 188693, - [SMALL_STATE(6003)] = 188706, - [SMALL_STATE(6004)] = 188719, - [SMALL_STATE(6005)] = 188730, - [SMALL_STATE(6006)] = 188741, - [SMALL_STATE(6007)] = 188754, - [SMALL_STATE(6008)] = 188767, - [SMALL_STATE(6009)] = 188780, - [SMALL_STATE(6010)] = 188793, - [SMALL_STATE(6011)] = 188806, - [SMALL_STATE(6012)] = 188819, - [SMALL_STATE(6013)] = 188832, - [SMALL_STATE(6014)] = 188845, - [SMALL_STATE(6015)] = 188858, - [SMALL_STATE(6016)] = 188871, - [SMALL_STATE(6017)] = 188882, - [SMALL_STATE(6018)] = 188895, - [SMALL_STATE(6019)] = 188908, - [SMALL_STATE(6020)] = 188921, - [SMALL_STATE(6021)] = 188934, - [SMALL_STATE(6022)] = 188947, - [SMALL_STATE(6023)] = 188960, - [SMALL_STATE(6024)] = 188973, - [SMALL_STATE(6025)] = 188986, - [SMALL_STATE(6026)] = 188999, - [SMALL_STATE(6027)] = 189012, - [SMALL_STATE(6028)] = 189025, - [SMALL_STATE(6029)] = 189038, - [SMALL_STATE(6030)] = 189051, - [SMALL_STATE(6031)] = 189062, - [SMALL_STATE(6032)] = 189073, - [SMALL_STATE(6033)] = 189084, - [SMALL_STATE(6034)] = 189097, - [SMALL_STATE(6035)] = 189110, - [SMALL_STATE(6036)] = 189123, - [SMALL_STATE(6037)] = 189136, - [SMALL_STATE(6038)] = 189149, - [SMALL_STATE(6039)] = 189162, - [SMALL_STATE(6040)] = 189175, - [SMALL_STATE(6041)] = 189186, - [SMALL_STATE(6042)] = 189199, - [SMALL_STATE(6043)] = 189212, - [SMALL_STATE(6044)] = 189225, - [SMALL_STATE(6045)] = 189238, - [SMALL_STATE(6046)] = 189251, - [SMALL_STATE(6047)] = 189262, - [SMALL_STATE(6048)] = 189275, - [SMALL_STATE(6049)] = 189286, - [SMALL_STATE(6050)] = 189299, - [SMALL_STATE(6051)] = 189312, - [SMALL_STATE(6052)] = 189323, - [SMALL_STATE(6053)] = 189336, - [SMALL_STATE(6054)] = 189349, - [SMALL_STATE(6055)] = 189362, - [SMALL_STATE(6056)] = 189375, - [SMALL_STATE(6057)] = 189388, - [SMALL_STATE(6058)] = 189401, - [SMALL_STATE(6059)] = 189414, - [SMALL_STATE(6060)] = 189425, - [SMALL_STATE(6061)] = 189438, - [SMALL_STATE(6062)] = 189451, - [SMALL_STATE(6063)] = 189464, - [SMALL_STATE(6064)] = 189477, - [SMALL_STATE(6065)] = 189490, - [SMALL_STATE(6066)] = 189501, - [SMALL_STATE(6067)] = 189514, - [SMALL_STATE(6068)] = 189525, - [SMALL_STATE(6069)] = 189538, - [SMALL_STATE(6070)] = 189551, - [SMALL_STATE(6071)] = 189564, - [SMALL_STATE(6072)] = 189577, - [SMALL_STATE(6073)] = 189590, - [SMALL_STATE(6074)] = 189603, - [SMALL_STATE(6075)] = 189616, - [SMALL_STATE(6076)] = 189627, - [SMALL_STATE(6077)] = 189640, - [SMALL_STATE(6078)] = 189653, - [SMALL_STATE(6079)] = 189666, - [SMALL_STATE(6080)] = 189679, - [SMALL_STATE(6081)] = 189692, - [SMALL_STATE(6082)] = 189705, - [SMALL_STATE(6083)] = 189718, - [SMALL_STATE(6084)] = 189731, - [SMALL_STATE(6085)] = 189744, - [SMALL_STATE(6086)] = 189755, - [SMALL_STATE(6087)] = 189766, - [SMALL_STATE(6088)] = 189779, - [SMALL_STATE(6089)] = 189792, - [SMALL_STATE(6090)] = 189805, - [SMALL_STATE(6091)] = 189818, - [SMALL_STATE(6092)] = 189831, - [SMALL_STATE(6093)] = 189844, - [SMALL_STATE(6094)] = 189857, - [SMALL_STATE(6095)] = 189870, - [SMALL_STATE(6096)] = 189883, - [SMALL_STATE(6097)] = 189896, - [SMALL_STATE(6098)] = 189907, - [SMALL_STATE(6099)] = 189920, - [SMALL_STATE(6100)] = 189933, - [SMALL_STATE(6101)] = 189946, - [SMALL_STATE(6102)] = 189959, - [SMALL_STATE(6103)] = 189972, - [SMALL_STATE(6104)] = 189985, - [SMALL_STATE(6105)] = 189998, - [SMALL_STATE(6106)] = 190009, - [SMALL_STATE(6107)] = 190020, - [SMALL_STATE(6108)] = 190033, - [SMALL_STATE(6109)] = 190046, - [SMALL_STATE(6110)] = 190059, - [SMALL_STATE(6111)] = 190070, - [SMALL_STATE(6112)] = 190083, - [SMALL_STATE(6113)] = 190096, - [SMALL_STATE(6114)] = 190107, - [SMALL_STATE(6115)] = 190118, - [SMALL_STATE(6116)] = 190131, - [SMALL_STATE(6117)] = 190144, - [SMALL_STATE(6118)] = 190157, - [SMALL_STATE(6119)] = 190170, - [SMALL_STATE(6120)] = 190183, - [SMALL_STATE(6121)] = 190194, - [SMALL_STATE(6122)] = 190207, - [SMALL_STATE(6123)] = 190220, - [SMALL_STATE(6124)] = 190233, - [SMALL_STATE(6125)] = 190246, - [SMALL_STATE(6126)] = 190257, - [SMALL_STATE(6127)] = 190270, - [SMALL_STATE(6128)] = 190283, - [SMALL_STATE(6129)] = 190296, - [SMALL_STATE(6130)] = 190309, - [SMALL_STATE(6131)] = 190320, - [SMALL_STATE(6132)] = 190331, - [SMALL_STATE(6133)] = 190344, - [SMALL_STATE(6134)] = 190357, - [SMALL_STATE(6135)] = 190370, - [SMALL_STATE(6136)] = 190383, - [SMALL_STATE(6137)] = 190396, - [SMALL_STATE(6138)] = 190409, - [SMALL_STATE(6139)] = 190420, - [SMALL_STATE(6140)] = 190433, - [SMALL_STATE(6141)] = 190444, - [SMALL_STATE(6142)] = 190457, - [SMALL_STATE(6143)] = 190470, - [SMALL_STATE(6144)] = 190483, - [SMALL_STATE(6145)] = 190494, - [SMALL_STATE(6146)] = 190507, - [SMALL_STATE(6147)] = 190518, - [SMALL_STATE(6148)] = 190531, - [SMALL_STATE(6149)] = 190544, - [SMALL_STATE(6150)] = 190557, - [SMALL_STATE(6151)] = 190570, - [SMALL_STATE(6152)] = 190583, - [SMALL_STATE(6153)] = 190596, - [SMALL_STATE(6154)] = 190607, - [SMALL_STATE(6155)] = 190620, - [SMALL_STATE(6156)] = 190633, - [SMALL_STATE(6157)] = 190646, - [SMALL_STATE(6158)] = 190659, - [SMALL_STATE(6159)] = 190672, - [SMALL_STATE(6160)] = 190685, - [SMALL_STATE(6161)] = 190698, - [SMALL_STATE(6162)] = 190711, - [SMALL_STATE(6163)] = 190722, - [SMALL_STATE(6164)] = 190735, - [SMALL_STATE(6165)] = 190748, - [SMALL_STATE(6166)] = 190761, - [SMALL_STATE(6167)] = 190774, - [SMALL_STATE(6168)] = 190787, - [SMALL_STATE(6169)] = 190800, - [SMALL_STATE(6170)] = 190813, - [SMALL_STATE(6171)] = 190826, - [SMALL_STATE(6172)] = 190839, - [SMALL_STATE(6173)] = 190852, - [SMALL_STATE(6174)] = 190865, - [SMALL_STATE(6175)] = 190878, - [SMALL_STATE(6176)] = 190891, - [SMALL_STATE(6177)] = 190902, - [SMALL_STATE(6178)] = 190915, - [SMALL_STATE(6179)] = 190928, - [SMALL_STATE(6180)] = 190941, - [SMALL_STATE(6181)] = 190954, - [SMALL_STATE(6182)] = 190967, - [SMALL_STATE(6183)] = 190980, - [SMALL_STATE(6184)] = 190993, - [SMALL_STATE(6185)] = 191006, - [SMALL_STATE(6186)] = 191017, - [SMALL_STATE(6187)] = 191030, - [SMALL_STATE(6188)] = 191043, - [SMALL_STATE(6189)] = 191056, - [SMALL_STATE(6190)] = 191069, - [SMALL_STATE(6191)] = 191082, - [SMALL_STATE(6192)] = 191093, - [SMALL_STATE(6193)] = 191104, - [SMALL_STATE(6194)] = 191117, - [SMALL_STATE(6195)] = 191130, - [SMALL_STATE(6196)] = 191143, - [SMALL_STATE(6197)] = 191156, - [SMALL_STATE(6198)] = 191169, - [SMALL_STATE(6199)] = 191182, - [SMALL_STATE(6200)] = 191195, - [SMALL_STATE(6201)] = 191208, - [SMALL_STATE(6202)] = 191221, - [SMALL_STATE(6203)] = 191234, - [SMALL_STATE(6204)] = 191247, - [SMALL_STATE(6205)] = 191258, - [SMALL_STATE(6206)] = 191271, - [SMALL_STATE(6207)] = 191284, - [SMALL_STATE(6208)] = 191297, - [SMALL_STATE(6209)] = 191310, - [SMALL_STATE(6210)] = 191323, - [SMALL_STATE(6211)] = 191336, - [SMALL_STATE(6212)] = 191349, - [SMALL_STATE(6213)] = 191362, - [SMALL_STATE(6214)] = 191375, - [SMALL_STATE(6215)] = 191388, - [SMALL_STATE(6216)] = 191401, - [SMALL_STATE(6217)] = 191414, - [SMALL_STATE(6218)] = 191427, - [SMALL_STATE(6219)] = 191440, - [SMALL_STATE(6220)] = 191453, - [SMALL_STATE(6221)] = 191466, - [SMALL_STATE(6222)] = 191477, - [SMALL_STATE(6223)] = 191490, - [SMALL_STATE(6224)] = 191503, - [SMALL_STATE(6225)] = 191516, - [SMALL_STATE(6226)] = 191529, - [SMALL_STATE(6227)] = 191542, - [SMALL_STATE(6228)] = 191555, - [SMALL_STATE(6229)] = 191568, - [SMALL_STATE(6230)] = 191581, - [SMALL_STATE(6231)] = 191594, - [SMALL_STATE(6232)] = 191605, - [SMALL_STATE(6233)] = 191618, - [SMALL_STATE(6234)] = 191631, - [SMALL_STATE(6235)] = 191644, - [SMALL_STATE(6236)] = 191655, - [SMALL_STATE(6237)] = 191666, - [SMALL_STATE(6238)] = 191679, - [SMALL_STATE(6239)] = 191692, - [SMALL_STATE(6240)] = 191703, - [SMALL_STATE(6241)] = 191714, - [SMALL_STATE(6242)] = 191727, - [SMALL_STATE(6243)] = 191740, - [SMALL_STATE(6244)] = 191753, - [SMALL_STATE(6245)] = 191766, - [SMALL_STATE(6246)] = 191779, - [SMALL_STATE(6247)] = 191792, - [SMALL_STATE(6248)] = 191805, - [SMALL_STATE(6249)] = 191818, - [SMALL_STATE(6250)] = 191829, - [SMALL_STATE(6251)] = 191842, - [SMALL_STATE(6252)] = 191853, - [SMALL_STATE(6253)] = 191866, - [SMALL_STATE(6254)] = 191879, - [SMALL_STATE(6255)] = 191890, - [SMALL_STATE(6256)] = 191900, - [SMALL_STATE(6257)] = 191910, - [SMALL_STATE(6258)] = 191920, - [SMALL_STATE(6259)] = 191930, - [SMALL_STATE(6260)] = 191940, - [SMALL_STATE(6261)] = 191950, - [SMALL_STATE(6262)] = 191960, - [SMALL_STATE(6263)] = 191970, - [SMALL_STATE(6264)] = 191980, - [SMALL_STATE(6265)] = 191990, - [SMALL_STATE(6266)] = 192000, - [SMALL_STATE(6267)] = 192010, - [SMALL_STATE(6268)] = 192020, - [SMALL_STATE(6269)] = 192030, - [SMALL_STATE(6270)] = 192040, - [SMALL_STATE(6271)] = 192050, - [SMALL_STATE(6272)] = 192060, - [SMALL_STATE(6273)] = 192070, - [SMALL_STATE(6274)] = 192080, - [SMALL_STATE(6275)] = 192090, - [SMALL_STATE(6276)] = 192100, - [SMALL_STATE(6277)] = 192110, - [SMALL_STATE(6278)] = 192120, - [SMALL_STATE(6279)] = 192130, - [SMALL_STATE(6280)] = 192140, - [SMALL_STATE(6281)] = 192150, - [SMALL_STATE(6282)] = 192160, - [SMALL_STATE(6283)] = 192170, - [SMALL_STATE(6284)] = 192180, - [SMALL_STATE(6285)] = 192190, - [SMALL_STATE(6286)] = 192200, - [SMALL_STATE(6287)] = 192210, - [SMALL_STATE(6288)] = 192220, - [SMALL_STATE(6289)] = 192230, - [SMALL_STATE(6290)] = 192240, - [SMALL_STATE(6291)] = 192250, - [SMALL_STATE(6292)] = 192260, - [SMALL_STATE(6293)] = 192270, - [SMALL_STATE(6294)] = 192280, - [SMALL_STATE(6295)] = 192290, - [SMALL_STATE(6296)] = 192300, - [SMALL_STATE(6297)] = 192310, - [SMALL_STATE(6298)] = 192320, - [SMALL_STATE(6299)] = 192330, - [SMALL_STATE(6300)] = 192340, - [SMALL_STATE(6301)] = 192350, - [SMALL_STATE(6302)] = 192360, - [SMALL_STATE(6303)] = 192370, - [SMALL_STATE(6304)] = 192380, - [SMALL_STATE(6305)] = 192390, - [SMALL_STATE(6306)] = 192400, - [SMALL_STATE(6307)] = 192410, - [SMALL_STATE(6308)] = 192420, - [SMALL_STATE(6309)] = 192430, - [SMALL_STATE(6310)] = 192440, - [SMALL_STATE(6311)] = 192450, - [SMALL_STATE(6312)] = 192460, - [SMALL_STATE(6313)] = 192470, - [SMALL_STATE(6314)] = 192482, - [SMALL_STATE(6315)] = 192494, - [SMALL_STATE(6316)] = 192504, - [SMALL_STATE(6317)] = 192514, - [SMALL_STATE(6318)] = 192524, - [SMALL_STATE(6319)] = 192534, - [SMALL_STATE(6320)] = 192544, - [SMALL_STATE(6321)] = 192554, - [SMALL_STATE(6322)] = 192564, - [SMALL_STATE(6323)] = 192574, - [SMALL_STATE(6324)] = 192584, - [SMALL_STATE(6325)] = 192594, - [SMALL_STATE(6326)] = 192604, - [SMALL_STATE(6327)] = 192614, - [SMALL_STATE(6328)] = 192624, - [SMALL_STATE(6329)] = 192634, - [SMALL_STATE(6330)] = 192644, - [SMALL_STATE(6331)] = 192654, - [SMALL_STATE(6332)] = 192664, - [SMALL_STATE(6333)] = 192674, - [SMALL_STATE(6334)] = 192684, - [SMALL_STATE(6335)] = 192694, - [SMALL_STATE(6336)] = 192704, - [SMALL_STATE(6337)] = 192714, - [SMALL_STATE(6338)] = 192724, - [SMALL_STATE(6339)] = 192734, - [SMALL_STATE(6340)] = 192744, - [SMALL_STATE(6341)] = 192754, - [SMALL_STATE(6342)] = 192764, - [SMALL_STATE(6343)] = 192774, - [SMALL_STATE(6344)] = 192784, - [SMALL_STATE(6345)] = 192794, - [SMALL_STATE(6346)] = 192804, - [SMALL_STATE(6347)] = 192814, - [SMALL_STATE(6348)] = 192824, - [SMALL_STATE(6349)] = 192834, - [SMALL_STATE(6350)] = 192844, - [SMALL_STATE(6351)] = 192854, - [SMALL_STATE(6352)] = 192864, - [SMALL_STATE(6353)] = 192874, - [SMALL_STATE(6354)] = 192884, - [SMALL_STATE(6355)] = 192894, - [SMALL_STATE(6356)] = 192904, - [SMALL_STATE(6357)] = 192914, - [SMALL_STATE(6358)] = 192924, - [SMALL_STATE(6359)] = 192934, - [SMALL_STATE(6360)] = 192944, - [SMALL_STATE(6361)] = 192954, - [SMALL_STATE(6362)] = 192964, - [SMALL_STATE(6363)] = 192974, - [SMALL_STATE(6364)] = 192984, - [SMALL_STATE(6365)] = 192994, - [SMALL_STATE(6366)] = 193004, - [SMALL_STATE(6367)] = 193014, - [SMALL_STATE(6368)] = 193024, - [SMALL_STATE(6369)] = 193034, - [SMALL_STATE(6370)] = 193044, - [SMALL_STATE(6371)] = 193054, - [SMALL_STATE(6372)] = 193064, - [SMALL_STATE(6373)] = 193074, - [SMALL_STATE(6374)] = 193084, - [SMALL_STATE(6375)] = 193094, - [SMALL_STATE(6376)] = 193104, - [SMALL_STATE(6377)] = 193114, - [SMALL_STATE(6378)] = 193124, - [SMALL_STATE(6379)] = 193134, - [SMALL_STATE(6380)] = 193144, - [SMALL_STATE(6381)] = 193154, - [SMALL_STATE(6382)] = 193164, - [SMALL_STATE(6383)] = 193174, - [SMALL_STATE(6384)] = 193184, - [SMALL_STATE(6385)] = 193194, - [SMALL_STATE(6386)] = 193204, - [SMALL_STATE(6387)] = 193214, - [SMALL_STATE(6388)] = 193224, - [SMALL_STATE(6389)] = 193234, - [SMALL_STATE(6390)] = 193244, - [SMALL_STATE(6391)] = 193254, - [SMALL_STATE(6392)] = 193264, - [SMALL_STATE(6393)] = 193274, - [SMALL_STATE(6394)] = 193284, - [SMALL_STATE(6395)] = 193294, - [SMALL_STATE(6396)] = 193304, - [SMALL_STATE(6397)] = 193314, - [SMALL_STATE(6398)] = 193324, - [SMALL_STATE(6399)] = 193334, - [SMALL_STATE(6400)] = 193344, - [SMALL_STATE(6401)] = 193354, - [SMALL_STATE(6402)] = 193364, - [SMALL_STATE(6403)] = 193374, - [SMALL_STATE(6404)] = 193384, - [SMALL_STATE(6405)] = 193394, - [SMALL_STATE(6406)] = 193404, - [SMALL_STATE(6407)] = 193414, - [SMALL_STATE(6408)] = 193424, - [SMALL_STATE(6409)] = 193434, - [SMALL_STATE(6410)] = 193444, - [SMALL_STATE(6411)] = 193454, - [SMALL_STATE(6412)] = 193464, - [SMALL_STATE(6413)] = 193474, - [SMALL_STATE(6414)] = 193484, - [SMALL_STATE(6415)] = 193494, - [SMALL_STATE(6416)] = 193504, - [SMALL_STATE(6417)] = 193514, - [SMALL_STATE(6418)] = 193524, - [SMALL_STATE(6419)] = 193534, - [SMALL_STATE(6420)] = 193544, - [SMALL_STATE(6421)] = 193554, - [SMALL_STATE(6422)] = 193564, - [SMALL_STATE(6423)] = 193574, - [SMALL_STATE(6424)] = 193584, - [SMALL_STATE(6425)] = 193594, - [SMALL_STATE(6426)] = 193604, - [SMALL_STATE(6427)] = 193614, - [SMALL_STATE(6428)] = 193624, - [SMALL_STATE(6429)] = 193634, - [SMALL_STATE(6430)] = 193644, - [SMALL_STATE(6431)] = 193654, - [SMALL_STATE(6432)] = 193664, - [SMALL_STATE(6433)] = 193674, - [SMALL_STATE(6434)] = 193686, - [SMALL_STATE(6435)] = 193696, - [SMALL_STATE(6436)] = 193706, - [SMALL_STATE(6437)] = 193716, - [SMALL_STATE(6438)] = 193726, - [SMALL_STATE(6439)] = 193736, - [SMALL_STATE(6440)] = 193746, - [SMALL_STATE(6441)] = 193758, - [SMALL_STATE(6442)] = 193768, - [SMALL_STATE(6443)] = 193778, - [SMALL_STATE(6444)] = 193788, - [SMALL_STATE(6445)] = 193798, - [SMALL_STATE(6446)] = 193808, - [SMALL_STATE(6447)] = 193818, - [SMALL_STATE(6448)] = 193830, - [SMALL_STATE(6449)] = 193840, - [SMALL_STATE(6450)] = 193850, - [SMALL_STATE(6451)] = 193860, - [SMALL_STATE(6452)] = 193870, - [SMALL_STATE(6453)] = 193880, - [SMALL_STATE(6454)] = 193890, - [SMALL_STATE(6455)] = 193900, - [SMALL_STATE(6456)] = 193910, - [SMALL_STATE(6457)] = 193920, - [SMALL_STATE(6458)] = 193930, - [SMALL_STATE(6459)] = 193940, - [SMALL_STATE(6460)] = 193950, - [SMALL_STATE(6461)] = 193960, - [SMALL_STATE(6462)] = 193970, - [SMALL_STATE(6463)] = 193980, - [SMALL_STATE(6464)] = 193990, - [SMALL_STATE(6465)] = 194000, - [SMALL_STATE(6466)] = 194010, - [SMALL_STATE(6467)] = 194020, - [SMALL_STATE(6468)] = 194030, - [SMALL_STATE(6469)] = 194040, - [SMALL_STATE(6470)] = 194050, - [SMALL_STATE(6471)] = 194060, - [SMALL_STATE(6472)] = 194070, - [SMALL_STATE(6473)] = 194080, - [SMALL_STATE(6474)] = 194090, - [SMALL_STATE(6475)] = 194100, - [SMALL_STATE(6476)] = 194110, - [SMALL_STATE(6477)] = 194120, - [SMALL_STATE(6478)] = 194130, - [SMALL_STATE(6479)] = 194140, - [SMALL_STATE(6480)] = 194150, - [SMALL_STATE(6481)] = 194160, - [SMALL_STATE(6482)] = 194170, - [SMALL_STATE(6483)] = 194180, - [SMALL_STATE(6484)] = 194190, - [SMALL_STATE(6485)] = 194200, - [SMALL_STATE(6486)] = 194210, - [SMALL_STATE(6487)] = 194220, - [SMALL_STATE(6488)] = 194230, - [SMALL_STATE(6489)] = 194240, - [SMALL_STATE(6490)] = 194250, - [SMALL_STATE(6491)] = 194260, - [SMALL_STATE(6492)] = 194270, - [SMALL_STATE(6493)] = 194280, - [SMALL_STATE(6494)] = 194290, - [SMALL_STATE(6495)] = 194302, - [SMALL_STATE(6496)] = 194312, - [SMALL_STATE(6497)] = 194322, - [SMALL_STATE(6498)] = 194332, - [SMALL_STATE(6499)] = 194342, - [SMALL_STATE(6500)] = 194352, - [SMALL_STATE(6501)] = 194362, - [SMALL_STATE(6502)] = 194372, - [SMALL_STATE(6503)] = 194382, - [SMALL_STATE(6504)] = 194392, - [SMALL_STATE(6505)] = 194402, - [SMALL_STATE(6506)] = 194412, - [SMALL_STATE(6507)] = 194422, - [SMALL_STATE(6508)] = 194432, - [SMALL_STATE(6509)] = 194442, - [SMALL_STATE(6510)] = 194452, - [SMALL_STATE(6511)] = 194462, - [SMALL_STATE(6512)] = 194472, - [SMALL_STATE(6513)] = 194482, - [SMALL_STATE(6514)] = 194492, - [SMALL_STATE(6515)] = 194502, - [SMALL_STATE(6516)] = 194512, - [SMALL_STATE(6517)] = 194522, - [SMALL_STATE(6518)] = 194532, - [SMALL_STATE(6519)] = 194542, - [SMALL_STATE(6520)] = 194552, - [SMALL_STATE(6521)] = 194562, - [SMALL_STATE(6522)] = 194572, - [SMALL_STATE(6523)] = 194582, - [SMALL_STATE(6524)] = 194592, - [SMALL_STATE(6525)] = 194602, - [SMALL_STATE(6526)] = 194612, - [SMALL_STATE(6527)] = 194624, - [SMALL_STATE(6528)] = 194636, - [SMALL_STATE(6529)] = 194646, - [SMALL_STATE(6530)] = 194656, - [SMALL_STATE(6531)] = 194666, - [SMALL_STATE(6532)] = 194676, - [SMALL_STATE(6533)] = 194686, - [SMALL_STATE(6534)] = 194696, - [SMALL_STATE(6535)] = 194706, - [SMALL_STATE(6536)] = 194716, - [SMALL_STATE(6537)] = 194726, - [SMALL_STATE(6538)] = 194736, - [SMALL_STATE(6539)] = 194746, - [SMALL_STATE(6540)] = 194756, - [SMALL_STATE(6541)] = 194766, - [SMALL_STATE(6542)] = 194776, - [SMALL_STATE(6543)] = 194786, - [SMALL_STATE(6544)] = 194796, - [SMALL_STATE(6545)] = 194806, - [SMALL_STATE(6546)] = 194816, - [SMALL_STATE(6547)] = 194826, - [SMALL_STATE(6548)] = 194836, - [SMALL_STATE(6549)] = 194846, - [SMALL_STATE(6550)] = 194856, - [SMALL_STATE(6551)] = 194866, - [SMALL_STATE(6552)] = 194878, - [SMALL_STATE(6553)] = 194888, - [SMALL_STATE(6554)] = 194898, - [SMALL_STATE(6555)] = 194908, - [SMALL_STATE(6556)] = 194918, - [SMALL_STATE(6557)] = 194928, - [SMALL_STATE(6558)] = 194938, - [SMALL_STATE(6559)] = 194948, - [SMALL_STATE(6560)] = 194958, - [SMALL_STATE(6561)] = 194968, - [SMALL_STATE(6562)] = 194978, - [SMALL_STATE(6563)] = 194988, - [SMALL_STATE(6564)] = 194998, - [SMALL_STATE(6565)] = 195008, - [SMALL_STATE(6566)] = 195018, - [SMALL_STATE(6567)] = 195028, - [SMALL_STATE(6568)] = 195038, - [SMALL_STATE(6569)] = 195050, - [SMALL_STATE(6570)] = 195060, - [SMALL_STATE(6571)] = 195070, - [SMALL_STATE(6572)] = 195082, - [SMALL_STATE(6573)] = 195092, - [SMALL_STATE(6574)] = 195102, - [SMALL_STATE(6575)] = 195112, - [SMALL_STATE(6576)] = 195122, - [SMALL_STATE(6577)] = 195132, - [SMALL_STATE(6578)] = 195142, - [SMALL_STATE(6579)] = 195152, - [SMALL_STATE(6580)] = 195162, - [SMALL_STATE(6581)] = 195172, - [SMALL_STATE(6582)] = 195182, - [SMALL_STATE(6583)] = 195192, - [SMALL_STATE(6584)] = 195202, - [SMALL_STATE(6585)] = 195212, - [SMALL_STATE(6586)] = 195222, -}; - -static const TSParseActionEntry ts_parse_actions[] = { - [0] = {.entry = {.count = 0, .reusable = false}}, - [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 3), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 2), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_transfer_statement, 1), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_transfer_statement, 1), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 4), SHIFT(663), - [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 4), SHIFT(663), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 4), SHIFT(554), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 4), SHIFT(112), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 4), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 4), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 73), SHIFT(663), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 73), SHIFT(663), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 73), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2), SHIFT(663), - [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat1, 2), SHIFT(663), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat1, 2), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom_operator, 1), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_operator, 1), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prefix_unary_operator, 1), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prefix_unary_operator, 1), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefix_unary_operator, 1), REDUCE(sym__referenceable_operator, 1), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__referenceable_operator, 1), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefix_unary_operator, 1), REDUCE(sym__referenceable_operator, 1), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__referenceable_operator, 1), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__additive_operator, 1), REDUCE(sym__prefix_unary_operator, 1), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_operator, 1), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__additive_operator, 1), REDUCE(sym__prefix_unary_operator, 1), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__range_operator, 1), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_operator, 1), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, .production_id = 6), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, .production_id = 6), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__three_dot_operator, 1), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__three_dot_operator, 1), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_end_range_expression, 2, .production_id = 24), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_end_range_expression, 2, .production_id = 24), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_hack_at_ternary_binary_suffix, 1), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_hack_at_ternary_binary_suffix, 1), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_start_range_expression, 2, .production_id = 26), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_start_range_expression, 2, .production_id = 26), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entry_suffix, 2, .production_id = 186), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_entry_suffix, 2, .production_id = 186), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, .production_id = 27), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, .production_id = 27), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, .production_id = 61), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, .production_id = 61), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3, .production_id = 61), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3, .production_id = 61), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 66), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 66), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, .production_id = 28), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, .production_id = 28), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, .production_id = 27), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, .production_id = 27), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 3, .production_id = 113), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 3, .production_id = 113), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 4, .production_id = 148), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 4, .production_id = 148), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 5, .production_id = 176), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 5, .production_id = 176), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 3, .production_id = 93), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 3, .production_id = 93), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 2, .production_id = 51), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 2, .production_id = 51), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 3, .production_id = 91), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 3, .production_id = 91), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 2, .production_id = 52), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 2, .production_id = 52), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 3, .production_id = 94), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 3, .production_id = 94), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 4, .production_id = 127), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 4, .production_id = 127), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lambda_type_declaration, 2), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_type_declaration, 2), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 3, .production_id = 15), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 3, .production_id = 15), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_condition_sequence_item, 1), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_condition_sequence_item, 1), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_clause, 2), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 2, .production_id = 58), SHIFT(4082), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fn_call_lambda_arguments, 2, .production_id = 58), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 2, .production_id = 58), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2, .production_id = 20), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2, .production_id = 20), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opaque_type, 2), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opaque_type, 2), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 2), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 2), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 1), SHIFT(4082), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fn_call_lambda_arguments, 1), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fn_call_lambda_arguments, 1), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, .production_id = 106), SHIFT_REPEAT(4082), - [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, .production_id = 106), SHIFT_REPEAT(4082), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, .production_id = 106), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 2, .production_id = 106), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_transfer_statement, 2, .production_id = 53), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_transfer_statement, 2, .production_id = 53), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_statement, 1), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_statement, 1), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__throw_statement, 2), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__throw_statement, 2), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4575), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 3, .production_id = 4), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__fn_call_lambda_arguments_repeat1, 3, .production_id = 4), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4575), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, .production_id = 50), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, .production_id = 50), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 1), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 1), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 5), REDUCE(sym__expression, 1), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3372), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, .production_id = 50), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, .production_id = 50), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4575), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, .production_id = 47), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, .production_id = 47), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .dynamic_precedence = 1), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .dynamic_precedence = 1), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, .production_id = 23), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, .production_id = 23), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, .production_id = 156), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, .production_id = 156), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2, .production_id = 58), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2, .production_id = 58), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2, .production_id = 64), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2, .production_id = 64), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, .production_id = 120), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, .production_id = 120), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_expression, 1), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_expression, 1), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3605), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1, .dynamic_precedence = -1, .production_id = 17), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1, .dynamic_precedence = -1, .production_id = 17), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_composition_type, 2), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_composition_type, 2), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, .production_id = 80), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, .production_id = 80), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 25), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 25), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(668), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_await_expression, 2, .production_id = 27), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_await_expression, 2, .production_id = 27), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, .production_id = 44), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3, .production_id = 44), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_try_expression, 2, .production_id = 27), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_try_expression, 2, .production_id = 27), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 5), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 5), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(47), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 46), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 46), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 123), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 123), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 5), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 5), - [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), - [2865] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(47), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, .production_id = 48), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, .production_id = 48), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 140), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 140), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, .production_id = 86), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, .production_id = 86), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metatype, 3), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metatype, 3), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_type, 5, .production_id = 122), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_type, 5, .production_id = 122), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 157), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 157), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 84), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 84), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 58), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 58), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(173), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), - [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(693), - [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(693), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_component, 2), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_component, 2), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_component, 1), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_component, 1), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 2), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 2), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 2), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 2), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 3), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 3), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4045), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 3), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 3), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 4), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 4), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, .production_id = 86), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, .production_id = 86), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_hack_at_ternary_binary_call, 2), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_hack_at_ternary_binary_call, 2), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 2), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 2), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 1, .production_id = 1), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 1, .production_id = 1), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_string_literal, 3, .production_id = 43), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_string_literal, 3, .production_id = 43), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_literal, 1), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_literal, 1), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__playground_literal, 7), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__playground_literal, 7), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__playground_literal, 6), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__playground_literal, 6), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 141), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 141), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_string_literal, 2), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_string_literal, 2), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string_literal, 2), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string_literal, 2), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_regex_literal, 2), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_regex_literal, 2), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 4), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 4), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 5, .production_id = 88), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 5, .production_id = 88), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_expression, 2, .production_id = 22), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_expression, 2, .production_id = 22), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_suffix, 1, .dynamic_precedence = -1, .production_id = 17), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_suffix, 1, .dynamic_precedence = -1, .production_id = 17), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, .production_id = 86), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, .production_id = 86), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 3), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 3), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_await_expression, 2, .dynamic_precedence = 1, .production_id = 27), - [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_await_expression, 2, .dynamic_precedence = 1, .production_id = 27), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_try_expression, 2, .dynamic_precedence = 1, .production_id = 27), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_try_expression, 2, .dynamic_precedence = 1, .production_id = 27), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2, .production_id = 37), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2, .production_id = 37), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 5), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 5), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string_literal, 3, .production_id = 43), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string_literal, 3, .production_id = 43), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 3), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 3), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, .production_id = 48), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, .production_id = 48), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 3, .production_id = 49), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 3, .production_id = 49), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_string_expression, 4), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_string_expression, 4), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 2), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 2), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_suffix, 2, .production_id = 58), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_suffix, 2, .production_id = 58), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, .production_id = 60), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, .production_id = 60), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, .production_id = 61), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, .production_id = 61), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3, .production_id = 61), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3, .production_id = 61), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, .production_id = 61), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, .production_id = 61), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3, .production_id = 62), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3, .production_id = 62), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 63), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 63), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_operation, 3, .production_id = 61), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_operation, 3, .production_id = 61), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3, .production_id = 61), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3, .production_id = 61), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3, .production_id = 61), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3, .production_id = 61), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil_coalescing_expression, 3, .production_id = 65), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil_coalescing_expression, 3, .production_id = 65), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, .production_id = 48), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, .production_id = 48), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, .production_id = 49), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, .production_id = 49), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, .production_id = 88), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, .production_id = 88), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 4), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 4), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_suffix, 1), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(17), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, .production_id = 27), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, .production_id = 27), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4803), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(5341), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4639), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3835), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4795), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(1665), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4802), - [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4801), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4194), - [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2553), - [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3599), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(5902), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4907), - [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(5544), - [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(5110), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2365), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4805), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4704), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4433), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(1456), - [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2558), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2422), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2155), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2557), - [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2543), - [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2542), - [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2539), - [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2539), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3362] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(38), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [3370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(38), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [3375] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(39), - [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4548), - [3382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(39), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4548), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4548), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(889), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4534), - [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4534), - [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4534), - [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3518), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 3), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3606), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 2), - [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(932), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4567), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4567), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2), - [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2), SHIFT_REPEAT(4412), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4567), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(155), - [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(962), - [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(962), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 6), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(190), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(182), - [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(992), - [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(992), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(45), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4130), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4063), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(31), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__async_modifier, 1), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 1), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, .production_id = 39), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_statement, 1), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, .production_id = 114), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, .production_id = 115), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, .production_id = 120), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, .production_id = 151), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 2, .production_id = 44), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument, 3), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_literal_item, 3, .production_id = 85), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4, .production_id = 172), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3, .production_id = 143), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 7, .production_id = 210), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 6, .production_id = 209), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 4, .production_id = 58), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__playground_literal_repeat1, 4), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 4, .production_id = 120), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, .production_id = 44), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 4, .production_id = 120), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, .production_id = 48), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument, 1), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 3, .production_id = 115), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 2, .production_id = 101), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 3, .production_id = 135), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 1, .production_id = 4), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_parameter, 1, .production_id = 4), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4560), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4498), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_simple_identifier, 1), SHIFT(4814), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1), SHIFT(4814), - [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1393), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4553), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3571), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1417), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1426), - [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3603), - [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3537), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifiers, 1), SHIFT(2557), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_capture_list_item, 1, .production_id = 4), - [4274] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 5), REDUCE(sym__expression, 1), REDUCE(sym_capture_list_item, 1, .production_id = 4), - [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3392), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2557), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2493), - [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4433), - [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(1464), - [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2558), - [4300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2422), - [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2155), - [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2543), - [4309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2542), - [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2539), - [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2539), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_lambda_parameter, 1, .production_id = 4), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bound_identifier, 1, .production_id = 16), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bound_identifier, 1, .production_id = 16), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat2, 1), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat2, 1), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4525), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 1, .production_id = 33), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 1, .production_id = 33), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 3), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 3), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 2), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 2), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 1), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 4), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 4), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4793), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4482), - [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2781), - [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2777), - [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2777), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 18), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1548), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 191), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 191), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4474] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(21), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 167), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 167), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2, .production_id = 20), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 2, .production_id = 20), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 17), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(21), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_pattern, 3), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_pattern, 5), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_pattern, 5), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4544), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__universally_allowed_pattern, 1, .production_id = 17), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__universally_allowed_pattern, 1, .production_id = 17), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4544), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4544), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 20), - [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 20), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_casting_pattern, 3, .production_id = 98), - [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_casting_pattern, 3, .production_id = 98), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 2, .production_id = 33), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 2, .production_id = 33), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_pattern, 4), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(19), - [4579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3559), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_casting_pattern, 2, .production_id = 58), - [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_casting_pattern, 2, .production_id = 58), - [4586] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(19), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4635), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3562), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(33), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4635), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 1, .production_id = 17), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 1, .production_id = 17), - [4628] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(33), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(15), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4635), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 2, .production_id = 18), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 2, .production_id = 18), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 18), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 2, .production_id = 17), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__no_expr_pattern_already_bound, 2, .production_id = 17), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 17), - [4650] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(15), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1662), - [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1), SHIFT(4814), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_modifier, 1), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1), SHIFT(2553), - [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1), SHIFT(4907), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_modifier, 1), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 2, .production_id = 21), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 2, .production_id = 21), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 2, .production_id = 17), - [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 2, .production_id = 17), - [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(22), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4537), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4537), - [4695] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(27), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3646), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1699), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4537), - [4708] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(22), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(27), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 72), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 72), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4492), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 3, .production_id = 33), - [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 3, .production_id = 33), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4505), - [4769] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(44), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 104), - [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 104), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(4774), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 83), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 83), - [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4505), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1778), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 149), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 149), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4535), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(4103), - [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4632), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4501), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), - [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4505), - [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4501), - [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(44), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4501), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), - [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3638), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(161), - [4890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1857), - [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1857), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_constraint, 4, .production_id = 179), - [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_constraint, 4, .production_id = 179), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_constraint, 4, .production_id = 178), - [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_constraint, 4, .production_id = 178), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 201), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 201), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_constraint, 3, .production_id = 153), - [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_constraint, 3, .production_id = 153), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_constraint, 3, .production_id = 152), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_constraint, 3, .production_id = 152), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1887), - [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3542), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 202), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 202), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 203), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 203), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 190), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 190), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 189), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 189), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 188), - [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 188), SHIFT_REPEAT(4765), - [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 188), - [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4550), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 187), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 187), - [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4550), - [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4550), - [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(34), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 207), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 207), - [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym_capture_list_item, 1, .production_id = 4), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1938), - [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3573), - [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(157), - [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1941), - [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1941), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 3), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 3), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 1), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 1), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(4433), - [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2543), - [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2539), - [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2539), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [5035] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(34), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 166), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 166), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), - [5047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(4433), - [5050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(2543), - [5053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(2539), - [5056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(2539), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 164), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 164), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 9, .production_id = 215), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 9, .production_id = 215), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entry_suffix, 1, .production_id = 165), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_entry_suffix, 1, .production_id = 165), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(186), - [5078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1978), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1978), - [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3556), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 214), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 214), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4122), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 4, .production_id = 140), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 4, .production_id = 140), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 210), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 210), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1990), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 209), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 209), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 2, .production_id = 32), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 2, .production_id = 32), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 213), - [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 213), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 212), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 212), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 21), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 21), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [5137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), SHIFT(35), - [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 211), - [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 211), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 210), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 210), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 209), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 209), - [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(26), - [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 69), - [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 69), - [5163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(200), - [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2036), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 2), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 2), - [5173] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), SHIFT(35), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym_lambda_parameter, 1), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 1), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 1), - [5186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), REDUCE(aux_sym__lambda_type_declaration_repeat1, 1), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), - [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 149), - [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 149), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4540), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 58), - [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 58), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 104), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 104), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 3, .production_id = 164), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 3, .production_id = 164), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 3, .production_id = 58), - [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 3, .production_id = 58), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 111), - [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(3479), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 111), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 72), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 72), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property, 2), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property, 2), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 3, .production_id = 112), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 3, .production_id = 112), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(43), - [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(166), - [5267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2118), - [5270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2118), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4061), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 110), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 110), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3622), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property, 3), - [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property, 3), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 4, .production_id = 147), - [5301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 4, .production_id = 147), - [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutation_modifier, 1), - [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutation_modifier, 1), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_modifierless_property_declaration, 2, .production_id = 70), - [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_modifierless_property_declaration, 2, .production_id = 70), - [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(178), - [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2164), - [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2164), - [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4547), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 154), - [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 154), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, .production_id = 197), - [5331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, .production_id = 197), - [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 154), - [5335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 154), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 169), - [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 169), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 170), - [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 170), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated_operator_declaration_body, 3), - [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated_operator_declaration_body, 3), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 171), - [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 171), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 170), - [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 170), - [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, .production_id = 198), - [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, .production_id = 198), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 177), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 177), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 181), - [5371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 181), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, .production_id = 181), - [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, .production_id = 181), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 192), - [5379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 192), - [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 193), - [5383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 193), - [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 194), - [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 194), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, .production_id = 193), - [5391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, .production_id = 193), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 196), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 196), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 7, .production_id = 207), - [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 7, .production_id = 207), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 8, .production_id = 204), - [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 8, .production_id = 204), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 8, .production_id = 204), - [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 8, .production_id = 204), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 8, .production_id = 205), - [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 8, .production_id = 205), - [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 190), - [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 190), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, .production_id = 206), - [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, .production_id = 206), - [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 7, .production_id = 206), - [5427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 7, .production_id = 206), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 189), - [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 189), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(153), - [5436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2220), - [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2220), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 79), - [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 79), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 7, .production_id = 208), - [5456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 7, .production_id = 208), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 8, .production_id = 208), - [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 8, .production_id = 208), - [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 187), - [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 187), - [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(24), - [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 103), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 103), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 105), - [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 105), - [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 118), - [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 118), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 150), - [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 150), - [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deinit_declaration, 2, .production_id = 119), - [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deinit_declaration, 2, .production_id = 119), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 1, .production_id = 7), - [5491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 1, .production_id = 7), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 203), - [5495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 203), - [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 138), - [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 138), - [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 4, .production_id = 180), - [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 4, .production_id = 180), - [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typealias_declaration, 1, .production_id = 8), - [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typealias_declaration, 1, .production_id = 8), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deinit_declaration, 3, .production_id = 155), - [5511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deinit_declaration, 3, .production_id = 155), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 4, .production_id = 107), - [5515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 4, .production_id = 107), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 1, .production_id = 10), - [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 1, .production_id = 10), - [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_typealias_declaration, 4, .production_id = 99), - [5523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_typealias_declaration, 4, .production_id = 99), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), - [5527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_body, 2), - [5531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_body, 2), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 59), - [5555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 59), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 79), - [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 79), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 3, .production_id = 42), - [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 3, .production_id = 42), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 102), - [5567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 102), - [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 202), - [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 202), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [5575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 103), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 103), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 4), - [5583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 4), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 20), - [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 20), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 201), - [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 201), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 139), - [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 139), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_declaration, 4), - [5599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_declaration, 4), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typealias_declaration, 2, .production_id = 35), - [5603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typealias_declaration, 2, .production_id = 35), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_declaration, 5), - [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_declaration, 5), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 167), - [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 167), - [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated_operator_declaration_body, 2), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deprecated_operator_declaration_body, 2), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 138), - [5619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 138), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 137), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 137), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_body, 3, .production_id = 134), - [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_body, 3, .production_id = 134), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 191), - [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 191), - [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 118), - [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 118), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), - [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 166), - [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 166), - [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4093), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 164), - [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 164), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 42), - [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 42), - [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_typealias_declaration, 5, .production_id = 132), - [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_typealias_declaration, 5, .production_id = 132), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2), - [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2), - [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(37), - [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 36), - [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 36), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), - [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(127), - [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3001), - [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(2998), - [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(4482), - [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(2747), - [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3003), - [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(2993), - [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3002), - [5705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(2781), - [5708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3000), - [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(2777), - [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(2777), - [5717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(6424), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, .production_id = 34), - [5722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, .production_id = 34), - [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 3, .production_id = 107), - [5726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 3, .production_id = 107), - [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, .production_id = 180), - [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, .production_id = 180), - [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 29), - [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 29), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, .production_id = 198), - [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, .production_id = 198), - [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2343), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, .production_id = 197), - [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, .production_id = 197), - [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), - [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(20), - [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(4482), - [5763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(2781), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(2777), - [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(2777), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4145), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4088), - [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(25), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2442), - [5798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3538), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), SHIFT(41), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(4095), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3533), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ownership_modifier, 1), - [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ownership_modifier, 1), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4510), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), - [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4539), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3001), - [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2998), - [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4482), - [5881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2703), - [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3003), - [5887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2993), - [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3002), - [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2781), - [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3000), - [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2777), - [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2777), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2760), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 2, .production_id = 55), - [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 2, .production_id = 55), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), SHIFT(2800), - [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 18), REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 15), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 15), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 18), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3597), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 17), - [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), SHIFT(2802), - [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 1, .production_id = 17), REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 2, .production_id = 57), - [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 2, .production_id = 57), - [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 3, .production_id = 97), - [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 3, .production_id = 97), - [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 18), REDUCE(sym__no_expr_pattern_already_bound, 2, .production_id = 18), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 17), REDUCE(sym__no_expr_pattern_already_bound, 2, .production_id = 17), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_modifier, 1), SHIFT(2553), - [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_modifier, 1), SHIFT(4907), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 15), - [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 15), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 1, .production_id = 15), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 1, .production_id = 15), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 1, .production_id = 15), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 1, .production_id = 15), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 18), - [6019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_no_expr, 2, .production_id = 17), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(4105), - [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_kind_and_pattern, 2, .production_id = 57), - [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_kind_and_pattern, 2, .production_id = 57), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 3), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 3), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 2, .production_id = 15), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 2, .production_id = 15), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2), - [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_statement_repeat1, 2), - [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2), SHIFT_REPEAT(3060), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 2), - [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 2), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 3, .production_id = 55), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__direct_or_indirect_binding, 3, .production_id = 55), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(3477), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), - [6136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2), - [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(102), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 163), - [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 163), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 162), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 162), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 96), SHIFT_REPEAT(137), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 96), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 96), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 7, .production_id = 185), - [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 7, .production_id = 185), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), - [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 1), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 5, .production_id = 131), - [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 5, .production_id = 131), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 3, .production_id = 128), - [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3, .production_id = 128), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_condition, 5), - [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_condition, 5), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 56), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 56), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 4, .production_id = 128), - [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4, .production_id = 128), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 56), - [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 56), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_condition, 4), - [6198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_condition, 4), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 2), - [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), - [6204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 2, .production_id = 15), - [6206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 2, .production_id = 15), - [6208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_condition_sequence_item, 1, .production_id = 15), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_condition_sequence_item, 1, .production_id = 15), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 95), - [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 95), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 3), - [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), - [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 4, .production_id = 15), - [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 4, .production_id = 15), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 200), - [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 200), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 1, .production_id = 14), - [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_function_declaration, 1, .production_id = 14), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 95), - [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 95), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 184), - [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 184), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 160), - [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 160), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 200), - [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 200), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 183), - [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 183), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 183), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 183), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_class_declaration, 1, .production_id = 10), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_class_declaration, 1, .production_id = 10), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 160), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 160), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_class_declaration, 2, .production_id = 36), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_class_declaration, 2, .production_id = 36), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 161), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 161), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 27), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 27), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_statement, 5, .production_id = 95), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_guard_statement, 5, .production_id = 95), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration, 2, .production_id = 29), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_function_declaration, 2, .production_id = 29), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 7), - [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 7), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_property_declaration, 2, .production_id = 34), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_property_declaration, 2, .production_id = 34), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 8), - [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 8), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 14), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 14), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 130), - [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 130), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_typealias_declaration, 2, .production_id = 35), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_typealias_declaration, 2, .production_id = 35), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 2, .production_id = 54), - [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_function_declaration, 2, .production_id = 54), - [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 130), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 130), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 10), - [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 10), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 56), - [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 56), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_statement, 4, .production_id = 56), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_guard_statement, 4, .production_id = 56), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_property_declaration, 1, .production_id = 7), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_property_declaration, 1, .production_id = 7), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_typealias_declaration, 1, .production_id = 8), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_typealias_declaration, 1, .production_id = 8), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_statement, 2), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labeled_statement, 2), - [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 95), - [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 95), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 56), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 56), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 161), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 161), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 95), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 95), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 6), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 6), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(3651), - [6435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(3651), - [6438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(2981), - [6441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(2981), - [6444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(3660), - [6447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(4273), - [6450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(4154), - [6453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(3652), - [6456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(6433), - [6459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(3652), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), - [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(5955), - [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_deprecated_operator_declaration_body_repeat1, 2), SHIFT_REPEAT(3649), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 3), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 3), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 4), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 4), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 8), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [6486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 8), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 5), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 5), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 7), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 7), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 9), - [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 9), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [6546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4533), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4570), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(192), - [7019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), REDUCE(aux_sym__lambda_type_declaration_repeat1, 1), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [7078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(4407), - [7081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3719), - [7084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3722), - [7087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3722), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4520), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__navigable_type_expression, 1), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4489), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [7140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4500), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [7149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4502), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3695), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [7193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3623), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4489), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [7217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3739), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4522), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4489), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [7258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4512), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [7291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4552), - [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), - [7296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(4022), - [7299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(4355), - [7302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(4399), - [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(4407), - [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(2155), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3593), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4536), - [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3804), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4592), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4521), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4495), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4530), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3851), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3856), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3872), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4619), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3635), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 2, .production_id = 30), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 3, .production_id = 67), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), - [7487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3633), - [7490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4523), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3909), - [7498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3639), - [7501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3914), - [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), - [7508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(4128), - [7511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(4128), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3529), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3933), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3958), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [7563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3564), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3985), - [7577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3990), - [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3528), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3642), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 1), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(4026), - [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2), - [7615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2), SHIFT_REPEAT(4260), - [7618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2), SHIFT_REPEAT(4027), - [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 2), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 3), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3618), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4514), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [7689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4566), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [7710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(4092), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [7719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4516), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 3, .production_id = 20), - [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 3, .production_id = 20), - [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3641), - [7735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3531), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3577), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [7783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_async_binding_pattern_kind, 1, .production_id = 11), - [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_async_binding_pattern_kind, 1, .production_id = 11), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3574), - [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [7804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2), SHIFT_REPEAT(4417), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2), SHIFT_REPEAT(4449), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4747), - [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4789), - [7844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6425), - [7847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 38), - [7849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(177), - [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4796), - [7855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_kind, 1, .production_id = 3), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_kind, 1, .production_id = 3), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_async_binding_pattern_kind, 2, .production_id = 31), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_async_binding_pattern_kind, 2, .production_id = 31), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, .production_id = 67), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 38), - [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4941), - [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6497), - [7923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(168), - [7926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4933), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [7933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, .production_id = 68), SHIFT_REPEAT(4218), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, .production_id = 68), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_specifier, 1, .production_id = 78), - [7942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), SHIFT(4298), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 1), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(4267), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 3, .production_id = 30), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), SHIFT(4304), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(3532), - [8004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(195), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [8013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(4551), - [8016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 77), SHIFT_REPEAT(4082), - [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 77), SHIFT_REPEAT(4082), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 77), - [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_operator, 1), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_operator, 1), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 2), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 2, .production_id = 76), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(201), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, .production_id = 41), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 4, .production_id = 142), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 3, .production_id = 107), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 1), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 1), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 4), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 1), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__navigable_type_expression, 1), SHIFT(4823), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_specifier, 1), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), - [8090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), SHIFT_REPEAT(4022), - [8093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), SHIFT_REPEAT(4355), - [8096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), SHIFT_REPEAT(2155), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [8107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2), SHIFT_REPEAT(4082), - [8110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2), SHIFT_REPEAT(4082), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2), - [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 2), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [8123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__navigable_type_expression, 1), SHIFT(4669), - [8126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2), SHIFT_REPEAT(4082), - [8129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat1, 2), SHIFT_REPEAT(4082), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_specifier, 2), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 2), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_attributes, 1), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 5), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 73), - [8154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2), SHIFT_REPEAT(4407), - [8157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), SHIFT(4493), - [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 67), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [8164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), SHIFT(4494), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_specifier, 1), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4), - [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, .production_id = 30), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [8207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3), - [8209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [8211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lambda_type_declaration_repeat1, 2), SHIFT_REPEAT(4439), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 3), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [8222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat2, 2), SHIFT_REPEAT(4082), - [8225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat2, 2), SHIFT_REPEAT(4082), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__attribute_argument_repeat2, 2), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, .production_id = 68), SHIFT_REPEAT(4232), - [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), SHIFT(4627), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [8306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), SHIFT(4628), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_specifier, 2), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 2), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 1), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(4067), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2), SHIFT_REPEAT(3022), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type_parameters, 1), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 6), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2), SHIFT_REPEAT(4365), - [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), SHIFT(4736), - [8431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), SHIFT(4775), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [8436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 17), SHIFT(4777), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type_parameters, 2), - [8459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(4135), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__no_expr_pattern_already_bound, 1, .production_id = 18), SHIFT(4832), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__attribute_argument_repeat1, 2), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 3), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 3), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 3), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [8523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(4077), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, .production_id = 109), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 146), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(4632), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 145), - [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, .production_id = 195), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [8571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(3463), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 1, .production_id = 15), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 1, .production_id = 17), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_attribute, 3), - [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_attribute, 3), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 4), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [8606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(4697), - [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 4, .production_id = 125), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 4, .production_id = 126), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [8627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 13), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 13), - [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__uni_character_literal, 3), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 3), - [8639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 74), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 74), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declaration, 1, .production_id = 100), - [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 96), SHIFT_REPEAT(145), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 174), - [8652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(4632), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [8659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 1), - [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 1), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 5, .production_id = 159), - [8669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(4771), - [8672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations_repeat1, 2), - [8674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations_repeat1, 2), SHIFT_REPEAT(971), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [8679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(4695), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_str_text, 1), - [8688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_str_text, 1), - [8690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_escaped_char, 1), - [8692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_escaped_char, 1), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 175), - [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 1), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 3, .production_id = 90), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 90), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inheritance_specifiers, 1), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [8744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters, 2, .production_id = 68), SHIFT_REPEAT(4244), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 126), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(103), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 2, .production_id = 135), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [8798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inheritance_specifiers_repeat1, 2), SHIFT_REPEAT(3211), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inheritance_specifiers_repeat1, 2), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_function_decl, 1, .production_id = 4), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(3471), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [8864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 13), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 13), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [8874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 1), - [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 1), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 159), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 125), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_str_text, 1), - [8896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_str_text, 1), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 1, .production_id = 101), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [8968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, .production_id = 135), - [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, .production_id = 135), SHIFT_REPEAT(1363), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inheritance_specifiers, 2), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__annotated_inheritance_specifier, 2), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2, .production_id = 15), - [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 108), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__availability_argument, 2), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2, .production_id = 17), - [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, .production_id = 58), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [9076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 1, .production_id = 4), - [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__availability_argument_repeat1, 2), - [9080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__availability_argument_repeat1, 2), SHIFT_REPEAT(6508), - [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 2, .production_id = 20), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 4, .production_id = 209), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 5, .production_id = 210), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_argument, 2), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constructor_value_arguments_repeat1, 2), - [9101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_value_arguments_repeat1, 2), SHIFT_REPEAT(187), - [9104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 1, .production_id = 9), - [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(4236), - [9109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 8, .production_id = 195), - [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 2, .production_id = 19), - [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 5), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 145), - [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, .production_id = 175), - [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, .production_id = 174), - [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 3, .production_id = 71), - [9133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 146), - [9135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(4104), - [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 67), - [9140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__availability_argument, 3), - [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 30), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [9150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 109), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 3, .production_id = 168), - [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 3, .production_id = 136), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_requirements, 2), - [9188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, .production_id = 134), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [9228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(199), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 90), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 173), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [9259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_condition_repeat1, 2), - [9261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_availability_condition_repeat1, 2), SHIFT_REPEAT(4360), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 5), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, .production_id = 12), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [9332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 144), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, .production_id = 68), - [9440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, .production_id = 68), SHIFT_REPEAT(4292), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 106), SHIFT_REPEAT(3149), - [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 106), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__playground_literal_repeat1, 2), - [9492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__playground_literal_repeat1, 2), SHIFT_REPEAT(4759), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [9499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5955), - [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, .production_id = 38), - [9504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 1, .production_id = 40), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [9524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_entry_repeat1, 2), SHIFT_REPEAT(125), - [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_entry_repeat1, 2), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 2, .production_id = 136), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [9553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 96), SHIFT_REPEAT(143), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declaration, 2, .production_id = 133), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [9570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2), SHIFT_REPEAT(4348), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [9621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__tuple_pattern_repeat1, 2), - [9623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__tuple_pattern_repeat1, 2), SHIFT_REPEAT(123), - [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_requirements, 3), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [9634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 4, .production_id = 136), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 4, .production_id = 168), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_pattern, 1, .production_id = 15), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [9684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 125), - [9686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(4016), - [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 126), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, .production_id = 87), - [9711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, .production_id = 87), SHIFT_REPEAT(2873), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_str_interpolation, 3, .production_id = 74), - [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 2, .production_id = 75), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, .production_id = 117), - [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, .production_id = 117), SHIFT_REPEAT(188), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, .production_id = 81), - [9789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, .production_id = 81), SHIFT_REPEAT(520), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [9826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, .production_id = 87), SHIFT_REPEAT(429), - [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, .production_id = 87), - [9831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, .production_id = 89), SHIFT_REPEAT(344), - [9834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, .production_id = 89), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [9882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 96), SHIFT_REPEAT(142), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, .production_id = 106), - [9983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, .production_id = 106), SHIFT_REPEAT(3123), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 5, .production_id = 168), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 159), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [10230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 2, .production_id = 82), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_constructor_function_decl, 2, .production_id = 20), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_function_decl, 2, .production_id = 4), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, .production_id = 107), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, .production_id = 49), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [10292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 58), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [10304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 2, .production_id = 83), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, .production_id = 116), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 3, .production_id = 12), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, .production_id = 48), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 3, .production_id = 121), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [10388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 1, .production_id = 45), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern_item, 1, .production_id = 15), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [10448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern_item, 3, .production_id = 129), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [10596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 4, .production_id = 124), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 6, .production_id = 182), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 3, .production_id = 92), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [10830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 7, .production_id = 199), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 5, .production_id = 158), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [10900] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_swift_external_scanner_create(void); -void tree_sitter_swift_external_scanner_destroy(void *); -bool tree_sitter_swift_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_swift_external_scanner_serialize(void *, char *); -void tree_sitter_swift_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_swift(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, - .parse_actions = ts_parse_actions, - .symbol_names = ts_symbol_names, - .field_names = ts_field_names, - .field_map_slices = ts_field_map_slices, - .field_map_entries = ts_field_map_entries, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .external_scanner = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_swift_external_scanner_create, - tree_sitter_swift_external_scanner_destroy, - tree_sitter_swift_external_scanner_scan, - tree_sitter_swift_external_scanner_serialize, - tree_sitter_swift_external_scanner_deserialize, - }, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/vendored_parsers/tree-sitter-swift/src/scanner.c b/vendored_parsers/tree-sitter-swift/src/scanner.c deleted file mode 100644 index e7878fa92..000000000 --- a/vendored_parsers/tree-sitter-swift/src/scanner.c +++ /dev/null @@ -1,814 +0,0 @@ -#include -#include -#include - -enum TokenType { - BLOCK_COMMENT, - RAW_STR_PART, - RAW_STR_CONTINUING_INDICATOR, - RAW_STR_END_PART, - IMPLICIT_SEMI, - EXPLICIT_SEMI, - ARROW_OPERATOR, - DOT_OPERATOR, - CONJUNCTION_OPERATOR, - DISJUNCTION_OPERATOR, - NIL_COALESCING_OPERATOR, - EQUAL_SIGN, - EQ_EQ, - PLUS_THEN_WS, - MINUS_THEN_WS, - BANG, - THROWS_KEYWORD, - RETHROWS_KEYWORD, - DEFAULT_KEYWORD, - WHERE_KEYWORD, - ELSE_KEYWORD, - CATCH_KEYWORD, - AS_KEYWORD, - AS_QUEST, - AS_BANG, - ASYNC_KEYWORD, - CUSTOM_OPERATOR, -}; - -#define OPERATOR_COUNT 20 - -const char* OPERATORS[OPERATOR_COUNT] = { - "->", - ".", - "&&", - "||", - "??", - "=", - "==", - "+", - "-", - "!", - "throws", - "rethrows", - "default", - "where", - "else", - "catch", - "as", - "as?", - "as!", - "async" -}; - -enum IllegalTerminatorGroup { - ALPHANUMERIC, - OPERATOR_SYMBOLS, - OPERATOR_OR_DOT, - NON_WHITESPACE -}; - -const enum IllegalTerminatorGroup OP_ILLEGAL_TERMINATORS[OPERATOR_COUNT] = { - OPERATOR_SYMBOLS, // -> - OPERATOR_OR_DOT, // . - OPERATOR_SYMBOLS, // && - OPERATOR_SYMBOLS, // || - OPERATOR_SYMBOLS, // ?? - OPERATOR_SYMBOLS, // = - OPERATOR_SYMBOLS, // == - NON_WHITESPACE, // + - NON_WHITESPACE, // - - OPERATOR_SYMBOLS, // ! - ALPHANUMERIC, // throws - ALPHANUMERIC, // rethrows - ALPHANUMERIC, // default - ALPHANUMERIC, // where - ALPHANUMERIC, // else - ALPHANUMERIC, // catch - ALPHANUMERIC, // as - OPERATOR_SYMBOLS, // as? - OPERATOR_SYMBOLS, // as! - ALPHANUMERIC // async -}; - -const enum TokenType OP_SYMBOLS[OPERATOR_COUNT] = { - ARROW_OPERATOR, - DOT_OPERATOR, - CONJUNCTION_OPERATOR, - DISJUNCTION_OPERATOR, - NIL_COALESCING_OPERATOR, - EQUAL_SIGN, - EQ_EQ, - PLUS_THEN_WS, - MINUS_THEN_WS, - BANG, - THROWS_KEYWORD, - RETHROWS_KEYWORD, - DEFAULT_KEYWORD, - WHERE_KEYWORD, - ELSE_KEYWORD, - CATCH_KEYWORD, - AS_KEYWORD, - AS_QUEST, - AS_BANG, - ASYNC_KEYWORD -}; - -#define RESERVED_OP_COUNT 31 - -const char* RESERVED_OPS[RESERVED_OP_COUNT] = { - "/", - "=", - "-", - "+", - "!", - "*", - "%", - "<", - ">", - "&", - "|", - "^", - "?", - "~", - ".", - "..", - "->", - "/*", - "*/", - "+=", - "-=", - "*=", - "/=", - "%=", - ">>", - "<<", - "++", - "--", - "===", - "...", - "..<" -}; - -bool is_cross_semi_token(enum TokenType op) { - switch(op) { - case ARROW_OPERATOR: - case DOT_OPERATOR: - case CONJUNCTION_OPERATOR: - case DISJUNCTION_OPERATOR: - case NIL_COALESCING_OPERATOR: - case EQUAL_SIGN: - case EQ_EQ: - case PLUS_THEN_WS: - case MINUS_THEN_WS: - case THROWS_KEYWORD: - case RETHROWS_KEYWORD: - case DEFAULT_KEYWORD: - case WHERE_KEYWORD: - case ELSE_KEYWORD: - case CATCH_KEYWORD: - case AS_KEYWORD: - case AS_QUEST: - case AS_BANG: - case ASYNC_KEYWORD: - case CUSTOM_OPERATOR: - return true; - case BANG: - default: - return false; - } -} - -#define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 -const uint32_t NON_CONSUMING_CROSS_SEMI_CHARS[NON_CONSUMING_CROSS_SEMI_CHAR_COUNT] = { '?', ':', '{' }; - -/** - * All possible results of having performed some sort of parsing. - * - * A parser can return a result along two dimensions: - * 1. Should the scanner continue trying to find another result? - * 2. Was some result produced by this parsing attempt? - * - * These are flattened into a single enum together. When the function returns one of the `TOKEN_FOUND` cases, it - * will always populate its `symbol_result` field. When it returns one of the `STOP_PARSING` cases, callers should - * immediately return (with the value, if there is one). - */ -enum ParseDirective { - CONTINUE_PARSING_NOTHING_FOUND, - CONTINUE_PARSING_TOKEN_FOUND, - CONTINUE_PARSING_SLASH_CONSUMED, - STOP_PARSING_NOTHING_FOUND, - STOP_PARSING_TOKEN_FOUND, - STOP_PARSING_END_OF_FILE -}; - -struct ScannerState { - uint32_t ongoing_raw_str_hash_count; -}; - -void *tree_sitter_swift_external_scanner_create() { - return calloc(0, sizeof(struct ScannerState)); -} - -void tree_sitter_swift_external_scanner_destroy(void *payload) { - free(payload); -} - -void tree_sitter_swift_external_scanner_reset(void *payload) { - struct ScannerState *state = (struct ScannerState *)payload; - state->ongoing_raw_str_hash_count = 0; -} - -unsigned tree_sitter_swift_external_scanner_serialize(void *payload, char *buffer) { - struct ScannerState *state = (struct ScannerState *)payload; - uint32_t hash_count = state->ongoing_raw_str_hash_count; - buffer[0] = (hash_count >> 24) & 0xff; - buffer[1] = (hash_count >> 16) & 0xff; - buffer[2] = (hash_count >> 8) & 0xff; - buffer[3] = (hash_count) & 0xff; - return 4; -} - -void tree_sitter_swift_external_scanner_deserialize( - void *payload, - const char *buffer, - unsigned length -) { - if (length < 4) { - return; - } - - uint32_t hash_count = ( - (((uint32_t) buffer[0]) << 24) | - (((uint32_t) buffer[1]) << 16) | - (((uint32_t) buffer[2]) << 8) | - (((uint32_t) buffer[3])) - ); - struct ScannerState *state = (struct ScannerState *)payload; - state->ongoing_raw_str_hash_count = hash_count; -} - -static void advance(TSLexer *lexer) { - lexer->advance(lexer, false); -} - -static bool should_treat_as_wspace(int32_t character) { - return iswspace(character) || (((int32_t) ';') == character); -} - -static int32_t encountered_op_count(bool *encountered_operator) { - int32_t encountered = 0; - for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { - if (encountered_operator[op_idx]) { - encountered++; - } - } - - return encountered; -} - -static bool any_reserved_ops(uint8_t *encountered_reserved_ops) { - for (int op_idx = 0; op_idx < RESERVED_OP_COUNT; op_idx++) { - if (encountered_reserved_ops[op_idx] == 2) { - return true; - } - } - - return false; -} - -static bool is_legal_custom_operator( - int32_t char_idx, - int32_t first_char, - int32_t cur_char -) { - bool is_first_char = !char_idx; - switch (cur_char) { - case '=': - case '-': - case '+': - case '!': - case '%': - case '<': - case '>': - case '&': - case '|': - case '^': - case '?': - case '~': - return true; - case '.': - // Grammar allows `.` for any operator that starts with `.` - return is_first_char || first_char == '.'; - case '*': - case '/': - // Not listed in the grammar, but `/*` and `//` can't be the start of an operator since they start comments - return char_idx != 1 || first_char != '/'; - default: - if ( - (cur_char >= 0x00A1 && cur_char <= 0x00A7) || - (cur_char == 0x00A9) || - (cur_char == 0x00AB) || - (cur_char == 0x00AC) || - (cur_char == 0x00AE) || - (cur_char >= 0x00B0 && cur_char <= 0x00B1) || - (cur_char == 0x00B6) || - (cur_char == 0x00BB) || - (cur_char == 0x00BF) || - (cur_char == 0x00D7) || - (cur_char == 0x00F7) || - (cur_char >= 0x2016 && cur_char <= 0x2017) || - (cur_char >= 0x2020 && cur_char <= 0x2027) || - (cur_char >= 0x2030 && cur_char <= 0x203E) || - (cur_char >= 0x2041 && cur_char <= 0x2053) || - (cur_char >= 0x2055 && cur_char <= 0x205E) || - (cur_char >= 0x2190 && cur_char <= 0x23FF) || - (cur_char >= 0x2500 && cur_char <= 0x2775) || - (cur_char >= 0x2794 && cur_char <= 0x2BFF) || - (cur_char >= 0x2E00 && cur_char <= 0x2E7F) || - (cur_char >= 0x3001 && cur_char <= 0x3003) || - (cur_char >= 0x3008 && cur_char <= 0x3020) || - (cur_char == 0x3030) - ) { - return true; - } else if ( - (cur_char >= 0x0300 && cur_char <= 0x036f) || - (cur_char >= 0x1DC0 && cur_char <= 0x1DFF) || - (cur_char >= 0x20D0 && cur_char <= 0x20FF) || - (cur_char >= 0xFE00 && cur_char <= 0xFE0F) || - (cur_char >= 0xFE20 && cur_char <= 0xFE2F) || - (cur_char >= 0xE0100 && cur_char <= 0xE01EF) - ) { - return !is_first_char; - } else { - return false; - } - } -} - -static bool eat_operators( - TSLexer *lexer, - const bool *valid_symbols, - bool mark_end, - const int32_t prior_char, - enum TokenType *symbol_result -) { - bool possible_operators[OPERATOR_COUNT]; - uint8_t reserved_operators[RESERVED_OP_COUNT]; - for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { - possible_operators[op_idx] = valid_symbols[OP_SYMBOLS[op_idx]] && (!prior_char || OPERATORS[op_idx][0] == prior_char); - } - for (int op_idx = 0; op_idx < RESERVED_OP_COUNT; op_idx++) { - reserved_operators[op_idx] = !prior_char || RESERVED_OPS[op_idx][0] == prior_char; - } - - bool possible_custom_operator = valid_symbols[CUSTOM_OPERATOR]; - int32_t first_char = prior_char ? prior_char : lexer->lookahead; - int32_t last_examined_char = first_char; - - int32_t str_idx = prior_char ? 1 : 0; - int32_t full_match = -1; - while(true) { - for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { - if (!possible_operators[op_idx]) { - continue; - } - - if (OPERATORS[op_idx][str_idx] == '\0') { - // Make sure that the operator is allowed to have the next character as its lookahead. - enum IllegalTerminatorGroup illegal_terminators = OP_ILLEGAL_TERMINATORS[op_idx]; - switch (lexer->lookahead) { - // See "Operators": - // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 - case '/': - case '=': - case '-': - case '+': - case '!': - case '*': - case '%': - case '<': - case '>': - case '&': - case '|': - case '^': - case '?': - case '~': - if (illegal_terminators == OPERATOR_SYMBOLS) { - break; - } // Otherwise, intentionally fall through to the OPERATOR_OR_DOT case - // fall through - case '.': - if (illegal_terminators == OPERATOR_OR_DOT) { - break; - } // Otherwise, fall through to DEFAULT which checks its groups directly - // fall through - default: - if (iswalnum(lexer->lookahead) && illegal_terminators == ALPHANUMERIC) { - break; - } - - if (!iswspace(lexer->lookahead) && illegal_terminators == NON_WHITESPACE) { - break; - } - - full_match = op_idx; - if (mark_end) { - lexer->mark_end(lexer); - } - } - - possible_operators[op_idx] = false; - continue; - } - - if (OPERATORS[op_idx][str_idx] != lexer->lookahead) { - possible_operators[op_idx] = false; - continue; - } - } - - for (int op_idx = 0; op_idx < RESERVED_OP_COUNT; op_idx++) { - if (!reserved_operators[op_idx]) { - continue; - } - - if (RESERVED_OPS[op_idx][str_idx] == '\0') { - reserved_operators[op_idx] = 0; - continue; - } - - if (RESERVED_OPS[op_idx][str_idx] != lexer->lookahead) { - reserved_operators[op_idx] = 0; - continue; - } - - if (RESERVED_OPS[op_idx][str_idx + 1] == '\0') { - reserved_operators[op_idx] = 2; - continue; - } - } - - possible_custom_operator = possible_custom_operator && is_legal_custom_operator( - str_idx, - first_char, - lexer->lookahead - ); - - uint32_t encountered_ops = encountered_op_count(possible_operators); - if (encountered_ops == 0) { - if (!possible_custom_operator) { - break; - } else if (mark_end && full_match == -1) { - lexer->mark_end(lexer); - } - } - - last_examined_char = lexer->lookahead; - lexer->advance(lexer, false); - str_idx += 1; - - if (encountered_ops == 0 && !is_legal_custom_operator( - str_idx, - first_char, - lexer->lookahead - )) { - break; - } - } - - if (full_match != -1) { - *symbol_result = OP_SYMBOLS[full_match]; - return true; - } - - if (possible_custom_operator && !any_reserved_ops(reserved_operators)) { - if ((last_examined_char != '<' || iswspace(lexer->lookahead)) && mark_end) { - lexer->mark_end(lexer); - } - *symbol_result = CUSTOM_OPERATOR; - return true; - } - - return false; -} - -static enum ParseDirective eat_comment( - TSLexer *lexer, - const bool *valid_symbols, - bool mark_end, - enum TokenType *symbol_result -) { - if (lexer->lookahead != '/') { - return CONTINUE_PARSING_NOTHING_FOUND; - } - - advance(lexer); - - if (lexer->lookahead != '*') { - return CONTINUE_PARSING_SLASH_CONSUMED; - } - - advance(lexer); - - bool after_star = false; - unsigned nesting_depth = 1; - for (;;) { - switch (lexer->lookahead) { - case '\0': - return STOP_PARSING_END_OF_FILE; - case '*': - advance(lexer); - after_star = true; - break; - case '/': - if (after_star) { - advance(lexer); - after_star = false; - nesting_depth--; - if (nesting_depth == 0) { - if (mark_end) { - lexer->mark_end(lexer); - } - *symbol_result = BLOCK_COMMENT; - return STOP_PARSING_TOKEN_FOUND; - } - } else { - advance(lexer); - after_star = false; - if (lexer->lookahead == '*') { - nesting_depth++; - advance(lexer); - } - } - break; - default: - advance(lexer); - after_star = false; - break; - } - } -} - -static enum ParseDirective eat_whitespace( - TSLexer *lexer, - const bool *valid_symbols, - enum TokenType *symbol_result -) { - enum ParseDirective ws_directive = CONTINUE_PARSING_NOTHING_FOUND; - bool semi_is_valid = valid_symbols[IMPLICIT_SEMI] && valid_symbols[EXPLICIT_SEMI]; - uint32_t lookahead; - while (should_treat_as_wspace(lookahead = lexer->lookahead)) { - if (lookahead == ';') { - if (semi_is_valid) { - ws_directive = STOP_PARSING_TOKEN_FOUND; - lexer->advance(lexer, false); - } - - break; - } - - lexer->advance(lexer, true); - - lexer->mark_end(lexer); - - if (ws_directive == CONTINUE_PARSING_NOTHING_FOUND && (lookahead == '\n' || lookahead == '\r')) { - ws_directive = CONTINUE_PARSING_TOKEN_FOUND; - } - } - - enum ParseDirective any_comment = CONTINUE_PARSING_NOTHING_FOUND; - if (ws_directive == CONTINUE_PARSING_TOKEN_FOUND && lookahead == '/') { - bool has_seen_single_comment = false; - while (lexer->lookahead == '/') { - // It's possible that this is a comment - start an exploratory mission to find out, and if it is, look for what - // comes after it. We care about what comes after it for the purpose of suppressing the newline. - - enum TokenType multiline_comment_result; - any_comment = eat_comment(lexer, valid_symbols, /* mark_end */ false, &multiline_comment_result); - if (any_comment == STOP_PARSING_TOKEN_FOUND) { - // This is a multiline comment. This scanner should be parsing those, so we might want to bail out and - // emit it instead. However, we only want to do that if we haven't advanced through a _single_ line - // comment on the way - otherwise that will get lumped into this. - if (!has_seen_single_comment) { - lexer->mark_end(lexer); - *symbol_result = multiline_comment_result; - return STOP_PARSING_TOKEN_FOUND; - } - } else if (any_comment == STOP_PARSING_END_OF_FILE) { - return STOP_PARSING_END_OF_FILE; - } else if (any_comment == CONTINUE_PARSING_SLASH_CONSUMED) { - // We accidentally ate a slash -- we should actually bail out, say we saw nothing, and let the next pass - // take it from after the newline. - return CONTINUE_PARSING_SLASH_CONSUMED; - } else if (lexer->lookahead == '/') { - // There wasn't a multiline comment, which we know means that the comment parser ate its `/` and then - // bailed out. If it had seen anything comment-like after that first `/` it would have continued going - // and eventually had a well-formed comment or an EOF. Thus, if we're currently looking at a `/`, it's - // the second one of those and it means we have a single-line comment. - has_seen_single_comment = true; - while (lexer->lookahead != '\n' && lexer->lookahead != '\0') { - lexer->advance(lexer, true); - } - } else if (iswspace(lexer->lookahead)) { - // We didn't see any type of comment - in fact, we saw an operator that we don't normally treat as an - // operator. Still, this is a reason to stop parsing. - return STOP_PARSING_NOTHING_FOUND; - } - - // If we skipped through some comment, we're at whitespace now, so advance. - while(iswspace(lexer->lookahead)) { - any_comment = CONTINUE_PARSING_NOTHING_FOUND; // We're advancing, so clear out the comment - lexer->advance(lexer, true); - } - } - - enum TokenType operator_result; - bool saw_operator = eat_operators( - lexer, - valid_symbols, - /* mark_end */ false, - '\0', - &operator_result - ); - if (saw_operator) { - // The operator we saw should suppress the newline, so bail out. - return STOP_PARSING_NOTHING_FOUND; - } else { - // Promote the implicit newline to an explicit one so we don't check for operators again. - *symbol_result = IMPLICIT_SEMI; - ws_directive = STOP_PARSING_TOKEN_FOUND; - } - } - - // Let's consume operators that can live after a "semicolon" style newline. Before we do that, though, we want to - // check for a set of characters that we do not consume, but that still suppress the semi. - if (ws_directive == CONTINUE_PARSING_TOKEN_FOUND) { - for (int i = 0; i < NON_CONSUMING_CROSS_SEMI_CHAR_COUNT; i++) { - if (NON_CONSUMING_CROSS_SEMI_CHARS[i] == lookahead) { - return CONTINUE_PARSING_NOTHING_FOUND; - } - } - } - - if (semi_is_valid && ws_directive != CONTINUE_PARSING_NOTHING_FOUND) { - *symbol_result = lookahead == ';' ? EXPLICIT_SEMI : IMPLICIT_SEMI; - return ws_directive; - } - - return CONTINUE_PARSING_NOTHING_FOUND; -} - -static bool eat_raw_str_part( - struct ScannerState *state, - TSLexer *lexer, - const bool *valid_symbols, - enum TokenType *symbol_result -) { - uint32_t hash_count = state->ongoing_raw_str_hash_count; - if (!valid_symbols[RAW_STR_PART]) { - return false; - } else if (hash_count == 0) { - // If this is a raw_str_part, it's the first one - look for hashes - while (lexer->lookahead == '#') { - hash_count += 1; - advance(lexer); - } - - if (hash_count == 0) { - return false; - } - - if (lexer->lookahead == '"') { - advance(lexer); - } else { - return false; - } - - } else if (valid_symbols[RAW_STR_CONTINUING_INDICATOR]) { - // This is the end of an interpolation - now it's another raw_str_part. This is a synthetic - // marker to tell us that the grammar just consumed a `(` symbol to close a raw - // interpolation (since we don't want to fire on every `(` in existence). We don't have - // anything to do except continue. - } else { - return false; - } - - // We're in a state where anything other than `hash_count` hash symbols in a row should be eaten - // and is part of a string. - // The last character _before_ the hashes will tell us what happens next. - // Matters are also complicated by the fact that we don't want to consume every character we - // visit; if we see a `\#(`, for instance, with the appropriate number of hash symbols, we want - // to end our parsing _before_ that sequence. This allows highlighting tools to treat that as a - // separate token. - while (lexer->lookahead != '\0') { - uint8_t last_char = '\0'; - lexer->mark_end(lexer); // We always want to parse thru the start of the string so far - // Advance through anything that isn't a hash symbol, because we want to count those. - while (lexer->lookahead != '#' && lexer->lookahead != '\0') { - last_char = lexer->lookahead; - advance(lexer); - if (last_char != '\\' || lexer->lookahead == '\\') { - // Mark a new end, but only if we didn't just advance past a `\` symbol, since we - // don't want to consume that. Exception: if this is a `\` that happens _right - // after_ another `\`, we for some reason _do_ want to consume that, because - // apparently that is parsed as a literal `\` followed by something escaped. - lexer->mark_end(lexer); - } - } - - // We hit at least one hash - count them and see if they match. - uint32_t current_hash_count = 0; - while (lexer->lookahead == '#' && current_hash_count < hash_count) { - current_hash_count += 1; - advance(lexer); - } - - // If we saw exactly the right number of hashes, one of three things is true: - // 1. We're trying to interpolate into this string. - // 2. The string just ended. - // 3. This was just some hash characters doing nothing important. - if (current_hash_count == hash_count) { - if (last_char == '\\' && lexer->lookahead == '(') { - // Interpolation case! Don't consume those chars; they get saved for grammar.js. - *symbol_result = RAW_STR_PART; - state->ongoing_raw_str_hash_count = hash_count; - return true; - } else if (last_char == '"') { - // The string is finished! Mark the end here, on the very last hash symbol. - lexer->mark_end(lexer); - *symbol_result = RAW_STR_END_PART; - state->ongoing_raw_str_hash_count = 0; - return true; - } - // Nothing special happened - let the string continue. - } - } - - return false; -} - -bool tree_sitter_swift_external_scanner_scan( - void *payload, - TSLexer *lexer, - const bool *valid_symbols -) { - // Figure out our scanner state - struct ScannerState *state = (struct ScannerState *)payload; - - // Consume any whitespace at the start. - enum TokenType ws_result; - enum ParseDirective ws_directive = eat_whitespace(lexer, valid_symbols, &ws_result); - if (ws_directive == STOP_PARSING_TOKEN_FOUND) { - lexer->result_symbol = ws_result; - return true; - } - - if (ws_directive == STOP_PARSING_NOTHING_FOUND || ws_directive == STOP_PARSING_END_OF_FILE) { - return false; - } - - bool has_ws_result = (ws_directive == CONTINUE_PARSING_TOKEN_FOUND); - - // Now consume comments (before custom operators so that those aren't treated as comments) - enum TokenType comment_result; - enum ParseDirective comment = ws_directive == CONTINUE_PARSING_SLASH_CONSUMED ? ws_directive : eat_comment(lexer, valid_symbols, /* mark_end */ true, &comment_result); - if (comment == STOP_PARSING_TOKEN_FOUND) { - lexer->mark_end(lexer); - lexer->result_symbol = comment_result; - return true; - } - - if (comment == STOP_PARSING_END_OF_FILE) { - return false; - } - // Now consume any operators that might cause our whitespace to be suppressed. - enum TokenType operator_result; - bool saw_operator = eat_operators( - lexer, - valid_symbols, - /* mark_end */ !has_ws_result, - comment == CONTINUE_PARSING_SLASH_CONSUMED ? '/' : '\0', - &operator_result - ); - - if (saw_operator && (!has_ws_result || is_cross_semi_token(operator_result))) { - lexer->result_symbol = operator_result; - if (has_ws_result) lexer->mark_end(lexer); - return true; - } - - if (has_ws_result) { - // Don't `mark_end`, since we may have advanced through some operators. - lexer->result_symbol = ws_result; - return true; - } - - // NOTE: this will consume any `#` characters it sees, even if it does not find a result. Keep - // it at the end so that it doesn't interfere with special literals or selectors! - enum TokenType raw_str_result; - bool saw_raw_str_part = eat_raw_str_part(state, lexer, valid_symbols, &raw_str_result); - if (saw_raw_str_part) { - lexer->result_symbol = raw_str_result; - return true; - } - - return false; -} - diff --git a/vendored_parsers/tree-sitter-swift/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-swift/src/tree_sitter/parser.h deleted file mode 100644 index 2b14ac104..000000000 --- a/vendored_parsers/tree-sitter-swift/src/tree_sitter/parser.h +++ /dev/null @@ -1,224 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -typedef uint16_t TSStateId; - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -typedef struct { - bool visible; - bool named; - bool supertype; -} TSSymbolMetadata; - -typedef struct TSLexer TSLexer; - -struct TSLexer { - int32_t lookahead; - TSSymbol result_symbol; - void (*advance)(TSLexer *, bool); - void (*mark_end)(TSLexer *); - uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(const TSLexer *); - bool (*eof)(const TSLexer *); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -struct TSLanguage { - uint32_t version; - uint32_t symbol_count; - uint32_t alias_count; - uint32_t token_count; - uint32_t external_token_count; - uint32_t state_count; - uint32_t large_state_count; - uint32_t production_id_count; - uint32_t field_count; - uint16_t max_alias_sequence_length; - const uint16_t *parse_table; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSParseActionEntry *parse_actions; - const char * const *symbol_names; - const char * const *field_names; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const TSSymbolMetadata *symbol_metadata; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; - bool (*lex_fn)(TSLexer *, TSStateId); - bool (*keyword_lex_fn)(TSLexer *, TSStateId); - TSSymbol keyword_capture_token; - struct { - const bool *states; - const TSSymbol *symbol_map; - void *(*create)(void); - void (*destroy)(void *); - bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); - unsigned (*serialize)(void *, char *); - void (*deserialize)(void *, const char *, unsigned); - } external_scanner; - const TSStateId *primary_state_ids; -}; - -/* - * Lexer Macros - */ - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - bool eof = false; \ - int32_t lookahead; \ - goto start; \ - next_state: \ - lexer->advance(lexer, skip); \ - start: \ - skip = false; \ - lookahead = lexer->lookahead; - -#define ADVANCE(state_value) \ - { \ - state = state_value; \ - goto next_state; \ - } - -#define SKIP(state_value) \ - { \ - skip = true; \ - state = state_value; \ - goto next_state; \ - } - -#define ACCEPT_TOKEN(symbol_value) \ - result = true; \ - lexer->result_symbol = symbol_value; \ - lexer->mark_end(lexer); - -#define END_STATE() return result; - -/* - * Parse Table Macros - */ - -#define SMALL_STATE(id) id - LARGE_STATE_COUNT - -#define STATE(id) id - -#define ACTIONS(id) id - -#define SHIFT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value \ - } \ - }} - -#define SHIFT_REPEAT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value, \ - .repetition = true \ - } \ - }} - -#define SHIFT_EXTRA() \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .extra = true \ - } \ - }} - -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_ diff --git a/vendored_parsers/tree-sitter-swift/test-npm-package/index.js b/vendored_parsers/tree-sitter-swift/test-npm-package/index.js deleted file mode 100644 index fea78aa3a..000000000 --- a/vendored_parsers/tree-sitter-swift/test-npm-package/index.js +++ /dev/null @@ -1,25 +0,0 @@ -const Parser = require("tree-sitter"); -const Swift = require("tree-sitter-swift"); - -const parser = new Parser(); -parser.setLanguage(Swift); - -const sourceCode = ` -struct HelloWorld { - func a() { - print("Hello, world!") - } -} - -HelloWorld().a() -`; - -const tree = parser.parse(sourceCode); -console.log(tree.rootNode.toString()); - -const assert = require("assert"); -const smallTree = parser.parse(`_ = "Hello!"\n`); -assert.equal( - `(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal text: (line_str_text))))`, - smallTree.rootNode.toString() -); diff --git a/vendored_parsers/tree-sitter-swift/test-npm-package/package-lock.json b/vendored_parsers/tree-sitter-swift/test-npm-package/package-lock.json deleted file mode 100644 index 32141b35e..000000000 --- a/vendored_parsers/tree-sitter-swift/test-npm-package/package-lock.json +++ /dev/null @@ -1,1022 +0,0 @@ -{ - "name": "npm-tree-sitter-test", - "version": "1.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "npm-tree-sitter-test", - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "tree-sitter": "^0.20.0", - "tree-sitter-swift": "file:../" - } - }, - "..": { - "name": "tree-sitter-swift", - "version": "0.3.4", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "@types/node": "^16.11.10", - "nan": "^2.15.0", - "tree-sitter-cli": "^0.20.0" - }, - "devDependencies": { - "node-gyp": "^8.4.1", - "prettier": "2.3.2" - } - }, - "node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" - }, - "node_modules/are-we-there-yet": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", - "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "node_modules/decompress-response": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", - "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", - "dependencies": { - "mimic-response": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" - }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", - "bin": { - "detect-libc": "bin/detect-libc.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - }, - "node_modules/gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "dependencies": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "node_modules/github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=" - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "node_modules/mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - }, - "node_modules/nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" - }, - "node_modules/napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" - }, - "node_modules/node-abi": { - "version": "2.30.1", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.30.1.tgz", - "integrity": "sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==", - "dependencies": { - "semver": "^5.4.1" - } - }, - "node_modules/npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "dependencies": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/prebuild-install": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.4.tgz", - "integrity": "sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ==", - "dependencies": { - "detect-libc": "^1.0.3", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^2.21.0", - "npmlog": "^4.0.1", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^3.0.3", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0" - }, - "bin": { - "prebuild-install": "bin.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "node_modules/signal-exit": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", - "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" - }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/simple-get": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz", - "integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==", - "dependencies": { - "decompress-response": "^4.2.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/tree-sitter": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.20.0.tgz", - "integrity": "sha512-tqTdtD1T2cN4aEES0sZCjKTQrc9Ls8H/iYlzpskhGy8yCwNPKBIbK9YuuCg/AxACr8RAY4wMoeCigM1X/A79yg==", - "hasInstallScript": true, - "dependencies": { - "nan": "^2.14.0", - "prebuild-install": "^6.0.1" - } - }, - "node_modules/tree-sitter-swift": { - "resolved": "..", - "link": true - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" - }, - "are-we-there-yet": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", - "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "decompress-response": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", - "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", - "requires": { - "mimic-response": "^2.0.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" - }, - "detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=" - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==" - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - }, - "nan": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", - "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" - }, - "napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" - }, - "node-abi": { - "version": "2.30.1", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.30.1.tgz", - "integrity": "sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==", - "requires": { - "semver": "^5.4.1" - } - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "prebuild-install": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.4.tgz", - "integrity": "sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ==", - "requires": { - "detect-libc": "^1.0.3", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^2.21.0", - "npmlog": "^4.0.1", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^3.0.3", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0" - } - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "signal-exit": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", - "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" - }, - "simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" - }, - "simple-get": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz", - "integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==", - "requires": { - "decompress-response": "^4.2.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - }, - "tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "requires": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "tree-sitter": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.20.0.tgz", - "integrity": "sha512-tqTdtD1T2cN4aEES0sZCjKTQrc9Ls8H/iYlzpskhGy8yCwNPKBIbK9YuuCg/AxACr8RAY4wMoeCigM1X/A79yg==", - "requires": { - "nan": "^2.14.0", - "prebuild-install": "^6.0.1" - } - }, - "tree-sitter-swift": { - "version": "file:..", - "requires": { - "@types/node": "^16.11.10", - "nan": "^2.15.0", - "node-gyp": "^8.4.1", - "prettier": "2.3.2", - "tree-sitter-cli": "^0.20.0" - } - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } - } -} diff --git a/vendored_parsers/tree-sitter-swift/test-npm-package/package.json b/vendored_parsers/tree-sitter-swift/test-npm-package/package.json deleted file mode 100644 index 9d7797e3c..000000000 --- a/vendored_parsers/tree-sitter-swift/test-npm-package/package.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "npm-tree-sitter-test", - "version": "1.0.0", - "description": "", - "main": "index.js", - "scripts": { - "test": "npm install && node index.js" - }, - "author": "", - "license": "MIT", - "dependencies": { - "tree-sitter": "^0.20.0", - "tree-sitter-swift": "file:../" - } -} diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/annotations.txt b/vendored_parsers/tree-sitter-swift/test/corpus/annotations.txt deleted file mode 100755 index 2d4426043..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/annotations.txt +++ /dev/null @@ -1,75 +0,0 @@ -================================================================================ -Annotations -================================================================================ - -@Test -class Empty { } - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (modifiers - (attribute - (user_type - (type_identifier)))) - (type_identifier) - (class_body))) - -================================================================================ -Multiple annotations on a variable -================================================================================ - -class X { - @A @B - override let s: String -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (modifiers - (attribute - (user_type - (type_identifier))) - (attribute - (user_type - (type_identifier))) - (member_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))))))) - -================================================================================ -Multiple annotations on a function -================================================================================ - -class X { - @A @B - func s() -> String { } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (function_declaration - (modifiers - (attribute - (user_type - (type_identifier))) - (attribute - (user_type - (type_identifier)))) - (simple_identifier) - (user_type - (type_identifier)) - (function_body))))) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/classes.txt b/vendored_parsers/tree-sitter-swift/test/corpus/classes.txt deleted file mode 100755 index 9a5357310..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/classes.txt +++ /dev/null @@ -1,1554 +0,0 @@ -================================================================================ -Classes -================================================================================ - -class Empty {} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body))) - -================================================================================ -Class with methods -================================================================================ - -class HelloWorld { - func a() {} - - func b() {} -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (function_declaration - (simple_identifier) - (function_body)) - (function_declaration - (simple_identifier) - (function_body))))) - -================================================================================ -Generic class -================================================================================ - -class Container {} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (type_parameters - (type_parameter - (type_identifier))) - (class_body))) - -================================================================================ -Class with methods and expressions -================================================================================ - -class Strings { - /// Some awesome docummentation! - /// Yay - func aString() -> String { return "Hello World!" } - - func anotherString() -> String { return "Hello" + " " + "World" } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (comment) - (comment) - (function_declaration - (simple_identifier) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (line_string_literal - (line_str_text)))))) - (function_declaration - (simple_identifier) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (additive_expression - (additive_expression - (line_string_literal - (line_str_text)) - (line_string_literal - (line_str_text))) - (line_string_literal - (line_str_text)))))))))) - -================================================================================ -Class with modifiers -================================================================================ - -internal open class Test { - private(set) var isRunning: Bool - internal(set) var isFailed: Bool - /* some comment */ private final func test() { } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (modifiers - (visibility_modifier) - (visibility_modifier)) - (type_identifier) - (class_body - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier)))) - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier)))) - (multiline_comment) - (function_declaration - (modifiers - (visibility_modifier) - (inheritance_modifier)) - (simple_identifier) - (function_body))))) - -================================================================================ -Class with annotations -================================================================================ - -@objc(Test) -class Test : Protocol { - @objc(someArgument:) - dynamic func someFunction(with argument: Int) { } - - @DocumentationAnnotation(help: "Calls this function nicely.") - func someFunction(nice argument: Int) { } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (modifiers - (attribute - (user_type - (type_identifier)) - (simple_identifier))) - (type_identifier) - (inheritance_specifier - (user_type - (type_identifier))) - (class_body - (function_declaration - (modifiers - (attribute - (user_type - (type_identifier)) - (simple_identifier)) - (property_modifier)) - (simple_identifier) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (function_body)) - (function_declaration - (modifiers - (attribute - (user_type - (type_identifier)) - (simple_identifier) - (line_string_literal - (line_str_text)))) - (simple_identifier) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (function_body))))) - -================================================================================ -Class with subscript -================================================================================ - -class RequestManager { - open subscript(task: Task) -> Request? { - get { - return requests[task.identifier] - } - set { - requests[task.identifier] = newValue - } - } -} - -class GenericSubscript { - public subscript(_ t: Wrapper) -> Wrapper { - return t - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (subscript_declaration - (modifiers - (visibility_modifier)) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (optional_type - (user_type - (type_identifier))) - (computed_property - (computed_getter - (getter_specifier) - (statements - (control_transfer_statement - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier)))))))))) - (computed_setter - (setter_specifier) - (statements - (assignment - (directly_assignable_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier)))))))) - (simple_identifier)))))))) - (class_declaration - (type_identifier) - (class_body - (subscript_declaration - (modifiers - (visibility_modifier)) - (type_parameters - (type_parameter - (type_identifier))) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier))))) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier)))) - (computed_property - (statements - (control_transfer_statement - (simple_identifier)))))))) - -================================================================================ -Subscript with multiple arguments -================================================================================ - -class Subscriptable { - public subscript(_ value: D, arg2: Arg2) -> D where D: Decodable { - return value - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (subscript_declaration - (modifiers - (visibility_modifier)) - (type_parameters - (type_parameter - (type_identifier))) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (user_type - (type_identifier)) - (type_constraints - (where_keyword) - (type_constraint - (inheritance_constraint - (identifier - (simple_identifier)) - (user_type - (type_identifier))))) - (computed_property - (statements - (control_transfer_statement - (simple_identifier)))))))) - -================================================================================ -Inheritance -================================================================================ - -class A : B {} - -class D : Protocol1 & Protocol2 { } - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (inheritance_specifier - (user_type - (type_identifier))) - (class_body)) - (class_declaration - (type_identifier) - (inheritance_specifier - (user_type - (type_identifier))) - (inheritance_specifier - (user_type - (type_identifier))) - (class_body))) - -================================================================================ -Properties -================================================================================ - -class Something { - let u: Int = 4 - var v: Int? - lazy var w: Int = x - var x: Int { w } - var y: Int { - get { v } - set(newValue) { } - } - var z: Int { - get { v } - set { return v = newValue } - } -} - -class SomethingElse: ThingProvider { - var thing: String { - guard let thing = optionalThing else { - fatalError() - } - return thing - } - - class override func nothing() { } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (integer_literal)) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (optional_type - (user_type - (type_identifier))))) - (property_declaration - (modifiers - (property_behavior_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (simple_identifier)) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (computed_property - (statements - (simple_identifier)))) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (computed_property - (computed_getter - (getter_specifier) - (statements - (simple_identifier))) - (computed_setter - (setter_specifier) - (simple_identifier)))) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (computed_property - (computed_getter - (getter_specifier) - (statements - (simple_identifier))) - (computed_setter - (setter_specifier) - (statements - (control_transfer_statement - (assignment - (directly_assignable_expression - (simple_identifier)) - (simple_identifier))))))))) - (class_declaration - (type_identifier) - (inheritance_specifier - (user_type - (type_identifier))) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (computed_property - (statements - (guard_statement - (simple_identifier) - (simple_identifier) - (else) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - (control_transfer_statement - (simple_identifier))))) - (function_declaration - (modifiers - (property_modifier) - (member_modifier)) - (simple_identifier) - (function_body))))) - -================================================================================ -Effectful getters -================================================================================ - -class Alphabet { - var a: Int { - get async { 65 } - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (computed_property - (computed_getter - (getter_specifier) - (statements - (integer_literal)))))))) - -================================================================================ -Class declaration without any newlines -================================================================================ - -class Dog { let noise: String = "bark" } -class Cat { let noise: String = "meow"; let claws: String = "retractable" } - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (line_string_literal - (line_str_text))))) - (class_declaration - (type_identifier) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (line_string_literal - (line_str_text))) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (line_string_literal - (line_str_text)))))) - -================================================================================ -Protocol composition types -================================================================================ - -var propertyMap: NodePropertyMap & KeypathSearchable { - return transformProperties -} - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))) - (computed_property - (statements - (control_transfer_statement - (simple_identifier)))))) - -================================================================================ -Structs -================================================================================ - -struct Adder { - var value: Int - - mutating func addOne() { - value += 1 - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier)))) - (function_declaration - (modifiers - (mutation_modifier)) - (simple_identifier) - (function_body - (statements - (assignment - (directly_assignable_expression - (simple_identifier)) - (integer_literal)))))))) - -================================================================================ -Protocols -================================================================================ - -protocol Fallible { - associatedtype FailureType: Error - associatedtype SuccessType = Void - - func getFailure() -> Self.FailureType? - where Self.FailureType: Equatable -} - -public protocol FooProvider { - var foo: String { nonmutating get } -} - -protocol Wrapper { - associatedtype Wrapped: Fallible where Wrapped.FailureType == NSError -} - --------------------------------------------------------------------------------- - -(source_file - (protocol_declaration - (type_identifier) - (protocol_body - (associatedtype_declaration - (type_identifier) - (user_type - (type_identifier))) - (associatedtype_declaration - (type_identifier) - (user_type - (type_identifier))) - (protocol_function_declaration - (simple_identifier) - (optional_type - (user_type - (type_identifier) - (type_identifier))) - (type_constraints - (where_keyword) - (type_constraint - (inheritance_constraint - (identifier - (simple_identifier) - (simple_identifier)) - (user_type - (type_identifier)))))))) - (protocol_declaration - (modifiers - (visibility_modifier)) - (type_identifier) - (protocol_body - (protocol_property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (protocol_property_requirements - (getter_specifier - (mutation_modifier)))))) - (protocol_declaration - (type_identifier) - (protocol_body - (associatedtype_declaration - (type_identifier) - (user_type - (type_identifier)) - (type_constraints - (where_keyword) - (type_constraint - (equality_constraint - (identifier - (simple_identifier) - (simple_identifier)) - (user_type - (type_identifier))))))))) - -================================================================================ -Protocol with subscript -================================================================================ - -public protocol Indexable { - subscript(index: Int) -> T? { get } -} - --------------------------------------------------------------------------------- - -(source_file - (protocol_declaration - (modifiers - (visibility_modifier)) - (type_identifier) - (protocol_body - (subscript_declaration - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (optional_type - (user_type - (type_identifier))) - (computed_property - (computed_getter - (getter_specifier))))))) - -================================================================================ -Typealias -================================================================================ - -class SomeClassWithAlias: NSObject { - typealias ProtocolComposition = Protocol1 & Protocol2 -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (inheritance_specifier - (user_type - (type_identifier))) - (class_body - (typealias_declaration - (type_identifier) - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier))))))) - -================================================================================ -Special constructors -================================================================================ - -class Test { - let a: Int - let b: Int - - init(_ a: Int, _ b: Int) { - self.a = a - self.b = b - } - - convenience override init() { - self.init(0, 0) - } - - required init?(from: String) { - self.init(1, 2) - } - - required init!(from value: Int) { - self.init(value, value) - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier)))) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier)))) - (function_declaration - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (function_body - (statements - (assignment - (directly_assignable_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier)))) - (simple_identifier)) - (assignment - (directly_assignable_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier)))) - (simple_identifier))))) - (function_declaration - (modifiers - (member_modifier) - (member_modifier)) - (function_body - (statements - (call_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (integer_literal)) - (value_argument - (integer_literal)))))))) - (function_declaration - (modifiers - (member_modifier)) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (function_body - (statements - (call_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (integer_literal)) - (value_argument - (integer_literal)))))))) - (function_declaration - (modifiers - (member_modifier)) - (bang) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (function_body - (statements - (call_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (simple_identifier)) - (value_argument - (simple_identifier))))))))))) - -================================================================================ -Deinit -================================================================================ - -class Expensive { - deinit { - cleanUp(self) - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (deinit_declaration - (function_body - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (self_expression))))))))))) - -================================================================================ -Enum classes -================================================================================ - -enum Suit { - case diamonds - case clovers - case hearts - case spades -} - -enum Color { - static let lightSalmon: Color = .red("#ffa07a") - - case red(r: String) - case green(g: Int) - case blue(b: Double) - case r, g, b(Int) - case multicolor(Rgb, _ metadata: [String: String] = [:]) - - func toString() { return "string" } -} - -enum CStyle { - case zero = 0 - case one = 1, two = 2 - case three = 3 -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (enum_class_body - (enum_entry - (simple_identifier)) - (enum_entry - (simple_identifier)) - (enum_entry - (simple_identifier)) - (enum_entry - (simple_identifier)))) - (class_declaration - (type_identifier) - (enum_class_body - (property_declaration - (modifiers - (property_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (call_expression - (prefix_expression - (simple_identifier)) - (call_suffix - (value_arguments - (value_argument - (line_string_literal - (line_str_text))))))) - (enum_entry - (simple_identifier) - (enum_type_parameters - (simple_identifier) - (user_type - (type_identifier)))) - (enum_entry - (simple_identifier) - (enum_type_parameters - (simple_identifier) - (user_type - (type_identifier)))) - (enum_entry - (simple_identifier) - (enum_type_parameters - (simple_identifier) - (user_type - (type_identifier)))) - (enum_entry - (simple_identifier) - (simple_identifier) - (simple_identifier) - (enum_type_parameters - (user_type - (type_identifier)))) - (enum_entry - (simple_identifier) - (enum_type_parameters - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier)) - (user_type - (type_identifier)) - (user_type - (type_identifier)))) - (wildcard_pattern) - (simple_identifier) - (dictionary_type - (user_type - (type_identifier)) - (user_type - (type_identifier))) - (dictionary_literal))) - (function_declaration - (simple_identifier) - (function_body - (statements - (control_transfer_statement - (line_string_literal - (line_str_text)))))))) - (class_declaration - (type_identifier) - (enum_class_body - (enum_entry - (simple_identifier) - (integer_literal)) - (enum_entry - (simple_identifier) - (integer_literal) - (simple_identifier) - (integer_literal)) - (enum_entry - (simple_identifier) - (integer_literal))))) - -================================================================================ -Extensions -================================================================================ - -extension Foo.Bar { - static let baz = "1" - static let boff: String = "2" -} - -extension SpecialDecorator where Self: Decorator, Self.DecoratedType == SpecialType { } - -public extension Foo where T == (arg1: Arg1, arg2: Arg2) { } - -extension [SpecialItem] { -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (user_type - (type_identifier) - (type_identifier)) - (class_body - (property_declaration - (modifiers - (property_modifier)) - (pattern - (simple_identifier)) - (line_string_literal - (line_str_text))) - (property_declaration - (modifiers - (property_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (line_string_literal - (line_str_text))))) - (class_declaration - (user_type - (type_identifier)) - (type_constraints - (where_keyword) - (type_constraint - (inheritance_constraint - (identifier - (simple_identifier)) - (user_type - (type_identifier)))) - (type_constraint - (equality_constraint - (identifier - (simple_identifier) - (simple_identifier)) - (user_type - (type_identifier))))) - (class_body)) - (class_declaration - (modifiers - (visibility_modifier)) - (user_type - (type_identifier)) - (type_constraints - (where_keyword) - (type_constraint - (equality_constraint - (identifier - (simple_identifier)) - (tuple_type - (tuple_type_item - (simple_identifier) - (user_type - (type_identifier))) - (tuple_type_item - (simple_identifier) - (user_type - (type_identifier))))))) - (class_body)) - (class_declaration - (array_type - (user_type - (type_identifier))) - (class_body))) - -================================================================================ -Deprecation -================================================================================ -class Computer { - @available(*, deprecated, message: "See replacement: computeV2") - func compute() { } - - @available(*, deprecated, message: "See replacement: computeV2") - var computeResult: T! - - @available(swift 3.0.2) - @available(iOS 10.0, macOS 10.12, *) - func computeV2() { } -} - -enum ComputeType { - case v2 - - @available(*, deprecated, message: "See replacement: computeV2`") - case v1 -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (type_parameters - (type_parameter - (type_identifier))) - (class_body - (function_declaration - (modifiers - (attribute - (user_type - (type_identifier)) - (simple_identifier) - (simple_identifier) - (line_string_literal - (line_str_text)))) - (simple_identifier) - (function_body)) - (property_declaration - (modifiers - (attribute - (user_type - (type_identifier)) - (simple_identifier) - (simple_identifier) - (line_string_literal - (line_str_text)))) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier)))) - (function_declaration - (modifiers - (attribute - (user_type - (type_identifier)) - (simple_identifier) - (integer_literal) - (integer_literal) - (integer_literal)) - (attribute - (user_type - (type_identifier)) - (simple_identifier) - (integer_literal) - (integer_literal) - (simple_identifier) - (integer_literal) - (integer_literal))) - (simple_identifier) - (function_body)))) - (class_declaration - (type_identifier) - (enum_class_body - (enum_entry - (simple_identifier)) - (enum_entry - (modifiers - (attribute - (user_type - (type_identifier)) - (simple_identifier) - (simple_identifier) - (line_string_literal - (line_str_text)))) - (simple_identifier))))) - -================================================================================ -Protocol composition - generic type specifiers -================================================================================ - -let result: HasGeneric = HasGeneric(t: "Hello") - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier) - (type_arguments - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))))) - (constructor_expression - (user_type - (type_identifier) - (type_arguments - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier))))) - (constructor_suffix - (value_arguments - (value_argument - (simple_identifier) - (line_string_literal - (line_str_text)))))))) - -================================================================================ -Protocol composition - where clauses -================================================================================ - -func iterate(h: S) where S : Sequence, S.Element == P1 & P2 { } - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (type_parameters - (type_parameter - (type_identifier))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (type_constraints - (where_keyword) - (type_constraint - (inheritance_constraint - (identifier - (simple_identifier)) - (user_type - (type_identifier)))) - (type_constraint - (equality_constraint - (identifier - (simple_identifier) - (simple_identifier)) - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))))) - (function_body))) - -================================================================================ -Protocol composition - enum declarations -================================================================================ - -enum Foo { - case bar(P1 & P2) -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (enum_class_body - (enum_entry - (simple_identifier) - (enum_type_parameters - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))))))) - -================================================================================ -Protocol composition in as expressions -================================================================================ - -let result = greet("me") as P1 & P2 - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (as_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (line_string_literal - (line_str_text)))))) - (as_operator) - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))))) - -================================================================================ -Modify declarations -================================================================================ -public final class Foo { - private var inner: T - - public var wrappedValue: T { - get { - return value - } - _modify { - yield &value - } - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (modifiers - (visibility_modifier) - (inheritance_modifier)) - (type_identifier) - (class_body - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier)))) - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (computed_property - (computed_getter - (getter_specifier) - (statements - (control_transfer_statement - (simple_identifier)))) - (computed_modify - (modify_specifier) - (statements - (control_transfer_statement - (prefix_expression - (simple_identifier)))))))))) - -================================================================================ -Attributes on computed property declarations -================================================================================ - -public var someVar: String { - @inline(__always) - get { - "Hello" - } -} - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (computed_property - (computed_getter - (attribute - (user_type - (type_identifier)) - (simple_identifier)) - (getter_specifier) - (statements - (line_string_literal - (line_str_text))))))) - -================================================================================ -Annotations on inheritance -================================================================================ - -extension TrustMe: @unchecked Sendable { } - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (user_type - (type_identifier)) - (attribute - (user_type - (type_identifier))) - (inheritance_specifier - (user_type - (type_identifier))) - (class_body))) - -================================================================================ -Actors -================================================================================ - -private actor CounterActor { - private var count = 0 - - func next() -> Int { - count += 1 - return count - } - - nonisolated func eventuallyIncrement() { - Task { - await next() - } - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (modifiers - (visibility_modifier)) - (type_identifier) - (class_body - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (integer_literal)) - (function_declaration - (simple_identifier) - (user_type - (type_identifier)) - (function_body - (statements - (assignment - (directly_assignable_expression - (simple_identifier)) - (integer_literal)) - (control_transfer_statement - (simple_identifier))))) - (function_declaration - (modifiers - (member_modifier)) - (simple_identifier) - (function_body - (statements - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (statements - (await_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))))))))))))) - -================================================================================ -Lazy is usable as a computed property -================================================================================ - -extension Array { - var stringified: some RandomAccessCollection { - lazy.map { "\($0)" } - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (user_type - (type_identifier)) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (opaque_type - (user_type - (type_identifier)))) - (computed_property - (statements - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (lambda_literal - (statements - (line_string_literal - (interpolated_expression - (simple_identifier))))))))))))) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/comments.txt b/vendored_parsers/tree-sitter-swift/test/corpus/comments.txt deleted file mode 100755 index 20351b0f4..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/comments.txt +++ /dev/null @@ -1,103 +0,0 @@ -================================================================================ -Comments -================================================================================ - -1 + 2 -// 1 + 2 -/* Hello world */ -/** I am a doc comment */ - --------------------------------------------------------------------------------- - -(source_file - (additive_expression - (integer_literal) - (integer_literal)) - (comment) - (multiline_comment) - (multiline_comment)) - -================================================================================ -Nested Comments -================================================================================ - -/* - This is how comments work: // - Also like this: /* */ - - func doesNotExist() { - // This should not show up in the AST - } -*/ - -/* - This is the same but with different whitespace: /* -*/ - -func alsoDoesNotExist() { } - -*/ - -// /* -/* * */ -func doesExist() { } - -/*/*/* triple nested */*/*/ - -/**** - /**** - nested with extra stars - ****/ -****/ - --------------------------------------------------------------------------------- - -(source_file - (multiline_comment) - (multiline_comment) - (comment) - (multiline_comment) - (function_declaration - (simple_identifier) - (function_body)) - (multiline_comment) - (multiline_comment)) - -================================================================================ -Almost nested comments -================================================================================ - -/* - This is allowed in a comment but does not nest: / -*/ - -/* - Same with this: * -*/ - -/* - And even this: / * -*/ - - --------------------------------------------------------------------------------- - -(source_file - (multiline_comment) - (multiline_comment) - (multiline_comment)) - -================================================================================ -Single line comment at the end of a non-empty file -================================================================================ - -class SwiftExamples { -} -// Some comment --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body)) - (comment)) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/emojis.txt b/vendored_parsers/tree-sitter-swift/test/corpus/emojis.txt deleted file mode 100644 index 7d5f99025..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/emojis.txt +++ /dev/null @@ -1,91 +0,0 @@ -================================================================================ -Emojis in variable names -================================================================================ - -let ⭐️ = "star" -let 🌙 = "moon" -let ☁️☀️☁️ = "clouds and sun" - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (line_string_literal - (line_str_text))) - (property_declaration - (pattern - (simple_identifier)) - (line_string_literal - (line_str_text))) - (property_declaration - (pattern - (simple_identifier)) - (line_string_literal - (line_str_text)))) - -================================================================================ -Multi-codepoint emojis -================================================================================ - -func 🏃🏼‍♂️() { -} - -🏃🏼‍♂️() - - -func 👨‍❤️‍💋‍👨(🙋🏼‍♂️ 🙋‍♂️: Man, 🙋🏻‍♂️ 🙋‍♂️2: Man) { -} - -👨‍❤️‍💋‍👨(🙋🏼‍♂️: a, 🙋🏻‍♂️: b) - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (function_body)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (function_body)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier) - (simple_identifier)) - (value_argument - (simple_identifier) - (simple_identifier)))))) - -================================================================================ -Emojis with numbers in them -================================================================================ - -let number4️⃣ = nummber2️⃣ + number2️⃣ - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (additive_expression - (simple_identifier) - (simple_identifier)))) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/expressions.txt b/vendored_parsers/tree-sitter-swift/test/corpus/expressions.txt deleted file mode 100755 index a77aa170c..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/expressions.txt +++ /dev/null @@ -1,1219 +0,0 @@ -================================================================================ -Multiplication expression -================================================================================ - -45 * 3 - --------------------------------------------------------------------------------- - -(source_file - (multiplicative_expression - (integer_literal) - (integer_literal))) - -================================================================================ -Subtraction expression -================================================================================ - -45 - 3 - --------------------------------------------------------------------------------- - -(source_file - (additive_expression - (integer_literal) - (integer_literal))) - -================================================================================ -Nil-coalescing expression -================================================================================ - -a ?? 0 - --------------------------------------------------------------------------------- - -(source_file - (nil_coalescing_expression - (simple_identifier) - (integer_literal))) - -================================================================================ -Comparison -================================================================================ - -a < b - --------------------------------------------------------------------------------- - -(source_file - (comparison_expression - (simple_identifier) - (simple_identifier))) - -================================================================================ -Conjunction -================================================================================ - -a && b - -a - && b - --------------------------------------------------------------------------------- - -(source_file - (conjunction_expression - (simple_identifier) - (simple_identifier)) - (conjunction_expression - (simple_identifier) - (simple_identifier))) - -================================================================================ -Conjunction with call sites -================================================================================ - -a && b() - -a - && c.b() - --------------------------------------------------------------------------------- - -(source_file - (conjunction_expression - (simple_identifier) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))) - (conjunction_expression - (simple_identifier) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments))))) - -================================================================================ -Bitwise operations -================================================================================ - -a & b -a | b -a << b -a >> b - --------------------------------------------------------------------------------- - -(source_file - (bitwise_operation - (simple_identifier) - (simple_identifier)) - (bitwise_operation - (simple_identifier) - (simple_identifier)) - (bitwise_operation - (simple_identifier) - (simple_identifier)) - (bitwise_operation - (simple_identifier) - (simple_identifier))) - -================================================================================ -Tuple access operator -================================================================================ - -event.0 -possibleEvent?.0 - --------------------------------------------------------------------------------- - -(source_file - (navigation_expression - (simple_identifier) - (navigation_suffix - (integer_literal))) - (navigation_expression - (simple_identifier) - (navigation_suffix - (integer_literal)))) - -================================================================================ -Ternary expression -================================================================================ - -a ? b : c - -someVeryLongFunctionCall() - ? doSomethingHere() - : fallback - --------------------------------------------------------------------------------- - -(source_file - (ternary_expression - (simple_identifier) - (simple_identifier) - (simple_identifier)) - (ternary_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (simple_identifier))) - -================================================================================ -Ternary within another expression -================================================================================ - -if a ? b : c == d { -} - --------------------------------------------------------------------------------- - -(source_file - (if_statement - (ternary_expression - (simple_identifier) - (simple_identifier) - (equality_expression - (simple_identifier) - (simple_identifier))))) - -================================================================================ -Ternary with a function at the end -================================================================================ - -foo() ? bar() : baz() - --------------------------------------------------------------------------------- - -(source_file - (ternary_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - -================================================================================ -Multiple expressions on one line using semicolons -================================================================================ - -print(a); throw b - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier))))) - (throw_keyword) - (simple_identifier)) - -================================================================================ -Indexing -================================================================================ - -let b = maybeNil?[2] -a[2] = b -let c = array[safe: index] -let d = weirdType[indexesByField, and: anotherField] -let e = array[...] - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (integer_literal)))))) - (assignment - (directly_assignable_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (integer_literal)))))) - (simple_identifier)) - (property_declaration - (pattern - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier) - (simple_identifier)))))) - (property_declaration - (pattern - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier)) - (value_argument - (simple_identifier) - (simple_identifier)))))) - (property_declaration - (pattern - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (fully_open_range))))))) - -================================================================================ -Assigning to self -================================================================================ - -self = .enumCase - --------------------------------------------------------------------------------- - -(source_file - (assignment - (directly_assignable_expression - (self_expression)) - (prefix_expression - (simple_identifier)))) - -================================================================================ -Assignment -================================================================================ - -let one = 1 -var two: Int = 2 -_ = someCall() - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (integer_literal)) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (integer_literal)) - (assignment - (directly_assignable_expression - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - -================================================================================ -Destructuring assignment -================================================================================ - -(lhs, rhs) = someOperation - --------------------------------------------------------------------------------- - -(source_file - (assignment - (directly_assignable_expression - (tuple_expression - (simple_identifier) - (simple_identifier))) - (simple_identifier))) - -================================================================================ -Implicit member expression -================================================================================ - -let a: SomeClass = .someInstance - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (prefix_expression - (simple_identifier)))) - -================================================================================ -Tuple expressions -================================================================================ - -func math() { - let a: (Int, Int) = (1, 2) - return (lhs: 3, rhs: 4) -} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (function_body - (statements - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (tuple_type - (tuple_type_item - (user_type - (type_identifier))) - (tuple_type_item - (user_type - (type_identifier))))) - (tuple_expression - (integer_literal) - (integer_literal))) - (control_transfer_statement - (tuple_expression - (simple_identifier) - (integer_literal) - (simple_identifier) - (integer_literal))))))) - -================================================================================ -Function calls -================================================================================ - -print("Hello World!") -sum(1, 2) -something.hello?("world") - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (line_string_literal - (line_str_text)))))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (integer_literal)) - (value_argument - (integer_literal))))) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (line_string_literal - (line_str_text))))))) - -================================================================================ -Constructor calls -================================================================================ - -var result = Set() -var result2 = [String: [Complex<[String: Any]>]]() - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (constructor_expression - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier)))) - (constructor_suffix - (value_arguments)))) - (property_declaration - (pattern - (simple_identifier)) - (constructor_expression - (dictionary_type - (user_type - (type_identifier)) - (array_type - (user_type - (type_identifier) - (type_arguments - (dictionary_type - (user_type - (type_identifier)) - (user_type - (type_identifier))))))) - (constructor_suffix - (value_arguments))))) - -================================================================================ -Inout functions -================================================================================ - -func modifyThis(_ toModify: inout [String: String]) { -} - -var this = [:] -modifyThis(&this) - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (simple_identifier) - (parameter_modifiers - (parameter_modifier)) - (dictionary_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))) - (function_body)) - (property_declaration - (pattern - (simple_identifier)) - (dictionary_literal)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (prefix_expression - (simple_identifier))))))) - -================================================================================ -Selectors -================================================================================ - -let selector = #selector(self.foo(parameter:)) -let getterSelector = #selector(getter: self.bar) -let setterSelector = #selector(setter: self.bar) - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (selector_expression - (call_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (simple_identifier))))))) - (property_declaration - (pattern - (simple_identifier)) - (selector_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier))))) - (property_declaration - (pattern - (simple_identifier)) - (selector_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier)))))) - -================================================================================ -Function references -================================================================================ - -self.foo(parameter:) - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (navigation_expression - (self_expression) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (simple_identifier)))))) - -================================================================================ -Complex ternary expression -================================================================================ - -let availableRules = (context == nil) ? [.noContextRule] : [] -let result: MyEnumType = condition ? .someEnumCase : .someOtherEnum - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (ternary_expression - (tuple_expression - (equality_expression - (simple_identifier))) - (array_literal - (prefix_expression - (simple_identifier))) - (array_literal))) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (ternary_expression - (simple_identifier) - (prefix_expression - (simple_identifier)) - (prefix_expression - (simple_identifier))))) - -================================================================================ -Range expression in indexing -================================================================================ - -string[..) - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (check_expression - (simple_identifier) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier)) - (user_type - (type_identifier)))))))))) - -================================================================================ -Navigation expression involving explicit type parameters -================================================================================ - -SignalProducer<(), CarthageError>.empty - --------------------------------------------------------------------------------- - -(source_file - (navigation_expression - (user_type - (type_identifier) - (type_arguments - (tuple_type) - (user_type - (type_identifier)))) - (navigation_suffix - (simple_identifier)))) - -================================================================================ -Suppressing the syntactic significance of a newline -================================================================================ - -let _ = (1+2) - / 3 - -let additionIsSane = (2 + 2) - == 4 - -let two = 2 - + 2 - - 2 - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (wildcard_pattern)) - (multiplicative_expression - (tuple_expression - (additive_expression - (integer_literal) - (integer_literal))) - (integer_literal))) - (property_declaration - (pattern - (simple_identifier)) - (equality_expression - (tuple_expression - (additive_expression - (integer_literal) - (integer_literal))) - (integer_literal))) - (property_declaration - (pattern - (simple_identifier)) - (additive_expression - (additive_expression - (integer_literal) - (integer_literal)) - (integer_literal)))) - -================================================================================ -Simple try -================================================================================ - -try foo() - --------------------------------------------------------------------------------- - -(source_file - (try_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - -================================================================================ -Try and ternary -================================================================================ - -try foo() ? 1 : 0 - --------------------------------------------------------------------------------- - -(source_file - (try_expression - (ternary_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (integer_literal) - (integer_literal)))) - -================================================================================ -Simple await -================================================================================ - -await foo() - --------------------------------------------------------------------------------- - -(source_file - (await_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - -================================================================================ -try await -================================================================================ - -try await foo() -await try foo() - --------------------------------------------------------------------------------- - -(source_file - (try_expression - (await_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - (await_expression - (try_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))))) - -================================================================================ -Await and ternary -================================================================================ - -await foo() ? 1 : 0 - --------------------------------------------------------------------------------- - -(source_file - (await_expression - (ternary_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (integer_literal) - (integer_literal)))) - -================================================================================ -for try await -================================================================================ - -for try await value in values { - print(value) -} - --------------------------------------------------------------------------------- - -(source_file - (for_statement - (pattern - (simple_identifier)) - (simple_identifier) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier)))))))) - -================================================================================ -Negation at the start of a line -================================================================================ - - -let a = false - -!a - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (boolean_literal)) - (prefix_expression - (bang) - (simple_identifier))) - -================================================================================ -Calling `async` in positions where it could be a keyword -================================================================================ -async(async: async, qos: qos, flags: flags) { - work() -} - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier) - (simple_identifier)) - (value_argument - (simple_identifier) - (simple_identifier)) - (value_argument - (simple_identifier) - (simple_identifier))) - (lambda_literal - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))))))) - -================================================================================ -Assigning to the result of a force unwrap -================================================================================ - -stat[lang]! += 1 - --------------------------------------------------------------------------------- - -(source_file - (assignment - (directly_assignable_expression - (postfix_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier))))) - (bang))) - (integer_literal))) - -================================================================================ -Tricky operators -================================================================================ - -/!5; - -prefix operator /!; -prefix func /!(x: Int) { - print(x) -} - --------------------------------------------------------------------------------- - -(source_file - (prefix_expression - (custom_operator) - (integer_literal)) - (operator_declaration - (custom_operator)) - (function_declaration - (modifiers - (function_modifier)) - (custom_operator) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (function_body - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier))))))))) - -================================================================================ -Three dot operator after newline -================================================================================ - -foo() -... - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (fully_open_range)) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/functions.txt b/vendored_parsers/tree-sitter-swift/test/corpus/functions.txt deleted file mode 100755 index 6d327fbc8..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/functions.txt +++ /dev/null @@ -1,834 +0,0 @@ -================================================================================ -Top-level functions -================================================================================ - -func main() {} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (function_body))) - -================================================================================ -Generic functions -================================================================================ - -func test(t: T) {} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (type_parameters - (type_parameter - (type_identifier))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (function_body))) - -================================================================================ -Static functions -================================================================================ - -static func help() {} -static func === (lhs: MyType, rhs: MyType) { } - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (modifiers - (property_modifier)) - (simple_identifier) - (function_body)) - (function_declaration - (modifiers - (property_modifier)) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (function_body))) - -================================================================================ -Functions with parameters -================================================================================ - -func main(args: [String]) {} - -func maybe_main(args: Maybe) {} - -func convert(@Arg args: [String: Int]) {} - -func sum(a: Int, b: Int!) { return a + b } - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (array_type - (user_type - (type_identifier)))) - (function_body)) - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier))))) - (function_body)) - (function_declaration - (simple_identifier) - (attribute - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (dictionary_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))) - (function_body)) - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (function_body - (statements - (control_transfer_statement - (additive_expression - (simple_identifier) - (simple_identifier))))))) - -================================================================================ -Functions with renamed parameters -================================================================================ - -func sum(_ a: Int, with b: Int) { return a + b } - -sum(1, with: 2) - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (function_body - (statements - (control_transfer_statement - (additive_expression - (simple_identifier) - (simple_identifier)))))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (integer_literal)) - (value_argument - (simple_identifier) - (integer_literal)))))) - -================================================================================ -Functions with return types -================================================================================ - -func answerToTheUltimateQuestionOfLifeTheUniverseAndEverything() -> Int { return 42 } -func getConfig() -> [String: Int] { - return [ - "TimeoutMillis": 1000, - "RetryCount": 5, - "RetryBackoffMillis": 5000 - ] -} - -func returnGetsImplicitlyUnwrapped() -> String! { - return nil -} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (integer_literal))))) - (function_declaration - (simple_identifier) - (dictionary_type - (user_type - (type_identifier)) - (user_type - (type_identifier))) - (function_body - (statements - (control_transfer_statement - (dictionary_literal - (line_string_literal - (line_str_text)) - (integer_literal) - (line_string_literal - (line_str_text)) - (integer_literal) - (line_string_literal - (line_str_text)) - (integer_literal)))))) - (function_declaration - (simple_identifier) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement))))) - -================================================================================ -Variadic functions -================================================================================ - -func toUpperCaseAll(strings: String ...) -> [String] { } - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (array_type - (user_type - (type_identifier))) - (function_body))) - -================================================================================ -Operator overrides -================================================================================ - -public static func < (lhs: Wrapped, rhs: Wrapped) -> Bool { - return false -} - -public func ??(optional: Expression, defaultValue: V) -> Expression { - return Expression(optional.inner() ?? defaultValue) -} - -public prefix func ! (value: Wrapped) -> Bool { - return false -} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (modifiers - (visibility_modifier) - (property_modifier)) - (parameter - (simple_identifier) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier))))) - (parameter - (simple_identifier) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier))))) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (boolean_literal))))) - (function_declaration - (modifiers - (visibility_modifier)) - (custom_operator) - (type_parameters - (type_parameter - (type_identifier) - (user_type - (type_identifier)))) - (parameter - (simple_identifier) - (user_type - (type_identifier) - (type_arguments - (optional_type - (user_type - (type_identifier)))))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier)))) - (function_body - (statements - (control_transfer_statement - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (nil_coalescing_expression - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments))) - (simple_identifier)))))))))) - (function_declaration - (modifiers - (visibility_modifier) - (function_modifier)) - (bang) - (parameter - (simple_identifier) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier))))) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (boolean_literal)))))) - -================================================================================ -Custom operators -================================================================================ - -precedencegroup MyPrecedence { - associativity: left - assignment: true - lowerThan: AdditionPrecedence -} - -infix operator -=- : MyPrecedence - -infix operator • - --------------------------------------------------------------------------------- - -(source_file - (precedence_group_declaration - (simple_identifier) - (precedence_group_attributes - (precedence_group_attribute - (simple_identifier) - (simple_identifier)) - (precedence_group_attribute - (simple_identifier) - (boolean_literal)) - (precedence_group_attribute - (simple_identifier) - (simple_identifier)))) - (operator_declaration - (custom_operator) - (simple_identifier)) - (operator_declaration - (custom_operator))) - -================================================================================ -Custom operator with another operator as a prefix -================================================================================ - -let messageCoerced = error ??? "nil" - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (infix_expression - (simple_identifier) - (custom_operator) - (line_string_literal - (line_str_text))))) - -================================================================================ -Functions that throw -================================================================================ - -func anythingYouCanDo() throws -> Int { return -1 } -func iCanDoBetter() - throws - -> Int { return -2 } - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (throws) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (prefix_expression - (integer_literal)))))) - (function_declaration - (simple_identifier) - (throws) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (prefix_expression - (integer_literal))))))) - -================================================================================ -Async functions -================================================================================ - -func eventually() async -> Int { return -1 } -func maybe() - async - throws - -> Int { return -2 } - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (prefix_expression - (integer_literal)))))) - (function_declaration - (simple_identifier) - (throws) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (prefix_expression - (integer_literal))))))) - -================================================================================ -Higher-order functions - pt 1 -================================================================================ - -func test(i: Int = 0, block: (Int) throws -> Void) {} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (integer_literal) - (parameter - (simple_identifier) - (function_type - (tuple_type - (tuple_type_item - (user_type - (type_identifier)))) - (throws) - (user_type - (type_identifier)))) - (function_body))) - -================================================================================ -Higher-order functions - pt 2 -================================================================================ - -test { value in /* does nothing */ } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (simple_identifier)))) - (multiline_comment))))) - -================================================================================ -Higher-order functions - pt 3 -================================================================================ - -test(2) { $0.doSomething() } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (integer_literal))) - (lambda_literal - (statements - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments)))))))) - -================================================================================ -Higher-order functions - pt 4 -================================================================================ - -test { (a) -> Void in } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (simple_identifier))) - (user_type - (type_identifier))))))) - -================================================================================ -Higher-order functions - pt 5 -================================================================================ - -test { (a: inout Int) in } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (simple_identifier) - (parameter_modifiers - (parameter_modifier)) - (user_type - (type_identifier))))))))) - -================================================================================ -Higher-order functions - pt 6 -================================================================================ - -test { @Special [weak self, otherSelf] (a) in } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (attribute - (user_type - (type_identifier))) - (capture_list - (capture_list_item - (ownership_modifier) - (simple_identifier)) - (capture_list_item - (simple_identifier))) - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (simple_identifier)))))))) - -================================================================================ -Higher-order functions - pt 7 -================================================================================ - -test(block: ===) - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier)))))) - -================================================================================ -Higher-order functions - pt 8 -================================================================================ - -test { ($0, someVariable) } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (statements - (tuple_expression - (simple_identifier) - (simple_identifier))))))) - -================================================================================ -Higher-order functions - pt 9 -================================================================================ - -test { (self, a) -> Void in } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (self_expression)) - (lambda_parameter - (simple_identifier))) - (user_type - (type_identifier))))))) - -================================================================================ -Higher-order functions - pt 10 -================================================================================ - -test { (a: Any?) in foo(a) } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (lambda_literal - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (simple_identifier) - (optional_type - (user_type - (type_identifier)))))) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier)))))))))) - -================================================================================ -Higher-order functions - pt 11 -================================================================================ - -types.flatMap { [abc, 1] } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (lambda_literal - (statements - (array_literal - (simple_identifier) - (integer_literal))))))) - -================================================================================ -Function type with wildcard -================================================================================ - -private lazy var onCatClosure: (_ cat: Cat) throws -> Void = { _ in -} - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (modifiers - (visibility_modifier) - (property_behavior_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (function_type - (tuple_type - (tuple_type_item - (wildcard_pattern) - (simple_identifier) - (user_type - (type_identifier)))) - (throws) - (user_type - (type_identifier)))) - (lambda_literal - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (simple_identifier))))))) - -================================================================================ -Multiple trailing lambdas -================================================================================ - -myInstance.registerCallbacks { } onCancelled: { } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (lambda_literal) - (simple_identifier) - (lambda_literal)))) - -================================================================================ -Return type fun -================================================================================ - -func opaqueType() -> some Equatable { return "" } -func multipleType() -> Foo & Bar { return Foo() } - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (opaque_type - (user_type - (type_identifier))) - (function_body - (statements - (control_transfer_statement - (line_string_literal))))) - (function_declaration - (simple_identifier) - (protocol_composition_type - (user_type - (type_identifier)) - (user_type - (type_identifier))) - (function_body - (statements - (control_transfer_statement - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))))))) - -================================================================================ -Lambdas with annotations -================================================================================ - -types.flatMap { @Sendable _ in } -let mainClosure = { @MainActor in print("Running on main") } - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (lambda_literal - (attribute - (user_type - (type_identifier))) - (lambda_function_type - (lambda_function_type_parameters - (lambda_parameter - (simple_identifier))))))) - (property_declaration - (pattern - (simple_identifier)) - (lambda_literal - (attribute - (user_type - (type_identifier))) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (line_string_literal - (line_str_text)))))))))) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/literals.txt b/vendored_parsers/tree-sitter-swift/test/corpus/literals.txt deleted file mode 100755 index cc48bc5c8..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/literals.txt +++ /dev/null @@ -1,736 +0,0 @@ -================================================================================ -Simple identifiers -================================================================================ - -helloWorld - --------------------------------------------------------------------------------- - -(source_file - (simple_identifier)) - -================================================================================ -Boolean literals -================================================================================ - -true -false - --------------------------------------------------------------------------------- - -(source_file - (boolean_literal) - (boolean_literal)) - -================================================================================ -String literals -================================================================================ - -"Hello World!" -""" -This is a "multiline" -string. -""" -"This string has a // comment (except not!)" - --------------------------------------------------------------------------------- - -(source_file - (line_string_literal - (line_str_text)) - (multi_line_string_literal - (multi_line_str_text) - (multi_line_str_text) - (multi_line_str_text)) - (line_string_literal - (line_str_text))) - -================================================================================ -String interpolation -================================================================================ - -"Sample \("string.interpolation") literal" -""" -Multiline -\("""string interpolation""") literal -""" -"This is a string with // a comment in it" -""" - And so is this! /* - #if qwertyuiop - And yet neither of those comments should register -""" // This comment is valid - --------------------------------------------------------------------------------- - -(source_file - (line_string_literal - (line_str_text) - (interpolated_expression - (line_string_literal - (line_str_text))) - (line_str_text)) - (multi_line_string_literal - (multi_line_str_text) - (interpolated_expression - (multi_line_string_literal - (multi_line_str_text))) - (multi_line_str_text)) - (line_string_literal - (line_str_text)) - (multi_line_string_literal - (multi_line_str_text)) - (comment)) - -================================================================================ -Custom interpolation -================================================================================ -"Hi, I'm \(format: age)" - --------------------------------------------------------------------------------- - -(source_file - (line_string_literal - (line_str_text) - (interpolated_expression - (simple_identifier) - (simple_identifier)))) - -================================================================================ -Strings with newline escaping -================================================================================ - -""" -This is a string that acts as though it \ - is all on one line -""" - --------------------------------------------------------------------------------- - -(source_file - (multi_line_string_literal - (multi_line_str_text) - (str_escaped_char) - (multi_line_str_text))) - -================================================================================ -Integer literals -================================================================================ - -0 -8 -23 -9847 -0xf00 -0o774 -0b01 - --------------------------------------------------------------------------------- - -(source_file - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (hex_literal) - (oct_literal) - (bin_literal)) - -================================================================================ -Real literals -================================================================================ - -0.0 --23.434 -1e-10 -4.3 -+53.9e-3 - --------------------------------------------------------------------------------- - -(source_file - (real_literal) - (prefix_expression - (real_literal)) - (real_literal) - (real_literal) - (prefix_expression - (real_literal))) - -================================================================================ -Collections -================================================================================ - -let numbers = [1, 2, 3] -let numerals = [1: "I", 4: "IV", 5: "V", 10: "X"] - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (array_literal - (integer_literal) - (integer_literal) - (integer_literal))) - (property_declaration - (pattern - (simple_identifier)) - (dictionary_literal - (integer_literal) - (line_string_literal - (line_str_text)) - (integer_literal) - (line_string_literal - (line_str_text)) - (integer_literal) - (line_string_literal - (line_str_text)) - (integer_literal) - (line_string_literal - (line_str_text))))) - -================================================================================ -Trailing commas -================================================================================ - -[ - "Time": Date.now(), - "Success": true, -] - -[1, 2, 3, 4, 5,] - --------------------------------------------------------------------------------- - -(source_file - (dictionary_literal - (line_string_literal - (line_str_text)) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments))) - (line_string_literal - (line_str_text)) - (boolean_literal)) - (array_literal - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal))) - -================================================================================ -Nil -================================================================================ - -let _ = nil - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (wildcard_pattern)))) - -================================================================================ -Raw strings -================================================================================ - -let _ = #"Hello, world!"# -let _ = ##"Hello, so-called "world"!"## - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (wildcard_pattern)) - (raw_string_literal - (raw_str_end_part))) - (property_declaration - (pattern - (wildcard_pattern)) - (raw_string_literal - (raw_str_end_part)))) - -================================================================================ -Doesn't hang for incomplete raw strings (issue #146) -================================================================================ - -let _ = #"Foo" - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (wildcard_pattern)) - (ERROR - (UNEXPECTED '"')) - (line_string_literal - (line_str_text)))) - -================================================================================ -Raw strings with interpolation -================================================================================ - -extension URL { - func html(withTitle title: String) -> String { - return #"\#(title)"# - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (user_type - (type_identifier)) - (class_body - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (simple_identifier) - (user_type - (type_identifier))) - (user_type - (type_identifier)) - (function_body - (statements - (control_transfer_statement - (raw_string_literal - (raw_str_part) - (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) - (raw_str_part) - (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) - (raw_str_end_part))))))))) - -================================================================================ -Raw strings interpolation edge cases -================================================================================ - -print(#"Hello \#(world /* commented out)"#) */ )"#) - -let _ = ##"Multiple pound signs \##(interpolated): still one part "# not done yet "## -let _ = ##"Fake \#(interpolation) and unused # pound signs "## -let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## -let _ = #""" -\\#(12)\# -"""# - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (raw_string_literal - (raw_str_part) - (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier)) - (multiline_comment)) - (raw_str_end_part)))))) - (property_declaration - (pattern - (wildcard_pattern)) - (raw_string_literal - (raw_str_part) - (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) - (raw_str_end_part))) - (property_declaration - (pattern - (wildcard_pattern)) - (raw_string_literal - (raw_str_end_part))) - (property_declaration - (pattern - (wildcard_pattern)) - (raw_string_literal - (raw_str_part) - (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) - (raw_str_part) - (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) - (raw_str_end_part))) - (property_declaration - (pattern - (wildcard_pattern)) - (raw_string_literal - (raw_str_part) - (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (integer_literal))) - (raw_str_end_part)))) - -================================================================================ -Unicode escape sequences -================================================================================ - -let unicodeEscaping = "\u{8}" -let anotherUnicode = "…\u{2060}" -let infinity = "\u{221E}" - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (line_string_literal - (str_escaped_char))) - (property_declaration - (pattern - (simple_identifier)) - (line_string_literal - (line_str_text) - (str_escaped_char))) - (property_declaration - (pattern - (simple_identifier)) - (line_string_literal - (str_escaped_char)))) - -================================================================================ -Playground literals -================================================================================ - -let playgroundLiteral = #imageLiteral(resourceName: "heart") - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (simple_identifier) - (line_string_literal - (line_str_text)))) - -================================================================================ -Single line regex literals -================================================================================ - -let regex1 = /([ab])?/ -let regex2 = /([ab])|\d+/ - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (regex_literal)) - (property_declaration - (pattern - (simple_identifier)) - (regex_literal))) - -================================================================================ -Multiline regex literals -================================================================================ - -let regex = #/ - # Match a line of the format e.g "DEBIT 03/03/2022 Totally Legit Shell Corp $2,000,000.00" - (? \w+) \s\s+ - (? \S+) \s\s+ - (? (?: (?!\s\s) . )+) \s\s+ # Note that account names may contain spaces. - (? .*) -/# - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (regex_literal))) - -================================================================================ -Parse ambiguity in regex liteal and comment -================================================================================ - -/* -let regex = /[0-9]*/ - --------------------------------------------------------------------------------- - -(source_file - (multiline_comment)) - -================================================================================ -Regex-like custom operator not in expression position -================================================================================ - -infix operator /^/ -func /^/ (lhs: Int, rhs: Int) -> Int { 0 } -let b = 0 /^/ 1 - --------------------------------------------------------------------------------- - -(source_file - (operator_declaration - (custom_operator)) - (function_declaration - (custom_operator) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (user_type - (type_identifier)) - (function_body - (statements - (integer_literal)))) - (property_declaration - (pattern - (simple_identifier)) - (infix_expression - (integer_literal) - (custom_operator) - (integer_literal)))) - -================================================================================ -Unapplied `/` that is not a regex literal -================================================================================ - -let x = array.reduce(1, /) / 5 -let y = array.reduce(1, /) + otherArray.reduce(1, /) - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (multiplicative_expression - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (integer_literal)) - (value_argument)))) - (integer_literal))) - (property_declaration - (pattern - (simple_identifier)) - (call_expression - (navigation_expression - (additive_expression - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (integer_literal)) - (value_argument)))) - (simple_identifier)) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (integer_literal)) - (value_argument)))))) - -================================================================================ -Unapplied custom operators -================================================================================ - -baz(!/, 1) / 2 -qux(/, /) -qux(/^, /) -qux(!/, /) - --------------------------------------------------------------------------------- - -(source_file - (multiplicative_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (custom_operator)) - (value_argument - (integer_literal))))) - (integer_literal)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument) - (value_argument)))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (custom_operator)) - (value_argument)))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (custom_operator)) - (value_argument))))) - -================================================================================ -More operator not-regex edge cases -================================================================================ - -let d = hasSubscript[/] / 2 // Unapplied infix '/' and infix '/' -let e = !/y / .foo() // Prefix '!/' with infix '/' and operand '.foo()' - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (multiplicative_expression - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument)))) - (integer_literal))) - (comment) - (property_declaration - (pattern - (simple_identifier)) - (call_expression - (prefix_expression - (custom_operator) - (multiplicative_expression - (simple_identifier) - (prefix_expression - (simple_identifier)))) - (call_suffix - (value_arguments)))) - (comment)) - -================================================================================ -Ambiguous parse cases that now are regexes -================================================================================ - -foo(/a, b/) // Will become regex literal '/a, b/' -qux(/, !/) // Will become regex literal '/, !/' -qux(/,/) // Will become regex literal '/,/' - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (regex_literal))))) - (comment) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (regex_literal))))) - (comment) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (regex_literal))))) - (comment)) - -================================================================================ -Unapplied division operator -================================================================================ - -class Operator { - var perform: (Double, Double) -> Double { - return (/) - } -} - --------------------------------------------------------------------------------- - -(source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (function_type - (tuple_type - (tuple_type_item - (user_type - (type_identifier))) - (tuple_type_item - (user_type - (type_identifier)))) - (user_type - (type_identifier)))) - (computed_property - (statements - (control_transfer_statement - (tuple_expression)))))))) - -================================================================================ -Single-line regex on multiple lines -================================================================================ - -doOperation(on: a, /) -/// That was fun! We ran `/` - --------------------------------------------------------------------------------- - -(source_file - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier) - (simple_identifier)) - (value_argument)))) - (comment)) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/statements.txt b/vendored_parsers/tree-sitter-swift/test/corpus/statements.txt deleted file mode 100755 index 23775cfef..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/statements.txt +++ /dev/null @@ -1,1008 +0,0 @@ -================================================================================ -Let statements -================================================================================ - -let singleVariable = 1 -let (tuple1, tuple2) = (2, 3) -let `default` = 0 - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (integer_literal)) - (property_declaration - (pattern - (pattern - (simple_identifier)) - (pattern - (simple_identifier))) - (tuple_expression - (integer_literal) - (integer_literal))) - (property_declaration - (pattern - (simple_identifier)) - (integer_literal))) - -================================================================================ -C-style compound declaration -================================================================================ - -var one = 1, two = 2, four = 4, eight = 8 - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (integer_literal) - (pattern - (simple_identifier)) - (integer_literal) - (pattern - (simple_identifier)) - (integer_literal) - (pattern - (simple_identifier)) - (integer_literal))) - -================================================================================ -For statements -================================================================================ - -for value: MyType in values { - print(value) -} - -for case .some(value) in valuesMaybe { } - -for case .some((.some(0), .some(1))) in crazyValues { -} - -for var value in values where value.isExcellent() { -} - --------------------------------------------------------------------------------- - -(source_file - (for_statement - (pattern - (simple_identifier)) - (type_annotation - (user_type - (type_identifier))) - (simple_identifier) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments - (value_argument - (simple_identifier))))))) - (for_statement - (pattern - (simple_identifier) - (pattern - (simple_identifier))) - (simple_identifier)) - (for_statement - (pattern - (simple_identifier) - (pattern - (pattern - (simple_identifier) - (pattern - (integer_literal))) - (pattern - (simple_identifier) - (pattern - (integer_literal))))) - (simple_identifier)) - (for_statement - (pattern - (simple_identifier)) - (simple_identifier) - (where_clause - (where_keyword) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments)))))) - -================================================================================ -Weird for statements -================================================================================ - -for case let fileUrl as URL in directory { -} - -for case let (a, b?) in tuples { -} - -outerLoop: for outerObject in dataArray { - for innerObject in comparisonArray { - if outerObject == innerObject { - isValid = true - break outerLoop - } - } -} - --------------------------------------------------------------------------------- - -(source_file - (for_statement - (pattern - (pattern - (simple_identifier)) - (user_type - (type_identifier))) - (simple_identifier)) - (for_statement - (pattern - (pattern - (simple_identifier)) - (pattern - (simple_identifier))) - (simple_identifier)) - (statement_label) - (for_statement - (pattern - (simple_identifier)) - (simple_identifier) - (statements - (for_statement - (pattern - (simple_identifier)) - (simple_identifier) - (statements - (if_statement - (equality_expression - (simple_identifier) - (simple_identifier)) - (statements - (assignment - (directly_assignable_expression - (simple_identifier)) - (boolean_literal)) - (control_transfer_statement - (simple_identifier))))))))) - -================================================================================ -While and friends -================================================================================ - -while idx > 0, input.count > 0 { - // ... -} - -while let .ok(data) = doWork() { - // ... -} - -repeat { - // ... -} while something() - --------------------------------------------------------------------------------- - -(source_file - (while_statement - (comparison_expression - (simple_identifier) - (integer_literal)) - (comparison_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (integer_literal)) - (comment)) - (while_statement - (simple_identifier) - (pattern - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (comment)) - (repeat_while_statement - (comment) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - -================================================================================ -Switch statements -================================================================================ - -switch something { - case .pattern: return "Hello" - case expression: return "and" - case "Literal": return "Goodbye" - default: return ":)" -} - --------------------------------------------------------------------------------- - -(source_file - (switch_statement - (simple_identifier) - (switch_entry - (switch_pattern - (pattern - (simple_identifier))) - (statements - (control_transfer_statement - (line_string_literal - (line_str_text))))) - (switch_entry - (switch_pattern - (pattern - (simple_identifier))) - (statements - (control_transfer_statement - (line_string_literal - (line_str_text))))) - (switch_entry - (switch_pattern - (pattern - (line_string_literal - (line_str_text)))) - (statements - (control_transfer_statement - (line_string_literal - (line_str_text))))) - (switch_entry - (default_keyword) - (statements - (control_transfer_statement - (line_string_literal - (line_str_text))))))) - -================================================================================ -Weird switch statements -================================================================================ - -switch something { - case let .pattern2(_, bound): fallthrough - case .ident where someCondition, ident2: fallthrough - @unknown default: return "Goodbye" -} - -switch self { -case .notExecutable(let path?): - return "File not executable: \(path)" -case let .isExecutable(path?): - return "File is executable: \(path)" -} - --------------------------------------------------------------------------------- - -(source_file - (switch_statement - (simple_identifier) - (switch_entry - (switch_pattern - (pattern - (simple_identifier) - (pattern - (wildcard_pattern)) - (pattern - (simple_identifier)))) - (statements - (simple_identifier))) - (switch_entry - (switch_pattern - (pattern - (simple_identifier))) - (where_keyword) - (simple_identifier) - (switch_pattern - (pattern - (simple_identifier))) - (statements - (simple_identifier))) - (switch_entry - (modifiers - (attribute - (user_type - (type_identifier)))) - (default_keyword) - (statements - (control_transfer_statement - (line_string_literal - (line_str_text)))))) - (switch_statement - (self_expression) - (switch_entry - (switch_pattern - (pattern - (simple_identifier) - (pattern - (simple_identifier)))) - (statements - (control_transfer_statement - (line_string_literal - (line_str_text) - (interpolated_expression - (simple_identifier)))))) - (switch_entry - (switch_pattern - (pattern - (simple_identifier) - (pattern - (simple_identifier)))) - (statements - (control_transfer_statement - (line_string_literal - (line_str_text) - (interpolated_expression - (simple_identifier)))))))) - -================================================================================ -Switch with extra parentheses -================================================================================ - -switch result { -case let .success((successfulResult)): - return successfulResult -} - --------------------------------------------------------------------------------- - -(source_file - (switch_statement - (simple_identifier) - (switch_entry - (switch_pattern - (pattern - (simple_identifier) - (pattern - (pattern - (simple_identifier))))) - (statements - (control_transfer_statement - (simple_identifier)))))) - -================================================================================ -Imports -================================================================================ - -import Foundation -import class SomeModule.SomeClass - -class Foo { } - -import SomethingElse - --------------------------------------------------------------------------------- - -(source_file - (import_declaration - (identifier - (simple_identifier))) - (import_declaration - (identifier - (simple_identifier) - (simple_identifier))) - (class_declaration - (type_identifier) - (class_body)) - (import_declaration - (identifier - (simple_identifier)))) - -================================================================================ -Do-catch -================================================================================ - -do { - let b = 1 -} catch let error as MyError { -} catch SomeError.specificError { -} catch let error as MyOtherError where error.code == 2 { -} catch let MyEnumError.missingField(fieldName) { -} catch MyEnumError.missingField(fieldName: let fieldName) { -} catch { -} - -do { - let c = 1 -} - --------------------------------------------------------------------------------- - -(source_file - (do_statement - (statements - (property_declaration - (pattern - (simple_identifier)) - (integer_literal))) - (catch_block - (catch_keyword) - (pattern - (pattern - (simple_identifier)) - (user_type - (type_identifier)))) - (catch_block - (catch_keyword) - (pattern - (user_type - (type_identifier)) - (simple_identifier))) - (catch_block - (catch_keyword) - (pattern - (pattern - (simple_identifier)) - (user_type - (type_identifier))) - (where_clause - (where_keyword) - (equality_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (integer_literal)))) - (catch_block - (catch_keyword) - (pattern - (user_type - (type_identifier)) - (simple_identifier) - (pattern - (simple_identifier)))) - (catch_block - (catch_keyword) - (pattern - (user_type - (type_identifier)) - (simple_identifier) - (simple_identifier) - (pattern - (simple_identifier)))) - (catch_block - (catch_keyword))) - (do_statement - (statements - (property_declaration - (pattern - (simple_identifier)) - (integer_literal))))) - -================================================================================ -If let statements -================================================================================ - -if let something = doThing() { - anotherThing() -} - -if case .someCase(_) = otherThing() { -} - -if let something: MyType = doThing() { -} - -someLabel: if a.isEmpty, let b = getB() { -} - --------------------------------------------------------------------------------- - -(source_file - (if_statement - (simple_identifier) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - (if_statement - (simple_identifier) - (pattern - (wildcard_pattern)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))) - (if_statement - (simple_identifier) - (type_annotation - (user_type - (type_identifier))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))) - (statement_label) - (if_statement - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (simple_identifier) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - -================================================================================ -If let with function call -================================================================================ - -func doSomething() { - if let a = try? Foo.getValue("key") { - return a - } - return defaultValue -} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (simple_identifier) - (function_body - (statements - (if_statement - (simple_identifier) - (try_expression - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments - (value_argument - (line_string_literal - (line_str_text))))))) - (statements - (control_transfer_statement - (simple_identifier)))) - (control_transfer_statement - (simple_identifier)))))) - -================================================================================ -Compound if let -================================================================================ - -if let something = doThing(), something.isSpecial() { - anotherThing() -} - -if let something = doThing(), let somethingElse = something.somethingElse() { - // Nothing -} - --------------------------------------------------------------------------------- - -(source_file - (if_statement - (simple_identifier) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments))) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - (if_statement - (simple_identifier) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (simple_identifier) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments))) - (comment))) - -================================================================================ -Else if... -================================================================================ - -if let aPrime = a { -} else if let bPrime = b { -} - -if a == b { -} -else if let cPrime = c { -} - --------------------------------------------------------------------------------- - -(source_file - (if_statement - (simple_identifier) - (simple_identifier) - (else) - (if_statement - (simple_identifier) - (simple_identifier))) - (if_statement - (equality_expression - (simple_identifier) - (simple_identifier)) - (else) - (if_statement - (simple_identifier) - (simple_identifier)))) - -================================================================================ -Else interacts with comments -================================================================================ - -if foo { - fooVal = 0; // A comment -} -// Another comment -else if bar { -} - --------------------------------------------------------------------------------- - -(source_file - (if_statement - (simple_identifier) - (statements - (assignment - (directly_assignable_expression - (simple_identifier)) - (integer_literal))) - (comment) - (comment) - (else) - (if_statement - (simple_identifier)))) - -================================================================================ -If try -================================================================================ - - if try limit == nil && singleResult && !expectsSingleResult { - return a - } - --------------------------------------------------------------------------------- - -(source_file - (if_statement - (try_expression - (equality_expression - (simple_identifier) - (conjunction_expression - (conjunction_expression - (simple_identifier) - (prefix_expression - (bang) - (simple_identifier)))))) - (statements - (control_transfer_statement - (simple_identifier))))) - -================================================================================ -Guard statements -================================================================================ - -guard let something = doThing() else { - anotherThing() -} - -guard someGuard() else { - anotherThing() -} - -guard case .someCase(ident: let foo)? = otherThing() else { -} - -guard case justIdentifier = bound else { } - -guard let pattern else { - return -} - --------------------------------------------------------------------------------- - -(source_file - (guard_statement - (simple_identifier) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (else) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - (guard_statement - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (else) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - (guard_statement - (simple_identifier) - (simple_identifier) - (pattern - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (else)) - (guard_statement - (simple_identifier) - (simple_identifier) - (else)) - (guard_statement - (simple_identifier) - (else) - (statements - (control_transfer_statement)))) - -================================================================================ -Compound guard -================================================================================ - -guard let something = doThing(), something.isSpecial() else { - anotherThing() -} - --------------------------------------------------------------------------------- - -(source_file - (guard_statement - (simple_identifier) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments))) - (else) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))))) - -================================================================================ -Type annotation on `guard case let` -================================================================================ - -guard case let size: Int = variable.size else { - return nil -} - --------------------------------------------------------------------------------- - -(source_file - (guard_statement - (simple_identifier) - (type_annotation - (user_type - (type_identifier))) - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (else) - (statements - (control_transfer_statement)))) - -================================================================================ -Availability conditions -================================================================================ - -if #available(iOS 14.0, *) { - doSomething() -} - -if #available(macOS 10.12.0, *) { - return 3 -} else { - return 0 -} - --------------------------------------------------------------------------------- - -(source_file - (if_statement - (availability_condition - (identifier - (simple_identifier)) - (integer_literal) - (integer_literal)) - (statements - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - (if_statement - (availability_condition - (identifier - (simple_identifier)) - (integer_literal) - (integer_literal) - (integer_literal)) - (statements - (control_transfer_statement - (integer_literal))) - (else) - (statements - (control_transfer_statement - (integer_literal))))) - -================================================================================ -Unicode identifiers -================================================================================ - -let ø = unicode() - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments))))) - -================================================================================ -Contextual keywords are usable as identifiers -================================================================================ - -public init() { - // `prefix` doesn't work as a function modifier here, so it's legal as an identifier - prefix = prefixToJSON - - // But some modifiers are legal! - weak var weakPrefix = prefix - final class LocalClass { } - - // Annotations are legal too! - @someAnnotation - func innerFunc() { } -} - --------------------------------------------------------------------------------- - -(source_file - (function_declaration - (modifiers - (visibility_modifier)) - (function_body - (comment) - (statements - (assignment - (directly_assignable_expression - (simple_identifier)) - (simple_identifier)) - (comment) - (property_declaration - (ownership_modifier) - (pattern - (simple_identifier)) - (simple_identifier)) - (class_declaration - (inheritance_modifier) - (type_identifier) - (class_body)) - (comment) - (function_declaration - (attribute - (user_type - (type_identifier))) - (simple_identifier) - (function_body)))))) - -================================================================================ -Compiler diagnostics -================================================================================ - -#if SOME_FLAG -#error("SOME_FLAG must not be enabled!") -#elseif OTHER_FLAG -#warning("OTHER_FLAG is deprecated!") -#else -#sourceLocation(file: "SomeFile.swift", line: 99) -#endif - --------------------------------------------------------------------------------- - -(source_file - (directive) - (diagnostic) - (directive) - (diagnostic) - (directive) - (directive) - (directive)) - -================================================================================ -Async let -================================================================================ - -async let foo = 64 -async let bar = 66 - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (integer_literal)) - (property_declaration - (pattern - (simple_identifier)) - (integer_literal))) - -================================================================================ -Actor is a legal identifier -================================================================================ - -let actor = 5 -actor.increment() - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (integer_literal)) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix - (simple_identifier))) - (call_suffix - (value_arguments)))) diff --git a/vendored_parsers/tree-sitter-swift/test/corpus/types.txt b/vendored_parsers/tree-sitter-swift/test/corpus/types.txt deleted file mode 100755 index 083366090..000000000 --- a/vendored_parsers/tree-sitter-swift/test/corpus/types.txt +++ /dev/null @@ -1,360 +0,0 @@ -================================================================================ -Type references -================================================================================ - -something as Int -something as? A -something as! A - --------------------------------------------------------------------------------- - -(source_file - (as_expression - (simple_identifier) - (as_operator) - (user_type - (type_identifier))) - (as_expression - (simple_identifier) - (as_operator) - (user_type - (type_identifier))) - (as_expression - (simple_identifier) - (as_operator) - (user_type - (type_identifier)))) - -================================================================================ -Nested types -================================================================================ - -something as Some.NestedType - --------------------------------------------------------------------------------- - -(source_file - (as_expression - (simple_identifier) - (as_operator) - (user_type - (type_identifier) - (type_identifier)))) - -================================================================================ -Deeply nested types -================================================================================ - -somethingElse as A.Deeply.Nested.Type - --------------------------------------------------------------------------------- - -(source_file - (as_expression - (simple_identifier) - (as_operator) - (user_type - (type_identifier) - (type_identifier) - (type_identifier) - (type_identifier)))) - -================================================================================ -Generic parameterized types -================================================================================ - -something as Generic -something as Generic - --------------------------------------------------------------------------------- - -(source_file - (as_expression - (simple_identifier) - (as_operator) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier))))) - (as_expression - (simple_identifier) - (as_operator) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier)) - (user_type - (type_identifier)))))) - -================================================================================ -Function types -================================================================================ - -unitFunction as () -> Unit -consumer as (Int) -> Unit -configurator as (inout Config) -> Unit - --------------------------------------------------------------------------------- - -(source_file - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type) - (user_type - (type_identifier)))) - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type - (tuple_type_item - (user_type - (type_identifier)))) - (user_type - (type_identifier)))) - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type - (tuple_type_item - (parameter_modifiers - (parameter_modifier)) - (user_type - (type_identifier)))) - (user_type - (type_identifier))))) - -================================================================================ -Function types with multiple parameters -================================================================================ - -a as (Int, Generic, Boolean) -> Unit -b as (Nested.Type, (Int)) -> Unit - --------------------------------------------------------------------------------- - -(source_file - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type - (tuple_type_item - (user_type - (type_identifier))) - (tuple_type_item - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier))))) - (tuple_type_item - (user_type - (type_identifier)))) - (user_type - (type_identifier)))) - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type - (tuple_type_item - (user_type - (type_identifier) - (type_identifier))) - (tuple_type_item - (tuple_type - (tuple_type_item - (user_type - (type_identifier)))))) - (user_type - (type_identifier))))) - -================================================================================ -Types with named parameters (function or tuple) -================================================================================ - -a as (first: A, second: B) --> Unit -let c: (third: C, fourth: D) - --------------------------------------------------------------------------------- - -(source_file - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type - (tuple_type_item - (simple_identifier) - (user_type - (type_identifier))) - (tuple_type_item - (simple_identifier) - (user_type - (type_identifier)))) - (user_type - (type_identifier)))) - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (tuple_type - (tuple_type_item - (simple_identifier) - (user_type - (type_identifier))) - (tuple_type_item - (simple_identifier) - (user_type - (type_identifier))))))) - -================================================================================ -Nested optional types -================================================================================ - -private var dictionary: [String: Any?]? - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (optional_type - (dictionary_type - (user_type - (type_identifier)) - (optional_type - (user_type - (type_identifier)))))))) - -================================================================================ -Implicitly unwrapped optional types -================================================================================ - -private var dictionary: [String: Any?]! - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (modifiers - (visibility_modifier)) - (pattern - (simple_identifier)) - (type_annotation - (dictionary_type - (user_type - (type_identifier)) - (optional_type - (user_type - (type_identifier))))))) - -================================================================================ -Type aliases -================================================================================ - -public typealias Callback = (T) -> Void -public typealias IntCallback = Callback - --------------------------------------------------------------------------------- - -(source_file - (typealias_declaration - (modifiers - (visibility_modifier)) - (type_identifier) - (type_parameters - (type_parameter - (type_identifier))) - (function_type - (tuple_type - (tuple_type_item - (user_type - (type_identifier)))) - (user_type - (type_identifier)))) - (typealias_declaration - (modifiers - (visibility_modifier)) - (type_identifier) - (user_type - (type_identifier) - (type_arguments - (user_type - (type_identifier)))))) - -================================================================================ -Metatypes -================================================================================ - -_ = foo as [String].Type - -protocol GetType { - func getType() -> AnyObject.Type -} - --------------------------------------------------------------------------------- - -(source_file - (assignment - (directly_assignable_expression - (simple_identifier)) - (navigation_expression - (as_expression - (simple_identifier) - (as_operator) - (array_type - (user_type - (type_identifier)))) - (navigation_suffix - (simple_identifier)))) - (protocol_declaration - (type_identifier) - (protocol_body - (protocol_function_declaration - (simple_identifier) - (user_type - (type_identifier) - (type_identifier)))))) - -================================================================================ -Existential types -================================================================================ - -let p: any P = S() -func q(using p: any P) { } - --------------------------------------------------------------------------------- - -(source_file - (property_declaration - (pattern - (simple_identifier)) - (type_annotation - (existential_type - (user_type - (type_identifier)))) - (call_expression - (simple_identifier) - (call_suffix - (value_arguments)))) - (function_declaration - (simple_identifier) - (parameter - (simple_identifier) - (simple_identifier) - (existential_type - (user_type - (type_identifier)))) - (function_body))) diff --git a/vendored_parsers/tree-sitter-swift/test/highlight/AppDelegate.swift b/vendored_parsers/tree-sitter-swift/test/highlight/AppDelegate.swift deleted file mode 100644 index da6182266..000000000 --- a/vendored_parsers/tree-sitter-swift/test/highlight/AppDelegate.swift +++ /dev/null @@ -1,29 +0,0 @@ -import Cocoa -// ^ include -import GRDB - -@NSApplicationMain -// ^ type -class AppDelegate: NSObject, NSApplicationDelegate { -// ^ keyword -// ^ type -// ^ punctuation.delimiter -// ^ type -// ^ punctuation.delimiter -// ^ punctuation.bracket - func applicationDidFinishLaunching(_ aNotification: Notification) { -// ^ keyword.function -// ^ method -// ^ parameter -// ^ parameter - _ = try! DatabaseQueue() -// ^ operator -// ^ operator -// ^ function.call - _ = FTS5() - _ = sqlite3_preupdate_new(nil, 0, nil) -// ^ variable.builtin -// ^ number - } -// ^ punctuation.bracket -} diff --git a/vendored_parsers/tree-sitter-swift/test/highlight/Bag.swift b/vendored_parsers/tree-sitter-swift/test/highlight/Bag.swift deleted file mode 100644 index 3fc6e3a62..000000000 --- a/vendored_parsers/tree-sitter-swift/test/highlight/Bag.swift +++ /dev/null @@ -1,201 +0,0 @@ -// -// Bag.swift -// Platform -// -// Created by Krunoslav Zaher on 2/28/15. -// Copyright © 2015 Krunoslav Zaher. All rights reserved. -// - -import Swift - -let arrayDictionaryMaxSize = 30 - -struct BagKey { -// ^ keyword - /** - Unique identifier for object added to `Bag`. - - It's underlying type is UInt64. If we assume there in an idealized CPU that works at 4GHz, - it would take ~150 years of continuous running time for it to overflow. - */ -// ^ comment - fileprivate let rawValue: UInt64 -// ^ keyword -// ^ keyword -// ^ property -} - -/** -Data structure that represents a bag of elements typed `T`. - -Single element can be stored multiple times. - -Time and space complexity of insertion and deletion is O(n). - -It is suitable for storing small number of elements. -*/ -struct Bag : CustomDebugStringConvertible { -// ^ type - /// Type of identifier for inserted elements. -// ^ comment - typealias KeyType = BagKey - - typealias Entry = (key: BagKey, value: T) - - private var _nextKey: BagKey = BagKey(rawValue: 0) -// ^ keyword -// ^ keyword -// ^ property - - // data - - // first fill inline variables - var _key0: BagKey? - var _value0: T? - - // then fill "array dictionary" - var _pairs = ContiguousArray() - - // last is sparse dictionary - var _dictionary: [BagKey: T]? - - var _onlyFastPath = true - - /// Creates new empty `Bag`. - init() { -// ^ constructor - } - - /** - Inserts `value` into bag. - - - parameter element: Element to insert. - - returns: Key that can be used to remove element from bag. - */ - mutating func insert(_ element: T) -> BagKey { -// ^ operator - let key = _nextKey - - _nextKey = BagKey(rawValue: _nextKey.rawValue &+ 1) -// ^ operator - - if _key0 == nil { -// ^ conditional - _key0 = key - _value0 = element - return key -// ^ keyword.return - } - - _onlyFastPath = false - - if _dictionary != nil { - _dictionary![key] = element - return key - } - - if _pairs.count < arrayDictionaryMaxSize { - _pairs.append((key: key, value: element)) - return key - } - - _dictionary = [key: element] - - return key - } - - /// - returns: Number of elements in bag. - var count: Int { - let dictionaryCount: Int = _dictionary?.count ?? 0 - return (_value0 != nil ? 1 : 0) + _pairs.count + dictionaryCount - } - - /// Removes all elements from bag and clears capacity. - mutating func removeAll() { - _key0 = nil - _value0 = nil - - _pairs.removeAll(keepingCapacity: false) - _dictionary?.removeAll(keepingCapacity: false) - } - - /** - Removes element with a specific `key` from bag. - - - parameter key: Key that identifies element to remove from bag. - - returns: Element that bag contained, or nil in case element was already removed. - */ - mutating func removeKey(_ key: BagKey) -> T? { - if _key0 == key { - _key0 = nil - let value = _value0! - _value0 = nil - return value - } - - if let existingObject = _dictionary?.removeValue(forKey: key) { - return existingObject - } - - for i in 0 ..< _pairs.count where _pairs[i].key == key { - let value = _pairs[i].value - _pairs.remove(at: i) - return value - } - - return nil - } -} - -extension Bag { -// ^ keyword -// ^ type - /// A textual representation of `self`, suitable for debugging. - var debugDescription : String { - "\(self.count) elements in Bag" -// ^ string -// ^ punctuation.bracket -// ^ variable.builtin - } -} - -extension Bag { - /// Enumerates elements inside the bag. - /// - /// - parameter action: Enumeration closure. - func forEach(_ action: (T) -> Void) { - if _onlyFastPath { - if let value0 = _value0 { - action(value0) - } - return - } - - let value0 = _value0 - let dictionary = _dictionary - - if let value0 = value0 { - action(value0) - } - - for i in 0 ..< _pairs.count { - action(_pairs[i].value) - } - - if dictionary?.count ?? 0 > 0 { - for element in dictionary!.values { - action(element) - } - } - } -} - -extension BagKey: Hashable { - func hash(into hasher: inout Hasher) { - hasher.combine(rawValue) - } -} - -func ==(lhs: BagKey, rhs: BagKey) -> Bool { - lhs.rawValue == rhs.rawValue -} diff --git a/vendored_parsers/tree-sitter-swift/test/highlight/HeroStringConvertible.swift b/vendored_parsers/tree-sitter-swift/test/highlight/HeroStringConvertible.swift deleted file mode 100644 index 972a0bcd0..000000000 --- a/vendored_parsers/tree-sitter-swift/test/highlight/HeroStringConvertible.swift +++ /dev/null @@ -1,65 +0,0 @@ -// The MIT License (MIT) -// -// Copyright (c) 2016 Luke Zhao -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -import Foundation - -public protocol HeroStringConvertible { - static func from(node: ExprNode) -> Self? -// ^ keyword -} - -extension String { - func parse() -> [T]? { -// ^ punctuation.delimiter -// ^ type - let lexer = Lexer(input: self) - let parser = Parser(tokens: lexer.tokenize()) -// ^ punctuation.delimiter -// ^ function.call - do { -// ^ keyword - let nodes = try parser.parse() -// ^ operator - var results = [T]() -// ^ punctuation.bracket - for node in nodes { - if let modifier = T.from(node: node) { - results.append(modifier) - } else { - print("\(node.name) doesn't exist in \(T.self)") -// ^ string - } - } - return results - } catch let error { -// ^ keyword -// ^ keyword -// ^ variable - print("failed to parse \"\(self)\", error: \(error)") - } - return nil - } - - func parseOne() -> T? { - return parse()?.last - } -} diff --git a/vendored_parsers/tree-sitter-swift/test/highlight/MediaMessageCell.swift b/vendored_parsers/tree-sitter-swift/test/highlight/MediaMessageCell.swift deleted file mode 100644 index 1ee5bc691..000000000 --- a/vendored_parsers/tree-sitter-swift/test/highlight/MediaMessageCell.swift +++ /dev/null @@ -1,114 +0,0 @@ -/* - MIT License - - Copyright (c) 2017-2019 MessageKit - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in all - copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - */ - -import UIKit - -/// A subclass of `MessageContentCell` used to display video and audio messages. -open class MediaMessageCell: MessageContentCell { -// ^ keyword - - /// The play button view to display on video messages. - open lazy var playButtonView: PlayButtonView = { -// ^ keyword -// ^ punctuation.bracket - - let playButtonView = PlayButtonView() - return playButtonView - }() -// ^ punctuation.bracket -// ^ punctuation.bracket - - /// The image view display the media content. - open var imageView: UIImageView = { - let imageView = UIImageView() - imageView.contentMode = .scaleAspectFill - return imageView - }() - - // MARK: - Methods - - /// Responsible for setting up the constraints of the cell's subviews. - open func setupConstraints() { - imageView.fillSuperview() - playButtonView.centerInSuperview() - playButtonView.constraint(equalTo: CGSize(width: 35, height: 35)) - } - - open override func setupSubviews() { - super.setupSubviews() - messageContainerView.addSubview(imageView) - messageContainerView.addSubview(playButtonView) - setupConstraints() - } - - open override func prepareForReuse() { - super.prepareForReuse() - self.imageView.image = nil - } - - open override func configure(with message: MessageType, at indexPath: IndexPath, and messagesCollectionView: MessagesCollectionView) { - super.configure(with: message, at: indexPath, and: messagesCollectionView) - - guard let displayDelegate = messagesCollectionView.messagesDisplayDelegate else { -// ^ conditional -// ^ keyword -// ^ keyword - fatalError(MessageKitError.nilMessagesDisplayDelegate) - } - - switch message.kind { -// ^ conditional - case .photo(let mediaItem): -// ^ keyword -// ^ punctuation.delimiter -// ^ variable - imageView.image = mediaItem.image ?? mediaItem.placeholderImage -// ^ operator - playButtonView.isHidden = true -// ^ boolean - case .video(let mediaItem): - imageView.image = mediaItem.image ?? mediaItem.placeholderImage - playButtonView.isHidden = false -// ^ boolean - default: -// ^ keyword - break -// ^ repeat - } - - displayDelegate.configureMediaMessageImageView(imageView, for: message, at: indexPath, in: messagesCollectionView) - } - - /// Handle tap gesture on contentView and its subviews. - open override func handleTapGesture(_ gesture: UIGestureRecognizer) { - let touchLocation = gesture.location(in: imageView) - - guard imageView.frame.contains(touchLocation) else { - super.handleTapGesture(gesture) - return - } - delegate?.didTapImage(in: self) - } - -} diff --git a/vendored_parsers/tree-sitter-swift/test/highlight/OperatorUsageWhitespaceConfiguration.swift b/vendored_parsers/tree-sitter-swift/test/highlight/OperatorUsageWhitespaceConfiguration.swift deleted file mode 100644 index 796d0b92d..000000000 --- a/vendored_parsers/tree-sitter-swift/test/highlight/OperatorUsageWhitespaceConfiguration.swift +++ /dev/null @@ -1,34 +0,0 @@ -public struct OperatorUsageWhitespaceConfiguration: RuleConfiguration, Equatable { - private(set) var severityConfiguration = SeverityConfiguration(.warning) -// ^ keyword -// ^ keyword - private(set) var linesLookAround = 2 - private(set) var skipAlignedConstants = true - private(set) var allowedNoSpaceOperators: [String] = ["...", "..<"] - - public var consoleDescription: String { - return severityConfiguration.consoleDescription - + ", lines_look_around: \(linesLookAround)" - + ", skip_aligned_constants: \(skipAlignedConstants)" - + ", allowed_no_space_operators: \(allowedNoSpaceOperators)" - } - - public mutating func apply(configuration: Any) throws { -// ^ keyword - guard let configuration = configuration as? [String: Any] else { -// ^ keyword -// ^ keyword - throw ConfigurationError.unknownConfiguration -// ^ keyword - } - - linesLookAround = configuration["lines_look_around"] as? Int ?? 2 - skipAlignedConstants = configuration["skip_aligned_constants"] as? Bool ?? true - allowedNoSpaceOperators = - configuration["allowed_no_space_operators"] as? [String] ?? ["...", "..<"] - - if let severityString = configuration["severity"] as? String { - try severityConfiguration.apply(configuration: severityString) - } - } -} diff --git a/vendored_parsers/tree-sitter-swift/test/highlight/PlayerWindowController.swift b/vendored_parsers/tree-sitter-swift/test/highlight/PlayerWindowController.swift deleted file mode 100644 index 5a645e1d8..000000000 --- a/vendored_parsers/tree-sitter-swift/test/highlight/PlayerWindowController.swift +++ /dev/null @@ -1,59 +0,0 @@ -// -// PlayerWindowController.swift -// iina -// -// Created by Yuze Jiang on 2/15/20. -// Copyright © 2020 lhc. All rights reserved. -// - -import Cocoa - -class PlayerWindowController: NSWindowController, NSWindowDelegate { - - unowned var player: PlayerCore - - var videoView: VideoView { - fatalError("Subclass must implement") - } - - var menuActionHandler: MainMenuActionHandler! - - var isOntop = false { - didSet { - player.mpv.setFlag(MPVOption.Window.ontop, isOntop) - } - } - var loaded = false - - init(playerCore: PlayerCore) { - self.player = playerCore - super.init(window: nil) - if #available(macOS 10.15, *) { -// ^ number -// ^ number -// ^ operator - player.refreshEdrMode() - } - } - - required init?(coder: NSCoder) { -// ^ keyword -// ^ constructor - fatalError("init(coder:) has not been implemented") - } - - - @IBOutlet weak var volumeSlider: NSSlider! -// ^ type - - - deinit { - ObjcUtils.silenced { - for key in self.observedPrefKeys { -// ^ repeat -// ^ repeat - UserDefaults.standard.removeObserver(self, forKeyPath: key.rawValue) - } - } - } -}